Skip to content

Instantly share code, notes, and snippets.

@freeatnet
Created July 14, 2016 03:33
Show Gist options
  • Save freeatnet/48be1275ec67d4db0c56f032cce1d1c8 to your computer and use it in GitHub Desktop.
Save freeatnet/48be1275ec67d4db0c56f032cce1d1c8 to your computer and use it in GitHub Desktop.
Twitter style: Clapping hands really clap
.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