// ==UserScript==
// @name          Google: no ads and new style
// @namespace     http://userstyles.org
// @description	  This style removes some ads (sponsored links) on the Google results page and gives Google a new appearance
// @author        PomCompot
// @include       http://www.google.*/search*
// @homepage      http://userstyles.org/style/show/728

// ==/UserScript==

(function(){
var css = "@namespace url(http://www.w3.org/1999/xhtml); div.g { border: solid 1px #3366CC ! important; -moz-border-radius: 10px ! important; padding: 10px ! important; background-color: #E5ECF9 ! important; } div.g:hover { border: solid 2px #AB1501 ! important; padding: 9px ! important; background-color: #FFF4C2 ! important; } a { text-decoration: none ! important; } a:link { color: #006699 ! important; } a:visited, a:active { color: #008000 ! important; text-decoration: underline ! important; } a:hover { color: #AB1501 ! important; text-decoration: underline ! important; } /* For Google preview extension compatibility */ div.g { overflow: auto ! important; } /* Ad blocking part */ div[id^=\"tpa\"] { display: none !important; } table#mbEnd { display: none ! important; } td.j { width: 100% ! important; padding-left: 1em ! important; }";
PRO_addStyle(css);
PRO_roundCorner('div.g', {compact:false, border:'#3366CC'});
})();
