Skip to content

Commit

Permalink
Create Enhancing events page
Browse files Browse the repository at this point in the history
Assuming events card and event button i have made few changes in css of events
  • Loading branch information
Ctrl-apk authored Oct 29, 2024
1 parent 7178390 commit ae2ad6e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Enhancing events page
Original file line number Diff line number Diff line change
@@ -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 */
}

0 comments on commit ae2ad6e

Please sign in to comment.