adjust opacity/color of anchor links

This commit is contained in:
John Bowdre 2024-08-21 08:33:26 -05:00
parent 20b7963ee1
commit 8543c9d670

View file

@ -529,7 +529,8 @@ p:has(+ ul) {
/* Header anchor links */
.hlink {
display: none;
opacity: 0.4;
color: var(--muted) !important;
}
h1:hover .hlink,
@ -538,5 +539,6 @@ h3:hover .hlink,
h4:hover .hlink,
h5:hover .hlink,
h6:hover .hlink {
display: inline-block;
opacity: 0.8;
color: var(--link) !important;
}