26 lines
485 B
SCSS
26 lines
485 B
SCSS
/* the geometry of the page */
|
|
$page-width: 210mm;
|
|
$page-height: 290mm;
|
|
|
|
/* the size of the crop marks*/
|
|
$crop-size: 0mm;
|
|
|
|
/* the size of bleed */
|
|
$bleed: 0mm;
|
|
|
|
// page layouts
|
|
// 1 for single page
|
|
// 2 for double page
|
|
$page-layout:1;
|
|
|
|
$page-margin-inside: 20mm;
|
|
$page-margin-outside: 20mm;
|
|
$page-margin-top: 8mm;
|
|
$page-margin-bottom: 12mm;
|
|
|
|
// Header & footer variables
|
|
$header-height: 10mm;
|
|
$header-text: "Ethica Lectures";
|
|
$footer-height: 10mm;
|
|
$footer-text: counter(page-counter);
|