47 lines
738 B
SCSS
47 lines
738 B
SCSS
.hero {
|
|
position: relative;
|
|
padding-top: 40px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero-paragraph {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.hero-media {
|
|
position: relative;
|
|
height: 200px;
|
|
margin-top: 40px;
|
|
background: color(bg, 1);
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
@include shadow;
|
|
mix-blend-mode: multiply;
|
|
}
|
|
}
|
|
|
|
@include media( '>medium' ) {
|
|
|
|
.hero {
|
|
padding-top: 80px;
|
|
}
|
|
|
|
.hero-paragraph {
|
|
margin-bottom: 40px;
|
|
padding-left: 72px;
|
|
padding-right: 72px;
|
|
}
|
|
|
|
.hero-media {
|
|
margin-top: 64px;
|
|
height: 400px;
|
|
}
|
|
}
|