grimoire_css 1.8.1

A magical CSS engine for all environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@keyframes slide-rotate-ver-l-fwd {
    0% {
        transform: translateX(0) translateZ(0) rotateY(0);
        transform-origin: center right
    }
    to {
        transform: translateX(-150px) translateZ(130px) rotateY(90deg);
        transform-origin: center right
    }
}

.GRIMOIRE_CSS_ANIMATION {
  animation-name: slide-rotate-ver-l-fwd;
}