Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. .lds-ripple {
  2. display: block;
  3. position: relative;
  4. width: 64px;
  5. height: 64px;
  6. margin: 0 auto;
  7.  
  8. }
  9.  
  10. .lds-ripple div {
  11. position: absolute;
  12. border: 4px solid rgb(0, 195, 255);
  13. opacity: 1;
  14. border-radius: 50%;
  15. animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  16. }
  17.  
  18. .lds-ripple div:nth-child(2) {
  19. animation-delay: -0.5s;
  20. }
  21.  
  22. @keyframes lds-ripple {
  23. 0% {
  24. top: 28px;
  25. left: 28px;
  26. width: 0;
  27. height: 0;
  28. opacity: 1;
  29. }
  30.  
  31. 100% {
  32. top: -1px;
  33. left: -1px;
  34. width: 58px;
  35. height: 58px;
  36. opacity: 0;
  37. }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement