This repository has no description
1:root {
2 color-scheme: light dark;
3 font-family: system-ui, sans-serif;
4}
5
6html {
7 height: 100%;
8 body {
9 margin: 0;
10 height: 100%;
11 display: flex;
12 flex-direction: column;
13 .terminal {
14 flex: 1;
15 }
16 }
17}
18
19details {
20 font-size: 1.2rem;
21 margin: 1rem;
22 summary {
23 user-select: none;
24 }
25 form {
26 display: grid;
27 grid-template-columns: 15ch 1fr;
28 grid-column: 2;
29 input {
30 font-family: monospace;
31 }
32 button {
33 grid-column: span 2;
34 }
35 }
36}