From a4842f5f2f13bb4cd221fb9b6f7b841d953ca12e Mon Sep 17 00:00:00 2001 From: revsuine Date: Mon, 25 Nov 2024 15:44:01 +0000 Subject: [PATCH] static/style.css: minor styling of anchor hovers, selection background --- static/style.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/static/style.css b/static/style.css index aab7820..68719f4 100644 --- a/static/style.css +++ b/static/style.css @@ -6,6 +6,11 @@ --accent: var(--green); --faint_foreground: var(--grey0); --code_background: var(--bg_dim); + --highlight_background: var(--bg3); +} + +::selection, ::-moz-selection { + background: var(--highlight_background); } a { @@ -17,6 +22,7 @@ a { a:hover { color: var(--background) !important; background-color: var(--accent) !important; + text-decoration-line: none; } .code-toolbar { @@ -27,6 +33,10 @@ code { background: var(--code_background); } +.post-meta { + color: var(--faint_foreground); +} + .footnotes { color: var(--faint_foreground); }