From a8233923bf56782a53ea48e655e4a9a111b22279 Mon Sep 17 00:00:00 2001 From: sanine Date: Fri, 14 Jan 2022 22:39:20 -0600 Subject: add refactor-argent blog post and updated favicon --- site_root/style.css | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'site_root/style.css') 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; } -- cgit v1.2.1