about summary refs log tree commit diff
path: root/src/frontend/style.css
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2021-05-17 04:12:48 +0300
committerVika <vika@fireburn.ru>2021-05-17 04:12:48 +0300
commit696ae495aca701c3431710e5dfc03e15aba2f74e (patch)
tree3b58d7cb23a8edd5fdb7121ab420ed60a9af64cb /src/frontend/style.css
parent3dbe61f57873881dfbf5da8a335762a0e1dccbb5 (diff)
Refactoring, easter egg, healthcheck endpoint, support for rel= indieweb APIs and preparation for onboarding
Diffstat (limited to 'src/frontend/style.css')
-rw-r--r--src/frontend/style.css7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/frontend/style.css b/src/frontend/style.css
index 2c43808..1d6586b 100644
--- a/src/frontend/style.css
+++ b/src/frontend/style.css
@@ -5,6 +5,9 @@
     --font-normal: 'Lato', sans-serif;
     --font-accent: 'Caveat', cursive;
     --type-scale: 1.250;
+
+    --primary-accent: purple;
+    --secondary-accent: gold;
 }
 * {
     box-sizing: border-box;
@@ -31,9 +34,9 @@ h6, .normal {font-size: 1rem;}
 small, .small { font-size: 0.8em; }
 
 nav#headerbar {
-    background: purple;
+    background: var(--primary-accent);
     color: whitesmoke;
-    border-bottom: .75rem solid gold;
+    border-bottom: .75rem solid var(--secondary-accent);
     padding: .3rem;
     vertical-align: center;
     position: sticky;