mirror of https://github.com/MISP/misp-book
17 lines
457 B
CSS
17 lines
457 B
CSS
|
// Include custom css in GitBook: https://help.gitbook.com/content/how-can-i-include-css.html
|
||
|
// styles/website.css: will apply only to the website
|
||
|
// styles/pdf.css: will apply only to the PDF
|
||
|
// styles/ebook.css: will apply only to ebook formats (PDF, Mobi, ePub)
|
||
|
|
||
|
// page-break "trick": http://forums.apricitysoftware.com/t/include-pdf-pagebreak-instructions-in-markdown/152
|
||
|
|
||
|
.pagebreak
|
||
|
{
|
||
|
page-break-after: always;
|
||
|
}
|
||
|
|
||
|
div
|
||
|
{
|
||
|
page-break-after: always;
|
||
|
}
|