maingeot / webcamdarts font size

// ==UserScript==
// @name         webcamdarts font size
// @namespace    https://greasyfork.org/fr/users/505971-antoine-maingeot
// @name:fr      webcamdarts écriture
// @version      0.2
// @description  font size and space
// @description:fr taille barre menu
// @author       You
// @match        *webcamdarts*
// @match        https://www.webcamdarts.com/GameOn/Lobby
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
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(' #current-user.available, .userli.available { background-color: #4b560d60; }');
    addGlobalStyle('#current-user.busy, .userli.busy { background-color: #ff000030; }');

})();