From 212c41d848199f93c57f654ffdbdf269031872a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Mart=C3=ADnez=20Portela?= Date: Fri, 4 Nov 2022 00:31:53 +0100 Subject: [PATCH] Avoid having Headlines look like links when clicked. --- static/style.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/static/style.css b/static/style.css index ae213bd..60f8b3a 100644 --- a/static/style.css +++ b/static/style.css @@ -25,6 +25,17 @@ a:focus { color: white; } +h1 a:focus, +h2 a:focus, +h3 a:focus, +h4 a:focus, +h5 a:focus, +h6 a:focus +{ + background-color: inherit; + color: #2c3e50; +} + /* Search box */ body nav input { background-color: transparent; @@ -353,6 +364,16 @@ tr.__table-separator { background-color: #00fdf2; color: black; } + h1 a:focus, + h2 a:focus, + h3 a:focus, + h4 a:focus, + h5 a:focus, + h6 a:focus + { + background-color: inherit; + color: #f7da4a; + } h1,h2,h3,h4,h5,h6 { color: #f7da4a; }