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 text-shadow-pop-tl {
    0% {
        text-shadow: 0 0 #555, 0 0 #555, 0 0 #555, 0 0 #555, 0 0 #555, 0 0 #555, 0 0 #555, 0 0 #555;
        transform: translateX(0) translateY(0)
    }
    to {
        text-shadow: -1px -1px #555, -2px -2px #555, -3px -3px #555, -4px -4px #555, -5px -5px #555, -6px -6px #555, -7px -7px #555, -8px -8px #555;
        transform: translateX(8px) translateY(8px)
    }
}

.GRIMOIRE_CSS_ANIMATION {
  animation-name: text-shadow-pop-tl;
}