vanten-s.com/frontend/main.css
vanten-s f12e1ffc8f
Some checks failed
/ build (push) Failing after 24s
Waow :3
2025-03-16 14:16:03 +01:00

30 lines
407 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;
width: max;
}
.input:focus {
outline: none;
box-shadow: none;
}
.terminal {
white-space: pre-wrap;
}