From 0e6f5fcbd66c61a9bf2004112fd58af6d01b4a95 Mon Sep 17 00:00:00 2001 From: augusto <93066036+alpheratz0@users.noreply.github.com> Date: Sun, 3 Jul 2022 00:46:09 -0300 Subject: [PATCH] fix hover on visited links & add underline when hovering links (#813) * fix hover on visited links (move :hover after :visited selector) * add underline when hovering links --- static/style.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/static/style.css b/static/style.css index fcdcb50..8eb698e 100644 --- a/static/style.css +++ b/static/style.css @@ -37,14 +37,15 @@ a { margin: .1em .25em ; } -a:hover { - color: beige ; -} - a:visited { color: darkgoldenrod ; } +a:hover { + color: beige ; + text-decoration: underline; +} + h1 { border-style: solid ; border-width: 0px 0px 2px 0px ;