summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2014-11-27 08:13:14 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2014-11-27 08:13:14 +0100
commitbf415cb0631e77b24f69a6f326c3f33f16503e18 (patch)
tree73091f9b4f614bb25932fcc6a50070bc018940ab
parent33b54c972b5746eb4420791d4f50a0c221999aa6 (diff)
downloadmksite-alpine-bf415cb0631e77b24f69a6f326c3f33f16503e18.tar.bz2
mksite-alpine-bf415cb0631e77b24f69a6f326c3f33f16503e18.tar.xz
style: fix visited link colors
-rw-r--r--_static/styles.css12
1 files changed, 5 insertions, 7 deletions
diff --git a/_static/styles.css b/_static/styles.css
index 2a764d8..61153df 100644
--- a/_static/styles.css
+++ b/_static/styles.css
@@ -73,11 +73,14 @@ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#def0f9', end
* #17a #0d597f #19b2ff #062d40 #17a1e5 */
a {
+ color: #0D597F;
text-decoration: none;
}
-a:hover {
- text-decoration: underline;
+a:hover, a:active { text-decoration: underline; }
+
+footer a, footer a:link, footer a:hover, footer a:active, footer a:visited {
+ color: #CDCDCD;
}
header {
@@ -128,11 +131,6 @@ nav a.active {
color: white;
}
-a:link { text-decoration: none; }
-a:visited { text-decoration: none; }
-a:hover { text-decoration: underline; }
-a:active { text-decoration: underline; }
-
article {
padding: 0em 1.5em;
max-width: 54em;