From d8acee66dd80c2a253c4870da7a2c95c39f559a1 Mon Sep 17 00:00:00 2001 From: sij Date: Sat, 19 Oct 2024 19:57:38 +0200 Subject: [PATCH] Update custom.css --- custom.css | 42 ++++++++++++++++++++++++++++++++++-------- 1 file changed, 34 insertions(+), 8 deletions(-) diff --git a/custom.css b/custom.css index c52d4aa..fc5116f 100644 --- a/custom.css +++ b/custom.css @@ -1,11 +1,37 @@ -a { - color: #8ec07c !important; /* Desaturated minty green */ - text-decoration: none !important; - transition: color 0.3s ease, font-weight 0.3s ease !important; +/* Styles for links in most areas */ +#custom-css .main-row a, +#custom-css .sub-menu-entry a, +#custom-css .footer a, +#custom-css .video-info a, +#custom-css .video-info-description a, +#custom-css .comment-account a, +#custom-css .video-miniature a:not(.video-miniature-name), +#custom-css .account-title a, +#custom-css .main-col a { + color: #5ACD83; + text-decoration: none; + transition: color 0.3s ease, font-weight 0.3s ease; } -a:hover { - color: #689d6a !important; /* Slightly darker minty green for hover */ - font-weight: bold !important; - text-decoration: underline !important; +#custom-css .main-row a:hover, +#custom-css .sub-menu-entry a:hover, +#custom-css .footer a:hover, +#custom-css .video-info a:hover, +#custom-css .video-info-description a:hover, +#custom-css .comment-account a:hover, +#custom-css .video-miniature a:not(.video-miniature-name):hover, +#custom-css .account-title a:hover, +#custom-css .main-col a:hover { + color: #80FFAD; + font-weight: bold; + text-decoration: underline; +} + +/* Styles for sidebar/side menu links */ +#custom-css .menu-wrapper a:hover, +#custom-css .sidebar a:hover { + color: #80FFAD; + font-weight: bold; + text-decoration: underline; + transition: color 0.3s ease, font-weight 0.3s ease; }