Created
July 14, 2016 03:33
-
-
Save freeatnet/48be1275ec67d4db0c56f032cce1d1c8 to your computer and use it in GitHub Desktop.
Twitter style: Clapping hands really clap
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
.stream-item img.Emoji.Emoji--forText[title^="Clapping hands sign"], .js-tweet-text-container img.Emoji.Emoji--forText[title^="Clapping hands sign"] { | |
animation: blink-animation 1s steps(5, start) infinite; | |
} | |
.stream-item:hover img.Emoji.Emoji--forText[title^="Clapping hands sign"], .js-tweet-text-container:hover img.Emoji.Emoji--forText[title^="Clapping hands sign"] { | |
animation: initial; | |
visibility: visible; | |
} | |
@keyframes blink-animation { | |
to { | |
visibility: hidden; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment