30 lines
835 B
SCSS
30 lines
835 B
SCSS
/*aktiiva_iteration1*/
|
|
|
|
$general-color: #000;
|
|
$additional-color: #d42127;
|
|
$footer-background-color: #e5e5e5;
|
|
$footer-background-color-condo: #333333;
|
|
|
|
$poweredby-background-color: $general-color;
|
|
$poweredby-background-color-condo: $footer-background-color;
|
|
|
|
/*BACKGROUND*/
|
|
body.condo .bg { background: url("./images/bg_example.jpg") no-repeat!important; }
|
|
|
|
@media (max-width:767px) {
|
|
body.condo.withBackground .branding {
|
|
background: url("./images/bg_example-half.jpg") no-repeat!important;
|
|
}
|
|
}
|
|
@media (min-width:768px) {
|
|
body.condo.withBackground .branding {
|
|
background: url("./images/bg_example.jpg") no-repeat!important;
|
|
}
|
|
}
|
|
@media (min-width:1178px) {
|
|
body.condo.withBackground .branding {
|
|
background: url("./images/bg_example-2x.jpg") no-repeat!important;
|
|
}
|
|
}
|
|
|
|
@import "../../main"; |