summaryrefslogtreecommitdiff
path: root/site_root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'site_root/style.css')
-rw-r--r--site_root/style.css18
1 files changed, 12 insertions, 6 deletions
diff --git a/site_root/style.css b/site_root/style.css
index f43e73d..14b450b 100644
--- a/site_root/style.css
+++ b/site_root/style.css
@@ -1,6 +1,12 @@
+:root {
+ --light: #eee;
+ --dark: #1c1c1c;
+ --highlight: #ff3a21
+}
+
body {
- color: #eee;
- background: #1c1c1c;
+ color: var(--light);
+ background: var(--dark);
font-family: monospace;
font-size: 16px;
}
@@ -14,18 +20,18 @@ body {
}
#content {
- width: 600px;
+ width: 700px;
max-width: 100%;
margin: auto;
}
a {
- color: #ff3a21;
+ color: var(--highlight);
}
a:hover {
- color: #1c1c1c;
- background: #ff3a21;
+ color: var(--dark);
+ background: var(--highlight);
text-decoration: none;
}