initial webui work

This commit is contained in:
Robin Appelman 2025-10-06 21:34:56 +02:00
commit 71cf4dbcb2
4 changed files with 248 additions and 4 deletions

22
web/style.css Normal file
View file

@ -0,0 +1,22 @@
:root {
--background-color: #959595;
--font-color: #000000;
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: #1e1e1e;
--font-color: #fff;
}
}
body, input {
background: var(--background-color);
color: var(--font-color);
}
#elements {
.pos input {
width: 60px;
}
}