Plat Admin

spinner.css 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /* BEM support Func
  2. -------------------------- */
  3. /* Element Chalk Variables */
  4. /* Transition
  5. -------------------------- */
  6. /* Colors
  7. -------------------------- */
  8. /* 53a8ff */
  9. /* 66b1ff */
  10. /* 79bbff */
  11. /* 8cc5ff */
  12. /* a0cfff */
  13. /* b3d8ff */
  14. /* c6e2ff */
  15. /* d9ecff */
  16. /* ecf5ff */
  17. /* Link
  18. -------------------------- */
  19. /* Background
  20. -------------------------- */
  21. /* Border
  22. -------------------------- */
  23. /* Box-shadow
  24. -------------------------- */
  25. /* Fill
  26. -------------------------- */
  27. /* Font
  28. -------------------------- */
  29. /* Size
  30. -------------------------- */
  31. /* z-index
  32. -------------------------- */
  33. /* Disable base
  34. -------------------------- */
  35. /* Icon
  36. -------------------------- */
  37. /* Checkbox
  38. -------------------------- */
  39. /* Radio
  40. -------------------------- */
  41. /* Select
  42. -------------------------- */
  43. /* Alert
  44. -------------------------- */
  45. /* Message Box
  46. -------------------------- */
  47. /* Message
  48. -------------------------- */
  49. /* Notification
  50. -------------------------- */
  51. /* Input
  52. -------------------------- */
  53. /* Cascader
  54. -------------------------- */
  55. /* Group
  56. -------------------------- */
  57. /* Tab
  58. -------------------------- */
  59. /* Button
  60. -------------------------- */
  61. /* cascader
  62. -------------------------- */
  63. /* Switch
  64. -------------------------- */
  65. /* Dialog
  66. -------------------------- */
  67. /* Table
  68. -------------------------- */
  69. /* Pagination
  70. -------------------------- */
  71. /* Popover
  72. -------------------------- */
  73. /* Tooltip
  74. -------------------------- */
  75. /* Tag
  76. -------------------------- */
  77. /* Tree
  78. -------------------------- */
  79. /* Dropdown
  80. -------------------------- */
  81. /* Badge
  82. -------------------------- */
  83. /* Card
  84. --------------------------*/
  85. /* Slider
  86. --------------------------*/
  87. /* Steps
  88. --------------------------*/
  89. /* Menu
  90. --------------------------*/
  91. /* Rate
  92. --------------------------*/
  93. /* DatePicker
  94. --------------------------*/
  95. /* Loading
  96. --------------------------*/
  97. /* Scrollbar
  98. --------------------------*/
  99. /* Carousel
  100. --------------------------*/
  101. /* Collapse
  102. --------------------------*/
  103. /* Transfer
  104. --------------------------*/
  105. /* Header
  106. --------------------------*/
  107. /* Footer
  108. --------------------------*/
  109. /* Main
  110. --------------------------*/
  111. /* Break-point
  112. --------------------------*/
  113. /* Break-points
  114. -------------------------- */
  115. /* Scrollbar
  116. -------------------------- */
  117. /* Placeholder
  118. -------------------------- */
  119. /* BEM
  120. -------------------------- */
  121. .el-time-spinner {
  122. width: 100%;
  123. white-space: nowrap; }
  124. .el-spinner {
  125. display: inline-block;
  126. vertical-align: middle; }
  127. .el-spinner-inner {
  128. -webkit-animation: rotate 2s linear infinite;
  129. animation: rotate 2s linear infinite;
  130. width: 50px;
  131. height: 50px; }
  132. .el-spinner-inner .path {
  133. stroke: #ececec;
  134. stroke-linecap: round;
  135. -webkit-animation: dash 1.5s ease-in-out infinite;
  136. animation: dash 1.5s ease-in-out infinite; }
  137. @-webkit-keyframes rotate {
  138. 100% {
  139. -webkit-transform: rotate(360deg);
  140. transform: rotate(360deg); } }
  141. @keyframes rotate {
  142. 100% {
  143. -webkit-transform: rotate(360deg);
  144. transform: rotate(360deg); } }
  145. @-webkit-keyframes dash {
  146. 0% {
  147. stroke-dasharray: 1, 150;
  148. stroke-dashoffset: 0; }
  149. 50% {
  150. stroke-dasharray: 90, 150;
  151. stroke-dashoffset: -35; }
  152. 100% {
  153. stroke-dasharray: 90, 150;
  154. stroke-dashoffset: -124; } }
  155. @keyframes dash {
  156. 0% {
  157. stroke-dasharray: 1, 150;
  158. stroke-dashoffset: 0; }
  159. 50% {
  160. stroke-dasharray: 90, 150;
  161. stroke-dashoffset: -35; }
  162. 100% {
  163. stroke-dasharray: 90, 150;
  164. stroke-dashoffset: -124; } }