30 lines
374 B
CSS
30 lines
374 B
CSS
![]() |
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;
|
||
|
}
|
||
|
}
|