From fe8180570a2be523a652947816f939c088d762d5 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 6 Jun 2020 12:31:54 -0700 Subject: [PATCH] Don't underline links in headers Headers want their own styling and look *terrible* with underlining. --- style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style.css b/style.css index 6d5bdca..1804625 100644 --- a/style.css +++ b/style.css @@ -49,6 +49,11 @@ h2 { font-size: 110%; } +/* Don't underline links in headers */ +h1 a { + text-decoration: none; +} + p,dl,dd,form { margin-bottom: 1em; } -- 2.43.0