aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin <valentin@fricklerhandwerk.de>2025-11-07 11:53:47 +0100
committerValentin <valentin@fricklerhandwerk.de>2025-11-07 13:40:46 +0100
commit47789e4a182b7923598bdfc7fe103bfe31f95195 (patch)
tree551de99f7abb2569899ab2df464f354a45207737
parente5c5f2e9df5a470c49e9843ec6701c482364ddc1 (diff)
Kontrolle über Farben vereinheitlicht
-rw-r--r--www/html/index.html15
1 files changed, 11 insertions, 4 deletions
diff --git a/www/html/index.html b/www/html/index.html
index 7bcc19c..15e0d0f 100644
--- a/www/html/index.html
+++ b/www/html/index.html
@@ -9,11 +9,18 @@
<title>Stadtteilbeirat Heimfeld</title>
<link rel="shortcut icon" type="image/x-icon" href="/img/Kraniche-dreh-klein.gif">
<style>
+ :root {
+ --primary: #330033;
+ --background-primary: #77cc77;
+ --background-secondary: #99ee99;
+ --background-highlight: #ffcc00;
+ --highlight: #ff0000;
+ }
body {
font-family: sans-serif;
- background-color: #77cc77;
+ color: var(--highlight);
+ background-color: var(--background-primary);
text-align: center;
- color: #ff0000;
}
body::before {
content: '';
@@ -31,10 +38,10 @@
z-index: -1;
}
td > table {
- background-color: #99ee99;
+ background-color: var(--background-secondary);
}
th {
- background-color: #ffcc00;
+ background-color: var(--background-highlight);
height: 1.5em;
font-size: 1.5em;
}