By Adriano
—
Last update
Nov 5, 2008
—
Installed
25 times.
// ==UserScript==
// @name Layout Estadao
// @version 1.0
// @namespace www.estadao.com.br
// @description Changes the font color and family for www.estadao.com.br - Muda layout do www.estadao.com.br
// @include http://www.estadao.com.br/*
// ==/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('#corpoNoticia, #corpoNoticia p { color: #000 !important; font-family:Georgia,Bookman Old Style,Trebuchet MS;line-height:145%;font-size: 15px;} A, A * {font-weight: normal; color:#004276;}');