From ad8c64097de6fe51240557debc7367425175eebe Mon Sep 17 00:00:00 2001 From: sahithinandikula Date: Mon, 14 Oct 2024 18:50:04 +0530 Subject: [PATCH] Adding hover effects to the audio book cards --- audiobook.html | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/audiobook.html b/audiobook.html index cfe1cfe5f..ba8137adb 100644 --- a/audiobook.html +++ b/audiobook.html @@ -285,10 +285,11 @@ padding: 10px; cursor: pointer; margin-bottom: 10px; - transition: background-color 0.3s; + transition: background-color 0.3s ease, transform 0.3s ease; } .play-pause-btn:hover { background-color: #c04848; /* Darker shade on hover */ + transform: scale(1.1); } .audio-slider { width: 90%; @@ -305,6 +306,37 @@ transform: scale(1.1); /* Zoom effect when playing */ } + +.spotlight-card:hover { + transform: translateY(-20px); /* Hover lift effect */ + box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); +} + +.spotlight-card .content { + transition: transform 0.3s ease; +} + +.spotlight-card:hover .content { + transform: translateY(20px); /* Ensure content moves up within the card */ +} + +.spotlight-card .imgBx img { + border-radius: 15px 15px 0 0; + width: 100%; + height: 250px; + object-fit: cover; + transition: opacity 0.3s ease; +} + +.spotlight-card:hover .imgBx img { + opacity: 0.9; +} + +.spotlight-card:hover h3, +.spotlight-card:hover p { + color: #ff6347; +} + @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"); body { line-height: 1.5;