Created
March 22, 2017 14:46
-
-
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
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
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