@cu-mkp/editioncrafter 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/editioncrafter.min.js +1 -1
- package/dist/es/src/action/DocumentActions.js +31 -26
- package/dist/es/src/component/DiploMatic.js +1 -1
- package/dist/es/src/component/ImageGridView.js +3 -1
- package/dist/es/src/scss/_CETEIcean.scss +907 -903
- package/dist/es/src/scss/_base.scss +157 -154
- package/dist/es/src/scss/_diplomatic.scss +4 -4
- package/dist/es/src/scss/_globalNavigation.scss +34 -31
- package/dist/es/src/scss/_glossary.scss +97 -93
- package/dist/es/src/scss/_imageGridView.scss +74 -71
- package/dist/es/src/scss/_imageView.scss +37 -34
- package/dist/es/src/scss/_imageZoomControl.scss +53 -49
- package/dist/es/src/scss/_jumpbox.scss +43 -40
- package/dist/es/src/scss/_navigation.scss +186 -183
- package/dist/es/src/scss/_pagination.scss +44 -41
- package/dist/es/src/scss/_ringSpinner.scss +82 -79
- package/dist/es/src/scss/_singlePaneView.scss +10 -7
- package/dist/es/src/scss/_spinner.scss +56 -52
- package/dist/es/src/scss/_splitPaneView.scss +48 -46
- package/dist/es/src/scss/_thumbnails.scss +16 -12
- package/dist/es/src/scss/_transcriptView.scss +194 -191
- package/dist/es/src/scss/_watermark.scss +26 -23
- package/dist/es/src/scss/_xmlView.scss +31 -28
- package/package.json +1 -1
|
@@ -4,909 +4,913 @@
|
|
|
4
4
|
|
|
5
5
|
/* language support */
|
|
6
6
|
/* render Arabic, Persian, Ottoman, Hebrew as rtl */
|
|
7
|
-
[lang = "ar"],
|
|
8
|
-
[lang = "ota"],
|
|
9
|
-
[lang = "fa"],
|
|
10
|
-
[lang = "he"],
|
|
11
|
-
[lang *="-Arab-AR"]{
|
|
12
|
-
direction:rtl;
|
|
13
|
-
text-align:right;
|
|
14
|
-
}
|
|
15
|
-
/* display latin scripts as ltr */
|
|
16
|
-
[lang = "en"],
|
|
17
|
-
[lang = "fr"],
|
|
18
|
-
[lang = "de"],
|
|
19
|
-
[lang = "it"],
|
|
20
|
-
[lang *="ar-Latn-"],
|
|
21
|
-
[lang *="ota-Latn-"]{
|
|
22
|
-
direction:ltr;
|
|
23
|
-
text-align:left;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
/* Choice elements */
|
|
27
|
-
tei-choice tei-abbr + tei-expan:before,
|
|
28
|
-
tei-choice tei-expan + tei-abbr:before,
|
|
29
|
-
tei-choice tei-sic + tei-corr:before,
|
|
30
|
-
tei-choice tei-corr + tei-sic:before,
|
|
31
|
-
tei-choice tei-orig + tei-reg:before,
|
|
32
|
-
tei-choice tei-reg + tei-orig:before {
|
|
33
|
-
content: " (";
|
|
34
|
-
}
|
|
35
|
-
tei-choice tei-abbr + tei-expan:after,
|
|
36
|
-
tei-choice tei-expan + tei-abbr:after,
|
|
37
|
-
tei-choice tei-sic + tei-corr:after,
|
|
38
|
-
tei-choice tei-corr + tei-sic:after,
|
|
39
|
-
tei-choice tei-orig + tei-reg:after,
|
|
40
|
-
tei-choice tei-reg + tei-orig:after {
|
|
41
|
-
content: ")";
|
|
42
|
-
}
|
|
43
|
-
/* A */
|
|
44
|
-
tei-ab {
|
|
45
|
-
display: block;
|
|
46
|
-
margin-top: 1em;
|
|
47
|
-
margin-bottom: 1em;
|
|
48
|
-
}
|
|
49
|
-
tei-accMat {
|
|
50
|
-
display: block;
|
|
51
|
-
}
|
|
52
|
-
tei-accMat:before {
|
|
53
|
-
content: "accompanying materials: ";
|
|
54
|
-
}
|
|
55
|
-
tei-acquisition {
|
|
56
|
-
display: block;
|
|
57
|
-
margin-top: 0;
|
|
58
|
-
margin-bottom: 0;
|
|
59
|
-
}
|
|
60
|
-
tei-acquisition:before {
|
|
61
|
-
font-weight: bold;
|
|
62
|
-
content: "acquisition";
|
|
63
|
-
}
|
|
64
|
-
tei-activity {
|
|
65
|
-
display: block;
|
|
66
|
-
}
|
|
67
|
-
tei-activity:before {
|
|
68
|
-
content: "activity: ";
|
|
69
|
-
}
|
|
70
|
-
tei-add[place=above] {
|
|
71
|
-
color: blue;
|
|
72
|
-
vertical-align: super;
|
|
73
|
-
font-size: 10pt;
|
|
74
|
-
}
|
|
75
|
-
tei-add[place=inline]:before {
|
|
76
|
-
content: "«";
|
|
77
|
-
}
|
|
78
|
-
tei-add[place=inline]:after {
|
|
79
|
-
content: "»";
|
|
80
|
-
}
|
|
81
|
-
tei-add[place=below] {
|
|
82
|
-
vertical-align: sub;
|
|
83
|
-
}
|
|
84
|
-
tei-additional {
|
|
85
|
-
display: block;
|
|
86
|
-
}
|
|
87
|
-
tei-additions {
|
|
88
|
-
display: block;
|
|
89
|
-
}
|
|
90
|
-
tei-additions:before {
|
|
91
|
-
content: "Significant additions within the document: ";
|
|
92
|
-
}
|
|
93
|
-
tei-addrLine {
|
|
94
|
-
display: block;
|
|
95
|
-
}
|
|
96
|
-
tei-address[data-tei-rend~="block"], addresss[data-tei-rendition~="#block"] {
|
|
97
|
-
display: block;
|
|
98
|
-
}
|
|
99
|
-
tei-adminInfo {
|
|
100
|
-
display: block;
|
|
101
|
-
}
|
|
102
|
-
tei-app tei-note {
|
|
103
|
-
display: none;
|
|
104
|
-
}
|
|
105
|
-
tei-appInfo {
|
|
106
|
-
display: block;
|
|
107
|
-
}
|
|
108
|
-
tei-appInfo:before {
|
|
109
|
-
content: "Application information: ";
|
|
110
|
-
}
|
|
111
|
-
tei-application {
|
|
112
|
-
display: block;
|
|
113
|
-
}
|
|
114
|
-
tei-application:after {
|
|
115
|
-
content: " " attr(version);
|
|
116
|
-
}
|
|
117
|
-
tei-argument {
|
|
118
|
-
display: block;
|
|
119
|
-
}
|
|
120
|
-
tei-att {
|
|
121
|
-
font-family: Courier,monospace;
|
|
122
|
-
}
|
|
123
|
-
tei-att:before {
|
|
124
|
-
content: "@";
|
|
125
|
-
}
|
|
126
|
-
tei-titlestmt > tei-author {
|
|
127
|
-
display: block;
|
|
128
|
-
margin-bottom: 1em;
|
|
129
|
-
}
|
|
130
|
-
tei-publicationstmt > tei-availability {
|
|
131
|
-
font-size: 80%;
|
|
132
|
-
}
|
|
133
|
-
tei-publicationstmt > tei-availability:before {
|
|
134
|
-
font-weight: bold;
|
|
135
|
-
content: "Availability: ";
|
|
136
|
-
}
|
|
137
|
-
tei-publicationstmt > tei-availability[data-tei-status]:before {
|
|
138
|
-
font-weight: bold;
|
|
139
|
-
content: "Availability (" attr(status) "): ";
|
|
140
|
-
}
|
|
141
|
-
/* B */
|
|
142
|
-
tei-back {
|
|
143
|
-
display: block;
|
|
144
|
-
}
|
|
145
|
-
tei-bibl[data-tei-rend~="block"], bibl[data-tei-rendition~="#block"] {
|
|
146
|
-
display: block;
|
|
147
|
-
padding-left: 2em;
|
|
148
|
-
text-indent: -2em;
|
|
149
|
-
}
|
|
150
|
-
tei-biblFull {
|
|
151
|
-
display: block;
|
|
152
|
-
}
|
|
153
|
-
tei-binding {
|
|
154
|
-
display: block;
|
|
155
|
-
}
|
|
156
|
-
tei-binding:before {
|
|
157
|
-
content: "Binding: \a";
|
|
158
|
-
white-space: pre-wrap;
|
|
159
|
-
}
|
|
160
|
-
tei-binding[data-tei-contemporary]:before {
|
|
161
|
-
content: "Binding: \A" "Contemporary: " attr(contemporary) "\A";
|
|
162
|
-
white-space: pre-wrap;
|
|
163
|
-
}
|
|
164
|
-
tei-bindingdesc {
|
|
165
|
-
display: block;
|
|
166
|
-
}
|
|
167
|
-
tei-bindngdesc:before {
|
|
168
|
-
content: "Binding description: \A";
|
|
169
|
-
}
|
|
170
|
-
tei-birth {
|
|
171
|
-
display: block;
|
|
172
|
-
}
|
|
173
|
-
tei-birth:before {
|
|
174
|
-
content: "Birth: ";
|
|
175
|
-
}
|
|
176
|
-
/* c */
|
|
177
|
-
tei-cRefPattern {
|
|
178
|
-
display: none;
|
|
179
|
-
}
|
|
180
|
-
tei-caption {
|
|
181
|
-
display: block;
|
|
182
|
-
margin-top: 1em;
|
|
183
|
-
margin-bottom: 1em;
|
|
184
|
-
}
|
|
185
|
-
tei-case[data-tei-value]:before {
|
|
186
|
-
font-weight: bold;
|
|
187
|
-
content: attr(value) " ";
|
|
188
|
-
}
|
|
189
|
-
tei-castgroup {
|
|
190
|
-
display: block;
|
|
191
|
-
margin-top: 1em;
|
|
192
|
-
margin-bottom: 1em;
|
|
193
|
-
}
|
|
194
|
-
tei-castitem {
|
|
195
|
-
display: list-item;
|
|
196
|
-
}
|
|
197
|
-
tei-castlist {
|
|
198
|
-
display: block;
|
|
199
|
-
list-style-type: none;
|
|
200
|
-
margin-top: 1em;
|
|
201
|
-
margin-bottom: 1em;
|
|
202
|
-
margin-left: 2em;
|
|
203
|
-
}
|
|
204
|
-
tei-cb {
|
|
205
|
-
display: block;
|
|
206
|
-
margin-top: 1em;
|
|
207
|
-
margin-bottom: 1em;
|
|
208
|
-
}
|
|
209
|
-
tei-cb:before {
|
|
210
|
-
content: "[column break]";
|
|
211
|
-
}
|
|
212
|
-
tei-cell {
|
|
213
|
-
border-right: thin solid black;
|
|
214
|
-
border-bottom: thin solid black;
|
|
215
|
-
padding: 2px;
|
|
216
|
-
}
|
|
217
|
-
/* for cell or row with @role = label */
|
|
218
|
-
tei-cell[data-tei-role=label] {
|
|
219
|
-
font-weight: bold;
|
|
220
|
-
}
|
|
221
|
-
tei-climate {
|
|
222
|
-
display: block;
|
|
223
|
-
margin-top: 1em;
|
|
224
|
-
margin-bottom: 1em;
|
|
225
|
-
}
|
|
226
|
-
tei-climate:before {
|
|
227
|
-
font-weight: bold;
|
|
228
|
-
content: "Climate: ";
|
|
229
|
-
}
|
|
230
|
-
tei-code {
|
|
231
|
-
font-family: Courier,monospace;
|
|
232
|
-
}
|
|
233
|
-
tei-collation {
|
|
234
|
-
display: block;
|
|
235
|
-
margin-top: 1em;
|
|
236
|
-
margin-bottom: 1em;
|
|
237
|
-
}
|
|
238
|
-
tei-condition {
|
|
239
|
-
display: block;
|
|
240
|
-
margin-top: 1em;
|
|
241
|
-
margin-bottom: 1em;
|
|
242
|
-
}
|
|
243
|
-
tei-constitution {
|
|
244
|
-
display: block;
|
|
245
|
-
margin-top: 1em;
|
|
246
|
-
margin-bottom: 1em;
|
|
247
|
-
}
|
|
248
|
-
tei-constitution:before {
|
|
249
|
-
font-weight: bold;
|
|
250
|
-
content: "Constitution: ";
|
|
251
|
-
}
|
|
252
|
-
tei-constitution[data-tei-type] {
|
|
253
|
-
display: block;
|
|
254
|
-
margin-top: 1em;
|
|
255
|
-
margin-bottom: 1em;
|
|
256
|
-
}
|
|
257
|
-
tei-constitution[data-tei-type]:before {
|
|
258
|
-
font-weight: bold;
|
|
259
|
-
content: "Constitution (" attr(type) "): ";
|
|
260
|
-
}
|
|
261
|
-
tei-constitution[data-tei-type=frags] {
|
|
262
|
-
display: block;
|
|
263
|
-
margin-top: 1em;
|
|
264
|
-
margin-bottom: 1em;
|
|
265
|
-
}
|
|
266
|
-
tei-constitution[data-tei-type=frags]:before {
|
|
267
|
-
font-weight: bold;
|
|
268
|
-
content: "Constitution (fragments): ";
|
|
269
|
-
}
|
|
270
|
-
tei-custevent {
|
|
271
|
-
display: list-item;
|
|
272
|
-
}
|
|
273
|
-
tei-custodialhist {
|
|
274
|
-
display: block;
|
|
275
|
-
margin-top: 1em;
|
|
276
|
-
margin-bottom: 1em;
|
|
277
|
-
}
|
|
278
|
-
/* d */
|
|
279
|
-
tei-date[data-tei-when]:empty:before {
|
|
280
|
-
content: attr(when);
|
|
281
|
-
}
|
|
282
|
-
tei-del {
|
|
283
|
-
color: red;
|
|
284
|
-
}
|
|
285
|
-
/* e */
|
|
286
|
-
tei-editionstmt {
|
|
287
|
-
display:block;
|
|
288
|
-
}
|
|
289
|
-
teieg-egxml {
|
|
290
|
-
display: block;
|
|
291
|
-
font-size: 80%;
|
|
292
|
-
margin-left: 1em;
|
|
293
|
-
padding-left: 1em;
|
|
294
|
-
border-left: 1px solid #aaaaaa;
|
|
295
|
-
margin-top: .75em;
|
|
296
|
-
margin-bottom: .75em;
|
|
297
|
-
padding-top: .75em;
|
|
298
|
-
padding-bottom: .75em;
|
|
299
|
-
font-family: monospace;
|
|
300
|
-
white-space: pre;
|
|
301
|
-
}
|
|
302
|
-
tei-emph {
|
|
303
|
-
font-style: italic;
|
|
304
|
-
}
|
|
305
|
-
tei-encodingdesc {
|
|
306
|
-
display: none;
|
|
307
|
-
}
|
|
308
|
-
tei-epigraph {
|
|
309
|
-
display: block;
|
|
310
|
-
margin-top: 1em;
|
|
311
|
-
margin-bottom: 1em;
|
|
312
|
-
}
|
|
313
|
-
tei-explicit {
|
|
314
|
-
font-style: italic;
|
|
315
|
-
}
|
|
316
|
-
tei-filedesc > tei-extent {
|
|
317
|
-
display: none;
|
|
318
|
-
}
|
|
319
|
-
/* f */
|
|
320
|
-
tei-figure {
|
|
321
|
-
display: block;
|
|
322
|
-
text-align: center;
|
|
323
|
-
margin-left: auto;
|
|
324
|
-
margin-right: auto;
|
|
325
|
-
}
|
|
326
|
-
/* g */
|
|
327
|
-
tei-gap[data-tei-reason='lost']:before {
|
|
328
|
-
content:'[';
|
|
329
|
-
}
|
|
330
|
-
tei-gap[data-tei-reason='lost']:after {
|
|
331
|
-
content: attr(data-content) ']';
|
|
332
|
-
}
|
|
333
|
-
tei-gap[data-tei-reason='illegible']:after {
|
|
334
|
-
content: attr(data-content);
|
|
335
|
-
}
|
|
336
|
-
tei-gi {
|
|
337
|
-
font-family: Courier,monospace;
|
|
338
|
-
}
|
|
339
|
-
tei-gi:before {
|
|
340
|
-
content: "<";
|
|
341
|
-
}
|
|
342
|
-
tei-gi:after {
|
|
343
|
-
content: ">";
|
|
344
|
-
}
|
|
345
|
-
/* h */
|
|
346
|
-
tei-head {
|
|
347
|
-
display: block;
|
|
348
|
-
font-family: 'OpenSans', sans-serif;
|
|
349
|
-
font-weight: 700;
|
|
350
|
-
font-size: 1.5em;
|
|
351
|
-
line-height: max(1.5rem, 24px);
|
|
352
|
-
}
|
|
353
|
-
tei-body > tei-head {
|
|
354
|
-
font-size: 180%;
|
|
355
|
-
text-indent: -0.5em;
|
|
356
|
-
}
|
|
357
|
-
tei-div.textpart {
|
|
358
|
-
display: none;
|
|
359
|
-
}
|
|
360
|
-
tei-div > tei-head {
|
|
361
|
-
font-size: 170%;
|
|
362
|
-
text-indent: -0.5em;
|
|
363
|
-
}
|
|
364
|
-
tei-div > tei-div > tei-head {
|
|
365
|
-
font-size: 155%;
|
|
366
|
-
}
|
|
367
|
-
tei-div > tei-div > tei-div > tei-head {
|
|
368
|
-
font-size: 140%;
|
|
369
|
-
}
|
|
370
|
-
tei-div > tei-div > tei-div > tei-div > tei-head, list > tei-head {
|
|
371
|
-
font-size: 130%;
|
|
372
|
-
}
|
|
373
|
-
tei-div > tei-div > tei-div > tei-div > tei-div > tei-head {
|
|
374
|
-
font-size: 120%;
|
|
375
|
-
}
|
|
376
|
-
tei-div > tei-div > tei-div > tei-div > tei-div > tei-div tei-head {
|
|
377
|
-
font-size: 110%;
|
|
378
|
-
}
|
|
379
|
-
tei-figure > tei-head {
|
|
380
|
-
display: block;
|
|
381
|
-
margin: 1.5em auto 1.5em auto;
|
|
382
|
-
padding: .5em 1.5em 1.5em 1.5em;
|
|
383
|
-
border: 1px solid black;
|
|
384
|
-
border-radius: 15px;
|
|
385
|
-
width: 325px;
|
|
386
|
-
position: relative;
|
|
387
|
-
border: 1px solid #aaaaaa;
|
|
388
|
-
background: #fafafa;
|
|
389
|
-
/* reset text-indent for note with <l> ancestors. */
|
|
390
|
-
text-indent: 0;
|
|
391
|
-
font-size: 85%;
|
|
392
|
-
text-align: justify;
|
|
393
|
-
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
|
|
394
|
-
-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
|
|
395
|
-
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
|
|
396
|
-
width: 85%;
|
|
397
|
-
font-family: Georgia, Serif;
|
|
398
|
-
font-size: 13pt;
|
|
399
|
-
}
|
|
400
|
-
tei-hi[rend~="caps"] {
|
|
401
|
-
font-weight:bold;
|
|
402
|
-
}
|
|
403
|
-
tei-hi[rend~="italic"] {
|
|
404
|
-
font-style: italic;
|
|
405
|
-
}
|
|
406
|
-
tei-hi[rend~="underline"] {
|
|
407
|
-
text-decoration: underline;
|
|
408
|
-
}
|
|
409
|
-
tei-ident {
|
|
410
|
-
font-family: Courier,monospace;
|
|
411
|
-
}
|
|
412
|
-
tei-incipit {
|
|
413
|
-
font-style: italic;
|
|
414
|
-
}
|
|
415
|
-
tei-item {
|
|
416
|
-
display: list-item;
|
|
417
|
-
margin-left: 1em;
|
|
418
|
-
}
|
|
419
|
-
tei-cell item {
|
|
420
|
-
margin-left: 1em;
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
/* j */
|
|
424
|
-
|
|
425
|
-
/* l */
|
|
426
|
-
tei-l {
|
|
427
|
-
display: block;
|
|
428
|
-
//width: 35em;
|
|
429
|
-
}
|
|
430
|
-
tei-l[data-lineno]:before {
|
|
431
|
-
content: attr(data-lineno);
|
|
432
|
-
position: absolute;
|
|
433
|
-
left: 2em;
|
|
434
|
-
}
|
|
435
|
-
tei-lb:after {
|
|
436
|
-
content: '\a';
|
|
437
|
-
white-space: pre;
|
|
438
|
-
}
|
|
439
|
-
tei-lg {
|
|
440
|
-
display: block;
|
|
441
|
-
margin-top: 1em;
|
|
442
|
-
margin-bottom: 1em;
|
|
443
|
-
}
|
|
444
|
-
tei-list {
|
|
445
|
-
display: block;
|
|
446
|
-
margin-top: 1em;
|
|
447
|
-
margin-bottom: 1em;
|
|
448
|
-
list-style-type: none;
|
|
449
|
-
}
|
|
450
|
-
tei-item > tei-list {
|
|
451
|
-
margin-top: 0;
|
|
452
|
-
}
|
|
453
|
-
tei-sourcedesc tei-list {
|
|
454
|
-
list-style-type: none;
|
|
455
|
-
}
|
|
456
|
-
tei-sourcedesc > tei-list > tei-head {
|
|
457
|
-
font-size: 140%;
|
|
458
|
-
font-weight: bold;
|
|
459
|
-
}
|
|
460
|
-
tei-sourcedesc tei-list > tei-item {
|
|
461
|
-
display: list-item;
|
|
462
|
-
}
|
|
463
|
-
/* Match only lists that are descendants of
|
|
464
|
-
tei-text. Otherwise they show up in the header. */
|
|
465
|
-
tei-text tei-list[type=simple] {
|
|
466
|
-
list-style-type: none;
|
|
467
|
-
}
|
|
468
|
-
tei-text tei-list[type=bulleted] {
|
|
469
|
-
list-style-type: disc;
|
|
470
|
-
}
|
|
471
|
-
tei-text tei-list[type=ordered] {
|
|
472
|
-
list-style-type: none;
|
|
473
|
-
counter-reset: items 0;
|
|
474
|
-
}
|
|
475
|
-
tei-text tei-list[type=ordered] > tei-item {
|
|
476
|
-
display: list-item;
|
|
477
|
-
margin-left: 0;
|
|
478
|
-
}
|
|
479
|
-
tei-item > tei-list[type=ordered] {
|
|
480
|
-
margin-left: 1em;
|
|
481
|
-
}
|
|
482
|
-
tei-text tei-list[type=ordered] > item:before {
|
|
483
|
-
counter-increment: items 1;
|
|
484
|
-
content: counter(items, decimal) ". ";
|
|
485
|
-
}
|
|
486
|
-
tei-text tei-list[type=gloss] {
|
|
487
|
-
list-style-type: none;
|
|
488
|
-
}
|
|
489
|
-
tei-list[type="gloss"] > tei-label {
|
|
490
|
-
display: block;
|
|
491
|
-
margin-top: 0.25em;
|
|
492
|
-
margin-bottom: 0.25em;
|
|
493
|
-
font-weight: bold;
|
|
494
|
-
}
|
|
495
|
-
tei-list[type="gloss"] > tei-item {
|
|
496
|
-
margin-left: 2em;
|
|
497
|
-
}
|
|
498
|
-
tei-item > tei-list[type=ordered] {
|
|
499
|
-
margin-left: 1em;
|
|
500
|
-
}
|
|
501
|
-
tei-listapp {
|
|
502
|
-
display: block;
|
|
503
|
-
margin: 1em;
|
|
504
|
-
padding: 1em;
|
|
505
|
-
}
|
|
506
|
-
tei-listbibl {
|
|
507
|
-
display:block;
|
|
508
|
-
list-style-type: none;
|
|
509
|
-
margin-left: .5 em;
|
|
510
|
-
margin-top: .5em;
|
|
511
|
-
}
|
|
512
|
-
tei-listbibl > tei-head {
|
|
513
|
-
font-size: 120%;
|
|
514
|
-
font-weight: bold;
|
|
515
|
-
}
|
|
516
|
-
tei-listbibl > tei-bibl {
|
|
517
|
-
display: list-item;
|
|
518
|
-
margin-left: .5em;
|
|
519
|
-
}
|
|
520
|
-
tei-listwit {
|
|
521
|
-
display:block;
|
|
522
|
-
list-style-type: none;
|
|
523
|
-
margin-left: .5em;
|
|
524
|
-
}
|
|
525
|
-
tei-listwit > tei-head {
|
|
526
|
-
font-size: 120%;
|
|
527
|
-
font-weight: bold;
|
|
528
|
-
}
|
|
529
|
-
tei-listwit > tei-witness {
|
|
530
|
-
display: list-item;
|
|
531
|
-
margin-left: 2em;
|
|
532
|
-
text-indent: -1.1em;
|
|
533
|
-
}
|
|
534
|
-
tei-witness > tei-listwit {
|
|
535
|
-
display: inline;
|
|
536
|
-
}
|
|
537
|
-
tei-witness > tei-listwit > tei-head {
|
|
538
|
-
display: inline;
|
|
539
|
-
}
|
|
540
|
-
tei-witness > tei-listwit > tei-witness {
|
|
541
|
-
display: inline;
|
|
542
|
-
}
|
|
543
|
-
tei-locus {
|
|
544
|
-
display: none;
|
|
545
|
-
}
|
|
546
7
|
|
|
547
|
-
|
|
548
|
-
tei-milestone {
|
|
549
|
-
display: none;
|
|
550
|
-
margin-left: auto;
|
|
551
|
-
margin-right: auto;
|
|
552
|
-
text-align: center;
|
|
553
|
-
}
|
|
554
|
-
tei-musicNotation {
|
|
555
|
-
font-weight: bold;
|
|
556
|
-
}
|
|
557
|
-
tei-musicNotation:before {
|
|
558
|
-
font-weight: bold;
|
|
559
|
-
content: "Musical Notation: ";
|
|
560
|
-
}
|
|
561
|
-
/* n */
|
|
562
|
-
tei-node {
|
|
563
|
-
display: none;
|
|
564
|
-
}
|
|
565
|
-
tei-note {
|
|
566
|
-
display: none;
|
|
567
|
-
}
|
|
568
|
-
tei-notesstmt {
|
|
569
|
-
display: none;
|
|
570
|
-
}
|
|
571
|
-
/* o */
|
|
572
|
-
tei-ovar {
|
|
573
|
-
font-style: italic;
|
|
574
|
-
}
|
|
575
|
-
tei-origPlace {
|
|
576
|
-
font-weight: bold;
|
|
577
|
-
}
|
|
578
|
-
tei-origPlace:before {
|
|
579
|
-
font-weight: bold;
|
|
580
|
-
content: "Place of Origin: ";
|
|
581
|
-
}
|
|
8
|
+
.editioncrafter {
|
|
582
9
|
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
tei-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
}
|
|
611
|
-
tei-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
tei-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
}
|
|
625
|
-
tei-
|
|
626
|
-
|
|
627
|
-
}
|
|
628
|
-
tei-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
}
|
|
636
|
-
tei-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
}
|
|
675
|
-
tei-
|
|
676
|
-
|
|
677
|
-
}
|
|
678
|
-
tei-
|
|
679
|
-
|
|
680
|
-
}
|
|
681
|
-
tei-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
}
|
|
690
|
-
tei-
|
|
691
|
-
|
|
692
|
-
}
|
|
693
|
-
tei-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
}
|
|
729
|
-
tei-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
}
|
|
749
|
-
tei-
|
|
750
|
-
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
}
|
|
761
|
-
tei-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
}
|
|
770
|
-
tei-
|
|
771
|
-
|
|
772
|
-
}
|
|
773
|
-
tei-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
tei-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
}
|
|
858
|
-
tei-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
tei-
|
|
863
|
-
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
}
|
|
878
|
-
tei-
|
|
879
|
-
|
|
880
|
-
}
|
|
881
|
-
tei-
|
|
882
|
-
|
|
883
|
-
}
|
|
884
|
-
tei-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
10
|
+
[lang = "ar"],
|
|
11
|
+
[lang = "ota"],
|
|
12
|
+
[lang = "fa"],
|
|
13
|
+
[lang = "he"],
|
|
14
|
+
[lang *="-Arab-AR"]{
|
|
15
|
+
direction:rtl;
|
|
16
|
+
text-align:right;
|
|
17
|
+
}
|
|
18
|
+
/* display latin scripts as ltr */
|
|
19
|
+
[lang = "en"],
|
|
20
|
+
[lang = "fr"],
|
|
21
|
+
[lang = "de"],
|
|
22
|
+
[lang = "it"],
|
|
23
|
+
[lang *="ar-Latn-"],
|
|
24
|
+
[lang *="ota-Latn-"]{
|
|
25
|
+
direction:ltr;
|
|
26
|
+
text-align:left;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* Choice elements */
|
|
30
|
+
tei-choice tei-abbr + tei-expan:before,
|
|
31
|
+
tei-choice tei-expan + tei-abbr:before,
|
|
32
|
+
tei-choice tei-sic + tei-corr:before,
|
|
33
|
+
tei-choice tei-corr + tei-sic:before,
|
|
34
|
+
tei-choice tei-orig + tei-reg:before,
|
|
35
|
+
tei-choice tei-reg + tei-orig:before {
|
|
36
|
+
content: " (";
|
|
37
|
+
}
|
|
38
|
+
tei-choice tei-abbr + tei-expan:after,
|
|
39
|
+
tei-choice tei-expan + tei-abbr:after,
|
|
40
|
+
tei-choice tei-sic + tei-corr:after,
|
|
41
|
+
tei-choice tei-corr + tei-sic:after,
|
|
42
|
+
tei-choice tei-orig + tei-reg:after,
|
|
43
|
+
tei-choice tei-reg + tei-orig:after {
|
|
44
|
+
content: ")";
|
|
45
|
+
}
|
|
46
|
+
/* A */
|
|
47
|
+
tei-ab {
|
|
48
|
+
display: block;
|
|
49
|
+
margin-top: 1em;
|
|
50
|
+
margin-bottom: 1em;
|
|
51
|
+
}
|
|
52
|
+
tei-accMat {
|
|
53
|
+
display: block;
|
|
54
|
+
}
|
|
55
|
+
tei-accMat:before {
|
|
56
|
+
content: "accompanying materials: ";
|
|
57
|
+
}
|
|
58
|
+
tei-acquisition {
|
|
59
|
+
display: block;
|
|
60
|
+
margin-top: 0;
|
|
61
|
+
margin-bottom: 0;
|
|
62
|
+
}
|
|
63
|
+
tei-acquisition:before {
|
|
64
|
+
font-weight: bold;
|
|
65
|
+
content: "acquisition";
|
|
66
|
+
}
|
|
67
|
+
tei-activity {
|
|
68
|
+
display: block;
|
|
69
|
+
}
|
|
70
|
+
tei-activity:before {
|
|
71
|
+
content: "activity: ";
|
|
72
|
+
}
|
|
73
|
+
tei-add[place=above] {
|
|
74
|
+
color: blue;
|
|
75
|
+
vertical-align: super;
|
|
76
|
+
font-size: 10pt;
|
|
77
|
+
}
|
|
78
|
+
tei-add[place=inline]:before {
|
|
79
|
+
content: "«";
|
|
80
|
+
}
|
|
81
|
+
tei-add[place=inline]:after {
|
|
82
|
+
content: "»";
|
|
83
|
+
}
|
|
84
|
+
tei-add[place=below] {
|
|
85
|
+
vertical-align: sub;
|
|
86
|
+
}
|
|
87
|
+
tei-additional {
|
|
88
|
+
display: block;
|
|
89
|
+
}
|
|
90
|
+
tei-additions {
|
|
91
|
+
display: block;
|
|
92
|
+
}
|
|
93
|
+
tei-additions:before {
|
|
94
|
+
content: "Significant additions within the document: ";
|
|
95
|
+
}
|
|
96
|
+
tei-addrLine {
|
|
97
|
+
display: block;
|
|
98
|
+
}
|
|
99
|
+
tei-address[data-tei-rend~="block"], addresss[data-tei-rendition~="#block"] {
|
|
100
|
+
display: block;
|
|
101
|
+
}
|
|
102
|
+
tei-adminInfo {
|
|
103
|
+
display: block;
|
|
104
|
+
}
|
|
105
|
+
tei-app tei-note {
|
|
106
|
+
display: none;
|
|
107
|
+
}
|
|
108
|
+
tei-appInfo {
|
|
109
|
+
display: block;
|
|
110
|
+
}
|
|
111
|
+
tei-appInfo:before {
|
|
112
|
+
content: "Application information: ";
|
|
113
|
+
}
|
|
114
|
+
tei-application {
|
|
115
|
+
display: block;
|
|
116
|
+
}
|
|
117
|
+
tei-application:after {
|
|
118
|
+
content: " " attr(version);
|
|
119
|
+
}
|
|
120
|
+
tei-argument {
|
|
121
|
+
display: block;
|
|
122
|
+
}
|
|
123
|
+
tei-att {
|
|
124
|
+
font-family: Courier,monospace;
|
|
125
|
+
}
|
|
126
|
+
tei-att:before {
|
|
127
|
+
content: "@";
|
|
128
|
+
}
|
|
129
|
+
tei-titlestmt > tei-author {
|
|
130
|
+
display: block;
|
|
131
|
+
margin-bottom: 1em;
|
|
132
|
+
}
|
|
133
|
+
tei-publicationstmt > tei-availability {
|
|
134
|
+
font-size: 80%;
|
|
135
|
+
}
|
|
136
|
+
tei-publicationstmt > tei-availability:before {
|
|
137
|
+
font-weight: bold;
|
|
138
|
+
content: "Availability: ";
|
|
139
|
+
}
|
|
140
|
+
tei-publicationstmt > tei-availability[data-tei-status]:before {
|
|
141
|
+
font-weight: bold;
|
|
142
|
+
content: "Availability (" attr(status) "): ";
|
|
143
|
+
}
|
|
144
|
+
/* B */
|
|
145
|
+
tei-back {
|
|
146
|
+
display: block;
|
|
147
|
+
}
|
|
148
|
+
tei-bibl[data-tei-rend~="block"], bibl[data-tei-rendition~="#block"] {
|
|
149
|
+
display: block;
|
|
150
|
+
padding-left: 2em;
|
|
151
|
+
text-indent: -2em;
|
|
152
|
+
}
|
|
153
|
+
tei-biblFull {
|
|
154
|
+
display: block;
|
|
155
|
+
}
|
|
156
|
+
tei-binding {
|
|
157
|
+
display: block;
|
|
158
|
+
}
|
|
159
|
+
tei-binding:before {
|
|
160
|
+
content: "Binding: \a";
|
|
161
|
+
white-space: pre-wrap;
|
|
162
|
+
}
|
|
163
|
+
tei-binding[data-tei-contemporary]:before {
|
|
164
|
+
content: "Binding: \A" "Contemporary: " attr(contemporary) "\A";
|
|
165
|
+
white-space: pre-wrap;
|
|
166
|
+
}
|
|
167
|
+
tei-bindingdesc {
|
|
168
|
+
display: block;
|
|
169
|
+
}
|
|
170
|
+
tei-bindngdesc:before {
|
|
171
|
+
content: "Binding description: \A";
|
|
172
|
+
}
|
|
173
|
+
tei-birth {
|
|
174
|
+
display: block;
|
|
175
|
+
}
|
|
176
|
+
tei-birth:before {
|
|
177
|
+
content: "Birth: ";
|
|
178
|
+
}
|
|
179
|
+
/* c */
|
|
180
|
+
tei-cRefPattern {
|
|
181
|
+
display: none;
|
|
182
|
+
}
|
|
183
|
+
tei-caption {
|
|
184
|
+
display: block;
|
|
185
|
+
margin-top: 1em;
|
|
186
|
+
margin-bottom: 1em;
|
|
187
|
+
}
|
|
188
|
+
tei-case[data-tei-value]:before {
|
|
189
|
+
font-weight: bold;
|
|
190
|
+
content: attr(value) " ";
|
|
191
|
+
}
|
|
192
|
+
tei-castgroup {
|
|
193
|
+
display: block;
|
|
194
|
+
margin-top: 1em;
|
|
195
|
+
margin-bottom: 1em;
|
|
196
|
+
}
|
|
197
|
+
tei-castitem {
|
|
198
|
+
display: list-item;
|
|
199
|
+
}
|
|
200
|
+
tei-castlist {
|
|
201
|
+
display: block;
|
|
202
|
+
list-style-type: none;
|
|
203
|
+
margin-top: 1em;
|
|
204
|
+
margin-bottom: 1em;
|
|
205
|
+
margin-left: 2em;
|
|
206
|
+
}
|
|
207
|
+
tei-cb {
|
|
208
|
+
display: block;
|
|
209
|
+
margin-top: 1em;
|
|
210
|
+
margin-bottom: 1em;
|
|
211
|
+
}
|
|
212
|
+
tei-cb:before {
|
|
213
|
+
content: "[column break]";
|
|
214
|
+
}
|
|
215
|
+
tei-cell {
|
|
216
|
+
border-right: thin solid black;
|
|
217
|
+
border-bottom: thin solid black;
|
|
218
|
+
padding: 2px;
|
|
219
|
+
}
|
|
220
|
+
/* for cell or row with @role = label */
|
|
221
|
+
tei-cell[data-tei-role=label] {
|
|
222
|
+
font-weight: bold;
|
|
223
|
+
}
|
|
224
|
+
tei-climate {
|
|
225
|
+
display: block;
|
|
226
|
+
margin-top: 1em;
|
|
227
|
+
margin-bottom: 1em;
|
|
228
|
+
}
|
|
229
|
+
tei-climate:before {
|
|
230
|
+
font-weight: bold;
|
|
231
|
+
content: "Climate: ";
|
|
232
|
+
}
|
|
233
|
+
tei-code {
|
|
234
|
+
font-family: Courier,monospace;
|
|
235
|
+
}
|
|
236
|
+
tei-collation {
|
|
237
|
+
display: block;
|
|
238
|
+
margin-top: 1em;
|
|
239
|
+
margin-bottom: 1em;
|
|
240
|
+
}
|
|
241
|
+
tei-condition {
|
|
242
|
+
display: block;
|
|
243
|
+
margin-top: 1em;
|
|
244
|
+
margin-bottom: 1em;
|
|
245
|
+
}
|
|
246
|
+
tei-constitution {
|
|
247
|
+
display: block;
|
|
248
|
+
margin-top: 1em;
|
|
249
|
+
margin-bottom: 1em;
|
|
250
|
+
}
|
|
251
|
+
tei-constitution:before {
|
|
252
|
+
font-weight: bold;
|
|
253
|
+
content: "Constitution: ";
|
|
254
|
+
}
|
|
255
|
+
tei-constitution[data-tei-type] {
|
|
256
|
+
display: block;
|
|
257
|
+
margin-top: 1em;
|
|
258
|
+
margin-bottom: 1em;
|
|
259
|
+
}
|
|
260
|
+
tei-constitution[data-tei-type]:before {
|
|
261
|
+
font-weight: bold;
|
|
262
|
+
content: "Constitution (" attr(type) "): ";
|
|
263
|
+
}
|
|
264
|
+
tei-constitution[data-tei-type=frags] {
|
|
265
|
+
display: block;
|
|
266
|
+
margin-top: 1em;
|
|
267
|
+
margin-bottom: 1em;
|
|
268
|
+
}
|
|
269
|
+
tei-constitution[data-tei-type=frags]:before {
|
|
270
|
+
font-weight: bold;
|
|
271
|
+
content: "Constitution (fragments): ";
|
|
272
|
+
}
|
|
273
|
+
tei-custevent {
|
|
274
|
+
display: list-item;
|
|
275
|
+
}
|
|
276
|
+
tei-custodialhist {
|
|
277
|
+
display: block;
|
|
278
|
+
margin-top: 1em;
|
|
279
|
+
margin-bottom: 1em;
|
|
280
|
+
}
|
|
281
|
+
/* d */
|
|
282
|
+
tei-date[data-tei-when]:empty:before {
|
|
283
|
+
content: attr(when);
|
|
284
|
+
}
|
|
285
|
+
tei-del {
|
|
286
|
+
color: red;
|
|
287
|
+
}
|
|
288
|
+
/* e */
|
|
289
|
+
tei-editionstmt {
|
|
290
|
+
display:block;
|
|
291
|
+
}
|
|
292
|
+
teieg-egxml {
|
|
293
|
+
display: block;
|
|
294
|
+
font-size: 80%;
|
|
295
|
+
margin-left: 1em;
|
|
296
|
+
padding-left: 1em;
|
|
297
|
+
border-left: 1px solid #aaaaaa;
|
|
298
|
+
margin-top: .75em;
|
|
299
|
+
margin-bottom: .75em;
|
|
300
|
+
padding-top: .75em;
|
|
301
|
+
padding-bottom: .75em;
|
|
302
|
+
font-family: monospace;
|
|
303
|
+
white-space: pre;
|
|
304
|
+
}
|
|
305
|
+
tei-emph {
|
|
306
|
+
font-style: italic;
|
|
307
|
+
}
|
|
308
|
+
tei-encodingdesc {
|
|
309
|
+
display: none;
|
|
310
|
+
}
|
|
311
|
+
tei-epigraph {
|
|
312
|
+
display: block;
|
|
313
|
+
margin-top: 1em;
|
|
314
|
+
margin-bottom: 1em;
|
|
315
|
+
}
|
|
316
|
+
tei-explicit {
|
|
317
|
+
font-style: italic;
|
|
318
|
+
}
|
|
319
|
+
tei-filedesc > tei-extent {
|
|
320
|
+
display: none;
|
|
321
|
+
}
|
|
322
|
+
/* f */
|
|
323
|
+
tei-figure {
|
|
324
|
+
display: block;
|
|
325
|
+
text-align: center;
|
|
326
|
+
margin-left: auto;
|
|
327
|
+
margin-right: auto;
|
|
328
|
+
}
|
|
329
|
+
/* g */
|
|
330
|
+
tei-gap[data-tei-reason='lost']:before {
|
|
331
|
+
content:'[';
|
|
332
|
+
}
|
|
333
|
+
tei-gap[data-tei-reason='lost']:after {
|
|
334
|
+
content: attr(data-content) ']';
|
|
335
|
+
}
|
|
336
|
+
tei-gap[data-tei-reason='illegible']:after {
|
|
337
|
+
content: attr(data-content);
|
|
338
|
+
}
|
|
339
|
+
tei-gi {
|
|
340
|
+
font-family: Courier,monospace;
|
|
341
|
+
}
|
|
342
|
+
tei-gi:before {
|
|
343
|
+
content: "<";
|
|
344
|
+
}
|
|
345
|
+
tei-gi:after {
|
|
346
|
+
content: ">";
|
|
347
|
+
}
|
|
348
|
+
/* h */
|
|
349
|
+
tei-head {
|
|
350
|
+
display: block;
|
|
351
|
+
font-family: 'OpenSans', sans-serif;
|
|
352
|
+
font-weight: 700;
|
|
353
|
+
font-size: 1.5em;
|
|
354
|
+
line-height: max(1.5rem, 24px);
|
|
355
|
+
}
|
|
356
|
+
tei-body > tei-head {
|
|
357
|
+
font-size: 180%;
|
|
358
|
+
text-indent: -0.5em;
|
|
359
|
+
}
|
|
360
|
+
tei-div.textpart {
|
|
361
|
+
display: none;
|
|
362
|
+
}
|
|
363
|
+
tei-div > tei-head {
|
|
364
|
+
font-size: 170%;
|
|
365
|
+
text-indent: -0.5em;
|
|
366
|
+
}
|
|
367
|
+
tei-div > tei-div > tei-head {
|
|
368
|
+
font-size: 155%;
|
|
369
|
+
}
|
|
370
|
+
tei-div > tei-div > tei-div > tei-head {
|
|
371
|
+
font-size: 140%;
|
|
372
|
+
}
|
|
373
|
+
tei-div > tei-div > tei-div > tei-div > tei-head, list > tei-head {
|
|
374
|
+
font-size: 130%;
|
|
375
|
+
}
|
|
376
|
+
tei-div > tei-div > tei-div > tei-div > tei-div > tei-head {
|
|
377
|
+
font-size: 120%;
|
|
378
|
+
}
|
|
379
|
+
tei-div > tei-div > tei-div > tei-div > tei-div > tei-div tei-head {
|
|
380
|
+
font-size: 110%;
|
|
381
|
+
}
|
|
382
|
+
tei-figure > tei-head {
|
|
383
|
+
display: block;
|
|
384
|
+
margin: 1.5em auto 1.5em auto;
|
|
385
|
+
padding: .5em 1.5em 1.5em 1.5em;
|
|
386
|
+
border: 1px solid black;
|
|
387
|
+
border-radius: 15px;
|
|
388
|
+
width: 325px;
|
|
389
|
+
position: relative;
|
|
390
|
+
border: 1px solid #aaaaaa;
|
|
391
|
+
background: #fafafa;
|
|
392
|
+
/* reset text-indent for note with <l> ancestors. */
|
|
393
|
+
text-indent: 0;
|
|
394
|
+
font-size: 85%;
|
|
395
|
+
text-align: justify;
|
|
396
|
+
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
|
|
397
|
+
-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
|
|
398
|
+
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
|
|
399
|
+
width: 85%;
|
|
400
|
+
font-family: Georgia, Serif;
|
|
401
|
+
font-size: 13pt;
|
|
402
|
+
}
|
|
403
|
+
tei-hi[rend~="caps"] {
|
|
404
|
+
font-weight:bold;
|
|
405
|
+
}
|
|
406
|
+
tei-hi[rend~="italic"] {
|
|
407
|
+
font-style: italic;
|
|
408
|
+
}
|
|
409
|
+
tei-hi[rend~="underline"] {
|
|
410
|
+
text-decoration: underline;
|
|
411
|
+
}
|
|
412
|
+
tei-ident {
|
|
413
|
+
font-family: Courier,monospace;
|
|
414
|
+
}
|
|
415
|
+
tei-incipit {
|
|
416
|
+
font-style: italic;
|
|
417
|
+
}
|
|
418
|
+
tei-item {
|
|
419
|
+
display: list-item;
|
|
420
|
+
margin-left: 1em;
|
|
421
|
+
}
|
|
422
|
+
tei-cell item {
|
|
423
|
+
margin-left: 1em;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
/* j */
|
|
427
|
+
|
|
428
|
+
/* l */
|
|
429
|
+
tei-l {
|
|
430
|
+
display: block;
|
|
431
|
+
//width: 35em;
|
|
432
|
+
}
|
|
433
|
+
tei-l[data-lineno]:before {
|
|
434
|
+
content: attr(data-lineno);
|
|
435
|
+
position: absolute;
|
|
436
|
+
left: 2em;
|
|
437
|
+
}
|
|
438
|
+
tei-lb:after {
|
|
439
|
+
content: '\a';
|
|
440
|
+
white-space: pre;
|
|
441
|
+
}
|
|
442
|
+
tei-lg {
|
|
443
|
+
display: block;
|
|
444
|
+
margin-top: 1em;
|
|
445
|
+
margin-bottom: 1em;
|
|
446
|
+
}
|
|
447
|
+
tei-list {
|
|
448
|
+
display: block;
|
|
449
|
+
margin-top: 1em;
|
|
450
|
+
margin-bottom: 1em;
|
|
451
|
+
list-style-type: none;
|
|
452
|
+
}
|
|
453
|
+
tei-item > tei-list {
|
|
454
|
+
margin-top: 0;
|
|
455
|
+
}
|
|
456
|
+
tei-sourcedesc tei-list {
|
|
457
|
+
list-style-type: none;
|
|
458
|
+
}
|
|
459
|
+
tei-sourcedesc > tei-list > tei-head {
|
|
460
|
+
font-size: 140%;
|
|
461
|
+
font-weight: bold;
|
|
462
|
+
}
|
|
463
|
+
tei-sourcedesc tei-list > tei-item {
|
|
464
|
+
display: list-item;
|
|
465
|
+
}
|
|
466
|
+
/* Match only lists that are descendants of
|
|
467
|
+
tei-text. Otherwise they show up in the header. */
|
|
468
|
+
tei-text tei-list[type=simple] {
|
|
469
|
+
list-style-type: none;
|
|
470
|
+
}
|
|
471
|
+
tei-text tei-list[type=bulleted] {
|
|
472
|
+
list-style-type: disc;
|
|
473
|
+
}
|
|
474
|
+
tei-text tei-list[type=ordered] {
|
|
475
|
+
list-style-type: none;
|
|
476
|
+
counter-reset: items 0;
|
|
477
|
+
}
|
|
478
|
+
tei-text tei-list[type=ordered] > tei-item {
|
|
479
|
+
display: list-item;
|
|
480
|
+
margin-left: 0;
|
|
481
|
+
}
|
|
482
|
+
tei-item > tei-list[type=ordered] {
|
|
483
|
+
margin-left: 1em;
|
|
484
|
+
}
|
|
485
|
+
tei-text tei-list[type=ordered] > item:before {
|
|
486
|
+
counter-increment: items 1;
|
|
487
|
+
content: counter(items, decimal) ". ";
|
|
488
|
+
}
|
|
489
|
+
tei-text tei-list[type=gloss] {
|
|
490
|
+
list-style-type: none;
|
|
491
|
+
}
|
|
492
|
+
tei-list[type="gloss"] > tei-label {
|
|
493
|
+
display: block;
|
|
494
|
+
margin-top: 0.25em;
|
|
495
|
+
margin-bottom: 0.25em;
|
|
496
|
+
font-weight: bold;
|
|
497
|
+
}
|
|
498
|
+
tei-list[type="gloss"] > tei-item {
|
|
499
|
+
margin-left: 2em;
|
|
500
|
+
}
|
|
501
|
+
tei-item > tei-list[type=ordered] {
|
|
502
|
+
margin-left: 1em;
|
|
503
|
+
}
|
|
504
|
+
tei-listapp {
|
|
505
|
+
display: block;
|
|
506
|
+
margin: 1em;
|
|
507
|
+
padding: 1em;
|
|
508
|
+
}
|
|
509
|
+
tei-listbibl {
|
|
510
|
+
display:block;
|
|
511
|
+
list-style-type: none;
|
|
512
|
+
margin-left: .5 em;
|
|
513
|
+
margin-top: .5em;
|
|
514
|
+
}
|
|
515
|
+
tei-listbibl > tei-head {
|
|
516
|
+
font-size: 120%;
|
|
517
|
+
font-weight: bold;
|
|
518
|
+
}
|
|
519
|
+
tei-listbibl > tei-bibl {
|
|
520
|
+
display: list-item;
|
|
521
|
+
margin-left: .5em;
|
|
522
|
+
}
|
|
523
|
+
tei-listwit {
|
|
524
|
+
display:block;
|
|
525
|
+
list-style-type: none;
|
|
526
|
+
margin-left: .5em;
|
|
527
|
+
}
|
|
528
|
+
tei-listwit > tei-head {
|
|
529
|
+
font-size: 120%;
|
|
530
|
+
font-weight: bold;
|
|
531
|
+
}
|
|
532
|
+
tei-listwit > tei-witness {
|
|
533
|
+
display: list-item;
|
|
534
|
+
margin-left: 2em;
|
|
535
|
+
text-indent: -1.1em;
|
|
536
|
+
}
|
|
537
|
+
tei-witness > tei-listwit {
|
|
538
|
+
display: inline;
|
|
539
|
+
}
|
|
540
|
+
tei-witness > tei-listwit > tei-head {
|
|
541
|
+
display: inline;
|
|
542
|
+
}
|
|
543
|
+
tei-witness > tei-listwit > tei-witness {
|
|
544
|
+
display: inline;
|
|
545
|
+
}
|
|
546
|
+
tei-locus {
|
|
547
|
+
display: none;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
/* m */
|
|
551
|
+
tei-milestone {
|
|
552
|
+
display: none;
|
|
553
|
+
margin-left: auto;
|
|
554
|
+
margin-right: auto;
|
|
555
|
+
text-align: center;
|
|
556
|
+
}
|
|
557
|
+
tei-musicNotation {
|
|
558
|
+
font-weight: bold;
|
|
559
|
+
}
|
|
560
|
+
tei-musicNotation:before {
|
|
561
|
+
font-weight: bold;
|
|
562
|
+
content: "Musical Notation: ";
|
|
563
|
+
}
|
|
564
|
+
/* n */
|
|
565
|
+
tei-node {
|
|
566
|
+
display: none;
|
|
567
|
+
}
|
|
568
|
+
tei-note {
|
|
569
|
+
display: none;
|
|
570
|
+
}
|
|
571
|
+
tei-notesstmt {
|
|
572
|
+
display: none;
|
|
573
|
+
}
|
|
574
|
+
/* o */
|
|
575
|
+
tei-ovar {
|
|
576
|
+
font-style: italic;
|
|
577
|
+
}
|
|
578
|
+
tei-origPlace {
|
|
579
|
+
font-weight: bold;
|
|
580
|
+
}
|
|
581
|
+
tei-origPlace:before {
|
|
582
|
+
font-weight: bold;
|
|
583
|
+
content: "Place of Origin: ";
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
/* p */
|
|
587
|
+
tei-p {
|
|
588
|
+
display: block;
|
|
589
|
+
margin-top: 1em;
|
|
590
|
+
margin-bottom: 1em;
|
|
591
|
+
text-align: justify;
|
|
592
|
+
}
|
|
593
|
+
*[data-tei-rendition~="#center"] p {
|
|
594
|
+
text-align: center;
|
|
595
|
+
}
|
|
596
|
+
tei-availability > p:first-child {
|
|
597
|
+
margin-top: 0em;
|
|
598
|
+
}
|
|
599
|
+
tei-performance {
|
|
600
|
+
display: block;
|
|
601
|
+
margin-top: 1em;
|
|
602
|
+
margin-bottom: 1em;
|
|
603
|
+
}
|
|
604
|
+
tei-person {
|
|
605
|
+
display: block;
|
|
606
|
+
margin-top: 1em;
|
|
607
|
+
margin-bottom: 1em;
|
|
608
|
+
}
|
|
609
|
+
tei-personGrp {
|
|
610
|
+
display: block;
|
|
611
|
+
margin-top: 1em;
|
|
612
|
+
margin-bottom: 1em;
|
|
613
|
+
}
|
|
614
|
+
tei-postscript {
|
|
615
|
+
display: block;
|
|
616
|
+
margin-top: 2em;
|
|
617
|
+
}
|
|
618
|
+
tei-principal {
|
|
619
|
+
font-weight: bold;
|
|
620
|
+
}
|
|
621
|
+
tei-principal:before {
|
|
622
|
+
font-weight: bold;
|
|
623
|
+
content: "Principal: ";
|
|
624
|
+
}
|
|
625
|
+
tei-profiledesc {
|
|
626
|
+
display: none;
|
|
627
|
+
}
|
|
628
|
+
tei-publicationstmt > * {
|
|
629
|
+
display: none;
|
|
630
|
+
}
|
|
631
|
+
tei-publicationstmt {
|
|
632
|
+
display: block;
|
|
633
|
+
margin-top: 1em;
|
|
634
|
+
margin-bottom: 1em;
|
|
635
|
+
}
|
|
636
|
+
tei-publicationstmt > date {
|
|
637
|
+
display: none;
|
|
638
|
+
}
|
|
639
|
+
tei-publicationstmt > publisher {
|
|
640
|
+
display: none;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
/* q */
|
|
644
|
+
tei-q {
|
|
645
|
+
quotes: "\201c" "\201d" "\2018" "\2019" "\201c" "\201d" "\2018" "\2019" "\201c" "\201d" "\2018" "\2019" "\201c" "\201d";
|
|
646
|
+
}
|
|
647
|
+
tei-q:before {
|
|
648
|
+
content: "";
|
|
649
|
+
}
|
|
650
|
+
tei-q:after {
|
|
651
|
+
content: "";
|
|
652
|
+
}
|
|
653
|
+
tei-q[data-tei-next]:after {
|
|
654
|
+
content: "" !important;
|
|
655
|
+
}
|
|
656
|
+
tei-q[data-tei-prev]:before {
|
|
657
|
+
content: "" !important;
|
|
658
|
+
}
|
|
659
|
+
tei-quote {
|
|
660
|
+
font-style:italic;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
/* r */
|
|
664
|
+
tei-app tei-rdg {
|
|
665
|
+
/*perhaps choice */
|
|
666
|
+
display:none;
|
|
667
|
+
}
|
|
668
|
+
tei-re {
|
|
669
|
+
display: block;
|
|
670
|
+
margin-top: 0;
|
|
671
|
+
margin-bottom: 0;
|
|
672
|
+
}
|
|
673
|
+
tei-recordhist {
|
|
674
|
+
display: block;
|
|
675
|
+
margin-top: 1em;
|
|
676
|
+
margin-bottom: 1em;
|
|
677
|
+
}
|
|
678
|
+
tei-ref {
|
|
679
|
+
color: #5f0000;
|
|
680
|
+
}
|
|
681
|
+
tei-remarks {
|
|
682
|
+
font-weight: bold;
|
|
683
|
+
}
|
|
684
|
+
tei-remarks:before {
|
|
685
|
+
font-weight: bold;
|
|
686
|
+
content: "remarks: ";
|
|
687
|
+
}
|
|
688
|
+
tei-respstmt {
|
|
689
|
+
display: block;
|
|
690
|
+
margin-top: 0;
|
|
691
|
+
margin-bottom: 0;
|
|
692
|
+
}
|
|
693
|
+
tei-revisiondesc {
|
|
694
|
+
display: none;
|
|
695
|
+
}
|
|
696
|
+
tei-row {
|
|
697
|
+
display: grid;
|
|
698
|
+
grid-auto-flow: column;
|
|
699
|
+
grid-auto-columns: 1fr;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
/* s */
|
|
703
|
+
tei-salute {
|
|
704
|
+
display: block;
|
|
705
|
+
margin-top: 1em;
|
|
706
|
+
margin-bottom: 1em;
|
|
707
|
+
}
|
|
708
|
+
tei-samplingdecl {
|
|
709
|
+
display: block;
|
|
710
|
+
margin-top: 0;
|
|
711
|
+
margin-bottom: 0;
|
|
712
|
+
}
|
|
713
|
+
tei-scriptnote {
|
|
714
|
+
display: block;
|
|
715
|
+
margin-top: 1em;
|
|
716
|
+
margin-bottom: 1em;
|
|
717
|
+
}
|
|
718
|
+
tei-seal {
|
|
719
|
+
display: block;
|
|
720
|
+
margin-top: 0;
|
|
721
|
+
margin-bottom: 0;
|
|
722
|
+
}
|
|
723
|
+
tei-seal:before {
|
|
724
|
+
font-weight: bold;
|
|
725
|
+
content: "Seal: ";
|
|
726
|
+
}
|
|
727
|
+
tei-sealdesc {
|
|
728
|
+
display: block;
|
|
729
|
+
margin-top: 1em;
|
|
730
|
+
margin-bottom: 1em;
|
|
731
|
+
}
|
|
732
|
+
tei-secFol:before {
|
|
733
|
+
font-weight: bold;
|
|
734
|
+
content: "Second Folio: ";
|
|
735
|
+
}
|
|
736
|
+
tei-secl>*:first-child:before {
|
|
737
|
+
content: "\a[";
|
|
738
|
+
white-space: pre;
|
|
739
|
+
}
|
|
740
|
+
tei-secl>*:last-child:after {
|
|
741
|
+
content: "]\a\a";
|
|
742
|
+
white-space: pre;
|
|
743
|
+
}
|
|
744
|
+
tei-seg {
|
|
745
|
+
outline: 0px solid transparent;
|
|
746
|
+
}
|
|
747
|
+
tei-sense {
|
|
748
|
+
display: block;
|
|
749
|
+
margin-top: 0;
|
|
750
|
+
margin-bottom: 0;
|
|
751
|
+
}
|
|
752
|
+
tei-seriesstmt {
|
|
753
|
+
display: none;
|
|
754
|
+
}
|
|
755
|
+
tei-setting {
|
|
756
|
+
display: block;
|
|
757
|
+
margin-top: 0;
|
|
758
|
+
margin-bottom: 0;
|
|
759
|
+
}
|
|
760
|
+
tei-signed {
|
|
761
|
+
display: block;
|
|
762
|
+
margin-top: 2em;
|
|
763
|
+
}
|
|
764
|
+
tei-soCalled {
|
|
765
|
+
quotes: "\201c" "\201d" "\2018" "\2019" "\201c" "\201d" "\2018" "\2019" "\201c" "\201d" "\2018" "\2019" "\201c" "\201d";
|
|
766
|
+
}
|
|
767
|
+
tei-soCalled:before {
|
|
768
|
+
content: open-quote;
|
|
769
|
+
}
|
|
770
|
+
tei-soCalled:after {
|
|
771
|
+
content: close-quote;
|
|
772
|
+
}
|
|
773
|
+
tei-soCalled[data-tei-next]:after {
|
|
774
|
+
content: "" !important;
|
|
775
|
+
}
|
|
776
|
+
tei-soCalled[data-tei-prev]:before {
|
|
777
|
+
content: "" !important;
|
|
778
|
+
}
|
|
779
|
+
tei-sound {
|
|
780
|
+
font-style: italic;
|
|
781
|
+
}
|
|
782
|
+
tei-source {
|
|
783
|
+
display: block;
|
|
784
|
+
margin-top: 0;
|
|
785
|
+
margin-bottom: 0;
|
|
786
|
+
}
|
|
787
|
+
tei-sourcedesc {
|
|
788
|
+
display: none;
|
|
789
|
+
}
|
|
790
|
+
tei-space:before {
|
|
791
|
+
font-weight: bold;
|
|
792
|
+
content: "";
|
|
793
|
+
}
|
|
794
|
+
tei-span[data-tei-data-n]:before {
|
|
795
|
+
content: attr(data-n);
|
|
796
|
+
}
|
|
797
|
+
tei-speaker {
|
|
798
|
+
font-weight: bold;
|
|
799
|
+
margin-right: 0;
|
|
800
|
+
}
|
|
801
|
+
tei-sponsor {
|
|
802
|
+
display: block;
|
|
803
|
+
margin-top: 0;
|
|
804
|
+
margin-bottom: 0;
|
|
805
|
+
}
|
|
806
|
+
tei-sponsor:before {
|
|
807
|
+
font-weight: bold;
|
|
808
|
+
content: "Sponsor:";
|
|
809
|
+
}
|
|
810
|
+
tei-stage {
|
|
811
|
+
display: block;
|
|
812
|
+
margin-top: 1em;
|
|
813
|
+
margin-bottom: 1em;
|
|
814
|
+
font-style: italic;
|
|
815
|
+
}
|
|
816
|
+
tei-stamp {
|
|
817
|
+
display: block;
|
|
818
|
+
margin-top: 1em;
|
|
819
|
+
margin-bottom: 1em;
|
|
820
|
+
}
|
|
821
|
+
tei-stamp:before {
|
|
822
|
+
font-weight: bold;
|
|
823
|
+
content: "Stamped: ";
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
tei-surplus>*:first-child:before {
|
|
827
|
+
content: "\a[";
|
|
828
|
+
white-space: pre;
|
|
829
|
+
}
|
|
830
|
+
tei-surplus>*:last-child:after {
|
|
831
|
+
content: "]\a\a";
|
|
832
|
+
white-space: pre;
|
|
833
|
+
}
|
|
834
|
+
/* t */
|
|
835
|
+
tei-tei {
|
|
836
|
+
display: block;
|
|
837
|
+
}
|
|
838
|
+
tei-table {
|
|
839
|
+
display: block;
|
|
840
|
+
border-top: thin solid black;
|
|
841
|
+
border-left: thin solid black;
|
|
842
|
+
}
|
|
843
|
+
tei-table {
|
|
844
|
+
margin-top: 2em;
|
|
845
|
+
margin-bottom: 2em;
|
|
846
|
+
font-size: 12pt;
|
|
847
|
+
}
|
|
848
|
+
tei-table > tei-head {
|
|
849
|
+
border-bottom: thin solid black;
|
|
850
|
+
border-right: thin solid black;
|
|
851
|
+
font-size: 120%;
|
|
852
|
+
font-weight: bold;
|
|
853
|
+
padding: 2px;
|
|
854
|
+
text-align: center;
|
|
855
|
+
}
|
|
856
|
+
tei-teiheader {
|
|
857
|
+
display: block;
|
|
858
|
+
margin-top: 2em;
|
|
859
|
+
margin-bottom: 2em;
|
|
860
|
+
}
|
|
861
|
+
tei-tei > tei-text {
|
|
862
|
+
display: block;
|
|
863
|
+
line-height: 1.5;
|
|
864
|
+
}
|
|
865
|
+
tei-textclass {
|
|
866
|
+
display: none;
|
|
867
|
+
}
|
|
868
|
+
tei-textdesc {
|
|
869
|
+
display: none;
|
|
870
|
+
}
|
|
871
|
+
/* title */
|
|
872
|
+
tei-tei tei-title {
|
|
873
|
+
display: inline;
|
|
874
|
+
}
|
|
875
|
+
tei-tei tei-title[level=a] {
|
|
876
|
+
quotes: "\201c" "\201d" "\2018" "\2019" "\201c" "\201d" "\2018" "\2019" "\201c" "\201d" "\2018" "\2019" "\201c" "\201d";
|
|
877
|
+
}
|
|
878
|
+
tei-tei tei-title[level=a]:before {
|
|
879
|
+
content: open-quote;
|
|
880
|
+
}
|
|
881
|
+
tei-tei tei-title[level=a]:after {
|
|
882
|
+
content: close-quote;
|
|
883
|
+
}
|
|
884
|
+
tei-tei tei-title[level=a][next]:after {
|
|
885
|
+
content: "" !important;
|
|
886
|
+
}
|
|
887
|
+
tei-tei tei-title[level=a][prev]:before {
|
|
888
|
+
content: "" !important;
|
|
889
|
+
}
|
|
890
|
+
tei-title[level=m] {
|
|
891
|
+
font-style: italic;
|
|
892
|
+
}
|
|
893
|
+
tei-titlestmt > tei-title {
|
|
894
|
+
display: block;
|
|
895
|
+
font-family: Arvo, sans-serif;
|
|
896
|
+
font-weight: normal;
|
|
897
|
+
font-weight: bold !important;
|
|
898
|
+
font-size: 150%;
|
|
899
|
+
}
|
|
900
|
+
tei-typedesc {
|
|
901
|
+
display: none;
|
|
902
|
+
}
|
|
903
|
+
/* u */
|
|
904
|
+
tei-u:before {
|
|
905
|
+
content: "-";
|
|
906
|
+
}
|
|
907
|
+
tei-view {
|
|
908
|
+
font-style: italic;
|
|
909
|
+
}
|
|
910
|
+
tei-wit {
|
|
911
|
+
display: inline;
|
|
912
|
+
}
|
|
913
|
+
tei-witdetail {
|
|
914
|
+
display:none;
|
|
915
|
+
}
|
|
912
916
|
}
|