Skip to content

Instantly share code, notes, and snippets.

@jonathanfann
Created March 22, 2017 14:46
Show Gist options
  • Save jonathanfann/88bf443f0b67f11a02c81a0cbfce8321 to your computer and use it in GitHub Desktop.
Save jonathanfann/88bf443f0b67f11a02c81a0cbfce8321 to your computer and use it in GitHub Desktop.
test to make sure your css works by adding an overlay over your whole site
body:after {
position:fixed;
top:0;
bottom:0;
right:0;
left:0;
padding-top:20%;
text-align:center;
background:rgba(0,0,0,0.8);
content: 'it worked!';
color:white;
font-size:40px;
z-index:999999;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment