Last active
March 15, 2019 01:02
-
-
Save sagebind/b562c567b20dcd1485b971c013072c30 to your computer and use it in GitHub Desktop.
Usercss
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==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; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==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