diff options
author | sanine <sanine.not@pm.me> | 2022-01-14 22:39:20 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-01-14 22:39:20 -0600 |
commit | a8233923bf56782a53ea48e655e4a9a111b22279 (patch) | |
tree | 77aa0291ae267fbbb7ae4ea407ea14cec7777215 /site_root/style.css | |
parent | c1a6d4f050dbf9304f1f00b72a8b44c232479a88 (diff) |
add refactor-argent blog post and updated favicon
Diffstat (limited to 'site_root/style.css')
-rw-r--r-- | site_root/style.css | 18 |
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; } |