From 964e2501eeac04c2ec2f91653da2393796d59002 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Mart=C3=ADnez=20Portela?= Date: Tue, 1 Nov 2022 12:19:20 +0100 Subject: [PATCH] Mark focused links on click. --- static/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/static/style.css b/static/style.css index 8c9550b..1dab804 100644 --- a/static/style.css +++ b/static/style.css @@ -20,6 +20,11 @@ body nav h1 { display: inline-block; } +a:focus { + background-color: rgb(0, 0, 238); + color: white; +} + /* Search box */ body nav input { background-color: transparent; @@ -326,6 +331,10 @@ tr.__table-separator { a { color: #00fdf2; } + a:focus { + background-color: #00fdf2; + color: black; + } h1,h2,h3,h4,h5,h6 { color: #f7da4a; }