grimoire_css 1.8.1

A magical CSS engine for all environments
Documentation
@keyframes back-out-right {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}

.GRIMOIRE_CSS_ANIMATION {
  animation-name: back-out-right;
}