From 97071b1373d8264471d7099135425d1d2698c403 Mon Sep 17 00:00:00 2001 From: Kristin Schlosser Date: Fri, 19 Jul 2024 16:23:28 +0200 Subject: [PATCH] Change color of visited links --- src/_static/custom.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/_static/custom.css b/src/_static/custom.css index 754e3880..05bc173f 100644 --- a/src/_static/custom.css +++ b/src/_static/custom.css @@ -40,6 +40,16 @@ a { } a:hover { + color: #11AB51 !important; + border-bottom: 1px solid var(--color-content-foreground); +} + +a:visited { + color: var(--color-content-foreground); + border-bottom: 1px solid var(--color-content-foreground); +} + +a:active { color: #11AB51; border-bottom: 1px solid var(--color-content-foreground); }