rordenerena / Monospace please

// ==UserScript==
// @name     Monospace please
// @namespace    http://zengarden/zm
// @match http://zengarden/zm/*/process.php?idproceso=*
// @author       rordenerena
// @grant        none
// @license MIT
// ==/UserScript==


function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('.noazul { font-family: monospace !important; font-size: 1.2em; } .selected {font-family: monospace !important;}');