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.

_mixins.scss 906B

12345678910111213141516171819202122232425
  1. // Mixins
  2. // --------------------------
  3. @mixin fa-icon() {
  4. display: inline-block;
  5. font: normal normal normal 14px/1 FontAwesome; // shortening font declaration
  6. font-size: inherit; // can't have font-size inherit on line above, so need to override
  7. text-rendering: auto; // optimizelegibility throws things off #1094
  8. -webkit-font-smoothing: antialiased;
  9. -moz-osx-font-smoothing: grayscale;
  10. }
  11. @mixin fa-icon-rotate($degrees, $rotation) {
  12. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
  13. -webkit-transform: rotate($degrees);
  14. -ms-transform: rotate($degrees);
  15. transform: rotate($degrees);
  16. }
  17. @mixin fa-icon-flip($horiz, $vert, $rotation) {
  18. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
  19. -webkit-transform: scale($horiz, $vert);
  20. -ms-transform: scale($horiz, $vert);
  21. transform: scale($horiz, $vert);
  22. }