From 190955bcfbfcca85c4170653334aae5501e5b852 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sun, 21 Jun 2020 22:27:54 -0400 Subject: [PATCH] style: Add darker hover color to nav links I think from a UX perspective, it's good to see that these are links (and not just gray words). Having them underline/darken on hover really hits that home (on desktop at least). --- content/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/style.css b/content/style.css index ae251e8..d62b5cc 100644 --- a/content/style.css +++ b/content/style.css @@ -56,6 +56,11 @@ header { text-decoration: none; } +#nav > a:hover { + color: #3f3f3f; + text-decoration: underline; +} + h1.path { margin-top: 0px; margin-bottom: 0px; -- libgit2 1.1.1