loading-dots.css
última modificação
13/05/2026 14h37
loading-dots.css
— 0 KB
Conteúdo do arquivo
.loading-dots {
display: flex;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
gap: 0.25rem;
}
.loading-dots span {
width: 0.5rem;
height: 0.5rem;
background-color: #333;
border-radius: 50%;
animation: bounce 1.4s infinite;
}
.loading-dots span:nth-child(1) {
animation-delay: 0s;
}
.loading-dots span:nth-child(2) {
animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
animation-delay: 0.4s;
}
@keyframes bounce {
0%,
80%,
100% {
opacity: 0.3;
transform: translateY(0);
}
40% {
opacity: 1;
transform: translateY(-0.5rem);
}
}
Todo o conteúdo deste site está publicado sob a licença Creative Commons Atribuição-SemDerivações 3.0 Não Adaptada.