ef0f3ffbfb
And use lowercase-hyphenated syntax for variables/mixins.
22 lines
403 B
SCSS
22 lines
403 B
SCSS
$blue: #68d7fb;
|
|
$purple: #8f68fb;
|
|
$pink: #e068fb;
|
|
$green: #97fb68;
|
|
$yellow: #fbe468;
|
|
$red: #fb6868;
|
|
|
|
$primary-color: $blue;
|
|
|
|
$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);
|
|
}
|
|
|