strudel/website/src/repl/Repl.css
Felix Roos 14cb954213 themed minirepl
+ add strudelTheme
+ add lineBackground with opacity
+ add some missing light flags
+ add fallback css variables for non js context
2023-02-10 21:42:27 +01:00

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);
}