61 lines
1.2 KiB
CSS
61 lines
1.2 KiB
CSS
.button {
|
|
margin-left: auto;
|
|
padding: 0 0 0 var(--Spacing-x-half);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.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,
|
|
.listContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.imageContainer {
|
|
min-height: 280px;
|
|
position: relative;
|
|
border-radius: var(--Corner-radius-Medium);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.imageContainer img {
|
|
width: 100%;
|
|
aspect-ratio: 16/9;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.facilityList {
|
|
column-count: 2;
|
|
column-gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
.noIcon {
|
|
margin-left: var(--Spacing-x4);
|
|
}
|
|
|
|
.buttonContainer {
|
|
background-color: var(--Base-Background-Primary-Normal);
|
|
border-top: 1px solid var(--Base-Border-Subtle);
|
|
padding: var(--Spacing-x4) var(--Spacing-x2);
|
|
width: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|