Guest User

userContent.css prank

a guest
Jun 25th, 2013
1,066
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.37 KB | None | 0 0
  1. @-moz-document regexp("http.*"), url-prefix(about:) {
  2.   @keyframes rotation {
  3.     from {
  4.       transform: rotate(0turn);
  5.     }
  6.    
  7.     to {
  8.       transform: rotate(1turn);
  9.     }
  10.   }
  11.  
  12.   body, #newtab-window {
  13.     animation-duration: 10800s;
  14.     animation-name: rotation;
  15.     animation-iteration-count: infinite;
  16.     animation-timing-function: linear;
  17.   }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment