Browse Source

Changes to make PDF output match the browser view more closely

font-size: 18pt; instead of fount-size: 22pt;
  remove the "a" tag from def that forces font size, otherwise anchors in various contexts, e.g., headings, etc., will cause ugly rendering due to mismatched font size.
   specify font size for "pre" tags so that code listings more closely match browser rendering
embed
Gary Murakami 12 years ago
parent
commit
73706ad02e
  1. 10
      css/print/pdf.css

10
css/print/pdf.css

@ -15,7 +15,7 @@
} }
body { body {
font-size: 22pt; font-size: 18pt;
width: auto; width: auto;
height: auto; height: auto;
border: 0; border: 0;
@ -46,8 +46,8 @@ html {
/* SECTION 3: Set body font face, size, and color. /* SECTION 3: Set body font face, size, and color.
Consider using a serif font for readability. */ Consider using a serif font for readability. */
body, p, td, li, div, a { body, p, td, li, div {
font-size: 22pt; font-size: 18pt;
} }
/* SECTION 4: Set heading font face, sizes, and color. /* SECTION 4: Set heading font face, sizes, and color.
@ -156,3 +156,7 @@ ul, ol, div, p {
.reveal small a { .reveal small a {
font-size: 16pt !important; font-size: 16pt !important;
} }
pre {
font-size: 9pt !important;
}

Loading…
Cancel
Save