1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 19:55:00 +00:00
mon-entreprise/source/components/Overlay.css
mama 17ed288103 Introduction d'un composant panneau volant
Tiré du dictionaire des mécanismes
2018-02-12 15:53:52 +01:00

23 lines
402 B
CSS

#overlayWrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.86);
z-index: 1;
}
#overlayContent {
background: white;
position: fixed;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
width: 70%;
max-width: 40em;
border: 2px solid #333350;
margin: 1em;
padding: 0em 1.5em;
min-height: 6em;
border-radius: 0.3em;
}