diff options
| -rw-r--r-- | www/html/index.html | 15 |
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; } |
