Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. // ==UserScript==
  2. // @name My Fancy New Userscript
  3. // @version 0.1
  4. // @description enter something useful
  5. // @author You
  6. // @include /^https?://(www\.)?reddit.com.*/
  7. // ==/UserScript==
  8.  
  9. $('.side').hide();
  10. var style = '.md .-blocks, .md .-lists, .md pre, .md blockquote, .md table, .md p, .md p, .side .md .-text, .side .md pre>code, .side .md th, .side .md td, .md h1, .md h2, .md h3, .md h4, .md h5, .md h6, .side .md h5, .side .md h6, .side .md h1, .side .md h2, .side .md h3, .side .md h4, .md li li, .md li p, .md ul, .md ol{ font-size: small; line-height: normal; } .titlebox .md li li, .titlebox .md li p, .titlebox .md ul, .titlebox .md ol { font-size: 1em;} .link .usertext .md { padding: 5px 5px; } .md h3 { font-size: 110%; } .md h1 { font-size: 120%; } .md h2 { color: #369; font-size: 110%; font-weight: bold; } .md h4 { font-weight: bold; } .side .md h3, .side .md h4, .side .md h1, .side .md h2, .side .md h5, .side .md h6{ margin-top: 0; margin-bottom: 0; } .md pre, .md .-cells, .md th, .md td { padding: 1px 3px; } .titlebox .md { font-size: 90%; } .usertext.border .usertext-body { padding-top: 1px; padding-bottom: 1px; margin-bottom: -1px; margin-top: -1px; } .md blockquote, .md del { color: black;} .md blockquote { border-left: 2px solid #369; padding-left: 4px; margin: 5px; } }';
  11. $('head').append($('<style />', { type: "text/css" }).html(style));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement