111 lines
2.0 KiB
CSS
111 lines
2.0 KiB
CSS
.card {
|
|
font-size: 14px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #fff;
|
|
border-radius: var(--Corner-radius-Large);
|
|
border: 1px solid var(--Base-Border-Subtle);
|
|
position: relative;
|
|
height: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.card.noAvailability {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.card.noAvailability:before {
|
|
background-color: rgba(0, 0, 0, 40%);
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 2;
|
|
}
|
|
|
|
.specification {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: var(--Spacing-x1);
|
|
padding: 0 var(--Spacing-x1) 0 var(--Spacing-x-one-and-half);
|
|
height: 40px;
|
|
}
|
|
|
|
.specification .guests {
|
|
border-right: 1px solid var(--Base-Border-Subtle);
|
|
padding-right: var(--Spacing-x1);
|
|
}
|
|
|
|
.toggleSidePeek {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.container {
|
|
padding: var(--Spacing-x1) var(--Spacing-x2) var(--Spacing-x2);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x-one-and-half);
|
|
}
|
|
|
|
.roomDetails {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x1);
|
|
padding: var(--Spacing-x1) var(--Spacing-x2) var(--Spacing-x2);
|
|
}
|
|
|
|
.name {
|
|
display: inline-block;
|
|
}
|
|
|
|
.card img {
|
|
max-width: 100%;
|
|
aspect-ratio: 16/9;
|
|
object-fit: cover;
|
|
border-radius: var(--Corner-radius-Medium) var(--Corner-radius-Medium) 0 0;
|
|
}
|
|
|
|
.flexibilityOptions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.chipContainer {
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: 12px;
|
|
left: 12px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
.chip {
|
|
background-color: var(--Main-Grey-White);
|
|
padding: var(--Spacing-x-half) var(--Spacing-x1);
|
|
border-radius: var(--Corner-radius-Small);
|
|
}
|
|
|
|
.imageContainer {
|
|
min-height: 190px;
|
|
position: relative;
|
|
}
|
|
|
|
.noRoomsContainer {
|
|
padding: var(--Spacing-x2);
|
|
background-color: var(--Base-Surface-Secondary-light-Normal);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.noRooms {
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
}
|