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:
parent
1fe6623587
commit
3454de17fc
|
@ -17,18 +17,13 @@ strong {
|
|||
background: black;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
color: #B31D15;
|
||||
}
|
||||
|
||||
a:link, a:visited {
|
||||
color: #EEE;
|
||||
border-bottom: 1px dotted #EEE;
|
||||
color: #B31D15;
|
||||
}
|
||||
|
||||
a:hover, a:active {
|
||||
color: #B31D15;
|
||||
border-bottom: 1px dotted #B31D15;
|
||||
border-bottom: 1px solid #B31D15;
|
||||
}
|
||||
|
||||
div.header {
|
||||
|
|
|
@ -17,18 +17,13 @@ strong {
|
|||
background: white;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
color: #811610;
|
||||
}
|
||||
|
||||
a:link, a:visited {
|
||||
color: #111;
|
||||
border-bottom: 1px dotted #111;
|
||||
color: #811610;
|
||||
}
|
||||
|
||||
a:hover, a:active {
|
||||
color: #811610;
|
||||
border-bottom: 1px dotted #811610;
|
||||
border-bottom: 1px solid #B31D15;
|
||||
}
|
||||
|
||||
div.header {
|
||||
|
|
Loading…
Reference in New Issue