css-loader
css-loader copied to clipboard
This is a library having a collection of different types of CSS loaders, spinners
I cloned this repo the other day to look at things more closely, and the size of the download surprised me somewhat... Git downloaded 25MB-odd of objects, yet the actual...
```CSS .loader::after { content: ''; box-sizing: border-box; /**HERE**/ width: 48px; height: 48px; left: 0; bottom: 0; position: absolute; border-radius: 50% 50% 0; border: 15px solid #FFF; transform: rotate(45deg) translate(0, 0);...
```CSS .loader::after { content: ''; box-sizing: border-box; /**HERE**/ width: 48px; height: 48px; left: 0; bottom: 0; position: absolute; border-radius: 50% 50% 0; border: 15px solid #FFF; transform: rotate(45deg) translate(0, 0);...
At least for the spinning star, the provided CSS excludes the flex container, which is required for it to display.
Hi, And thank you for this amazing work of art. I tried to use this full moon with a spinning light around it in my code and I realized that...