Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created May 7, 2014 01:32
Show Gist options
  • Save z-------------/1f7456062fd53304f105 to your computer and use it in GitHub Desktop.
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.
(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