mon-entreprise/source/components/Overlay.css

33 lines
520 B
CSS
Raw Normal View History

#overlayWrapper {
position: fixed;
top: 0;
left: 0;
2018-10-05 15:54:39 +00:00
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.9);
overflow: auto;
z-index: 1;
}
#overlayContent {
position: absolute;
padding-bottom: 1rem;
2018-05-03 13:44:34 +00:00
min-height: 6em;
}
#overlayCloseButton {
position: absolute;
top: 0rem;
text-decoration: none;
2018-10-02 16:28:56 +00:00
font-size: 200%;
color: rgba(51, 51, 80, 0.8);
right: 0.5rem;
}
2018-05-03 13:44:34 +00:00
@media (min-width: 600px) {
#overlayContent {
2018-08-29 16:22:52 +00:00
transform: translateX(-50%);
top: 100px;
2018-05-03 13:44:34 +00:00
left: 50%;
2018-08-29 16:22:52 +00:00
width: 80%;
2018-05-03 13:44:34 +00:00
max-width: 40em;
}
}