commit 190955bcfbfcca85c4170653334aae5501e5b852 (patch)
parent 2460a3fea2eda13283354eac2bf6b7beb97ac2da
Author: Alex Karle <alex@karle.co>
Date: Sun, 21 Jun 2020 22:27:54 -0400
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).
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git 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;