Advertisement
KiberInfinity

Saw

Aug 17th, 2013
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.54 KB | None | 0 0
  1.  
  2. #page_header .right {
  3.    -webkit-animation: rotation 10s infinite linear;
  4.    animation: rotation 10s infinite linear;
  5.    background: url("http://ipic.su/a6UXZ.png") transparent !important;
  6.    display: block;
  7.    height: 160px;
  8.    position: fixed;
  9.    right: -35px;
  10.    top: -35px;
  11.    width: 160px;
  12.    z-index: 0;
  13. }
  14.  
  15. @keyframes rotation {
  16.     from {transform: rotate(0deg);}
  17.     to   {transform: rotate(359deg);}
  18. }
  19. @-webkit-keyframes rotation {
  20.     from {-webkit-transform: rotate(0deg);}
  21.     to   {-webkit-transform: rotate(359deg);}
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement