From ebf5f1f49ad95990fef35570983d76d651eb60f5 Mon Sep 17 00:00:00 2001 From: 7mwang Date: Thu, 27 Feb 2025 09:28:38 -0800 Subject: [PATCH] finished --- .../calendar/2024-12-16-calendar.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/_posts/student_toolkit/ProductivityFrontend/calendar/2024-12-16-calendar.md b/_posts/student_toolkit/ProductivityFrontend/calendar/2024-12-16-calendar.md index 76172dcbd..815e24187 100644 --- a/_posts/student_toolkit/ProductivityFrontend/calendar/2024-12-16-calendar.md +++ b/_posts/student_toolkit/ProductivityFrontend/calendar/2024-12-16-calendar.md @@ -79,10 +79,10 @@ show_reading_time: false text-align: center; padding: 20px 0; font-size: 2.5em; - color: #6A1B9A; + color: #3c9ce2; margin: 0; - background-color: #FFFFFF; - border-bottom: 3px solid #BA68C8; + background-color: #333; + border-bottom: 3px solid #3c9ce2; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); width: 100%; } @@ -108,11 +108,11 @@ show_reading_time: false padding-left: 0; } .reminders li { - background-color: #F0E1F1; + background-color: #333; margin: 10px 0; /* Keeps vertical spacing */ padding: 12px; border-radius: 8px; - color: #6A1B9A; + color: #3c9ce2; text-align: center; width: fit-content; /* Keeps size based on content */ } @@ -230,10 +230,11 @@ show_reading_time: false }); } // Display combined events on the calendar + initializeRemindersSidebar(events) displayCalendar(events); }); } - function displayCalendar(events) { +function displayCalendar(events) { const calendarEl = document.getElementById('calendar'); calendar = new FullCalendar.Calendar(calendarEl, { initialView: 'dayGridMonth',