47 lines
757 B
SCSS
47 lines
757 B
SCSS
//
|
|
// Hero
|
|
// --------------------------------------------------
|
|
|
|
.hero {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100vh;
|
|
min-height: 500px;
|
|
|
|
&.hero-sm {
|
|
min-height: 300px;
|
|
}
|
|
|
|
&.hero-lg {
|
|
min-height: 800px;
|
|
}
|
|
|
|
&-inner {
|
|
flex: 0 0 auto;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.hero-static {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.hero-promo {
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
&::before {
|
|
position: absolute;
|
|
right: -500px;
|
|
bottom: -500px;
|
|
left: 0;
|
|
height: 640px;
|
|
content: '';
|
|
background: rgba(255,255,255,.2);
|
|
transform: skewY(-20deg);
|
|
z-index: 0;
|
|
}
|
|
} |