From: AngeloR Date: Mon, 12 Jan 2026 15:05:05 +0000 (-0500) Subject: update mytheme X-Git-Url: https://git.xangelo.ca/?a=commitdiff_plain;h=e1c43f3f9276325b1310b3e2e4469ddfe2b29406;p=xangelo.ca.git update mytheme --- diff --git a/themes/custom-mytheme/static/css/style.css b/themes/custom-mytheme/static/css/style.css index 0e2c2e3..2d0c5c5 100644 --- a/themes/custom-mytheme/static/css/style.css +++ b/themes/custom-mytheme/static/css/style.css @@ -4,6 +4,8 @@ --accent: #0f2a57; --border: #d7d7d0; --muted: #606060; + --link: #0f2a57; + --link-hover: #1c3f73; } * { @@ -184,11 +186,16 @@ body { } .post-content a { - color: var(--accent); + color: var(--link); text-decoration: underline; text-decoration-thickness: 1px; } +.post-content a:hover, +.post-content a:focus { + color: var(--link-hover); +} + .post-content pre { padding: 1rem; border: 1px solid var(--border);