Add styles for visited links #129

Better styles for focused links
This commit is contained in:
Paul Radzkov
2017-07-20 15:14:34 +03:00
parent 54ae99883d
commit 57e560fd9e

View File

@@ -41,12 +41,23 @@ body {
-webkit-text-size-adjust: none;
}
a {
color: #808080;
color: #000;
text-decoration: none;
}
a:hover, a:focus {
color: #e51837;
}
a:focus {
outline: none;
background-color: rgba(229,24,55,.1);
box-shadow: 0 0 0 4px rgba(229,24,55,.1);
}
a[href^="http"]:visited {
color: #808080;
}
a[href^="http"]:visited:hover, a[href^="http"]:visited:focus {
color: #e51837;
}
p {
margin: 0 0 1em;
}
@@ -141,8 +152,9 @@ footer[role=contentinfo] > div {
footer[role=contentinfo] p {
margin: 0;
}
footer[role=contentinfo] .nav li a {
footer[role=contentinfo] .nav a {
display: block;
color: #808080;
border-bottom: 1px solid #808080;
padding: 1em;
margin: 0 -1em;