Spaces:
Running
Running
html, | |
body { | |
margin: 0; | |
padding: 0; | |
height: 100%; | |
font-family: 'Inter', sans-serif; | |
} | |
@keyframes wave { | |
0%,100% { | |
transform: translateY(0); | |
} | |
50% { | |
transform: translateY(-5px); | |
} | |
} | |
/* @keyframes wave { | |
0%,100% { | |
transform: translateY(0); | |
} | |
50% { | |
transform: translateY(-5px); | |
} | |
} */ | |
.dot-typing span { | |
display: inline-block; | |
animation: wave 1.4s infinite ease-in-out; | |
font-size: 1.5rem; | |
margin: 0 2px; | |
color: black; | |
/* Or white in dark mode */ | |
} | |
.dot-typing span:nth-child(1) { | |
animation-delay: 0s; | |
} | |
.dot-typing span:nth-child(2) { | |
animation-delay: 0.2s; | |
} | |
.dot-typing span:nth-child(3) { | |
animation-delay: 0.4s; | |
} | |