2018-10-24 00:06:39 +02:00
|
|
|
.hero-lockup {
|
2018-10-27 06:35:30 +02:00
|
|
|
padding: sl-px-to-rem(48px) 0;
|
2018-10-24 00:06:39 +02:00
|
|
|
margin: {
|
2018-10-27 06:35:30 +02:00
|
|
|
right: -sl-px-to-rem(32px);
|
|
|
|
left: -sl-px-to-rem(32px);
|
2018-10-24 00:06:39 +02:00
|
|
|
};
|
|
|
|
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: {
|
2018-10-27 06:35:30 +02:00
|
|
|
right: sl-px-to-rem(32px);
|
|
|
|
left: sl-px-to-rem(32px);
|
2018-10-24 00:06:39 +02:00
|
|
|
};
|
|
|
|
}
|
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-27 06:35:30 +02:00
|
|
|
@media screen and (max-width: #{sl-px-to-em(640px)}) {
|
2018-10-24 00:06:39 +02:00
|
|
|
grid-template: {
|
|
|
|
areas: "introduction"
|
|
|
|
"image";
|
|
|
|
};
|
2013-10-13 20:31:48 +02:00
|
|
|
}
|
|
|
|
}
|