ball-clip-rotate.css 533 B

12345678910111213141516171819202122
  1. @keyframes rotate {
  2. 0% {
  3. transform: rotate(0deg) scale(1); }
  4. 50% {
  5. transform: rotate(180deg) scale(0.6); }
  6. 100% {
  7. transform: rotate(360deg) scale(1); } }
  8. .ball-clip-rotate > div {
  9. background-color: #55595c;
  10. width: 15px;
  11. height: 15px;
  12. border-radius: 100%;
  13. margin: 2px;
  14. animation-fill-mode: both;
  15. border: 2px solid #55595c;
  16. border-bottom-color: transparent;
  17. height: 25px;
  18. width: 25px;
  19. background: transparent !important;
  20. display: inline-block;
  21. animation: rotate 0.75s 0s linear infinite; }