mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 18:07:35 +01:00
29 lines
465 B
SCSS
29 lines
465 B
SCSS
.hero-image img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
@include breakpoint($tablet-large) {
|
|
.hero-lockup {
|
|
@extend %table-layout-tablet-large;
|
|
margin: {
|
|
top: -4em;
|
|
bottom: -4em;
|
|
}
|
|
|
|
.hero-image {
|
|
@extend %table-layout-cell-tablet-large;
|
|
padding: {
|
|
right: 2em;
|
|
bottom: 0;
|
|
}
|
|
}
|
|
|
|
.introduction {
|
|
@extend %table-layout-cell-tablet-large;
|
|
padding: 0;
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|