63 lines
1.1 KiB
CSS
63 lines
1.1 KiB
CSS
.wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
position: relative;
|
|
margin-bottom: calc(
|
|
var(--Spacing-x4) * 2 + 80px
|
|
); /* Creates space between the wrapper and buttonContainer */
|
|
}
|
|
|
|
.mainContent {
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.mainContent,
|
|
.listContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.imageContainer {
|
|
position: relative;
|
|
border-radius: var(--Corner-radius-md);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.imageContainer img {
|
|
width: 100%;
|
|
aspect-ratio: 16/9;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.facilityList {
|
|
column-count: 2;
|
|
column-gap: var(--Spacing-x2);
|
|
color: var(--Text-Secondary);
|
|
}
|
|
.facilityList li > span:nth-child(2) {
|
|
overflow: hidden;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.facilityList li {
|
|
display: flex !important; /* Overrides the display none from grids.stackable on Hotel Page */
|
|
gap: var(--Spacing-x1);
|
|
margin-bottom: var(--Spacing-x-half);
|
|
}
|
|
|
|
.bedOptions {
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.bedOptions li {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
margin-bottom: var(--Spacing-x-half);
|
|
}
|
|
|
|
.facilityList li svg {
|
|
flex-shrink: 0;
|
|
}
|