Greasy Fork is available in English.

Learn.jquery.com Modifications

Change font to Verdana & full width content

// ==UserScript==
// @name         Learn.jquery.com Modifications
// @version      0.1
// @description  Change font to Verdana & full width content
// @author       Shakil Shahadat
// @match        http://learn.jquery.com/*
// @grant        none
// @namespace https://greasyfork.org/users/6404
// ==/UserScript==

document.querySelector( 'body' ).style.font = '15px/22.5px Verdana, "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif';
document.querySelector( '#content' ).style.width = '100%';