Skip to content

Instantly share code, notes, and snippets.

@mocon
Last active December 3, 2017 20:50
Show Gist options
  • Save mocon/5108a73ca2915d2bd876e656f7f14d55 to your computer and use it in GitHub Desktop.
Save mocon/5108a73ca2915d2bd876e656f7f14d55 to your computer and use it in GitHub Desktop.
Stylebot Chrome extension CSS rules
/*
URL pattern: news.google.com
----------------------------
*/
/* Make main column full width */
main > div:nth-child(1) {
max-width: none;
}
/* Hide right sidebar */
main > div:nth-child(2) {
display: none;
}
/*
URL pattern: businessinsider.com
--------------------------------
*/
/* Make main column full width */
.siteskin-dropshadow .span8 {
width: calc(100% - 100px);
}
@media (min-width: 1240px) {
.responsive .span8 .post {
width: auto;
}
}
/* Hide right sidebar */
.siteskin-dropshadow .span4 {
display: none;
}
/*
URL pattern: buffstream.com
--------------------------------
*/
.page-header center:first-child,
#at4-share,
#oper {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment