From f18cf99aadbf18c7687f271849640e071cce601f Mon Sep 17 00:00:00 2001 From: Josha von Gizycki Date: Wed, 30 Jul 2025 11:24:24 +0200 Subject: [PATCH] some shuffling around in css --- src/main/resources/static/stylesheet.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/main/resources/static/stylesheet.css b/src/main/resources/static/stylesheet.css index 392f086..9ada344 100644 --- a/src/main/resources/static/stylesheet.css +++ b/src/main/resources/static/stylesheet.css @@ -1,4 +1,7 @@ body { + --dark-grey: #717171; + --light-grey: #858585; + margin: 0 5rem; font-family: sans-serif; @@ -56,7 +59,7 @@ main { } .tag-block { - border: 1px solid ButtonText; + border: 1px solid var(--light-grey); border-left: .5rem solid AccentColor; padding: .2rem .2rem .2rem .5rem; } @@ -67,11 +70,11 @@ main { } .low-key-hint, dt { - color: #717171; + color: var(--dark-grey); } h2 .low-key-hint { - color: #858585; + color: var(--light-grey); } }