website/app/static/animations.css

22 lines
193 B
CSS
Raw Permalink Normal View History

2025-01-07 00:13:11 +03:00
@keyframes blink {
0% {
opacity: 0;
}
}
2025-01-08 00:20:11 +03:00
@keyframes cursor {
to {
border-color: transparent;
}
}
@keyframes typing {
from {
width: 0%;
}
to {
width: 100%;
}
}