Skip to content

Instantly share code, notes, and snippets.

@LenAnderson
Created July 3, 2014 11:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LenAnderson/fa696934a59e8718c1ec to your computer and use it in GitHub Desktop.
Save LenAnderson/fa696934a59e8718c1ec to your computer and use it in GitHub Desktop.
Highlight new Tweets in Tweetdeck
@keyframes tweet-enter {
from { background-color: rgba(88, 0, 108, 1); }
80% { background-color: rgba(88, 0, 108, 1); }
to { background-color: rgba(88, 0, 108, 0); }
}
.js-chirp-container > article {
animation-duration: 2.5s;
animation-name: tweet-enter;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment