52 lines
942 B
CSS
52 lines
942 B
CSS
.stay {
|
|
background-color: var(--some-grey-color, #c2bdba);
|
|
border-radius: 0.8rem;
|
|
display: grid;
|
|
flex-grow: 1;
|
|
flex-shrink: 0;
|
|
flex-basis: 32rem;
|
|
height: 34rem;
|
|
}
|
|
|
|
.footer {
|
|
background-color: var(--some-grey-color, #ebe8e6);
|
|
border-bottom: 0.1rem solid var(--some-grey-color, #d9d9d9);
|
|
border-left: 0.1rem solid var(--some-grey-color, #d9d9d9);
|
|
border-right: 0.1rem solid var(--some-grey-color, #d9d9d9);
|
|
border-radius: 0 0 0.8rem 0.8rem;
|
|
height: 12rem;
|
|
padding: 4rem 2.5rem;
|
|
overflow: hidden;
|
|
margin-top: auto;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.hotel {
|
|
overflow: hidden;
|
|
text-wrap: nowrap;
|
|
text-overflow: ellipsis;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
gap: 2rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
.date,
|
|
.guests {
|
|
align-items: center;
|
|
display: flex;
|
|
gap: 0.6rem;
|
|
font-size: small;
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.footer {
|
|
padding: 2rem 2.5rem;
|
|
}
|
|
}
|