grimoire_css 1.8.1

A magical CSS engine for all environments
Documentation
@keyframes heart-beat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

.GRIMOIRE_CSS_ANIMATION {
  animation-name: heart-beat;
  animation-duration: 1.3s;
  animation-timing-function: ease-in-out;
}