atst/styles/sections/_home.scss
2019-01-14 16:00:17 -05:00

71 lines
1.1 KiB
SCSS

.home-layout {
display: block;
background-color: $color-white;
.home-container {
max-width: 90rem;
margin-left: auto;
margin-right: auto;
margin-bottom: 8rem;
padding-right: $gap * 4;
padding-left: $gap * 4;
@include media($medium-screen) {
display: flex;
}
h1 {
font-weight: 200;
}
h2, h3, h4 {
color: $color-primary;
}
.home-container__logo {
margin: $gap * 2;
img {
width: 20rem;
@include media($medium-screen) {
width: 25rem;
}
}
}
.home-container__body {
padding-left: $gap * 2;
}
.home-container__list {
ol {
list-style: none;
counter-reset: home-counter;
padding-left: 0;
li {
counter-increment: home-counter;
position: relative;
&::before {
content: counter(home-counter) ". ";
color: $color-primary;
font-weight: bold;
position: absolute;
left: -2rem;
}
}
}
}
}
}