Advertisement
Guest User

Untitled

a guest
Feb 19th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. .circle-outer {
  2. width: 20px;
  3. height: 20px;
  4. border-radius: 50%;
  5. position: relative;
  6. background: #3cb6f8;
  7. /* Old browsers */
  8. background: -moz-linear-gradient(45deg, #3cb6f8 60%, #ffffff 100%);
  9. /* FF3.6-15 */
  10. background: -webkit-linear-gradient(45deg, #3cb6f8 60%, #ffffff 100%);
  11. /* Chrome10-25,Safari5.1-6 */
  12. background: linear-gradient(45deg, #3cb6f8 60%, #ffffff 100%);
  13. /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  14. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cb6f8', endColorstr='#ffffff', GradientType=1);
  15. /* IE6-9 fallback on horizontal gradient */
  16. animation: loading_anim .5s infinite;
  17. }
  18.  
  19. .circle-inner {
  20. height: 10px;
  21. width: 10px;
  22. background: #fff;
  23. border-radius: 50%;
  24. position: absolute;
  25. top: 5px;
  26. left: 5px;
  27. }
  28.  
  29. @keyframes loading_anim {
  30. to {transform: rotate(360deg)}
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement