From 0b426487cafdc5672ba5077228bcf881c605bfbe Mon Sep 17 00:00:00 2001 From: voidarc Date: Tue, 24 Mar 2026 18:22:46 +0000 Subject: [PATCH] changed text decoration and animation --- static/main.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/static/main.css b/static/main.css index d9e1f6f..69daad7 100644 --- a/static/main.css +++ b/static/main.css @@ -325,10 +325,15 @@ h1 span { } .result > a { color: var(--accent); - text-decoration: none; + text-decoration: underline; + text-decoration-color: transparent; font-size: 1.25rem; display: inline-block; margin-bottom: 4px; + transition: text-decoration-color 0.1s; +} +.result > a:hover { + text-decoration-color: var(--accent); } .url { color: var(--text-secondary);