Files
5chan/src/components/loading-ellipsis/loading-ellipsis.module.css
T

22 lines
434 B
CSS
Raw Normal View History

2024-03-22 14:12:13 +01:00
.ellipsis:after {
overflow: hidden;
2024-04-28 19:38:18 +02:00
display: inline-block;
position: absolute;
vertical-align: bottom;
-webkit-animation: ellipsis steps(4,end) 1500ms infinite;
animation: ellipsis steps(4,end) 1500ms infinite;
content: "\2026"; /* ascii code for the ellipsis character */
width: 0px;
2024-03-22 14:12:13 +01:00
}
@keyframes ellipsis {
to {
2024-04-28 19:38:18 +02:00
width: 1.25em;
2024-03-22 14:12:13 +01:00
}
}
@-webkit-keyframes ellipsis {
to {
2024-04-28 19:38:18 +02:00
width: 1.25em;
2024-03-22 14:12:13 +01:00
}
}