Skip to content

Commit

Permalink
Merge pull request #4618 from neeru24/patch-10
Browse files Browse the repository at this point in the history
Add Dynamic Hover Effects to Genre Content Cards
  • Loading branch information
sailaja-adapa authored Nov 5, 2024
2 parents e3a0260 + 8b96c76 commit 8b608d8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions playNow.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,17 @@
}
}
/* Genre Section Styling */

.genre-content {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.genre-content:hover {
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


.genre-section {
font-family: "Open Sans", sans-serif;
display: flex;
Expand Down

0 comments on commit 8b608d8

Please sign in to comment.