Files
kredits-web/app/styles/_layout.scss
T
2017-02-04 20:13:09 +08:00

32 lines
530 B
SCSS

section {
@include outer-container;
margin-bottom: 8rem;
&:first-of-type {
margin-top: 6rem;
}
@include media($mobile) {
margin-bottom: 5rem;
&:first-of-type {
margin-top: 2rem;
}
}
header {
@include span-columns(12);
padding-bottom: 3rem;
text-align: center;
// background-color: purple;
@include media($mobile) {
@include span-columns(10);
@include shift(1);
padding-bottom: 2rem;
}
div.content {
@include span-columns(12);
}
}
}