From 4a943577967c2ecd97a535d3d6349d4bd7ed4cc3 Mon Sep 17 00:00:00 2001 From: Lanius Trolling Date: Sun, 29 Dec 2024 19:35:34 -0500 Subject: [PATCH] Change link color --- src/main/resources/static/style.css | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css index 9026c7b..1a80ce1 100644 --- a/src/main/resources/static/style.css +++ b/src/main/resources/static/style.css @@ -143,7 +143,7 @@ html, html[data-theme="light"][data-theme="light"] { --list-a-h-fg: #feb; --list-a-h-bg: #a82; - --a-fg: #36c; + --a-fg: #860; --tbl-border: #431; --tbl-td-bgr: #feb; @@ -216,7 +216,7 @@ html[data-theme="dark"], html[data-fallback-theme="dark"] { --list-a-h-fg: #541; --list-a-h-bg: #fd7; - --a-fg: #69f; + --a-fg: #fd7; --tbl-border: #c93; --tbl-td-bgr: #430; @@ -514,16 +514,12 @@ div.list > div.item > a:hover { background-color: var(--list-a-h-bg); } -a { +a, a:visited { color: var(--a-fg); text-decoration: none; } -a:visited { - color: var(--a-fg); -} - -a:hover { +a:hover, a:hover:visited { text-decoration: underline; } -- 2.25.1