a zip code crypto-currency system good for red ONLY

spinner.md.scss 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. @import "../../themes/ionic.globals.md";
  2. // Material Design Spinner
  3. // --------------------------------------------------
  4. /// @prop - Color of the ios spinner
  5. $spinner-md-ios-color: #69717d !default;
  6. /// @prop - Color of the bubbles spinner
  7. $spinner-md-bubbles-color: #000 !default;
  8. /// @prop - Color of the circles spinner
  9. $spinner-md-circles-color: #69717d !default;
  10. /// @prop - Color of the crescent spinner
  11. $spinner-md-crescent-color: #000 !default;
  12. /// @prop - Color of the dots spinner
  13. $spinner-md-dots-color: #444 !default;
  14. .spinner-md-ios line,
  15. .spinner-md-ios-small line {
  16. stroke: $spinner-md-ios-color;
  17. }
  18. .spinner-md-bubbles circle {
  19. fill: $spinner-md-bubbles-color;
  20. }
  21. .spinner-md-circles circle {
  22. fill: $spinner-md-circles-color;
  23. }
  24. .spinner-md-crescent circle {
  25. stroke: $spinner-md-crescent-color;
  26. }
  27. .spinner-md-dots circle {
  28. fill: $spinner-md-dots-color;
  29. }
  30. // Generate Material Design Spinner Colors
  31. // --------------------------------------------------
  32. @each $color-name, $color-base, $color-contrast in get-colors($colors-md) {
  33. .spinner-md-#{$color-name} {
  34. &.spinner-ios line,
  35. &.spinner-ios-small line,
  36. &.spinner-crescent circle {
  37. stroke: $color-base;
  38. }
  39. &.spinner-bubbles circle,
  40. &.spinner-circles circle,
  41. &.spinner-dots circle {
  42. fill: $color-base;
  43. }
  44. }
  45. }