mirror of
https://codeberg.org/uzu/strudel
synced 2026-09-04 22:52:55 -04:00
14cb954213
+ add strudelTheme + add lineBackground with opacity + add some missing light flags + add fallback css variables for non js context
21 lines
300 B
CSS
21 lines
300 B
CSS
.darken::before {
|
|
content: ' ';
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: block;
|
|
background: black;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.cm-content {
|
|
padding-top: 12px !important;
|
|
padding-left: 8px !important;
|
|
}
|
|
|
|
.cm-line > * {
|
|
background: var(--lineBackground);
|
|
}
|