grimoire_css 1.8.1

A magical CSS engine for all environments
Documentation
@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;
}