Last active
May 26, 2016 19:48
-
-
Save Djent-/32ae49e09d5cb045e9fd94bc411a2ac5 to your computer and use it in GitHub Desktop.
My personal Stylish script for Hummingbird.me
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("hummingbird.me") { | |
/* The grey blocks that uBlock Origin leaves behind */ | |
.footer-shadow .container:nth-child(4) { | |
display: none | |
} | |
.feed-sidebar-advert { | |
display: none | |
} | |
.feed-head-advert { | |
display: none | |
} | |
.giftbox { | |
display: none | |
} | |
.feed-sm-sidebar-advert { | |
display: none | |
} | |
/* The grey footer */ | |
.footer-contents { | |
display: none | |
} | |
/* Hide industry news and forum posts */ | |
/* They don't load for me anyway */ | |
.community-widget-panel:nth-child(2), .community-widget-panel:nth-child(4){ | |
display: none | |
} | |
/* Make the navigation bar work */ | |
.no-padding, .library-header { | |
display: inline !important; | |
} | |
/* Make the anime pages work */ | |
.panel .container, .series-header .container { | |
display: block !important; | |
} | |
.container:nth-child(2) { | |
display: block !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment