Event Calendar styling and bugfixes
All checks were successful
publish / publish (push) Successful in 23s

This commit is contained in:
Jannik Menzel 2025-06-08 18:49:30 +02:00
parent 79e88ec9c2
commit 88699813fd
5 changed files with 107 additions and 35 deletions

View file

@ -588,6 +588,62 @@ footer {
text-decoration: underline;
}
/* ========================
Events
======================== */
.fc-daygrid-day-number {
color: var(--color-text) !important;
}
.fc-toolbar-title {
font-weight: 600;
font-size: 1.8rem;
color: var(--color-text) !important;
}
.fc-button {
background-color: var(--color-accent);
border: none;
color: var(--color-text);
padding: 0.4rem 1rem;
border-radius: 4px;
font-weight: 500;
cursor: pointer;
transition: background-color 0.3s ease;
}
.fc-day-today {
background-color: var(--color-accent) !important;
}
.fc-day-today .fc-daygrid-day-number {
color: var(--color-dark) !important;
}
.fc-event {
background-color: var(--color-accent);
border: none;
border-radius: 4px;
color: var(--color-text);
font-size: 0.85rem;
padding: 2px 6px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.fc-event.fc-event-start,
.fc-event.fc-event-end {
border-radius: 4px;
}
.fc-col-header-cell-cushion {
color: var(--color-text) !important;
}
.fc-col-header {
background-color: var(--color-background) !important;
}
/* ========================
404 Error Page
======================== */

View file

@ -24,6 +24,15 @@
box-shadow: 0 4px 0 0 var(--color-text);
}
#markdown.title-center {
text-align: center;
}
#markdown.title-center h1 {
display: inline-block;
text-align: center;
}
.dark #markdown h1 {
color: var(--color-text-dark);
box-shadow: 0 4px 0 0 var(--color-off);