// ==UserScript==
// @name           Resize Download Counter
// @namespace      http://gerv.net/userscripts
// @description    Resize the Firefox 3 Download Day download counter for 1024x768
// @include        http://downloadcounter.sj.mozilla.com/
// ==/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('div#rates { width: 1024px ! important; }');
addGlobalStyle('.counterright, .counterleft { width: 500px ! important; }');
addGlobalStyle('.total { font-size: 80px ! important; }');
addGlobalStyle('.bigtotal { font-size: 150px ! important; }');
addGlobalStyle('#info { top: -20px ! important; }');
addGlobalStyle('div.flag { height: 80px ! important; }');
addGlobalStyle('div.flag > img { height: 50px ! important; width: 50px ! important; }');

