From: Carl Worth Date: Sat, 6 Jun 2020 19:31:54 +0000 (-0700) Subject: Don't underline links in headers X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=commitdiff_plain;h=fe8180570a2be523a652947816f939c088d762d5 Don't underline links in headers Headers want their own styling and look *terrible* with underlining. --- 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; }