summary refs log tree commit diff
path: root/style.css
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2022-02-20 14:27:37 +0300
committerAzat Bahawi <azat@bahawi.net>2022-02-20 14:27:37 +0300
commitaff236d5307da41f310e1b7dc0225b23405981aa (patch)
treec715b534d5995279c6a291aefa89ebcb0ccf666f /style.css
parentfeat: remove peeps.html (diff)
feat: add an PGP key and various tweaks
Diffstat (limited to 'style.css')
-rw-r--r--style.css32
1 files changed, 18 insertions, 14 deletions
diff --git a/style.css b/style.css
index 794ab75..1e90bf5 100644
--- a/style.css
+++ b/style.css
@@ -1,25 +1,25 @@
 :root {
-    --cblack: #161719;
-    --cblue: #81a2be;
-    --ccyan: #8abeb7;
-    --cgreen: #b5bd68;
-    --cmagenta: #b294bb;
-    --cred: #cc6666;
-    --cwhite: #ffffff;
-    --cyellow: #f0c674;
+    --black: #161719;
+    --blue: #81a2be;
+    --cyan: #8abeb7;
+    --green: #b5bd68;
+    --magenta: #b294bb;
+    --red: #cc6666;
+    --white: #ffffff;
+    --yellow: #f0c674;
 }
 
 @media (prefers-color-scheme: light) {
     :root {
-        --background: var(--cwhite);
-        --foreground: var(--cblack);
+        --background: var(--white);
+        --foreground: var(--black);
     }
 }
 
 @media (prefers-color-scheme: dark) {
     :root {
-        --background: var(--cblack);
-        --foreground: var(--cwhite);
+        --background: var(--black);
+        --foreground: var(--white);
     }
 }
 
@@ -35,17 +35,21 @@ body {
 }
 
 a {
-    color: var(--cblue)
+    color: var(--blue)
 }
 
 a:visited {
-    color: var(--cmagenta)
+    color: var(--magenta)
 }
 
 dt {
     font-style: italic;
 }
 
+code {
+    white-space: pre;
+}
+
 .center {
     text-align: center;
 }

Consider giving Nix/NixOS a try! <3