You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
882 B
60 lines
882 B
1 year ago
|
/*
|
||
|
* DO NOT EDIT THIS FILE.
|
||
|
* See the following change record for more information,
|
||
|
* https://www.drupal.org/node/3084859
|
||
|
* @preserve
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Main Hero.
|
||
|
*/
|
||
|
|
||
|
.hero__content {
|
||
|
grid-column: 1 / 7;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 43.75rem) {
|
||
|
.hero__content {
|
||
|
/* 700px */
|
||
|
grid-column: 3 / 13;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 62.5rem) {
|
||
|
.hero__content {
|
||
|
grid-column: 3 / 11;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.hero__img {
|
||
|
grid-column: 1 / 7;
|
||
|
margin-block-start: var(--sp2);
|
||
|
margin-block-end: var(--sp2);
|
||
|
}
|
||
|
|
||
|
.hero__img img {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 31.25rem) {
|
||
|
.hero__img {
|
||
|
margin-block-start: var(--sp3);
|
||
|
margin-block-end: var(--sp3);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 43.75rem) {
|
||
|
.hero__img {
|
||
|
grid-column: 1 / 15;
|
||
|
margin-block-start: var(--sp4);
|
||
|
margin-block-end: var(--sp4);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 62.5rem) {
|
||
|
.hero__img {
|
||
|
grid-column: 2 / 14;
|
||
|
}
|
||
|
}
|