Skip to content

Instantly share code, notes, and snippets.

@azu
Created March 19, 2011 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azu/877459 to your computer and use it in GitHub Desktop.
Save azu/877459 to your computer and use it in GitHub Desktop.
Googleの設定
/* Google検索ページ
+結果欄の幅拡張
+検索バーを固定
+サイトの背景色を奇数で色分
+広告は犠牲になった
*/
@-moz-document url-prefix("http://www.google.co.jp/search"),
url-prefix("http://www.google.com/search"){
/* 「もっと見る」を押さなくても、最初から全部表示 */
.nojsb {
display: block !important;
}
#tads{
display: none !important;
}
#showmodes {
display: none !important;
}
#mbEnd{
display:none !important;
}
/* fixedSearchbar */
#nr_container {
margin-top: 115px;
}
#sfcnt {
-moz-box-shadow:0 1px 5px #000000;
box-shadow:0 1px 5px #000000;
left:0;
padding:18px 0;
top:25px;
width:100%;
z-index:10;
}
#gog {
left:0;
top: 0;
width:100%;
z-index:11;
}
#gog, #sfcnt, #subform_ctrl{
background:none repeat scroll 0 0 rgba(255, 255, 255, 0.9)!important;
position:fixed;
}
#sfcnt {
height:70px !important;
padding-top:0 !important;
}
#subform_ctrl {
text-align:right;
z-index: 10;
right: 0;
top: 88px;
min-height: 0;
background:none repeat scroll 0 0 transparent!important;
}
#guser, #gbar{
padding: 1px 0;
}
#gbar nobr, #guser nobr {
line-height: 22px;
}
/* oddには色をつける */
li.g:nth-child(odd){
background:#F7F7F7;
}
/* 説明文を横に延長 */
.g{
min-width:800px;
padding:5px!important;
-moz-border-radius : 5px;
border-radius : 5px;
}
.s {
min-width: 800px !important;
}
/* RealTimeの場合横幅に必要 */
#center_col{
min-width:820px!important;
}
/*右側のbox*/
#rtro{
width: 800px!important;
}
/* 普段は隠しておいて、マウスオーバーで表示させる */
#rhs{
-moz-box-shadow:-3px 3px 3px #000000;
white-space: nowrap;
background:#fff!important;
right: 0!important;
top: 0!important;
width: 15px!important;
overflow:hidden;
}
#rhs:hover{
background:#fff!important;
right: 0!important;
top: 0!important;
width: 800px!important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment