From 2a6f472fe758ca3611f41f7fb6a4c7aca59cfc7a Mon Sep 17 00:00:00 2001 From: sij Date: Sat, 19 Oct 2024 11:14:58 +0200 Subject: [PATCH] Add custom.css --- custom.css | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 custom.css diff --git a/custom.css b/custom.css new file mode 100644 index 0000000..c52d4aa --- /dev/null +++ b/custom.css @@ -0,0 +1,11 @@ +a { + color: #8ec07c !important; /* Desaturated minty green */ + text-decoration: none !important; + transition: color 0.3s ease, font-weight 0.3s ease !important; +} + +a:hover { + color: #689d6a !important; /* Slightly darker minty green for hover */ + font-weight: bold !important; + text-decoration: underline !important; +}