Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

_animated.scss 300B

1234567891011121314151617181920
  1. // Animated Icons
  2. // --------------------------
  3. .#{$fa-css-prefix}-spin {
  4. animation: fa-spin 2s infinite linear;
  5. }
  6. .#{$fa-css-prefix}-pulse {
  7. animation: fa-spin 1s infinite steps(8);
  8. }
  9. @keyframes fa-spin {
  10. 0% {
  11. transform: rotate(0deg);
  12. }
  13. 100% {
  14. transform: rotate(360deg);
  15. }
  16. }