All Projects → wesbos → Aprilfools.css

wesbos / Aprilfools.css

Harmlessly goof up your co-workers browser and chrome dev tools

Labels

aprilFools.css ☺

by Wes Bos

Put these CSS definitions into your co-workers css overriding file. They will be applied to every website they visit. They are commented out by default, so make sure to uncomment your favourite ones!

Most will work in both firefox and chrome. The -webkit only ones are specific to chrome or dev tools features. Please feel free to add more via PR.

Mac Chrome: ~/Library/Application Support/Google/Chrome/Default/User StyleSheets/Custom.css

Windows Chrome: C:/Users/YourUsername/AppData/Local/Google/Chrome/User Data/Default/User StyleSheets/Custom.css

Linux (Chromium): ~/.config/chromium/Default/User StyleSheets/Custom.css

Firefox - Windows, Mac & Linux: YOUR_FIREFOX_PROFILE/chrome/userContent.css

/*
  Turn every website upside down.
  Available: Chrome, Firefox
*/
body {
  -webkit-transform: rotate(180deg);
}

/*
  blur every website for a split second every 30 seconds
  Available: Chrome
*/
body {
  /*-webkit-animation: blur 30s infinite;*/
}

/*
  Spin every Website
  Available: Chrome, Firefox
*/ 
body {
  /*-webkit-animation: spin 5s linear infinite;*/
}

/*
  Flip all images upside down
  Available: Chrome, Firefox
*/
img {
  /*-webkit-transform: rotate(180deg);*/
}

See them all in your aprilFools.css

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].