From 3ee74af162d4042b58ce8c38f565d0e36d6b2228 Mon Sep 17 00:00:00 2001 From: Pagwin Date: Mon, 24 Feb 2025 11:42:46 -0500 Subject: [PATCH] cool new underline :D --- static/css/colors.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/static/css/colors.css b/static/css/colors.css index 4ee06e0..1eeb9c0 100644 --- a/static/css/colors.css +++ b/static/css/colors.css @@ -119,6 +119,24 @@ a:visited { a:active { color: var(--link-active) } + +a:not(.nav-link) { + text-decoration: underline dotted var(--link-unclicked) 1.5px; + &:visited { + text-decoration-color: var(--link-clicked); + } + &:active{ + text-decoration-color: var(--link-active); + } + &:focus-visible { + text-decoration-style: solid; + text-decoration-color: var(--normal-text); + &:active { + text-decoration-color: cyan; + } + } +} + #header { background: var(--header-bg); }