From 9e1e8b25de194665abcbd374a4cfe4c78b6c013e Mon Sep 17 00:00:00 2001 From: s-ol Date: Thu, 15 Nov 2018 16:53:35 +1100 Subject: make links black --- scss/main.scss | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'scss') diff --git a/scss/main.scss b/scss/main.scss index 16f0dbc..fa9901a 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -6,6 +6,10 @@ body { font-family: sans-serif; } +a { + color: inherit; +} + .canvas_app { position: relative; @@ -54,6 +58,12 @@ h1 .icons { } } +$gray-bright: #eeeeee; +$gray-dark: #303336; +$gray-neutral: #b9bdc1; +$gray-success: #bdddc1; +$gray-fail: #ddbdc1; + @mixin left-border($w: 0.6rem) { border-style: solid; border-width: 0 0 0 $w; @@ -68,7 +78,7 @@ h1 .icons { pre > code.hljs { @include left-border; - border-color: #303336; + border-color: $gray-dark; } pre.dual-code { @@ -93,6 +103,6 @@ pre.dual-code { margin: 0 2rem; padding: 1rem; - background: #eeeeee; - border-color: #b9bdc1; + background: $gray-bright; + border-color: $gray-neutral; } -- cgit v1.2.3