Blame Raw
permissionBRICK · 15db1f8f · · 64 lines (1.2 KB)
1 contributor
1/* EPUB stylesheet - Times New Roman body text */
2
3body {
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
11h1 {
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
21h2, h3, h4 {
22 font-family: "Times New Roman", "Times", "Georgia", serif;
23 font-weight: bold;
24}
25
26p {
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 */
33h1 + p, h2 + p, h3 + p,
34.center-break + p,
35div[style*="page-break"] + p {
36 text-indent: 0;
37}
38
39/* Centered section break symbol (~V~) */
40p.center-break,
41p[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 */
49em {
50 font-style: italic;
51}
52
53strong {
54 font-weight: bold;
55}
56
57/* Block quotes */
58blockquote {
59 font-style: italic;
60 margin-left: 2em;
61 margin-right: 2em;
62 border-left: 3px solid #ccc;
63 padding-left: 1em;
64}