mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-13 14:48:32 +00:00
+ 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);
|
|
}
|