Created
April 9, 2021 08:48
-
-
Save psahalot/c6722ce94c932ee1aa7043c138460e2f to your computer and use it in GitHub Desktop.
PowerPack Fancy Heading
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-webkit-keyframes pp-hue { | |
from { | |
-webkit-filter: hue-rotate(0deg); | |
} | |
to { | |
-webkit-filter: hue-rotate(-360deg); | |
} | |
} | |
@keyframes pp-hue { | |
from { | |
-webkit-filter: hue-rotate(0deg); | |
} | |
to { | |
-webkit-filter: hue-rotate(-360deg); | |
} | |
} | |
| |
@-webkit-keyframes pp-fade { | |
0%,100% { opacity: 0 } | |
50% { opacity: 1 } | |
} | |
@keyframes pp-fade { | |
0%,100% { opacity: 0 } | |
50% { opacity: 1 } | |
} | |
| |
@-webkit-keyframes pp-rotate { | |
from { | |
-webkit-transform: rotateY(0deg); | |
} | |
to { | |
-webkit-transform: rotateY(360deg); | |
} | |
} | |
| |
@keyframes pp-rotate { | |
from { | |
transform: rotateY(0deg); | |
} | |
to { | |
transform: rotateY(360deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment