pstream is dead; long live pstream
taciturnaxolotl.github.io/pstream-ng/
1.spinner {
2 width: 1em;
3 height: 1em;
4 border: 0.12em solid var(--color, white);
5 border-bottom-color: transparent;
6 border-radius: 50%;
7 display: inline-block;
8 box-sizing: border-box;
9 animation: spinner-rotation 800ms linear infinite;
10}
11
12@keyframes spinner-rotation {
13 0% {
14 transform: rotate(0deg);
15 }
16 100% {
17 transform: rotate(360deg);
18 }
19}