Style pages

This commit is contained in:
mg
2021-09-01 17:30:30 +01:00
parent b7865cf821
commit 8e2a5a13a5
15 changed files with 1030 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
.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;
}