Skip to content

Instantly share code, notes, and snippets.

@dcousineau
Created November 5, 2013 19:51
Show Gist options
  • Save dcousineau/7325057 to your computer and use it in GitHub Desktop.
Save dcousineau/7325057 to your computer and use it in GitHub Desktop.
#drop_overlay {
display:none;
background: rgba(0,0,0,0.75);
color: #fff;
}
#drop_overlay span {
font-size: 35px;
text-align: center;
position: absolute;
left:25%;
top:40%;
width:50%;
height:5%;
text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}
body.dragover #drop_overlay {
z-index:90;
display:block;
position: fixed;
top:0;
right:0;
bottom:0;
left:0;
width:100%;
height:100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment