Add background overlay to improve contrast

And use lowercase-hyphenated syntax for variables/mixins.
This commit is contained in:
2018-07-12 11:26:30 +02:00
parent 1e14cc695e
commit ef0f3ffbfb
6 changed files with 22 additions and 16 deletions
+11 -3
View File
@@ -5,9 +5,17 @@ $green: #97fb68;
$yellow: #fbe468;
$red: #fb6868;
$primaryColor: $blue;
$primary-color: $blue;
#topbar {
background-color: rgba(255,0,255,.2);
$body-text-color: #fff;
@mixin body-background {
background-image: linear-gradient(to bottom, rgba(22, 21, 40, .4), rgba(0, 0, 0, .75)), url('/img/bg.jpg');
background-repeat: none;
background-attachment: fixed;
}
#topbar {
background-color: rgba(255, 0, 255, .2);
}