123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /**
- * This file is part of HTML2print.
- *
- * HTML2print is free software: you can redistribute it and/or modify it under the
- * terms of the GNU Affero General Public License as published by the Free
- * Software Foundation, either version 3 of the License, or (at your option) any
- * later version.
- *
- * HTML2print is distributed in the hope that it will be useful, but WITHOUT ANY
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- * PARTICULAR PURPOSE. See the GNU Affero General Public License for more
- * details.
- *
- * You should have received a copy of the GNU Affero General Public License along
- * with HTML2print. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * The less CSS is splitted accross different files for a better organisation.
- *
- * This is the main less css file that defines custom values and requires all
- * the the neccessary dependencies.
- */
- /**
- * THE CODE BELOW IS REQUIRED TO MAKE HTML2PRINT WORK.
- */
- @function mm2pt($mm){
- // @return $mm*2.8346pt;
- @return $mm*1mm;
- }
- @import "setup.scss"
- @import "html2print.scss";
- @import "grid.scss";
- @import "debug.scss";
- @import "mixins.scss";
- @import "layout.scss";
- // @import "fonts.scss";
- // @import "colors.scss";
- @import "styles.scss";
- /*@import "export.scss";*/
|