domain/web/templates/calendar.css (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | .calendar-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 0.5ch;
}
.day {
min-height: 6rem;
}
.past {
opacity: 0.5;
}
.day h3 {
margin-block: 0 0.5ch;
font-size: 1.1rem;
font-weight: normal;
}
.day.today h3 {
font-weight: bold;
}
.event {
font-size: 0.9rem;
}
.tentative {
opacity: 0.75;
}
.today {
background-color: var(--today-background-color);
}
.calendar footer {
font-size: small;
color: var(--muted-color);
padding: 1ch 0;
}
.calendar footer p {
margin: 0;
}
.only-small-portrait {
display: none;
}
@media only screen and (max-width: 768px) {
.calendar-grid {
display: flex;
flex-direction: column;
}
.past {
display: none;
}
.day {
min-height: revert;
}
}
@media only screen and (max-width: 768px) and (orientation: portrait) and (min-height: 768px) {
.only-small-portrait {
display: revert;
}
}
|