first commit

This commit is contained in:
Christian Lawson-Perfect 2025-02-09 20:33:33 +00:00
commit 9e4d936a96
9 changed files with 4864 additions and 0 deletions

30
style.css Normal file
View file

@ -0,0 +1,30 @@
body {
margin: 0;
}
main {
display: grid;
grid-template:
"editor display" / 50svw 50svw;
;
width: 100svw;
& code-editor {
display: block;
overflow: auto;
}
& #time {
width: 100%;
}
& #files {
[aria-current] button {
font-weight: bold;
}
}
& #display svg {
max-height: 50svh;
}
}