blob: f9684d5ffe804c2204ca87139d07de5f459ad25d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
section.chapter {
padding: 1em;
font-size: 22px;
max-width: 700px;
margin: auto;
text-align: justify;
-moz-hyphens: auto;
line-height: 1.5em;
}
section.chapter p {
text-indent: 1.5em;
margin: 0;
}
section.chapter blockquote {
font-style: italic;
}
section.chapter cite {
font-style: italic;
}
section.chapter > h1 {
text-align: center;
text-transform: uppercase;
line-height: 1.5em;
font-size: 140%;
}
section.chapter h1 > span.label {
font-weight: normal;
font-variant: small-caps;
text-transform: none;
}
section.chapter h1 > span.label:before {
content: "— ";
}
section.chapter h1 > span.label:after {
content: " —\A";
white-space: pre;
}
section.chapter > p:first-of-type {
text-indent: 0;
}
section.chapter > p:first-of-type:first-letter {
font-size: 2em;
}
section.chapter blockquote.epigraph {
width: 60%;
margin-left: 40%;
font-size: 90%;
line-height: 1.5em;
}
section.chapter blockquote.epigraph > footer {
font-style: normal;
text-indent: 1.5em;
}
section.chapter blockquote.epigraph > footer:before {
content: "—";
}
section.chapter p.break {
text-indent: 0;
text-align: center;
margin: 0.7em 0;
}
section.chapter p.right {
text-align: right;
margin-bottom: 1em;
}
section.chapter blockquote.verse {
text-align: center;
}
section.chapter blockquote.verse p {
white-space: pre;
text-indent: 0;
margin: 0.5em;
}
section.chapter h2 {
font-size: 120%;
}
section.chapter p.end {
text-align: center;
text-indent: 0;
margin: 2em 0;
font-size: 140%;
}
section.chapter blockquote h2 {
font-size: 120%;
text-align: center;
}
blockquote i {
font-style: normal;
}
footer.author-note {
border-top: 1px solid black;
margin-top: 1em;
padding-top: 1em;
}
footer.author-note:before {
font-weight: bold;
content: "Author’s note: "
}
|