33 lines
513 B
CSS
33 lines
513 B
CSS
.h-card {
|
|
img {
|
|
width: 6rem;
|
|
height: 6rem;
|
|
border-radius: 1rem;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 36rem) {
|
|
.h-card {
|
|
grid-column: media-start / content-end;
|
|
display: grid;
|
|
grid-template-columns: subgrid; /** Subgrid of main column layout */
|
|
grid-template-rows: min-content 1fr;
|
|
grid-template-areas:
|
|
"empty heading"
|
|
"photo text";
|
|
|
|
img {
|
|
grid-area: photo;
|
|
margin-block-start: var(--spacing-block-sm);
|
|
}
|
|
|
|
header {
|
|
grid-area: heading;
|
|
}
|
|
|
|
.h-card__text {
|
|
grid-area: text;
|
|
}
|
|
}
|
|
}
|