American Thinker Centerer

Center the American Thinker webpage.

// ==UserScript==
// @name         American Thinker Centerer
// @namespace    Amaroq64
// @version      0.1
// @description  Center the American Thinker webpage.
// @author       Amaroq
// @match        https://www.americanthinker.com/articles/*.html
// @match        https://www.americanthinker.com/blog/*.html
// @icon         https://www.americanthinker.com/favicon.ico
// @grant        none
// @run-at document-end
// ==/UserScript==

var newStyleSheet = document.createElement("style");
newStyleSheet.type = "text/css";
newStyleSheet.innerText = "#wrapper {margin: 10px auto; width: 805px}";
document.head.appendChild(newStyleSheet);