Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.89 KB | None | 0 0
  1. /*
  2. aprilFools.css
  3. Written by Wes Bos
  4. I assume no responsibility for angry co-workers or lost productivity
  5.  
  6. Put these CSS definitons into your co-workers Custom.css file.
  7.  
  8. They will be applied to every website they visit as well as their developer tools.
  9.  
  10. */
  11.  
  12.  
  13. /*
  14. Turn every website upside down
  15. */
  16. body {
  17. /*-webkit-transform: rotate(180deg);
  18. transform: rotate(180deg);*/
  19. }
  20.  
  21. /*
  22. blur every website for a split second every 30 seconds
  23. */
  24. body {
  25. /*-webkit-animation: blur 30s infinite;*/
  26. }
  27.  
  28. /*
  29. Spin every Website
  30. */
  31. body {
  32. /*-webkit-animation: spin 5s linear infinite;
  33. animation: spin 5s linear infinite;*/
  34. }
  35.  
  36. /*
  37. Flip all images upside down
  38. */
  39. img {
  40. /*-webkit-transform: rotate(180deg);
  41. transform: rotate(180deg);*/
  42. }
  43.  
  44. /*
  45. COMIC SANS EVERYTHING
  46. */
  47.  
  48. body, p, body p, body div p {
  49. /*font-family: 'Comic Sans MS', cursive !important;*/
  50. }
  51.  
  52. /*
  53. Spin all images
  54. */
  55. img {
  56. /*-webkit-animation: spin 1s linear infinite;
  57. animation: spin 1s linear infinite;*/
  58. }
  59.  
  60. /*
  61. Hide every 2nd paragraph element on a page
  62. */
  63. p:nth-child(2) {
  64. /*display:none !important;*/
  65. }
  66.  
  67.  
  68. /*
  69. Permanent cursor wait
  70. */
  71. html {
  72. /*cursor:wait !important; */
  73. }
  74.  
  75. /*
  76. hide the cursor all together
  77. */
  78. html {
  79. /*cursor:none !important;*/
  80. }
  81.  
  82. /*
  83. slowly grow text
  84. */
  85. p {
  86. -webkit-animation: grow 120s ease-in;
  87. -moz-animation: grow 120s ease-in;
  88. animation: grow 120s ease-in;
  89. }
  90.  
  91. /*
  92. Spin dev tools round and round
  93. */
  94. #-webkit-web-inspector {
  95. /*-webkit-animation: spin 1s linear infinite; */
  96. }
  97.  
  98. /*
  99. Flip dev tools upside down
  100. */
  101. #-webkit-web-inspector {
  102. /*-webkit-transform:rotate(180deg);*/
  103. }
  104.  
  105. /* Hide the close button */
  106. #-webkit-web-inspector .toolbar-item.close-left {
  107. /*display:none !important;*/
  108. }
  109.  
  110. /* Make console text all blurry */
  111. #-webkit-web-inspector .console-group-messages {
  112. /*text-shadow: 0 0 3px rgba(0,0,0,.5) !important;*/
  113. }
  114.  
  115. #-webkit-web-inspector .console-error-level .console-message-text,
  116. #-webkit-web-inspector .console-error-level .section .header .title {
  117. /*text-shadow: 0 0 3px rgba(255,0,0,.5) !important;*/
  118. }
  119.  
  120. #-webkit-web-inspector .console-user-command > .console-message-text {
  121. /*text-shadow: 0 0 3px rgba(0,128,255,.5) !important;*/
  122. }
  123.  
  124. #-webkit-web-inspector .console-group-messages,
  125. #-webkit-web-inspector .console-user-command > .console-message-text,
  126. #-webkit-web-inspector .console-formatted-null,
  127. #-webkit-web-inspector .console-formatted-undefined,
  128. #-webkit-web-inspector .console-debug-level .console-message-text,
  129. #-webkit-web-inspector .console-error-level .console-message-text,
  130. #-webkit-web-inspector .console-error-level .section .header .title,
  131. #-webkit-web-inspector .console-group-messages .section .header .title,
  132. #-webkit-web-inspector .console-formatted-object,
  133. #-webkit-web-inspector .console-formatted-node,
  134. #-webkit-web-inspector .console-formatted-array,
  135. #-webkit-web-inspector .section .properties .name,
  136. #-webkit-web-inspector .event-properties .name,
  137. #-webkit-web-inspector .console-formatted-object .name,
  138. #-webkit-web-inspector .console-formatted-number,
  139. #-webkit-web-inspector .console-formatted-string,
  140. #-webkit-web-inspector #console-messages a {
  141. /*color: transparent !important;*/
  142. }
  143.  
  144. /* HTML PRIDE! */
  145. html {
  146. /*-webkit-animation: rainbow 8s infinite;*/
  147. }
  148.  
  149. /*
  150. Make every website fall over!
  151. */
  152. /*
  153. html, body {
  154. height: 100%;
  155. }
  156.  
  157. html {
  158. -webkit-perspective: 1000;
  159. perspective: 1000;
  160. }
  161.  
  162. body {
  163. -webkit-transform-origin: bottom center;
  164. -webkit-transform: rotateX(-90deg);
  165. -webkit-animation: fall 1.5s ease-in;
  166. }
  167. */
  168.  
  169. /*
  170. Insert a phrase every paragraph
  171. */
  172. /*
  173. p:before {
  174. content: "YOLO ";
  175. }
  176. */
  177.  
  178. /* Animations */
  179.  
  180. @-webkit-keyframes blur {
  181. 0% { -webkit-filter: blur(0px); }
  182. 49% { -webkit-filter: blur(0px); }
  183. 50% { -webkit-filter: blur(1px); }
  184. 51% { -webkit-filter: blur(0px); }
  185. 100% { -webkit-filter: blur(0px); }
  186. }
  187.  
  188. @-webkit-keyframes spin {
  189. 0% { -webkit-transform: rotate(0deg); }
  190. 100% { -webkit-transform: rotate(360deg); }
  191. }
  192.  
  193. @-webkit-keyframes rainbow {
  194. 100% { -webkit-filter: hue-rotate(360deg); }
  195. }
  196.  
  197. @-webkit-keyframes fall {
  198. 0% { -webkit-transform: none; }
  199. 100% { -webkit-transform: rotateX(-90deg); }
  200. }
  201.  
  202. @keyframes spin {
  203. 0% { transform: rotate(0deg); }
  204. 100% { transform: rotate(360deg); }
  205. }
  206.  
  207. @keyframes fall {
  208. 0% { transform: none; }
  209. 100% { transform: rotateX(-90deg); }
  210. }
  211.  
  212. @-moz-keyframes spin {
  213. 0% { transform: rotate(0deg); }
  214. 100% { transform: rotate(360deg); }
  215. }
  216.  
  217. @-moz-keyframes fall {
  218. 0% { transform: none; }
  219. 100% { transform: rotateX(-90deg); }
  220. }
  221.  
  222.  
  223. @-webkit-keyframes grow {
  224. 0% { font-size: none; }
  225. 100% { font-size: 80pt; }
  226. }
  227. @-moz-keyframes grow {
  228. 0% { font-size: none; }
  229. 100% { font-size: 80pt; }
  230. }
  231. @keyframes grow {
  232. 0% { font-size: none; }
  233. 100% { font-size: 80pt; }
  234. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement