Learn.jquery.com Modifications

Change font to Verdana & full width content

  1. // ==UserScript==
  2. // @name Learn.jquery.com Modifications
  3. // @version 0.1
  4. // @description Change font to Verdana & full width content
  5. // @author Shakil Shahadat
  6. // @match http://learn.jquery.com/*
  7. // @grant none
  8. // @namespace https://greasyfork.org/users/6404
  9. // ==/UserScript==
  10.  
  11. document.querySelector( 'body' ).style.font = '15px/22.5px Verdana, "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif';
  12. document.querySelector( '#content' ).style.width = '100%';