You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
971 B

7 years ago
  1. /*!
  2. * Angular Material Design
  3. * https://github.com/angular/material
  4. * @license MIT
  5. * v1.1.3
  6. */
  7. @-webkit-keyframes indeterminate-rotate {
  8. 0% {
  9. -webkit-transform: rotate(0deg);
  10. transform: rotate(0deg); }
  11. 100% {
  12. -webkit-transform: rotate(360deg);
  13. transform: rotate(360deg); } }
  14. @keyframes indeterminate-rotate {
  15. 0% {
  16. -webkit-transform: rotate(0deg);
  17. transform: rotate(0deg); }
  18. 100% {
  19. -webkit-transform: rotate(360deg);
  20. transform: rotate(360deg); } }
  21. md-progress-circular {
  22. position: relative;
  23. display: block; }
  24. md-progress-circular._md-progress-circular-disabled {
  25. visibility: hidden; }
  26. md-progress-circular.md-mode-indeterminate svg {
  27. -webkit-animation: indeterminate-rotate 1568.63ms linear infinite;
  28. animation: indeterminate-rotate 1568.63ms linear infinite; }
  29. md-progress-circular svg {
  30. position: absolute;
  31. overflow: visible;
  32. top: 0;
  33. left: 0; }