| 1 | /* EPUB stylesheet - Times New Roman body text */ |
| 2 | |
| 3 | body { |
| 4 | font-family: "Times New Roman", "Times", "Georgia", serif; |
| 5 | font-size: 1em; |
| 6 | line-height: 1.6; |
| 7 | margin: 1em; |
| 8 | text-align: justify; |
| 9 | } |
| 10 | |
| 11 | h1 { |
| 12 | font-family: "Times New Roman", "Times", "Georgia", serif; |
| 13 | font-size: 1.8em; |
| 14 | font-weight: bold; |
| 15 | text-align: center; |
| 16 | margin-top: 2em; |
| 17 | margin-bottom: 1.5em; |
| 18 | page-break-before: always; |
| 19 | } |
| 20 | |
| 21 | h2, h3, h4 { |
| 22 | font-family: "Times New Roman", "Times", "Georgia", serif; |
| 23 | font-weight: bold; |
| 24 | } |
| 25 | |
| 26 | p { |
| 27 | margin-top: 0.3em; |
| 28 | margin-bottom: 0.3em; |
| 29 | text-indent: 1.5em; |
| 30 | } |
| 31 | |
| 32 | /* First paragraph after a heading or break - no indent */ |
| 33 | h1 + p, h2 + p, h3 + p, |
| 34 | .center-break + p, |
| 35 | div[style*="page-break"] + p { |
| 36 | text-indent: 0; |
| 37 | } |
| 38 | |
| 39 | /* Centered section break symbol (~V~) */ |
| 40 | p.center-break, |
| 41 | p[style*="text-align: center"] { |
| 42 | text-indent: 0; |
| 43 | text-align: center; |
| 44 | margin-top: 1em; |
| 45 | margin-bottom: 1em; |
| 46 | } |
| 47 | |
| 48 | /* Emphasis styles */ |
| 49 | em { |
| 50 | font-style: italic; |
| 51 | } |
| 52 | |
| 53 | strong { |
| 54 | font-weight: bold; |
| 55 | } |
| 56 | |
| 57 | /* Block quotes */ |
| 58 | blockquote { |
| 59 | font-style: italic; |
| 60 | margin-left: 2em; |
| 61 | margin-right: 2em; |
| 62 | border-left: 3px solid #ccc; |
| 63 | padding-left: 1em; |
| 64 | } |