GruensFroeschli / Pythex.org page width expander

// ==UserScript==
// @name         Pythex.org page width expander
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Use the full width of the page
// @author       Matthias May
// @license      LGPL-2.0-or-later
// @match        https://pythex.org*
// @grant        none
// ==/UserScript==

(function () {
  var main = document.getElementById('main');
  main.style.marginLeft = "0px";
  main.style.marginRight = "0px";
  main.style.maxWidth = "100%";
})();