mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-29 21:58:14 +03:00
25 lines
571 B
CSS
25 lines
571 B
CSS
#modal-container > div {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
z-index: 1000;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: var(--backdrop-color);
|
|
backdrop-filter: blur(24px);
|
|
animation: appear 0.5s var(--timing-function) both;
|
|
}
|
|
#modal-container > div .sheet {
|
|
transition: transform 0.3s var(--timing-function);
|
|
transform-origin: center bottom;
|
|
}
|
|
#modal-container > div:has(~ div) .sheet {
|
|
transform: scale(0.975);
|
|
}
|
|
|
|
#modal-container > .light {
|
|
backdrop-filter: saturate(0.75);
|
|
}
|