Skip to content

Instantly share code, notes, and snippets.

@kevincobain2000
Last active August 29, 2015 14:04
Show Gist options
  • Save kevincobain2000/3c88768e1be993f5e570 to your computer and use it in GitHub Desktop.
Save kevincobain2000/3c88768e1be993f5e570 to your computer and use it in GitHub Desktop.
remodal css without the transitions and font
/* ==========================================================================
Remodal necessary styles
========================================================================== */
/* Hide scroll bar */
html.remodal_lock, body.remodal_lock {
overflow: hidden;
}
/* Anti FOUC */
.remodal, [data-remodal-id] {
visibility: hidden;
}
/* Overlay necessary styles */
.remodal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10000;
display: none;
overflow: auto;
-webkit-overflow-scrolling: touch;
text-align: center;
}
.remodal-overlay:after {
display: inline-block;
height: 100%;
margin-left: -0.05em;
content: '';
}
/* Fix iPad, iPhone glitches */
.remodal-overlay > * {
-webkit-transform: translateZ(0px);
}
/* Modal dialog necessary styles */
.remodal {
position: relative;
display: inline-block;
}
/* ==========================================================================
Remodal default theme
========================================================================== */
/* Background for effects */
.remodal-bg {
}
body.remodal_active .remodal-bg {
}
/* Overlay default theme styles */
.remodal-overlay {
opacity: 0;
}
body.remodal_active .remodal-overlay {
opacity: 1;
}
/* Modal dialog default theme styles */
.remodal {
width: 100%;
min-height: 100%;
margin-top: 50px;
padding: 35px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-size: 16px;
background: #f4f4f4;
background-clip: padding-box;
color: #182a3c;
-webkit-box-shadow: 0px 0px 8px #171a24;
box-shadow: 0px 0px 8px #171a24;
}
body.remodal_active .remodal {
}
/* Modal dialog vertical align */
.remodal, .remodal-overlay:after {
vertical-align: middle;
}
/* Close button */
.remodal-close {
position: absolute;
top: 5px;
left: 5px;
width: 28px;
height: 28px;
text-decoration: none;
-webkit-border-radius: 50%;
border-radius: 50%;
border: 2px solid #3e5368;
}
.remodal-close:after {
display: block;
font-size: 28px;
font-family: Arial, 'Helvetica CY', 'Nimbus Sans L', sans-serif !important;
content: "×";
line-height: 28px;
cursor: pointer;
text-decoration: none;
color: #3e5368;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment