main.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. /**
  31. * Defines and loads the rules that set the geometry of the page and its
  32. * representation on screen. This is the core of html2print.
  33. *
  34. * Customize the variables to your needs.
  35. */
  36. /* the geometry of the page */
  37. $page-width: mm2pt(200);
  38. $page-height: mm2pt(287);
  39. /* the size of the crop marks based on scribus defaults */
  40. $crop-size: mm2pt(2);
  41. /* the size of bleed */
  42. $bleed: mm2pt(3);
  43. /* loads the core file */
  44. // @import "html2print.scss";
  45. /**
  46. * THE CODE BELOW IS NOT REQUIRED TO MAKE HTML2PRINT WORK, ALTHOUGH IT PROVES
  47. * USEFUL IN MANY SITUATIONS.
  48. *
  49. * YOU ARE ENCOURAGED TO CUSTOMIZE IT TO YOU NEEDS.
  50. */
  51. /**
  52. * Defines and generate helper css rules to absolutly position elements on a
  53. * grid.
  54. *
  55. * Customize the variables to your needs.
  56. */
  57. $col-number: 9;
  58. $col-gutter: mm2pt(3);
  59. //$row-number: 13;
  60. $row-number: 12;
  61. $row-gutter: mm2pt(4);
  62. $grid-color: rgba(255, 0, 0, 0.25);
  63. $baseline-grid-color: rgba(0, 255, 255, 0.15);
  64. /* Loads the rules for using grids */
  65. // @import "grid.scss";
  66. /**
  67. * Loads the rules to outline the main blocs
  68. */
  69. // @import "debug.scss";
  70. /**
  71. * Loads a few less helpers
  72. */
  73. // @import "mixins.scss";
  74. /**
  75. * Defines and loads the rules that set the base layout of the document
  76. * (header, body, footer)
  77. *
  78. * Customize the variables to your needs.
  79. */
  80. // FIXME: make a case for single page layouts
  81. $page-margin-inside: mm2pt(7.5);
  82. $page-margin-outside: mm2pt(15);
  83. $page-margin-top: mm2pt(10);
  84. $page-margin-bottom: mm2pt(10);
  85. // @import "layout.scss";
  86. /**
  87. * Loads your own styles.
  88. *
  89. * Customize the file/path to you needs.
  90. */
  91. /*@import '/vendors/reset-css/reset.css';*/
  92. /*@import "../vendors/normalize.css/normalize.css";*/
  93. /*@import "../vendors/normalize-opentype.css/normalize-opentype.css";*/
  94. // @import "fonts.scss";
  95. // @import "colors.scss";
  96. $line-height: mm2pt(4);
  97. // @import "styles.scss";
  98. @import "html2print.scss";
  99. @import "grid.scss";
  100. @import "debug.scss";
  101. @import "mixins.scss";
  102. @import "layout.scss";
  103. // @import "fonts.scss";
  104. // @import "colors.scss";
  105. @import "styles.scss";
  106. /*@import "export.scss";*/