Created
February 22, 2019 20:44
-
-
Save nrdmn/5f7041e24f7175753f48f704c673109a 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
* { | |
animation-name: colors; | |
animation-duration: 4s; | |
animation-iteration-count: infinite; | |
} | |
@keyframes colors { | |
0% { text-shadow: 0 0 1pt hsl(0, 100%, 50%); } | |
17% { text-shadow: 0 0 1pt hsl(60, 100%, 50%); } | |
33% { text-shadow: 0 0 1pt hsl(120, 100%, 50%); } | |
50% { text-shadow: 0 0 1pt hsl(180, 100%, 50%); } | |
66% { text-shadow: 0 0 1pt hsl(240, 100%, 50%); } | |
83% { text-shadow: 0 0 1pt hsl(300, 100%, 50%); } | |
100% { text-shadow: 0 0 1pt hsl(360, 100%, 50%); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment