2018-01-30 14:16:32 +00:00
|
|
|
#overlayWrapper {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: rgba(255, 255, 255, 0.86);
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
#overlayContent {
|
|
|
|
background: white;
|
2018-05-03 13:44:34 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
2018-01-30 14:16:32 +00:00
|
|
|
margin: 1em;
|
2018-05-09 13:44:52 +00:00
|
|
|
padding: 1em;
|
2018-01-30 14:16:32 +00:00
|
|
|
border-radius: 0.3em;
|
2018-05-03 13:44:34 +00:00
|
|
|
border: 2px solid #333350;
|
|
|
|
position: fixed;
|
|
|
|
min-height: 6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 600px) {
|
|
|
|
#overlayContent {
|
|
|
|
width: 70%;
|
|
|
|
transform: translateX(-50%) translateY(-50%);
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
max-width: 40em;
|
|
|
|
}
|
2018-01-30 14:16:32 +00:00
|
|
|
}
|