2018-10-24 00:06:39 +02:00
|
|
|
.hero-lockup {
|
|
|
|
padding: 3rem 0;
|
|
|
|
margin: {
|
|
|
|
right: -2rem;
|
|
|
|
left: -2rem;
|
|
|
|
};
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas: 'introduction image';
|
|
|
|
align-items: center;
|
2013-10-13 20:31:48 +02:00
|
|
|
|
2018-10-24 00:06:39 +02:00
|
|
|
.hero-image,
|
|
|
|
.sl-c-introduction {
|
|
|
|
padding: {
|
|
|
|
right: 2rem;
|
|
|
|
left: 2rem;
|
|
|
|
};
|
|
|
|
}
|
2013-10-13 20:31:48 +02:00
|
|
|
|
2018-10-24 00:06:39 +02:00
|
|
|
.hero-image { grid-area: image; }
|
|
|
|
.sl-c-introduction { grid-area: introduction; }
|
2013-10-13 20:31:48 +02:00
|
|
|
|
2018-10-24 00:06:39 +02:00
|
|
|
@media screen and (max-width: 40em) {
|
|
|
|
grid-template: {
|
|
|
|
areas: "introduction"
|
|
|
|
"image";
|
|
|
|
};
|
2013-10-13 20:31:48 +02:00
|
|
|
}
|
|
|
|
}
|