From 8543c9d670ea43dd78d1c77c9524d3508234b572 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Wed, 21 Aug 2024 08:33:26 -0500 Subject: [PATCH] adjust opacity/color of anchor links --- static/css/custom.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/static/css/custom.css b/static/css/custom.css index 0830d63..f4b381b 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -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; } \ No newline at end of file