From 656fb79839b89e4e4c3520917757c36e02706bc4 Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Wed, 20 Apr 2016 20:43:09 -0400 Subject: [PATCH] template: Add link colors. --- templates/mark1/css/style.css | 13 +++++++++++++ templates/mark1/template.yaml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/templates/mark1/css/style.css b/templates/mark1/css/style.css index 3488308b..f71ee109 100644 --- a/templates/mark1/css/style.css +++ b/templates/mark1/css/style.css @@ -63,6 +63,19 @@ article.docs .hidden { display: none; } +article.docs a, +article.docs a:visited { + color: rgb(67,149,191); +} + +article.docs a:hover { + color: rgb(100,178,212);; +} + +article.docs a:active { + color: orange; +} + article.docs nav { width: 100%; } diff --git a/templates/mark1/template.yaml b/templates/mark1/template.yaml index f5f7f329..8bd3041a 100644 --- a/templates/mark1/template.yaml +++ b/templates/mark1/template.yaml @@ -9,5 +9,5 @@ Footer: footer.html Redirect: redirect.html Fonts: fonts/opensans-bold-1.10.woff, fonts/opensans-bold-1.10.woff2, fonts/opensans-bolditalic-1.10.woff, fonts/opensans-bolditalic-1.10.woff2, fonts/opensans-italic-1.10.woff, fonts/opensans-italic-1.10.woff2, fonts/opensans-regular-1.10.woff, fonts/opensans-regular-1.10.woff2, fonts/ropasans-italic-1.002.ttf, fonts/ropasans-italic-1.002.woff, fonts/ropasans-italic-1.002.woff2, fonts/ropasans-regular-1.002.ttf, fonts/ropasans-regular-1.002.woff, fonts/ropasans-regular-1.002.woff2 Scripts: js/vendor/jquery/jquery-2.2.3.min.js, js/vendor/featherlight/featherlight-1.4.0.min.js, js/scripts.js?201604200003 -Styles: css/vendor/featherlight/featherlight-1.4.0.min.css, css/style.css?201604200003 +Styles: css/vendor/featherlight/featherlight-1.4.0.min.css, css/style.css?201604200004 ...