Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-06 17:57:59 +02:00
parent bb001148a5
commit 8d7a8c70f0
73 changed files with 1508 additions and 6817 deletions

View File

@ -0,0 +1,44 @@
@import "../config.styl"
.popup
position fixed
height 100%
width 100%
top 0
left 0
background rgba($lightGrayLight, .7)
@media (prefers-color-scheme dark)
background rgba($lightGrayDark, .7)
cursor pointer
z-index 200
animation fadeIn .3s ease-in-out 1 forwards
@keyframes fadeIn
from
opacity 0
to
opacity 1
.popupChild
cursor initial
z-index 201
min-width 50%
animation popin .3s ease-in-out 1
@media (max-width $tablet)
min-width 70%
@media (max-width $mobile)
min-width 90%
@keyframes popin
from
margin-top 50px
to
margin-top 0
.exit
cursor pointer
height 100%