47 lines
1.0 KiB
SCSS
47 lines
1.0 KiB
SCSS
$full-width-banner-img-height: 260px !default;
|
|
$full-width-banner-img-width: 1140px !default;
|
|
$full-width-banner-margin: 20px;
|
|
|
|
.full-width-banner {
|
|
position: relative;
|
|
|
|
.banner-background-wrapper {
|
|
height: $full-width-banner-img-height;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
background: $black;
|
|
|
|
&:before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background: $black;
|
|
opacity: 0.65;
|
|
|
|
@media(min-width: $bp-screen-md) {
|
|
opacity: 0.4;
|
|
}
|
|
}
|
|
}
|
|
|
|
.banner-background-image {
|
|
height: $full-width-banner-img-height;
|
|
|
|
@media(min-width: $full-width-banner-img-width) {
|
|
height: auto;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.banner-content {
|
|
position: absolute;
|
|
top: 0;
|
|
left: $full-width-banner-margin;
|
|
right: $full-width-banner-margin;
|
|
}
|
|
}
|