mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 21:58:31 +00:00
34 lines
366 B
CSS
34 lines
366 B
CSS
:root {
|
|
--foreground: white;
|
|
}
|
|
|
|
body,
|
|
input {
|
|
font-family: monospace;
|
|
background: black;
|
|
color: white;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#code,
|
|
.cm-editor,
|
|
.cm-scroller {
|
|
padding: 0;
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.settings {
|
|
position: fixed;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 1000;
|
|
display: flex-col;
|
|
padding: 10px;
|
|
}
|
|
|
|
.settings > form > * + * {
|
|
margin-top: 10px;
|
|
}
|