1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
@keyframes back-in-up { 0% { transform: translateY(1200px) scale(0.7); opacity: 0.7; } 80% { transform: translateY(0px) scale(0.7); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } } .GRIMOIRE_CSS_ANIMATION { animation-name: back-in-up; }