File size: 488 Bytes
069b803 62afa00 fba9a63 069b803 62afa00 fba9a63 069b803 62afa00 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
/* Animation for counter cards */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.grid > div {
animation: fadeIn 0.5s ease-out forwards;
opacity: 0;
}
/* Delay the animation for each card */
.grid > div:nth-child(1) { animation-delay: 0.1s; }
.grid > div:nth-child(2) { animation-delay: 0.2s; }
.grid > div:nth-child(3) { animation-delay: 0.3s; }
.grid > div:nth-child(4) { animation-delay: 0.4s; }
|