1
Fork 0

Change a-tag colours

This commit is contained in:
Jake Howard 2017-11-11 22:55:29 +00:00
parent 6669fa16c4
commit cd35ea7e36
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -7,18 +7,18 @@ $fa-font-path: "../fonts";
@import "node_modules/bootstrap/scss/bootstrap"; @import "node_modules/bootstrap/scss/bootstrap";
@import "node_modules/plyr/src/scss/plyr"; @import "node_modules/plyr/src/scss/plyr";
$primary: #E89980; $primary: #E85537;
$orange: #FF7F00;
html, body { html, body {
height: 100%; height: 100%;
} }
a { a {
transition: color 0.5s;
color: $primary; color: $primary;
&:hover { &:hover {
color: $orange; color: $black;
} }
} }