Skip to content

Instantly share code, notes, and snippets.

@KoryNunn
Created January 12, 2013 14:57
Show Gist options
  • Select an option

  • Save KoryNunn/4518395 to your computer and use it in GitHub Desktop.

Select an option

Save KoryNunn/4518395 to your computer and use it in GitHub Desktop.
Add to Chrome custom style-sheet to make all webpages darker (if your screen is too bright.)
html:after{
content:'';
position:fixed;
top:0;
bottom:0;
left:0;
right:0;
background: black;
opacity:0.8;
pointer-events:none;
z-index:9999999;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment