style links with color, not underlines

this allows me to link to images (e.g. in figures) without having a
separate override class to remove their underline, which is ugly. on
account of making links red, it was looking like too much red
(especially on the index) with headers also being red, so this makes
headers the default text color.

still not 100% committed to this but I'm trying it out
This commit is contained in:
Brian S. Stephan 2022-04-18 17:55:01 -05:00
parent 1fe6623587
commit 3454de17fc
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 4 additions and 14 deletions

View File

@ -17,18 +17,13 @@ strong {
background: black; background: black;
} }
h1, h2, h3, h4, h5, h6 {
color: #B31D15;
}
a:link, a:visited { a:link, a:visited {
color: #EEE; color: #B31D15;
border-bottom: 1px dotted #EEE;
} }
a:hover, a:active { a:hover, a:active {
color: #B31D15; color: #B31D15;
border-bottom: 1px dotted #B31D15; border-bottom: 1px solid #B31D15;
} }
div.header { div.header {

View File

@ -17,18 +17,13 @@ strong {
background: white; background: white;
} }
h1, h2, h3, h4, h5, h6 {
color: #811610;
}
a:link, a:visited { a:link, a:visited {
color: #111; color: #811610;
border-bottom: 1px dotted #111;
} }
a:hover, a:active { a:hover, a:active {
color: #811610; color: #811610;
border-bottom: 1px dotted #811610; border-bottom: 1px solid #B31D15;
} }
div.header { div.header {