49 lines
723 B
CSS
49 lines
723 B
CSS
|
|
.overlay {
|
||
|
|
position: absolute;
|
||
|
|
inset: 0;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.content {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
gap: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pulse {
|
||
|
|
position: relative;
|
||
|
|
height: 90px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pulse::before {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
inset: -12px;
|
||
|
|
border-radius: 9999px;
|
||
|
|
border: 12px solid rgba(255, 255, 255, 0.6);
|
||
|
|
animation: pulse 1.6s ease-out infinite;
|
||
|
|
}
|
||
|
|
|
||
|
|
.text {
|
||
|
|
color: var(--cpd-color-text-on-solid-primary);
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes pulse {
|
||
|
|
0% {
|
||
|
|
transform: scale(0.95);
|
||
|
|
opacity: 0.7;
|
||
|
|
}
|
||
|
|
70% {
|
||
|
|
transform: scale(1.15);
|
||
|
|
opacity: 0.15;
|
||
|
|
}
|
||
|
|
100% {
|
||
|
|
transform: scale(1.2);
|
||
|
|
opacity: 0;
|
||
|
|
}
|
||
|
|
}
|