Add files via upload

This commit is contained in:
jasonMPM
2026-03-05 12:13:22 -06:00
committed by GitHub
parent bfa3887e61
commit 20e71ee7f9
40 changed files with 1352 additions and 368 deletions

View File

@@ -0,0 +1,74 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
* { box-sizing: border-box; }
body {
background-color: #111111;
color: #F5F5F5;
font-family: 'Inter', system-ui, sans-serif;
margin: 0;
padding: 0;
overflow: hidden;
}
/* ── FullCalendar dark theme overrides ── */
.fc {
--fc-border-color: #2E2E2E;
--fc-button-bg-color: #1A1A1A;
--fc-button-border-color: #2E2E2E;
--fc-button-hover-bg-color: #242424;
--fc-button-hover-border-color: #C9A84C;
--fc-button-active-bg-color: #C9A84C;
--fc-button-active-border-color: #C9A84C;
--fc-today-bg-color: rgba(201, 168, 76, 0.07);
--fc-page-bg-color: #111111;
--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; }
.fc-col-header-cell-cushion,
.fc-daygrid-day-number { color: #F5F5F5 !important; text-decoration: none !important; }
.fc-toolbar-title { color: #C9A84C !important; font-weight: 600 !important; }
.fc-button { font-size: 0.8rem !important; padding: 0.3rem 0.75rem !important; font-weight: 500 !important; color: #F5F5F5 !important; }
.fc-button-primary:not(:disabled):active,
.fc-button-primary:not(:disabled).fc-button-active {
background-color: #C9A84C !important;
border-color: #C9A84C !important;
color: #111111 !important;
}
.fc-daygrid-event {
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;
}
/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #1A1A1A; }
::-webkit-scrollbar-thumb { background: #2E2E2E; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #C9A84C; }