Skip to content

Instantly share code, notes, and snippets.

@sagebind
Last active March 15, 2019 01:02
Show Gist options
  • Save sagebind/b562c567b20dcd1485b971c013072c30 to your computer and use it in GitHub Desktop.
Save sagebind/b562c567b20dcd1485b971c013072c30 to your computer and use it in GitHub Desktop.
Usercss
/* ==UserStyle==
@name Hide ads on specific sites
@namespace github.com/sagebind
@version 0.1.0
==/UserStyle== */
@-moz-document domain("www.deviantart.com") {
.da-custom-ad-box, .da-ad-high-impact {
display: none !important;
}
}
@-moz-document domain("www.reddit.com") {
.promotedlink {
display: none;
}
}
@-moz-document domain("mint.intuit.com") {
#TxnOfferWidgetContainer, #TopTxnOfferWidgetContainer {
display: none !important;
}
}
@-moz-document domain("twitter.com") {
.promoted-tweet {
display: none;
}
}
/* ==UserStyle==
@name Custom Firefox styles
@namespace github.com/sagebind
@version 0.1.0
==/UserStyle== */
:root {
scrollbar-color: rgba(255, 255, 255, 0.25) rgba(0, 0, 0, 0.75);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment