Advertisement
Guest User

Rainbow linux.org.ru

a guest
Jun 27th, 2015
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.44 KB | None | 0 0
  1. @namespace url(http://www.w3.org/1999/xhtml);
  2.  
  3. @-moz-document domain("linux.org.ru"), domain("www.linux.org.ru") {
  4.   @keyframes rainbow {
  5.     0%   { color: #F41919 }
  6.     20%  { color: #F68A1F }
  7.     40%  { color: #F4EA40 }
  8.     60%  { color: #4BE23B }
  9.     80%  { color: #3F58EF }
  10.     100% { color: #C624ED }
  11.   }
  12.  
  13.   #sitetitle {
  14.     animation-name: rainbow;
  15.     animation-duration: 2s;
  16.     animation-iteration-count: infinite;
  17.   }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement