From cd35ea7e364ef761fe0633bfd9a4f11d62a57e8d Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 11 Nov 2017 22:55:29 +0000 Subject: [PATCH] Change a-tag colours --- static/src/scss/style.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/src/scss/style.scss b/static/src/scss/style.scss index 64d225d..535c8f8 100644 --- a/static/src/scss/style.scss +++ b/static/src/scss/style.scss @@ -7,18 +7,18 @@ $fa-font-path: "../fonts"; @import "node_modules/bootstrap/scss/bootstrap"; @import "node_modules/plyr/src/scss/plyr"; -$primary: #E89980; -$orange: #FF7F00; +$primary: #E85537; html, body { height: 100%; } a { + transition: color 0.5s; color: $primary; &:hover { - color: $orange; + color: $black; } }