index.less 757 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * @file index 样式文件
  3. * @author Auto Generated by IconPark
  4. */
  5. .i-icon {
  6. display: inline-block;
  7. color: inherit;
  8. font-style: normal;
  9. line-height: 0;
  10. text-align: center;
  11. text-transform: none;
  12. vertical-align: -0.125em;
  13. text-rendering: optimizeLegibility;
  14. -webkit-font-smoothing: antialiased;
  15. -moz-osx-font-smoothing: grayscale;
  16. &-spin svg {
  17. animation: i-icon-spin 1s infinite linear;
  18. }
  19. &-rtl {
  20. transform: scaleX(-1);
  21. }
  22. }
  23. @keyframes i-icon-spin {
  24. 100% {
  25. -webkit-transform: rotate(360deg);
  26. transform: rotate(360deg)
  27. }
  28. }
  29. @-webkit-keyframes i-icon-spin {
  30. 100% {
  31. -webkit-transform: rotate(360deg);
  32. transform: rotate(360deg)
  33. }
  34. }