Last active
December 17, 2015 17:49
-
-
Save Wolfr/5648664 to your computer and use it in GitHub Desktop.
User style to read De Tijd in peace
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
| /* | |
| User style to read De Tijd in peace | |
| Using stylish for chrome to manage my user styles | |
| */ | |
| .articledetail .content { | |
| /* override justified text, justified doesn't work on the web */ | |
| text-align: left !important; | |
| /* Make text actually readable without needing page zoom */ | |
| font-size: 15px !important; | |
| } | |
| /* | |
| Remove annoying "read more" things: | |
| on detail page, top one (that gets fixed) | |
| */ | |
| #newsteaser, #newsteaser_placeholder { | |
| display: none; | |
| } | |
| /* | |
| Remove annoying "read more" things: on home page, | |
| top one (that gets fixed) | |
| */ | |
| #contentteaser { | |
| display: none; | |
| } | |
| /* | |
| Remove annoying "read more" things: | |
| bottom one (when you reach the end of an article) | |
| */ | |
| .linkWithinBlock { | |
| display: none; | |
| } | |
| /* Remove ads for e-shop */ | |
| .eShopTeaser { | |
| display: none; | |
| } | |
| /* Remove ad for tablet app in footer */ | |
| a[title="Lees De Tijd op tablet"] { | |
| display: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment