fix hover on visited links & add underline when hovering links (#813)

* fix hover on visited links (move :hover after :visited selector)
* add underline when hovering links
pull/815/head^2
augusto 2 years ago committed by GitHub
parent 6f2a7cd32f
commit 0e6f5fcbd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -37,14 +37,15 @@ a {
margin: .1em .25em ; margin: .1em .25em ;
} }
a:hover {
color: beige ;
}
a:visited { a:visited {
color: darkgoldenrod ; color: darkgoldenrod ;
} }
a:hover {
color: beige ;
text-decoration: underline;
}
h1 { h1 {
border-style: solid ; border-style: solid ;
border-width: 0px 0px 2px 0px ; border-width: 0px 0px 2px 0px ;

Loading…
Cancel
Save