This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
parandum/src/css/PopUp.css
T
2021-09-01 17:30:30 +01:00

45 lines
698 B
CSS

.overlay {
width: 100vw;
height: 100vh;
position: fixed;
left: 0;
top: 0;
z-index: 10;
background-color: var(--overlay-color);
opacity: 0.65;
cursor: default;
}
.popup-close-button {
position: absolute;
top: 24px;
right: 24px;
}
.popup-close-button > svg.MuiSvgIcon-root {
font-size: 32px;
color: var(--text-color-tinted);
}
.overlay-content {
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 20;
background: var(--background-color);
border-radius: 12px;
display: flex;
flex-direction: column;
overflow: auto;
text-align: center;
flex-wrap: nowrap;
justify-content: center;
padding: 32px;
}
.overlay-content > h1 {
margin-top: 0;
}