style: fix landing page link colors for Chromium browsers
For all those devs shitting on Firefox for no reason: Your daddy Google doesn't get shit right either.master
parent
d31c915b8e
commit
0e364cc446
|
@ -192,9 +192,20 @@ span.quote.non-speech * {
|
||||||
color: #303030;
|
color: #303030;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Normally, the following should be enough:
|
||||||
span.chapter {
|
span.chapter {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
However, Chromium apparently doesn't apply the a:visted color to children of <a>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
span.chapter {
|
||||||
|
color: #1515A0;
|
||||||
|
}
|
||||||
|
a:visited>span.chapter {
|
||||||
|
color: #185113;
|
||||||
|
}
|
||||||
span.chapter::before {
|
span.chapter::before {
|
||||||
content: "\25b9";
|
content: "\25b9";
|
||||||
font-size: 0.75em;
|
font-size: 0.75em;
|
||||||
|
|
Loading…
Reference in New Issue