Created
May 7, 2014 01:32
-
-
Save z-------------/1f7456062fd53304f105 to your computer and use it in GitHub Desktop.
Microsoftifies everything. Named after my very good friend Henry, who has a more-than-obsessive love of the Segoe font.
This file contains hidden or 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
| (function(word){ | |
| var hStyle = document.createElement("style"); | |
| hStyle.innerHTML = "*{font-family:'Segoe UI',Segoe,sans-serif !important;font-weight:100 !important}"; | |
| document.querySelectorAll("head")[0].appendChild(hStyle); | |
| var targets = document.querySelectorAll("h1,h2,h3,h4,h5,h6,p,a"); | |
| for (i in targets) { | |
| targets[i].innerHTML = word + ", " + targets[i].innerHTML; | |
| } | |
| })("Honestly"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment