2024-07-24 09:43:31 +02:00
|
|
|
.calendar-strip {
|
2024-07-24 18:19:25 +02:00
|
|
|
position: relative;
|
2024-07-24 09:43:31 +02:00
|
|
|
background-color: var(--color-yellow);
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 2rem var(--margin-body);
|
|
|
|
|
border-top: var(--border);
|
|
|
|
|
border-bottom: var(--border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-strip__selector {
|
|
|
|
|
flex-shrink: 0;
|
2024-07-24 15:56:28 +02:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 10rem;
|
2024-07-24 09:43:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-strip__days {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-24 18:19:25 +02:00
|
|
|
.calendar-strip__day {
|
|
|
|
|
transition: opacity 0.2s ease-in-out;
|
2024-07-24 18:01:01 +02:00
|
|
|
}
|
|
|
|
|
|
2024-07-24 09:43:31 +02:00
|
|
|
.calendar-strip__calendar-btn {
|
|
|
|
|
border: var(--border);
|
|
|
|
|
padding: 0.2rem 0.5rem;
|
|
|
|
|
}
|
2024-07-24 18:19:25 +02:00
|
|
|
|
|
|
|
|
.calendar-strip__date {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 10rem;
|
|
|
|
|
background-color: var(--color-yellow);
|
|
|
|
|
z-index: -1;
|
|
|
|
|
}
|