A simple ticketing application written in Python/Django
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.

_rotated-flipped.scss 672B

1234567891011121314151617181920
  1. // Rotated & Flipped Icons
  2. // -------------------------
  3. .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
  4. .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
  5. .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
  6. .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
  7. .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
  8. // Hook for IE8-9
  9. // -------------------------
  10. :root .#{$fa-css-prefix}-rotate-90,
  11. :root .#{$fa-css-prefix}-rotate-180,
  12. :root .#{$fa-css-prefix}-rotate-270,
  13. :root .#{$fa-css-prefix}-flip-horizontal,
  14. :root .#{$fa-css-prefix}-flip-vertical {
  15. filter: none;
  16. }