2024-07-24 09:43:31 +02:00
|
|
|
.calendar-strip {
|
2024-07-31 08:50:49 +02:00
|
|
|
--padding-vertical: calc(var(--space-m) / 2);
|
2024-07-24 18:19:25 +02:00
|
|
|
position: relative;
|
2024-07-24 09:43:31 +02:00
|
|
|
background-color: var(--color-yellow);
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2024-09-19 16:12:42 +02:00
|
|
|
z-index: 6;
|
2024-07-24 09:43:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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
|
|
|
}
|
|
|
|
|
|
2024-09-12 14:16:14 +02:00
|
|
|
.calendar-strip__days,
|
|
|
|
|
.calendar-strip__days .week > ul {
|
2024-07-24 09:43:31 +02:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-13 16:00:15 +02:00
|
|
|
.calendar-strip__change-week {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-12 14:16:14 +02:00
|
|
|
.calendar-strip__days .week,
|
|
|
|
|
.calendar-strip__days .week > ul {
|
|
|
|
|
display: contents;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-24 18:19:25 +02:00
|
|
|
.calendar-strip__day {
|
2024-08-28 19:11:58 +02:00
|
|
|
font-size: var(--font-size-s);
|
2024-07-24 18:19:25 +02:00
|
|
|
transition: opacity 0.2s ease-in-out;
|
2024-07-24 18:01:01 +02:00
|
|
|
}
|
|
|
|
|
|
2024-08-28 19:11:58 +02:00
|
|
|
.calendar-strip__day button {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.calendar-strip__day button.today {
|
2024-09-13 15:29:02 +02:00
|
|
|
color: var(--color-season);
|
2024-08-28 19:11:58 +02:00
|
|
|
opacity: 1 !important;
|
|
|
|
|
}
|
|
|
|
|
.calendar-strip__day button span {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.calendar-strip__day span:nth-child(1) {
|
|
|
|
|
margin-bottom: 0.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-12 13:05:44 +02:00
|
|
|
.calendar-strip__day.active span:nth-child(3) {
|
2024-07-29 17:42:30 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
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-31 09:20:47 +02:00
|
|
|
box-sizing: border-box;
|
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
|
|
|
background-color: #fff;
|
2024-07-30 16:31:55 +02:00
|
|
|
z-index: 0;
|
2024-07-26 10:33:31 +02:00
|
|
|
border-bottom: var(--border);
|
2024-09-16 15:04:09 +02:00
|
|
|
box-sizing: border-box;
|
2024-09-13 15:29:02 +02:00
|
|
|
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-rows: 0fr;
|
2024-09-16 15:04:09 +02:00
|
|
|
/* transition: all 0.5s ease-in-out; */
|
2024-09-13 15:29:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-strip__date > * {
|
|
|
|
|
overflow: hidden;
|
2024-07-26 10:33:31 +02:00
|
|
|
}
|
2024-09-13 15:29:02 +02:00
|
|
|
|
2024-07-26 10:33:31 +02:00
|
|
|
.calendar-strip__date.open {
|
2024-09-13 15:29:02 +02:00
|
|
|
grid-template-rows: 1fr;
|
2024-09-16 15:04:09 +02:00
|
|
|
border-top: var(--border);
|
2024-07-26 10:33:31 +02:00
|
|
|
}
|
2024-09-10 15:23:24 +02:00
|
|
|
|
2024-09-12 13:05:44 +02:00
|
|
|
.calendar-strip .session {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: grid;
|
2024-09-18 18:37:07 +02:00
|
|
|
grid-template-columns: 0.7fr 1.4fr 0.8fr 1.2fr 1.6fr;
|
|
|
|
|
column-gap: 2vw;
|
2024-09-12 13:05:44 +02:00
|
|
|
padding: var(--padding-vertical) var(--space-m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-strip .session__event-link {
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-18 18:37:07 +02:00
|
|
|
.calendar-strip .session__info--duration p {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-strip .session__info--book .ticket-link {
|
|
|
|
|
width: fit-content;
|
|
|
|
|
}
|
|
|
|
|
.calendar-strip .session__info--book {
|
|
|
|
|
text-align: right;
|
|
|
|
|
text-align: -moz-right;
|
|
|
|
|
text-align: -webkit-right;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-21 15:57:20 +02:00
|
|
|
@media screen and (max-width: 1085px) {
|
2024-09-10 15:23:24 +02:00
|
|
|
.calendar-strip {
|
2024-09-16 18:30:20 +02:00
|
|
|
--padding-vertical: 1rem;
|
2024-09-10 15:23:24 +02:00
|
|
|
border-top: var(--border);
|
|
|
|
|
}
|
2024-09-11 14:36:08 +02:00
|
|
|
|
|
|
|
|
.calendar-strip__selector {
|
2024-09-13 16:09:16 +02:00
|
|
|
width: 6.8rem;
|
2024-09-13 16:00:15 +02:00
|
|
|
}
|
|
|
|
|
.calendar-strip__selector span {
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-strip__change-week {
|
2024-09-13 16:09:16 +02:00
|
|
|
font-size: 1.3rem;
|
2024-09-13 16:00:15 +02:00
|
|
|
display: block;
|
2024-09-11 14:36:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-strip__calendar-btn {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-strip .prev-month,
|
|
|
|
|
.calendar-strip .next-month {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2024-09-12 14:16:14 +02:00
|
|
|
|
|
|
|
|
.calendar-strip__days .week,
|
|
|
|
|
.calendar-strip__days .week > ul {
|
|
|
|
|
display: inherit;
|
|
|
|
|
}
|
|
|
|
|
.calendar-strip__days .week:not(.current) {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-strip__days .week,
|
|
|
|
|
.calendar-strip__days .week > ul {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2024-09-16 18:30:20 +02:00
|
|
|
|
|
|
|
|
.calendar-strip .session {
|
|
|
|
|
grid-template-columns: 1.2fr 2fr 0.4fr;
|
|
|
|
|
column-gap: 3vw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.calendar-strip .session .ticket-link > figure {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
.calendar-strip .session .ticket-link svg {
|
|
|
|
|
width: 2rem;
|
|
|
|
|
}
|
|
|
|
|
.session__info--book-sold-out,
|
|
|
|
|
.session__info--book-free {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2024-09-10 15:23:24 +02:00
|
|
|
}
|