Files
Roman Pyrih 7483681901 first commit
2026-04-21 15:48:41 +02:00

13 lines
145 B
CSS

@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}