From e228c744026d8f499071251b7fe62a3d77bc5dda Mon Sep 17 00:00:00 2001 From: Michael Bergbauer Date: Fri, 13 Jun 2025 23:45:06 +0200 Subject: [PATCH] Adjusting link color --- member/static/member/css/styles.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/member/static/member/css/styles.css b/member/static/member/css/styles.css index 3fd8c2f..415cfda 100644 --- a/member/static/member/css/styles.css +++ b/member/static/member/css/styles.css @@ -157,3 +157,13 @@ body { color: #f1f1f1; font-size: 1rem; } + +a { + color: var(--highlight); + text-decoration: none; +} + +a:hover { + text-decoration: underline; + color: #ffd27f; +}