wesbos / aprilFools.css

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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


Languages

Language:CSS 100.0%