Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecss
titleA4 plus 3mm Rand (21,6cm * 30,3cm)
linenumberstrue
collapsetrue
/* pdf_css */
.page {
	/* Seiten-Breite */
	width: 21.6cm; /* 0.3cm + 21cm + 0.3cm */
}

/* pdf_body_css */
.page-item {
	/* linker Seitenrand */
	margin-left: 1.75cm; /* 0.3cm + 1.45cm */
	/* rechter Seitenrand-Abstand */
	margin-right: 1.75cm; /* 1.45cm + 0.3cm */
}

/* pdf_header_css */
.header {
	/* linker Seitenrand */
	margin-left: 1.75cm; /* 0.3cm + 1.45cm */
	/* rechter Seitenrand */
	margin-right: 1.75cm; /* 0.3cm + 1.45cm */
	/* oberer SeitenransSeitenrand */
	margin-top: 0.55cm; /* 0.3cm + 0.25cm */
}

/* pdf_footer_css */
.footer {
	/* linker Seitenrand */
	margin-left: 1.75cm; /* 0.3cm + 1.45cm */
	/* rechter Seitenrand */
	margin-right: 1.75cm; /* 0.3cm + 1.45cm */
	/* unterer Seitenrand */
	margin-bottom: 0.7cm; /* 0.4cm + 0.3cm */
}

...