4 Commits
Author SHA1 Message Date
TheDiluTek 9686441f71 schwarz 2026-06-18 20:16:52 +02:00
TheDiluTek a496338042 schwarze schrift sonst sieht man nix 2026-06-18 20:16:01 +02:00
TheDiluTek 3915f997da Merge branch 'main' of https://git.raffauf-clan.de/schn33fuchs/ticketsystem 2026-06-18 19:58:46 +02:00
TheDiluTek 9704d5792a njix 2026-06-18 19:58:41 +02:00
4 changed files with 31 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[serve] [serve]
# The address to serve on LAN. # The address to serve on LAN.
addresses = ["127.0.0.1"] #,"10.150.9.7"] addresses = ["127.0.0.1","192.168.2.157"] #,"10.150.9.7"]
# The address to serve on WAN. # The address to serve on WAN.
# address = "0.0.0.0" # address = "0.0.0.0"
# The port to serve on. # The port to serve on.
+2 -2
View File
@@ -8,7 +8,7 @@
--border-radius: 6px; --border-radius: 6px;
--rundbgbackgroundcolor: #a0a0a0; --rundbgbackgroundcolor: #a0a0a0;
--sidebar-font: #fffefe; --sidebar-font: #fffefe;
--color: #ffffff; --color: #000000;
--color-container: #f0f0f0; --color-container: #f0f0f0;
--color-text: #000000; --color-text: #000000;
} }
@@ -25,5 +25,5 @@
--sidebar-font: #000000; --sidebar-font: #000000;
--color: #000000; --color: #000000;
--color-container: #1a1a1a; --color-container: #1a1a1a;
--color-text: #ffffff; --color-text: #000000;
} }
@@ -0,0 +1,21 @@
body {
/* Formular Styles */
input, textarea, select, button {
width: 100%;
margin-top: 1rem;
padding: 0.75rem;
font-size: 1rem;
border-radius: 0.5rem;
color: white;
border: none;
cursor: pointer;
margin-bottom: 15px;
}
button:hover {
cursor: pointer;
border: none;
transition: all 0.2s ease-in-out;
margin-bottom: 15px;
}
}
@@ -1,6 +1,11 @@
@use "../variables" as *; @use "../variables" as *;
@use "../mixins" as *; @use "../mixins" as *;
:root {
color-scheme: dark light;
}
.sidebar { .sidebar {
width: 260px; width: 260px;
background: var(--color-sidebar); background: var(--color-sidebar);
@@ -178,4 +183,6 @@
pointer-events: auto; pointer-events: auto;
} }
} }
} }