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.

30 lines
765 B

  1. // Spinning Icons
  2. // --------------------------
  3. .@{fa-css-prefix}-spin {
  4. -webkit-animation: spin 2s infinite linear;
  5. -moz-animation: spin 2s infinite linear;
  6. -o-animation: spin 2s infinite linear;
  7. animation: spin 2s infinite linear;
  8. }
  9. @-moz-keyframes spin {
  10. 0% { -moz-transform: rotate(0deg); }
  11. 100% { -moz-transform: rotate(359deg); }
  12. }
  13. @-webkit-keyframes spin {
  14. 0% { -webkit-transform: rotate(0deg); }
  15. 100% { -webkit-transform: rotate(359deg); }
  16. }
  17. @-o-keyframes spin {
  18. 0% { -o-transform: rotate(0deg); }
  19. 100% { -o-transform: rotate(359deg); }
  20. }
  21. @-ms-keyframes spin {
  22. 0% { -ms-transform: rotate(0deg); }
  23. 100% { -ms-transform: rotate(359deg); }
  24. }
  25. @keyframes spin {
  26. 0% { transform: rotate(0deg); }
  27. 100% { transform: rotate(359deg); }
  28. }