Add background overlay to improve contrast
And use lowercase-hyphenated syntax for variables/mixins.
This commit is contained in:
+11
-3
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user