From 988c775d277c96df6d6d9e2246513d88c60424fd Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 20 Jun 2024 15:26:25 +0200 Subject: [PATCH] feat: add dashed underline for DOI links Introduced new styling for DOI links with a dashed underline to differentiate them visually from regular hyperlinks. This enhances user experience by clearly indicating actionable elements specific to DOIs. --- style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style.css b/style.css index 488f90e..123e626 100644 --- a/style.css +++ b/style.css @@ -83,4 +83,9 @@ footer .social-media img { a h5 { color: #333; text-decoration: none; +} + +#doi-link { + color: #333; + text-decoration: dashed; } \ No newline at end of file