diff options
author | Stefan Kreutz <mail@skreutz.com> | 2024-07-06 23:20:29 +0200 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2024-07-06 23:20:29 +0200 |
commit | 6772e304c049cf44bbf47b445b04c8e45c16c128 (patch) | |
tree | 803a70bb59d6d9918e9d0cabd13fb58f951190ca /css/site.css | |
parent | 8c37ae3642f9e95ccfcf8982c45b7e6ed3c3c850 (diff) | |
download | blog-6772e304c049cf44bbf47b445b04c8e45c16c128.tar |
Append anchors to headings
Diffstat (limited to 'css/site.css')
-rw-r--r-- | css/site.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/css/site.css b/css/site.css index a2ffb90..379d9e8 100644 --- a/css/site.css +++ b/css/site.css @@ -129,12 +129,12 @@ h6 { /* color: var(--accent-color); */ } -h1 > a, -h2 > a, -h3 > a, -h4 > a, -h5 > a, -h6 > a { +h1 > a:not(.anchor), +h2 > a:not(.anchor), +h3 > a:not(.anchor), +h4 > a:not(.anchor), +h5 > a:not(.anchor), +h6 > a:not(.anchor) { color: inherit; text-decoration: inherit; } |