nouveau-theatre-de-besancon/assets/css/src/calendar-strip.css

63 lines
1.1 KiB
CSS
Raw Normal View History

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 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;
2024-07-26 10:33:31 +02:00
overflow: hidden;
2024-07-24 18:19:25 +02:00
left: 0;
top: 100%;
width: 100%;
2024-07-26 10:33:31 +02:00
height: 0;
padding: 0 var(--margin-body);
background-color: #fff;
2024-07-24 18:19:25 +02:00
z-index: -1;
2024-07-26 10:33:31 +02:00
transition: height .2s ease-in-out;
border-bottom: var(--border);
}
.calendar-strip__date.open {
height: 10rem;
}
.calendar-strip__sessions {
padding: 2rem 0;
}
.calendar-strip__session {
display: flex;
}
.calendar-strip__session > div {
width: 100%;
2024-07-24 18:19:25 +02:00
}