Avoid having Headlines look like links when clicked.

This commit is contained in:
Sergio Martínez Portela 2022-11-04 00:31:53 +01:00
parent 1f286a0a54
commit 212c41d848

View File

@ -25,6 +25,17 @@ a:focus {
color: white; 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 */ /* Search box */
body nav input { body nav input {
background-color: transparent; background-color: transparent;
@ -353,6 +364,16 @@ tr.__table-separator {
background-color: #00fdf2; background-color: #00fdf2;
color: black; 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 { h1,h2,h3,h4,h5,h6 {
color: #f7da4a; color: #f7da4a;
} }