From e51ebc667607312a7435d87d1d35667ae9fd9679 Mon Sep 17 00:00:00 2001 From: RohanTabhane Date: Fri, 5 Jun 2026 07:22:08 +0000 Subject: [PATCH] changes --- src/styles.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/styles.css b/src/styles.css index 999a174..abe762c 100644 --- a/src/styles.css +++ b/src/styles.css @@ -119,7 +119,39 @@ a:hover { text-align: center; } +@keyframes socialIconBounce { + 0% { + transform: translateY(0) scale(1); + filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0)); + } + 50% { + transform: translateY(-10px) scale(1.1); + filter: drop-shadow(0 8px 15px rgba(255, 255, 255, 0.5)); + } + 100% { + transform: translateY(0) scale(1); + filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0)); + } +} + +@keyframes socialIconGlow { + 0%, 100% { + filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.6)); + } + 50% { + filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1)) drop-shadow(0 0 20px rgba(210, 241, 228, 0.8)); + } +} + img.socialIcon { height: 30px; width: 30px; + transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease; + cursor: pointer; + animation: socialIconGlow 3s ease-in-out infinite; +} + +img.socialIcon:hover { + animation: socialIconBounce 0.6s ease-in-out forwards, socialIconGlow 0.6s ease-in-out; + transform: scale(1.2) rotate(5deg); }