Skip to content

Instantly share code, notes, and snippets.

@rosenpin
Last active July 22, 2022 02:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rosenpin/9e74549e3fb04c96223e to your computer and use it in GitHub Desktop.
Save rosenpin/9e74549e3fb04c96223e to your computer and use it in GitHub Desktop.
CSS file to use with stylish making Google Search not look like garbage. Example Video https://www.youtube.com/watch?v=AIsyLJePiBc . Get it from here https://userstyles.org/styles/118142/google-search-md
@-moz-document url-prefix("https://www.google.com"), url-prefix("http://www.google.com"), url-prefix("https://www.google.co.il"), url-prefix("https://www.google.co.uk"), url-prefix("https://www.google.ru"), url-prefix("https://www.google.com"), url-prefix("http://www.google.com"), url-prefix("http://www.google.co.il"), url-prefix("http://www.google.co.uk"), url-prefix("http://www.google.ru") {
* {
font-family: "roboto", tahoma, arial, sans-serif !important;
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
animation-fill-mode: both;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
div.sfbg,
div.sfbgg {
min-width: 980px !important;
height: 79px !important;
}
.sfbgg {
background-color: #f1f1f1;
border-bottom: 1px solid #F1F1F1;
border-color: #F1F1F1;
}
div#sblsbb {
display: none;
}
.sbibod {
background-color: #F5F5F5;
border: 1px solid #F1F1F1;
border-top-color: #F1F1F1;
height: 38px;
vertical-align: top;
border-radius: 4px;
}
div#sfdiv {
margin-top: 5px;
}
a#logo {
margin-top: 10px;
}
.sbib_a {
background: #F5F5F5;
box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.sbib_b {
box-sizing: border-box;
-webkit-box-sizing: border-box;
height: 100%;
overflow: hidden;
padding: 9px 9px 0;
}
div#hdtbSum {
margin-top: 24px;
}
a:link,
.w,
#prs a:visited,
#prs a:active,
.q:active,
.q:visited,
.kl:active,
.tbotu {
color: #4A8AF4;
}
.mblink:visited,
a:visited {
color: #9032BF;
}
.a,
cite,
cite a:link,
cite a:visited,
.cite,
.cite:link,
#_bGc > i,
.bc a:link {
color: #3A3A3A;
font-style: normal;
}
.s {
color: #8E8E8E;
}
.gb_Ha.gb_Nd.gb_R.gb_Md.gb_T {
margin-top: 10px;
}
.mw {
background-color: rgb(249, 249, 249);
}
#appbar {
background-color: rgb(249, 249, 249);
-webkit-box-sizing: border-box;
width: 100%;
}
body#gsr {
background-color: rgb(249, 249, 249);
}
div.sfbg,
div.sfbgg {
min-width: 980px !important;
height: 83px !important;
}
#qbi {
background-size: 20px 20px;
cursor: pointer;
display: inline-block;
height: 20px;
padding: 0;
width: 20px;
margin-top: 8px;
}
.gsst_e {
vertical-align: middle;
opacity: 0.1;
}
input[type="submit"] {
opacity: 0.6;
}
.sbibod {
background-color: #F5F5F5;
border: 1px solid #F1F1F1;
border-top-color: #F1F1F1;
height: 38px;
vertical-align: top;
border-radius: 4px;
width: 630px;
}
#ab_ctls {
visibility: hidden
}
#hdtbSum {
background-color: rgb(249, 249, 249);
}
#before-appbar {
visibility: hidden
}
#rhs_block {
position: fixed !important;
left: 60vw
}
#sb_ifc0,
#gs_lc0,
#lst-ib,#gs_st0
{
/* background-color: #e0e0e0;*/
background-color: /*[[color]]*/ !important;
}
#fbar,
.jsb {
visibility: hidden
}
.sbibod {
height: 36px
}
.sfibbbc {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: fadeInUp;
-webkit-animation-name: fadeInUp;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment