Saved your changes before starting work

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: f8b8f0ea-e52e-4118-9b6b-e44184e17203
Replit-Commit-Checkpoint-Type: full_checkpoint
This commit is contained in:
kimjaehyeon0101
2025-10-01 05:47:57 +00:00
parent 7c5025ee10
commit 4ff91ab090

View File

@ -137,10 +137,36 @@
animation: float 3s ease-in-out infinite; animation: float 3s ease-in-out infinite;
} }
@keyframes shake {
0%, 100% {
transform: translateX(0) rotate(0deg);
}
10%, 30%, 50%, 70%, 90% {
transform: translateX(-2px) rotate(-1deg);
}
20%, 40%, 60%, 80% {
transform: translateX(2px) rotate(1deg);
}
}
.animate-shake {
animation: shake 0.5s ease-in-out infinite;
}
.animate-float-shake {
animation: float 3s ease-in-out infinite, shake 0.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { @media (prefers-reduced-motion: reduce) {
.animate-float { .animate-float {
animation: none; animation: none;
} }
.animate-shake {
animation: none;
}
.animate-float-shake {
animation: none;
}
} }
.card-hover:hover { .card-hover:hover {