Add files via upload

This commit is contained in:
jasonMPM
2026-03-05 15:39:21 -06:00
committed by GitHub
parent 3333dc59d8
commit edb0e3a539
11 changed files with 592 additions and 104 deletions

View File

@@ -8,12 +8,17 @@ body {
background-color: #111111;
color: #F5F5F5;
font-family: 'Inter', system-ui, sans-serif;
margin: 0;
padding: 0;
overflow: hidden;
margin: 0; padding: 0; overflow: hidden;
}
/* ── FullCalendar dark theme overrides ── */
/* ── Animations ── */
@keyframes slide-up {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-slide-up { animation: slide-up 0.2s ease-out forwards; }
/* ── FullCalendar dark theme ── */
.fc {
--fc-border-color: #2E2E2E;
--fc-button-bg-color: #1A1A1A;
@@ -27,7 +32,6 @@ body {
--fc-neutral-bg-color: #1A1A1A;
--fc-event-border-color: transparent;
}
.fc-theme-standard td,
.fc-theme-standard th,
.fc-theme-standard .fc-scrollgrid { border-color: #2E2E2E !important; }
@@ -47,27 +51,30 @@ body {
}
.fc-daygrid-event {
border-radius: 4px !important;
font-size: 0.72rem !important;
font-weight: 600 !important;
cursor: pointer !important;
padding: 1px 5px !important;
border-radius: 4px !important; font-size: 0.72rem !important;
font-weight: 600 !important; cursor: pointer !important; padding: 1px 5px !important;
}
.fc-event-title { color: #111111 !important; font-weight: 700 !important; }
.fc-day-today .fc-daygrid-day-number {
background-color: #C9A84C !important;
color: #111111 !important;
border-radius: 50% !important;
width: 26px !important;
height: 26px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
background-color: #C9A84C !important; color: #111111 !important;
border-radius: 50% !important; width: 26px !important; height: 26px !important;
display: flex !important; align-items: center !important; justify-content: center !important;
}
/* ── Scrollbar ── */
/* Week number column */
.fc-timegrid-axis.fc-scrollgrid-shrink,
.fc-daygrid-week-number {
color: #C9A84C !important;
font-size: 0.65rem !important;
opacity: 0.6;
text-decoration: none !important;
}
/* Selection highlight */
.fc-highlight { background: rgba(201, 168, 76, 0.12) !important; }
/* Scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #1A1A1A; }
::-webkit-scrollbar-thumb { background: #2E2E2E; border-radius: 3px; }