Skip to content

Instantly share code, notes, and snippets.

@Ruzzz
Created February 4, 2014 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ruzzz/8807774 to your computer and use it in GitHub Desktop.
Save Ruzzz/8807774 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Center txt
// @author Ruzzz | ruzzzua@gmail.com
// @include http://*/*.txt
// @version 0.0.1
// @date 2014-02-04
// ==/UserScript==
(function () {
var e=document.getElementsByTagName('pre')[0];
e.style.fontFamily="Consolas";
e.style.fontSize="12";
e.style.backgroundColor="#FFF";
e.style.padding="35px";
e.style.width="640px";
e.style.margin="0 auto 150px auto";
e.style.boxShadow="0 0 10px rgba(0,0,0,0.5)";
e=document.getElementsByTagName('body')[0];
e.style.backgroundColor="#DDD";
e.style.padding="0";
e.style.margin="0";
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment