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.less 892B

12345678910111213141516171819202122232425
  1. // Mixins
  2. // --------------------------
  3. .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. .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. .fa-icon-flip(@horiz, @vert, @rotation) {
  18. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1);
  19. -webkit-transform: scale(@horiz, @vert);
  20. -ms-transform: scale(@horiz, @vert);
  21. transform: scale(@horiz, @vert);
  22. }