148 lines
2.5 KiB
CSS
148 lines
2.5 KiB
CSS
@keyframes fade {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.overlay {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
height: var(--visual-viewport-height);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
z-index: 100;
|
|
|
|
&[data-entering] {
|
|
animation: fade 400ms ease-in;
|
|
}
|
|
&[data-exiting] {
|
|
animation: fade 400ms reverse ease-in;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.overlay {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 768px) and (prefers-reduced-motion) {
|
|
.overlay:before {
|
|
background-image: url("/_static/img/confetti.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: center 40%;
|
|
content: "";
|
|
width: 100%;
|
|
height: 100%;
|
|
animation: fade 400ms ease-in;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.modal {
|
|
background-color: var(--Base-Surface-Primary-light-Normal);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
box-shadow: var(--modal-box-shadow);
|
|
width: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 102;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.modal {
|
|
left: auto;
|
|
bottom: auto;
|
|
width: 400px;
|
|
}
|
|
}
|
|
|
|
.dialog {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
padding-bottom: var(--Spacing-x2);
|
|
|
|
/* to hide sliding cards */
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.top {
|
|
--button-height: 32px;
|
|
box-sizing: content-box;
|
|
display: flex;
|
|
align-items: center;
|
|
height: var(--button-height);
|
|
position: relative;
|
|
justify-content: center;
|
|
padding: var(--Spacing-x2) var(--Spacing-x2) 0;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0 var(--Spacing-x3);
|
|
gap: var(--Spacing-x2);
|
|
min-height: 350px;
|
|
}
|
|
|
|
.nav {
|
|
border-top: 1px solid var(--Base-Border-Subtle);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0 var(--Spacing-x2);
|
|
width: 100%;
|
|
}
|
|
|
|
.nav button {
|
|
user-select: none;
|
|
|
|
&:nth-child(1) {
|
|
padding-left: 0;
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
padding-right: 0;
|
|
}
|
|
|
|
&[disabled] {
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
|
|
.chevron {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.close {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
right: var(--Spacing-x2);
|
|
width: 32px;
|
|
height: var(--button-height);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
/*
|
|
* temporary fix until next version of tsparticles is released
|
|
* https://github.com/tsparticles/tsparticles/issues/5375
|
|
*/
|
|
.confetti {
|
|
position: relative;
|
|
z-index: 101;
|
|
}
|