33 lines
401 B
CSS
33 lines
401 B
CSS
.layout {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 1.25rem;
|
|
margin: 1.25rem 0;
|
|
}
|
|
|
|
.layout:first-child {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.layout:last-child {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.layout p:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.thumbnail {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
@media screen and (max-width: 650px) {
|
|
.layout {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.thumbnail {
|
|
width: 100%;
|
|
}
|
|
}
|