Advertisement
Guest User

Untitled

a guest
Apr 4th, 2014
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.38 KB | None | 0 0
  1. .meetingroom_mark {
  2.     fill: red;
  3.     fill-rule: nonzero;
  4.     stroke: none;
  5.     animation: fading 1s infinite;
  6.         -webkit-animation: fading 1s infinite;
  7. }
  8.  
  9. @keyframes fading {
  10.     0%   { fill: #a4ca67; }
  11.     50% { fill: red; }
  12.     100%   { fill: #a4ca67; }    
  13. }
  14.  
  15. @-webkit-keyframes fading {
  16.     0%   { fill: #a4ca67; }
  17.     50% { fill: red; }
  18.     100%   { fill: #a4ca67; }    
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement