Skip to content

Commit

Permalink
some style
Browse files Browse the repository at this point in the history
  • Loading branch information
felixroos committed Dec 30, 2024
1 parent 6bea5d6 commit 99db690
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
html {
height: 100%;
}
body {
background-color: #242424;
color: #ccc;
margin: 0;
font-family: monospace;
height: 100%;
}

.slots {
display: flex;
width: 100vw;
height: 80vh;
width: 100%;
height: 100%;
}

.slot {
display: flex;
flex-direction: column;
flex-grow: 1;
margin: 0.25em;
width: 50%;
Expand All @@ -24,3 +30,17 @@ body {
:root {
--foreground: #eeeeee80;
}

.editor {
flex-grow: 1;
}
.cm-editor {
height: 100%;
}
select {
background-color: #222;
color: white;
border: 0;
padding: 4px;
outline: none;
}

0 comments on commit 99db690

Please sign in to comment.