Created
March 10, 2020 16:12
-
-
Save malcolmocean/f8f98631cbf6dad1553cac4c1efb75fa to your computer and use it in GitHub Desktop.
Gell-Mann Amnesia Blocker - remember which sites you don't trust
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
@-moz-document domain("dailymail.co.uk"), domain("nytimes.com") { | |
/* Source for "How do I know this site BSes" | |
Daily Mail - widely known to be a tabloid | |
NYT: https://twitter.com/paulg/status/1236975851255857152 | |
*/ | |
body:before { | |
position: fixed; | |
top: 0; | |
left: 0; | |
right: 0; | |
background: linear-gradient(red, orange); | |
color: white; | |
font-size: 24px; | |
padding: 14px; | |
text-align:center; | |
content: "this site known for making up shit"; | |
z-index: 10000; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment