Created
November 24, 2017 03:03
-
-
Save elomatreb/d8bdcd731225fa25345c6cd03614d19f to your computer and use it in GitHub Desktop.
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
@keyframes lol { | |
0% { | |
opacity: 0; | |
transform: rotate(-1440deg) scale(0); | |
} | |
100% { | |
opacity: 1; | |
transform: rotate(0deg) scale(1); | |
} | |
} | |
.status { | |
animation: lol .75s ease-in-out; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment