Styling
Some checks failed
/ build (push) Failing after 16s

This commit is contained in:
vanten-s 2024-12-18 11:25:58 +01:00
parent ba6022747f
commit 5c0810afd0
Signed by: vanten-s
GPG key ID: DE3060396884D3F2

24
main.css Normal file
View file

@ -0,0 +1,24 @@
: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;
}