92 lines
1.5 KiB
SCSS
92 lines
1.5 KiB
SCSS
.modal {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 220;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: scroll;
|
|
overscroll-behavior: contain;
|
|
cursor: pointer;
|
|
|
|
& > div {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
|
|
background-color: var(--fg-0);
|
|
opacity: 0.65;
|
|
z-index: 220;
|
|
}
|
|
}
|
|
|
|
.popupImage {
|
|
margin: auto;
|
|
display: block;
|
|
max-width: 80vw;
|
|
max-height: 80vh;
|
|
animation-name: zoom;
|
|
animation-duration: 0.6s;
|
|
animation-fill-mode: both;
|
|
z-index: 230;
|
|
cursor: auto;
|
|
}
|
|
|
|
.close {
|
|
position: fixed;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
top: 3.6rem;
|
|
right: 4rem;
|
|
height: 3rem;
|
|
width: 3rem;
|
|
padding: 0.25rem;
|
|
|
|
appearance: none;
|
|
border: unset;
|
|
font-size: unset;
|
|
font-family: unset;
|
|
|
|
color: var(--bg-0);
|
|
background: var(--fg-0-translucid);
|
|
font-weight: bold;
|
|
transition: 0.3s;
|
|
cursor: pointer;
|
|
border-radius: 100%;
|
|
z-index: 230;
|
|
|
|
svg {
|
|
height: 3rem;
|
|
width: 3rem;
|
|
}
|
|
}
|
|
|
|
.close:hover {
|
|
top: 3.2rem;
|
|
right: 3.6rem;
|
|
height: 3.8rem;
|
|
width: 3.8rem;
|
|
|
|
svg {
|
|
height: 3.8rem;
|
|
width: 3.8rem;
|
|
}
|
|
}
|
|
|
|
@keyframes zoom {
|
|
from {
|
|
transform:scale(0);
|
|
box-shadow: 0 0 0.2rem rgba(0,0,0,0.5);
|
|
}
|
|
to {
|
|
transform:scale(1);
|
|
box-shadow: 0 0 1rem rgba(0,0,0,0.5);
|
|
}
|
|
} |