go back to red headers and links as normal-colored text

the new way to do the links without adding links to images is probably
dumb and/or missing some stuff, but it works and does what I want, and I
think I like the old look of the colors better, so time to try it and
see if it sticks still
This commit is contained in:
Brian S. Stephan 2022-05-14 23:54:21 -05:00
parent 781ffd17b9
commit ebf0bcde84
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 15 additions and 5 deletions

View File

@ -9,11 +9,16 @@ body {
background: black; background: black;
} }
a:link, a:visited { h1, h2, h3, h4, h5, h6 {
color: #B31D15; color: #B31D15;
} }
a:hover, a:active { p a, ul a, ol a {
color: #DDD;
border-bottom: 1px solid #DDD;
}
p a:hover, ul a:hover, ol a:hover {
color: #B31D15; color: #B31D15;
border-bottom: 1px solid #B31D15; border-bottom: 1px solid #B31D15;
} }

View File

@ -9,13 +9,18 @@ body {
background: white; background: white;
} }
a:link, a:visited { h1, h2, h3, h4, h5, h6 {
color: #811610; color: #811610;
} }
a:hover, a:active { p a, ul a, ol a {
color: #222;
border-bottom: 1px solid #222;
}
p a:hover, ul a:hover, ol a:hover {
color: #811610; color: #811610;
border-bottom: 1px solid #B31D15; border-bottom: 1px solid #811610;
} }
div.header { div.header {