spinner_wave.styl 605 B

1234567891011121314151617181920212223242526272829
  1. @import 'nib'
  2. // From https://github.com/tobiasahlin/SpinKit
  3. .sk-spinner-wave {
  4. width: 50px;
  5. height: 50px;
  6. margin: auto;
  7. text-align: center;
  8. font-size: 10px;
  9. div {
  10. background-color: #333;
  11. height: 100%;
  12. width: 6px;
  13. display: inline-block;
  14. animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
  15. }
  16. .sk-rect2 { animation-delay: -1.1s }
  17. .sk-rect3 { animation-delay: -1.0s }
  18. .sk-rect4 { animation-delay: -0.9s }
  19. .sk-rect5 { animation-delay: -0.8s }
  20. }
  21. @keyframes sk-waveStretchDelay {
  22. 0%, 40%, 100% { transform: scaleY(0.4) }
  23. 20% { transform: scaleY(1.0) }
  24. }