mirror of
https://codeberg.org/icewind/ptouch-api.git
synced 2026-06-03 10:54:07 +02:00
initial webui work
This commit is contained in:
parent
f7910f967b
commit
71cf4dbcb2
4 changed files with 248 additions and 4 deletions
22
web/style.css
Normal file
22
web/style.css
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue