Files
web/components/Blocks/HotelListing/hotelListing.module.css
2024-10-28 15:54:26 +01:00

50 lines
770 B
CSS

.container {
background-color: var(--Base-Surface-Primary-light-Normal);
border: 1px solid var(--Base-Border-Subtle);
border-radius: var(--Corner-radius-Medium);
overflow: hidden;
}
.image {
width: 100%;
object-fit: cover;
}
.content {
display: flex;
flex-direction: column;
gap: var(--Spacing-x2);
padding: var(--Spacing-x2) var(--Spacing-x3);
}
.intro {
display: flex;
flex-direction: column;
gap: var(--Spacing-x-half);
}
.dividerContainer {
padding: 0 var(--Spacing-x1);
}
.captions {
display: flex;
flex-direction: row;
}
@media screen and (min-width: 768px) {
.container {
display: grid;
grid-template-columns: 1fr 2fr;
}
.image {
height: 100%;
}
.button {
width: 100%;
max-width: 200px;
}
}