Skip to content

Instantly share code, notes, and snippets.

View ticky's full-sized avatar
💽

Jessica Stokes ticky

💽
View GitHub Profile
javascript:(function(){if (!document.getElementById('someuniqueid')){var objHead = document.getElementsByTagName('head'); if (objHead[0]){if (document.createElementNS && objHead[0].tagName == 'head') var objCSS = objHead[0].appendChild(document.createElementNS('http://www.w3.org/1999/xhtml', 'link')); else var objCSS = objHead[0].appendChild(document.createElement('link')); objCSS.id = 'someuniqueid'; objCSS.rel = 'stylesheet'; objCSS.href = 'data:text/css,*{-webkit-transform-style:preserve-3d;-webkit-transition:-webkit-transform 1s ease-in-out,box-shadow 1s ease-in-out,outline 1s ease-in-out}*:hover{background:rgba(255,255,255,.25);outline:1px solid rgba(0,0,0,.25);-webkit-transform:translateZ(100px);box-shadow:0 0 10px #cacaca}html{-webkit-transition:-webkit-transform 1s ease-in-out}html:hover{-webkit-transform:perspective(800px) rotateY(10deg) translateZ(-700px)}body{height:100%}'; objCSS.type = 'text/css';}}})()
@ticky
ticky / hypercam.css
Created February 8, 2012 05:16
Unregistered HyperCam 2
/* 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; }