Last active
October 19, 2017 20:22
-
-
Save kocisov/9ff3f6d43530811742aa6767ca87434b to your computer and use it in GitHub Desktop.
atom cc animation
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 cc { | |
0% { | |
color: #fff; | |
} | |
10% { | |
color: #c92a2a; | |
} | |
20% { | |
color: #f76707; | |
} | |
30% { | |
color: #a61e4d; | |
} | |
40% { | |
color: #862e9c; | |
} | |
50% { | |
color: #364fc7; | |
} | |
60% { | |
color: #1862ab; | |
} | |
70% { | |
color: #0b7285; | |
} | |
80% { | |
color: #2b8a3e; | |
} | |
90% { | |
color: #fab005; | |
} | |
100% { | |
color: #fff; | |
} | |
} | |
.icon::before { | |
animation: cc 5s infinite linear; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment