Skip to content

Instantly share code, notes, and snippets.

@nickhudkins
Created October 21, 2011 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickhudkins/1304761 to your computer and use it in GitHub Desktop.
Save nickhudkins/1304761 to your computer and use it in GitHub Desktop.
Lots of borders
div.modal{
width:400px;
height:700px;
background: rgba(255,255,255,0.2);
margin:100px auto;
border-radius:10px;
border:1px solid rgba(255,255,255,.4);
position:relative;
}
div.modal:after{
background:rgba(255,255,255,.6);
display:block;
width:370px;
height:670px;
content:'';
position:absolute;
top:13px;
left:13px;
border:3px solid white;
border-radius:3px;
}
div.modal:before{
display:block;
content:'';
width:369px;
height:669px;
position:absolute;
top:15px;
left:15px;
z-index:9999;
box-shadow:inset 0 0 10px #000000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment