Created
February 8, 2012 05:16
-
-
Save ticky/1765690 to your computer and use it in GitHub Desktop.
Unregistered HyperCam 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Unregistered HyperCam 2 */ | |
/* Simulates web pages being recorded through the shareware version of HyperCam 2 */ | |
/* Paste this into your User CSS, with whatever site(s) you want to deface in this manner selected. */ | |
/* There seems to be a bug in Safari 5/OS X where if you apply -webkit-font-smoothing to a body:before element, it will sometimes freak out all over the page. This fixes that (somehow) and looks nicer to boot. */ | |
html { -webkit-font-smoothing: antialiased; } | |
body:before {content: "Unregistered HyperCam 2"; position: fixed; top: 0; left: 0; color: #000; background-color: #fff; font-family: "MS Sans Serif", "Microsoft Sans Serif", Verdana; -webkit-font-smoothing: none; font-weight: bold; font-size: 14px; z-index: 9999; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
BEST CSS EVER