From 4cbdf56fc9fd97a6337bb3ed9fb56e858cdeb478 Mon Sep 17 00:00:00 2001 From: Trumil Nasit <115455383+Trumilnasit@users.noreply.github.com> Date: Mon, 14 Oct 2024 22:30:26 +0530 Subject: [PATCH 1/5] Update styles.css Added some css for new features --- styles.css | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/styles.css b/styles.css index ecf3be2..eb94b44 100644 --- a/styles.css +++ b/styles.css @@ -899,3 +899,56 @@ footer { color: #6b7280; font-size: 0.875rem; } + +body { + transition: background-color 0.5s ease, color 0.5s ease; +} + +body.dark-mode { + background-color: #121212; + color: #ffffff; +} + +.event-form select { + margin: 15px 0; + padding: 12px; + border-radius: 8px; + border: 1px solid #ccc; + font-size: 16px; + background-color: #f9f9f9; + cursor: pointer; + transition: all 0.3s ease; +} + +.event-form select:focus { + border-color: #4CAF50; + box-shadow: 0 0 8px rgba(76, 175, 80, 0.4); +} + +/* Style for the event form category dropdown */ +.event-form select { + margin: 15px 0; + padding: 12px; + border-radius: 8px; + border: 1px solid #ccc; + font-size: 16px; + background-color: #f9f9f9; + cursor: pointer; + transition: all 0.3s ease; + } + + /* Social media share buttons */ + .share-buttons a { + margin: 5px; + padding: 5px 10px; + color: #fff; + background-color: #4CAF50; + border-radius: 4px; + text-decoration: none; + transition: background-color 0.3s ease; + } + + .share-buttons a:hover { + background-color: #45a049; + } + From 1f64da00cbff1d03b9e37130a6cce416cc92a768 Mon Sep 17 00:00:00 2001 From: Trumil Nasit <115455383+Trumilnasit@users.noreply.github.com> Date: Mon, 14 Oct 2024 22:33:21 +0530 Subject: [PATCH 2/5] Update index.html Added some new functionality with features --- index.html | 343 +++++++++++++++++++++++++++++------------------------ 1 file changed, 188 insertions(+), 155 deletions(-) diff --git a/index.html b/index.html index 0662880..da73592 100644 --- a/index.html +++ b/index.html @@ -8,40 +8,26 @@ - - +