Adding a print css to tweak the pdf output.

This commit is contained in:
Nicolas "Pixel" Noble 2021-01-28 23:02:33 -08:00
parent 5bfd3c05c6
commit 9ce49f5275
2 changed files with 13 additions and 0 deletions

10
docs/css/extra.css Normal file
View File

@ -0,0 +1,10 @@
@media print {
.md-typeset {
font-size: 1rem !important;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
.md-typeset code {
font-size: 1em !important;
font-family: Menlo, Monaco, Consolas, "Courier New", monospace !important;
}
}

View File

@ -8,6 +8,9 @@ plugins:
- with-pdf:
output_path: psx-spx.pdf
extra_css:
- css/extra.css
nav:
- 'index.md'
- 'memorymap.md'