Skip to content

Instantly share code, notes, and snippets.

@pete
Created September 4, 2010 04:29
Show Gist options
  • Select an option

  • Save pete/564901 to your computer and use it in GitHub Desktop.

Select an option

Save pete/564901 to your computer and use it in GitHub Desktop.
new function() {
var ss = document.createElement('style');
var head = document.getElementsByTagName('head')[0];
ss.innerHTML = "body p, div { font-size: 1em !important; " +
"font-family: \"Liberation Sans\" !important; }" +
"body { font-size: 1em; font-family: \"Liberation Mono\"; };";
head.appendChild(ss);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment