From eb806d2784681b43ba54a3c92baf20e3fc06f2ed Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 17 May 2020 15:43:01 -0700 Subject: [PATCH] Add basic them-based styling of link colors Since the default lnik colors are _horrible_. --- style.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/style.css b/style.css index 6bf82a6..2fca630 100644 --- a/style.css +++ b/style.css @@ -59,6 +59,19 @@ ul li { margin-bottom: 0.5em; } +a:link { + color: var(--accent-color); +} +a:visited { + color: var(--accent-color); +} +a:hover { + color: var(--accent-color-bright); +} +a:active { + color: var(--accent-color-bright); +} + /*\ |*| |*| Overall page layout -- 2.43.0