main.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /**
  2. * This file is part of HTML2print.
  3. *
  4. * HTML2print is free software: you can redistribute it and/or modify it under the
  5. * terms of the GNU Affero General Public License as published by the Free
  6. * Software Foundation, either version 3 of the License, or (at your option) any
  7. * later version.
  8. *
  9. * HTML2print is distributed in the hope that it will be useful, but WITHOUT ANY
  10. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  11. * PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  12. * details.
  13. *
  14. * You should have received a copy of the GNU Affero General Public License along
  15. * with HTML2print. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. /**
  18. * The less CSS is splitted accross different files for a better organisation.
  19. *
  20. * This is the main less css file that defines custom values and requires all
  21. * the the neccessary dependencies.
  22. */
  23. /**
  24. * THE CODE BELOW IS REQUIRED TO MAKE HTML2PRINT WORK.
  25. */
  26. @function mm2pt($mm){
  27. // @return $mm*2.8346pt;
  28. @return $mm*1mm;
  29. }
  30. @import "setup.scss";
  31. @import "html2print.scss";
  32. @import "grid.scss";
  33. @import "debug.scss";
  34. @import "mixins.scss";
  35. @import "layout.scss";
  36. // @import "fonts.scss";
  37. // @import "colors.scss";
  38. @import "styles.scss";
  39. /*@import "export.scss";*/