initial template

This commit is contained in:
Arjun Patel
2019-01-24 23:42:13 -08:00
parent 3d601ba57c
commit 0fdcbd4f26
28 changed files with 4044 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
.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;
}
}