Smaller font for iGoogle Hotmail Gadget (11px)

By gadgeteer Last update Feb 19, 2010 — Installed 8,969 times.

There are 3 previous versions of this script.

// ==UserScript==
// @name           Smaller font (11px) for iGoogle Hotmail Gadget
// @namespace      http://lovemygadget.com/hotmail
// @description    Smaller font (11px) for iGoogle Hotmail Gadget
// @include        http://*.mail.live.com/*
// @include        http://mpeople.live.com/*
// @include        https://mid.live.com/si/*
// @include        https://maccount.live.com/*
// ==/UserScript==

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
var oBody 		= document.getElementsByTagName( "body" )[0];
var oStyle1		= document.createElement( "style" );
oStyle1.innerHTML	= "body{ font-family: Tahoma, sans-serif; font-size: 11px; } ";
oStyle1.innerHTML	+= "input, textarea{ margin: 2px 2px 2px 2px; border-width: 1px; border-style: solid; border-color: #c0c0c0; } ";
oStyle1.innerHTML	+= "hr{ border: 0px; color: #c0c0c0; background-color: #c0c0c0; height: 1px; } ";

// append style to body
oBody.appendChild( oStyle1 );

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// end of script