Advertisement
Joeytje50

blinking for unread messages wikia

Jul 26th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.39 KB | None | 0 0
  1. @-webkit-keyframes blink {
  2.     0% {background:#FFF8DC;}
  3.     50% {background:#FF684C;}
  4.     100% {background:#FFF8DC;}
  5. }
  6. @-moz-keyframes blink {
  7.     0% {background:#FFF8DC;}
  8.     50% {background:#FF684C;}
  9.     100% {background:#FFF8DC;}
  10. }
  11. .User.unread {
  12. /*    background:url('http://i.imgur.com/3LnqJ.gif');*/
  13.     -webkit-animation:blink 3s infinite;
  14.     -moz-animation:blink 3s infinite;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement