Skip to content

Instantly share code, notes, and snippets.

@sokoljr
Last active November 1, 2016 10:03
Show Gist options
  • Save sokoljr/b096cfa0b048213d4e1c3af515428ddc to your computer and use it in GitHub Desktop.
Save sokoljr/b096cfa0b048213d4e1c3af515428ddc to your computer and use it in GitHub Desktop.
Modal css
#modal_form {
height: 300;
max-width: 700px;
margin-top: -150px;
width: 100%;
margin-left: -350px;
border-radius: 5px;
border: 3px #000 solid;
background: #fff;
position: fixed;
top: 50% !important;
left: 50%;
display: none;
opacity: 0;
z-index: 9999;
padding: 0 0 5px;
text-align: center;
}
#overlay {
z-index:9996;
position:fixed;
background-color:#000;
opacity:0.8;
-moz-opacity:0.8;
filter:alpha(opacity=80);
width:100%;
height:100%;
top:0;
left:0;
cursor:pointer;
display:none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment