vanten-s.com/main.css
vanten-s 3ac2beb806
Some checks failed
/ build (push) Failing after 15s
waow it works :3
2024-12-19 12:24:14 +01:00

29 lines
391 B
CSS

:root {
--base: #1e1e2e;
--mantle: #181825;
--text: #cdd6f4;
}
body {
background-color: var(--mantle);
color: var(--text);
font-family: monospace;
}
.input {
background-color: inherit;
color: inherit;
font: inherit;
padding: 0;
border: none;
}
.input:focus {
outline: none;
box-shadow: none;
}
.terminal {
white-space: pre-wrap;
}