diff --git a/index.html b/index.html index 274ed2c..2ad3738 100644 --- a/index.html +++ b/index.html @@ -79,6 +79,23 @@ box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* More prominent shadow for active */ } + /* Wiggle animation for GitHub link */ + @keyframes wiggle { + 0%, 100% { transform: rotate(0deg); } + 25% { transform: rotate(2deg); } + 50% { transform: rotate(-2deg); } + 75% { transform: rotate(2deg); } + } + + .github-link { + font-size: 0.875rem; /* Smaller font size */ + color: #9CA3AF; /* Less contrasting color */ + } + + .github-link:hover { + animation: wiggle 0.5s ease-in-out infinite; /* Increased duration for more noticeable wiggle */ + } + /* Fade animation for language change */ .fade-out { opacity: 0; @@ -246,6 +263,7 @@