diff --git a/Enhancing events page b/Enhancing events page new file mode 100644 index 0000000..6669993 --- /dev/null +++ b/Enhancing events page @@ -0,0 +1,24 @@ + +.event-card, .event-button { + transition: all 0.3s; +} + + +.event-card:hover { + transform: scale(1.02); + box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); +} + +.event-button { + background-color: #007acc; /* Theme's primary color */ + color: white; + border-radius: 4px; + padding: 8px 16px; + text-align: center; + display: inline-block; +} + +.event-button:hover { + background-color: #005a99; /* Slightly darker shade for hover */ +} +