17 lines
353 B
CSS
17 lines
353 B
CSS
@keyframes slideUpFade {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(40px) scale(0.98);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% { box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.4); }
|
|
70% { box-shadow: 0 0 0 10px rgba(79, 172, 254, 0); }
|
|
100% { box-shadow: 0 0 0 0 rgba(79, 172, 254, 0); }
|
|
}
|