55 lines
1.3 KiB
SCSS
55 lines
1.3 KiB
SCSS
/**
|
|
* 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";*/
|