Mark focused links on click.

This commit is contained in:
Sergio Martínez Portela 2022-11-01 12:19:20 +01:00
parent 208a9b2e97
commit 964e2501ee

View File

@ -20,6 +20,11 @@ body nav h1 {
display: inline-block; display: inline-block;
} }
a:focus {
background-color: rgb(0, 0, 238);
color: white;
}
/* Search box */ /* Search box */
body nav input { body nav input {
background-color: transparent; background-color: transparent;
@ -326,6 +331,10 @@ tr.__table-separator {
a { a {
color: #00fdf2; color: #00fdf2;
} }
a:focus {
background-color: #00fdf2;
color: black;
}
h1,h2,h3,h4,h5,h6 { h1,h2,h3,h4,h5,h6 {
color: #f7da4a; color: #f7da4a;
} }