@cu-mkp/editioncrafter 0.0.4

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.
Files changed (138) hide show
  1. package/dist/cjs/src/action/CommentActions.js +20 -0
  2. package/dist/cjs/src/action/DiplomaticActions.js +19 -0
  3. package/dist/cjs/src/action/DocumentActions.js +188 -0
  4. package/dist/cjs/src/action/GlossaryActions.js +20 -0
  5. package/dist/cjs/src/action/initialState/commentInitialState.js +13 -0
  6. package/dist/cjs/src/action/initialState/diplomaticInitialState.js +10 -0
  7. package/dist/cjs/src/action/initialState/documentInitialState.js +17 -0
  8. package/dist/cjs/src/action/initialState/glossaryInitialState.js +13 -0
  9. package/dist/cjs/src/action/rootReducer.js +30 -0
  10. package/dist/cjs/src/component/AlphabetLinks.js +76 -0
  11. package/dist/cjs/src/component/CustomizedTooltops.js +173 -0
  12. package/dist/cjs/src/component/DiploMatic.js +90 -0
  13. package/dist/cjs/src/component/DocumentView.js +427 -0
  14. package/dist/cjs/src/component/EditorComment.js +124 -0
  15. package/dist/cjs/src/component/ErrorBoundary.js +71 -0
  16. package/dist/cjs/src/component/FigureImage.js +82 -0
  17. package/dist/cjs/src/component/GlossaryView.js +166 -0
  18. package/dist/cjs/src/component/HelpPopper.js +83 -0
  19. package/dist/cjs/src/component/ImageGridView.js +193 -0
  20. package/dist/cjs/src/component/ImageView.js +125 -0
  21. package/dist/cjs/src/component/ImageZoomControl.js +67 -0
  22. package/dist/cjs/src/component/JumpToFolio.js +103 -0
  23. package/dist/cjs/src/component/Navigation.js +266 -0
  24. package/dist/cjs/src/component/Pagination.js +81 -0
  25. package/dist/cjs/src/component/RouteListener.js +66 -0
  26. package/dist/cjs/src/component/SeaDragonComponent.js +51 -0
  27. package/dist/cjs/src/component/SinglePaneView.js +46 -0
  28. package/dist/cjs/src/component/SplitPaneView.js +164 -0
  29. package/dist/cjs/src/component/TranscriptionView.js +147 -0
  30. package/dist/cjs/src/component/XMLView.js +154 -0
  31. package/dist/cjs/src/globals.d.ts +1 -0
  32. package/dist/cjs/src/hocs/withRouter.js +29 -0
  33. package/dist/cjs/src/icons/ByIcon.js +27 -0
  34. package/dist/cjs/src/icons/CcIcon.js +27 -0
  35. package/dist/cjs/src/icons/NcIcon.js +27 -0
  36. package/dist/cjs/src/icons/SaIcon.js +27 -0
  37. package/dist/cjs/src/icons/SideMenuIconLeft.js +49 -0
  38. package/dist/cjs/src/icons/SideMenuIconRight.js +49 -0
  39. package/dist/cjs/src/index.js +34 -0
  40. package/dist/cjs/src/lib/copyObject.js +11 -0
  41. package/dist/cjs/src/lib/registerServiceWorker.js +95 -0
  42. package/dist/cjs/src/model/DocumentHelper.js +17 -0
  43. package/dist/cjs/src/model/Folio.js +92 -0
  44. package/dist/cjs/src/model/ReduxStore.js +110 -0
  45. package/dist/cjs/src/model/folioLayout.js +416 -0
  46. package/dist/cjs/src/polyfills.js +212 -0
  47. package/dist/cjs/src/saga/RouteListenerSaga.js +198 -0
  48. package/dist/cjs/src/saga/rootSaga.js +23 -0
  49. package/dist/cjs/src/scss/_CETEIcean.scss +914 -0
  50. package/dist/cjs/src/scss/_base.scss +187 -0
  51. package/dist/cjs/src/scss/_diplomatic.scss +332 -0
  52. package/dist/cjs/src/scss/_globalNavigation.scss +34 -0
  53. package/dist/cjs/src/scss/_glossary.scss +105 -0
  54. package/dist/cjs/src/scss/_imageGridView.scss +60 -0
  55. package/dist/cjs/src/scss/_imageView.scss +16 -0
  56. package/dist/cjs/src/scss/_imageZoomControl.scss +51 -0
  57. package/dist/cjs/src/scss/_jumpbox.scss +42 -0
  58. package/dist/cjs/src/scss/_navigation.scss +135 -0
  59. package/dist/cjs/src/scss/_pagination.scss +36 -0
  60. package/dist/cjs/src/scss/_spinner.scss +60 -0
  61. package/dist/cjs/src/scss/_splitPaneView.scss +35 -0
  62. package/dist/cjs/src/scss/_thumbnails.scss +17 -0
  63. package/dist/cjs/src/scss/_transcriptView.scss +178 -0
  64. package/dist/cjs/src/scss/_watermark.scss +19 -0
  65. package/dist/cjs/src/scss/_xmlView.scss +25 -0
  66. package/dist/cjs/src/scss/editioncrafter.scss +109 -0
  67. package/dist/editioncrafter.css +2462 -0
  68. package/dist/editioncrafter.css.map +1 -0
  69. package/dist/editioncrafter.min.js +3 -0
  70. package/dist/editioncrafter.min.js.LICENSE.txt +125 -0
  71. package/dist/editioncrafter.min.js.map +1 -0
  72. package/dist/es/src/action/CommentActions.js +13 -0
  73. package/dist/es/src/action/DiplomaticActions.js +12 -0
  74. package/dist/es/src/action/DocumentActions.js +181 -0
  75. package/dist/es/src/action/GlossaryActions.js +13 -0
  76. package/dist/es/src/action/initialState/commentInitialState.js +7 -0
  77. package/dist/es/src/action/initialState/diplomaticInitialState.js +3 -0
  78. package/dist/es/src/action/initialState/documentInitialState.js +11 -0
  79. package/dist/es/src/action/initialState/glossaryInitialState.js +7 -0
  80. package/dist/es/src/action/rootReducer.js +23 -0
  81. package/dist/es/src/component/AlphabetLinks.js +67 -0
  82. package/dist/es/src/component/CustomizedTooltops.js +165 -0
  83. package/dist/es/src/component/DiploMatic.js +80 -0
  84. package/dist/es/src/component/DocumentView.js +417 -0
  85. package/dist/es/src/component/EditorComment.js +114 -0
  86. package/dist/es/src/component/ErrorBoundary.js +63 -0
  87. package/dist/es/src/component/FigureImage.js +74 -0
  88. package/dist/es/src/component/GlossaryView.js +156 -0
  89. package/dist/es/src/component/HelpPopper.js +75 -0
  90. package/dist/es/src/component/ImageGridView.js +185 -0
  91. package/dist/es/src/component/ImageView.js +115 -0
  92. package/dist/es/src/component/ImageZoomControl.js +60 -0
  93. package/dist/es/src/component/JumpToFolio.js +95 -0
  94. package/dist/es/src/component/Navigation.js +256 -0
  95. package/dist/es/src/component/Pagination.js +73 -0
  96. package/dist/es/src/component/RouteListener.js +58 -0
  97. package/dist/es/src/component/SeaDragonComponent.js +42 -0
  98. package/dist/es/src/component/SinglePaneView.js +37 -0
  99. package/dist/es/src/component/SplitPaneView.js +155 -0
  100. package/dist/es/src/component/TranscriptionView.js +137 -0
  101. package/dist/es/src/component/XMLView.js +144 -0
  102. package/dist/es/src/globals.d.ts +1 -0
  103. package/dist/es/src/hocs/withRouter.js +22 -0
  104. package/dist/es/src/icons/ByIcon.js +18 -0
  105. package/dist/es/src/icons/CcIcon.js +18 -0
  106. package/dist/es/src/icons/NcIcon.js +18 -0
  107. package/dist/es/src/icons/SaIcon.js +18 -0
  108. package/dist/es/src/icons/SideMenuIconLeft.js +40 -0
  109. package/dist/es/src/icons/SideMenuIconRight.js +40 -0
  110. package/dist/es/src/index.js +27 -0
  111. package/dist/es/src/lib/copyObject.js +4 -0
  112. package/dist/es/src/lib/registerServiceWorker.js +88 -0
  113. package/dist/es/src/model/DocumentHelper.js +10 -0
  114. package/dist/es/src/model/Folio.js +85 -0
  115. package/dist/es/src/model/ReduxStore.js +101 -0
  116. package/dist/es/src/model/folioLayout.js +407 -0
  117. package/dist/es/src/polyfills.js +216 -0
  118. package/dist/es/src/saga/RouteListenerSaga.js +191 -0
  119. package/dist/es/src/saga/rootSaga.js +16 -0
  120. package/dist/es/src/scss/_CETEIcean.scss +914 -0
  121. package/dist/es/src/scss/_base.scss +187 -0
  122. package/dist/es/src/scss/_diplomatic.scss +332 -0
  123. package/dist/es/src/scss/_globalNavigation.scss +34 -0
  124. package/dist/es/src/scss/_glossary.scss +105 -0
  125. package/dist/es/src/scss/_imageGridView.scss +60 -0
  126. package/dist/es/src/scss/_imageView.scss +16 -0
  127. package/dist/es/src/scss/_imageZoomControl.scss +51 -0
  128. package/dist/es/src/scss/_jumpbox.scss +42 -0
  129. package/dist/es/src/scss/_navigation.scss +135 -0
  130. package/dist/es/src/scss/_pagination.scss +36 -0
  131. package/dist/es/src/scss/_spinner.scss +60 -0
  132. package/dist/es/src/scss/_splitPaneView.scss +35 -0
  133. package/dist/es/src/scss/_thumbnails.scss +17 -0
  134. package/dist/es/src/scss/_transcriptView.scss +178 -0
  135. package/dist/es/src/scss/_watermark.scss +19 -0
  136. package/dist/es/src/scss/_xmlView.scss +25 -0
  137. package/dist/es/src/scss/editioncrafter.scss +109 -0
  138. package/package.json +119 -0
@@ -0,0 +1,2462 @@
1
+ @charset "UTF-8";
2
+ /* Normalize first */
3
+ @import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css");
4
+ /* Google fonts */
5
+ @import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Martel+Sans:wght@200&family=Martel:wght@400;700&family=Taviraj:wght@300;500&display=swap");
6
+ @import url("https://fonts.googleapis.com/icon?family=Material+Icons");
7
+ /*
8
+ FontAwesome icon font http://fontawesome.io/
9
+ FIXME: This is still used by the imageView control panel, the rest of the app uses FA5 react npm module
10
+ */
11
+ @import url("https://use.fontawesome.com/releases/v5.0.8/css/all.css");
12
+ * {
13
+ box-sizing: border-box;
14
+ }
15
+
16
+ div {
17
+ width: auto;
18
+ }
19
+
20
+ body {
21
+ padding: 0;
22
+ margin: 0;
23
+ box-sizing: border-box;
24
+ }
25
+
26
+ .warning {
27
+ color: yellow;
28
+ }
29
+
30
+ .fa {
31
+ width: 1.5rem;
32
+ padding: 0.2rem 0.1rem 0.1rem;
33
+ text-align: center;
34
+ }
35
+
36
+ .fa.active {
37
+ background-color: rgba(158, 158, 158, 0.0392156863);
38
+ border: 0.2rem solid #FF9800;
39
+ }
40
+
41
+ .fa-book.active {
42
+ border-radius: 0 2rem 2rem 0;
43
+ }
44
+
45
+ .fa:not(.active) {
46
+ color: grey;
47
+ }
48
+
49
+ .fa.fa-lock,
50
+ .fa.fa-lock-open {
51
+ border-radius: 2rem 0 0 2rem;
52
+ }
53
+
54
+ .line-clamp {
55
+ display: -webkit-box;
56
+ -webkit-box-orient: vertical;
57
+ overflow: hidden;
58
+ -webkit-line-clamp: 3;
59
+ }
60
+ .line-clamp.two-lines {
61
+ -webkit-line-clamp: 2;
62
+ }
63
+
64
+ .flex-parent {
65
+ display: flex;
66
+ }
67
+ .flex-parent.half-width {
68
+ width: 50%;
69
+ }
70
+ .flex-parent.full-width {
71
+ width: 100%;
72
+ }
73
+ .flex-parent.column {
74
+ flex-direction: column;
75
+ }
76
+ .flex-parent.jc-start {
77
+ justify-content: flex-start;
78
+ }
79
+ .flex-parent.jc-center {
80
+ justify-content: center;
81
+ }
82
+ .flex-parent.jc-end {
83
+ justify-content: flex-end;
84
+ }
85
+ .flex-parent.jc-space-btw {
86
+ justify-content: space-between;
87
+ }
88
+ .flex-parent.jc-space-around {
89
+ justify-content: space-around;
90
+ }
91
+ .flex-parent.ai-start {
92
+ align-items: flex-start;
93
+ }
94
+ .flex-parent.ai-center {
95
+ align-items: center;
96
+ }
97
+ .flex-parent.ai-end {
98
+ align-items: flex-end;
99
+ }
100
+ .flex-parent.wrap {
101
+ flex-wrap: wrap;
102
+ }
103
+ .flex-parent.row-reverse {
104
+ flex-direction: row-reverse;
105
+ }
106
+ .flex-parent.column-reverse {
107
+ flex-direction: column-reverse;
108
+ }
109
+ .flex-parent .flex-1 {
110
+ flex: 1;
111
+ }
112
+ .flex-parent .flex-2 {
113
+ flex: 2;
114
+ }
115
+ .flex-parent .flex-3 {
116
+ flex: 3;
117
+ }
118
+ .flex-parent .flex-4 {
119
+ flex: 4;
120
+ }
121
+ .flex-parent .flex-5 {
122
+ flex: 5;
123
+ }
124
+ .flex-parent .flex-6 {
125
+ flex: 6;
126
+ }
127
+ .flex-parent .flex-7 {
128
+ flex: 7;
129
+ }
130
+ .flex-parent .flex-8 {
131
+ flex: 8;
132
+ }
133
+ .flex-parent .flex-9 {
134
+ flex: 9;
135
+ }
136
+ .flex-parent .flex-10 {
137
+ flex: 10;
138
+ }
139
+ .flex-parent .flex-11 {
140
+ flex: 11;
141
+ }
142
+ .flex-parent .flex-12 {
143
+ flex: 12;
144
+ }
145
+
146
+ .bg-maroon-gradient {
147
+ background-image: linear-gradient(to right, #792421, #66211c, #531d17, #411912, #30140d);
148
+ }
149
+
150
+ .bg-dark-gradient-bt {
151
+ background-image: linear-gradient(to bottom, hsl(30, 50%, 90%), hsl(50, 43%, 83%), hsl(43, 54%, 77%));
152
+ }
153
+
154
+ .bg-dark-gradient-tb {
155
+ background-image: linear-gradient(to bottom, hsl(43, 54%, 77%), hsl(50, 43%, 83%), hsl(30, 50%, 90%));
156
+ }
157
+
158
+ .bg-light-gradient-bt {
159
+ background-image: linear-gradient(to bottom, hsl(30, 50%, 99%), hsl(50, 43%, 90%), hsl(43, 54%, 85%));
160
+ }
161
+
162
+ .bg-light-gradient-tb {
163
+ background-image: linear-gradient(to bottom, hsl(43, 54%, 85%), hsl(50, 43%, 90%), hsl(30, 50%, 99%));
164
+ }
165
+
166
+ .text-bg-gradient-dark-bt {
167
+ background-image: linear-gradient(to bottom, hsla(30, 50%, 90%, 0.9), hsla(50, 43%, 83%, 0.9), hsla(43, 54%, 77%, 0.9)), url("../img/text-bg.png");
168
+ background-size: cover;
169
+ }
170
+
171
+ .text-bg-gradient-light-tb {
172
+ background-image: linear-gradient(to bottom, hsla(43, 54%, 77%, 0.9), hsla(50, 43%, 83%, 0.9), hsla(30, 50%, 90%, 0.9)), url("../img/text-bg.png");
173
+ background-size: cover;
174
+ }
175
+
176
+ .accent-bar {
177
+ height: 10px;
178
+ width: 100%;
179
+ }
180
+
181
+ .invisible {
182
+ opacity: 0;
183
+ }
184
+
185
+ .disabled {
186
+ opacity: 0.5;
187
+ }
188
+
189
+ .figure-dialog-img-container img {
190
+ display: block;
191
+ width: 100%;
192
+ height: auto;
193
+ }
194
+
195
+ a:hover {
196
+ text-decoration: underline;
197
+ }
198
+
199
+ a {
200
+ color: #792421;
201
+ text-decoration: none;
202
+ }
203
+
204
+ @-webkit-keyframes slide-down {
205
+ 0% {
206
+ height: 2px;
207
+ bottom: -5px;
208
+ }
209
+ 100% {
210
+ height: 6px;
211
+ bottom: -9px;
212
+ }
213
+ }
214
+ @-moz-keyframes slide-down {
215
+ 0% {
216
+ height: 2px;
217
+ bottom: -5px;
218
+ }
219
+ 100% {
220
+ height: 6px;
221
+ bottom: -9px;
222
+ }
223
+ }
224
+ @-ms-keyframes slide-down {
225
+ 0% {
226
+ height: 2px;
227
+ bottom: -5px;
228
+ }
229
+ 100% {
230
+ height: 6px;
231
+ bottom: -9px;
232
+ }
233
+ }
234
+ @-o-keyframes slide-down {
235
+ 0% {
236
+ height: 2px;
237
+ bottom: -5px;
238
+ }
239
+ 100% {
240
+ height: 6px;
241
+ bottom: -9px;
242
+ }
243
+ }
244
+ @keyframes slide-down {
245
+ 0% {
246
+ height: 2px;
247
+ bottom: -5px;
248
+ }
249
+ 100% {
250
+ height: 6px;
251
+ bottom: -9px;
252
+ }
253
+ }
254
+ #globalNavigation {
255
+ display: flex;
256
+ align-items: center;
257
+ flex-direction: row-reverse;
258
+ font-size: 0.9rem;
259
+ position: relative;
260
+ top: -4rem;
261
+ right: 2rem;
262
+ float: right;
263
+ }
264
+ @media (min-width: 960px) {
265
+ #globalNavigation {
266
+ display: block;
267
+ }
268
+ }
269
+
270
+ #globalNavigation .expandedViewOnly span, #globalNavigation .expandedViewOnly a {
271
+ color: white;
272
+ margin-left: 1rem;
273
+ cursor: pointer;
274
+ }
275
+
276
+ #globalNavigation span .francais {
277
+ font-weight: 100;
278
+ }
279
+
280
+ #globalNavigation input {
281
+ height: 1.5rem;
282
+ padding: 0 0 0 0.5rem;
283
+ font-style: italic;
284
+ border: 1px solid rgba(0, 0, 0, 0.3882352941);
285
+ color: #756c6c;
286
+ background-color: #D8D8D8;
287
+ }
288
+
289
+ #loadingStateModal {
290
+ position: fixed;
291
+ z-index: 9000;
292
+ background-color: rgba(0, 0, 0, 0.48);
293
+ width: 100vw;
294
+ height: 100vh;
295
+ }
296
+
297
+ .spinner {
298
+ width: 100%;
299
+ height: 100%;
300
+ margin: calc(50vh - (1rem/2)) auto 0 auto;
301
+ text-align: center;
302
+ }
303
+
304
+ .spinner > div {
305
+ width: 1rem;
306
+ height: 1rem;
307
+ background-color: #ffffff;
308
+ border-radius: 100%;
309
+ display: inline-block;
310
+ -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
311
+ animation: sk-bouncedelay 1.4s infinite ease-in-out both;
312
+ }
313
+
314
+ .spinner .bounce1 {
315
+ -webkit-animation-delay: -0.32s;
316
+ animation-delay: -0.32s;
317
+ }
318
+
319
+ .spinner .bounce2 {
320
+ -webkit-animation-delay: -0.16s;
321
+ animation-delay: -0.16s;
322
+ }
323
+
324
+ @-webkit-keyframes sk-bouncedelay {
325
+ 0%, 100%, 80% {
326
+ -webkit-transform: scale(0);
327
+ }
328
+ 40% {
329
+ -webkit-transform: scale(1);
330
+ }
331
+ }
332
+ @keyframes sk-bouncedelay {
333
+ 0%, 100%, 80% {
334
+ -webkit-transform: scale(0);
335
+ transform: scale(0);
336
+ }
337
+ 40% {
338
+ -webkit-transform: scale(1);
339
+ transform: scale(1);
340
+ }
341
+ }
342
+ figure {
343
+ padding: 0.3rem 0 0;
344
+ border-radius: 0.2rem;
345
+ margin: 0;
346
+ text-align: center;
347
+ }
348
+
349
+ figure.current {
350
+ background-color: rgba(7, 122, 255, 0.831);
351
+ }
352
+
353
+ .thumbnail-caption.current {
354
+ color: rgba(7, 122, 255, 0.831) !important;
355
+ font-weight: 900;
356
+ }
357
+
358
+ .watermark {
359
+ width: 100%;
360
+ height: 100%;
361
+ margin: calc(50vh - (10rem/2)) auto 0 auto;
362
+ }
363
+
364
+ .transcriptContent .watermark {
365
+ margin: calc(50vh - 12.5rem) auto 0 auto;
366
+ }
367
+
368
+ .watermark_contents {
369
+ width: 10rem;
370
+ height: 10rem;
371
+ background-image: url("../img/lizard-no-bg.png");
372
+ background-size: 100%;
373
+ background-repeat: no-repeat;
374
+ margin: auto auto auto auto;
375
+ }
376
+
377
+ .navigationComponent {
378
+ position: fixed;
379
+ z-index: 2;
380
+ height: 48px;
381
+ white-space: nowrap;
382
+ -webkit-user-select: none;
383
+ -moz-user-select: none;
384
+ -ms-user-select: none;
385
+ user-select: none;
386
+ padding: 4px;
387
+ top: 75px;
388
+ background-color: white;
389
+ border-radius: 0.3rem;
390
+ }
391
+ .navigationComponent #tool-bar-buttons {
392
+ font-size: 15px;
393
+ }
394
+ @media (min-width: 600px) {
395
+ .navigationComponent {
396
+ top: 80px;
397
+ }
398
+ }
399
+ @media (min-width: 960px) {
400
+ .navigationComponent {
401
+ top: initial;
402
+ }
403
+ }
404
+ .navigationComponent button {
405
+ cursor: pointer;
406
+ }
407
+
408
+ .navigationRow {
409
+ display: flex;
410
+ justify-content: space-between;
411
+ padding: 12px 10px 12px 10px;
412
+ }
413
+
414
+ .helpIcon {
415
+ display: none;
416
+ margin-top: 6px;
417
+ margin-right: 16px;
418
+ }
419
+ @media (min-width: 960px) {
420
+ .helpIcon {
421
+ display: block;
422
+ }
423
+ }
424
+
425
+ .dropdownV2 {
426
+ width: 150px;
427
+ margin-right: 10px;
428
+ }
429
+
430
+ .imageViewComponent .navigationComponent {
431
+ background-color: #4A4A4A;
432
+ border-radius: 0.3rem;
433
+ opacity: 0.8;
434
+ }
435
+ @media (min-width: 960px) {
436
+ .imageViewComponent .navigationComponent {
437
+ background-color: rgb(0, 0, 0);
438
+ color: #ffffff;
439
+ border-radius: 0;
440
+ opacity: 1;
441
+ }
442
+ }
443
+
444
+ .transcriptionViewComponent .navigationComponent {
445
+ background-color: rgb(255, 255, 255);
446
+ color: #000000;
447
+ }
448
+
449
+ #doc-type-help:after {
450
+ color: rgb(151, 142, 142);
451
+ }
452
+
453
+ #doc-type-help .dark .MuiSvgIcon-root.MuiSelect-icon {
454
+ color: white;
455
+ }
456
+
457
+ .breadcrumbs {
458
+ overflow: hidden;
459
+ display: none;
460
+ }
461
+ @media (min-width: 960px) {
462
+ .breadcrumbs {
463
+ display: block;
464
+ }
465
+ }
466
+
467
+ .breadcrumbs .folioName {
468
+ display: inline;
469
+ white-space: nowrap;
470
+ overflow: hidden;
471
+ text-overflow: ellipsis;
472
+ font-weight: 900;
473
+ text-decoration: underline;
474
+ }
475
+
476
+ .closeX {
477
+ float: right;
478
+ padding: 3px;
479
+ font-style: bold;
480
+ }
481
+ .closeX:hover {
482
+ cursor: pointer;
483
+ }
484
+
485
+ .helpContainer {
486
+ padding: 12px;
487
+ width: 335px;
488
+ height: 740px;
489
+ }
490
+ .helpContainer .readingGuide td {
491
+ padding: 8px;
492
+ }
493
+ .helpContainer .readingGuide h2 {
494
+ margin-top: 16px;
495
+ margin-bottom: 10px;
496
+ }
497
+
498
+ .searchHelpContainer {
499
+ padding: 10px 15px 10px 0;
500
+ width: 335px;
501
+ }
502
+
503
+ .helpHeader {
504
+ text-align: center;
505
+ }
506
+
507
+ .paginationComponent {
508
+ white-space: nowrap;
509
+ text-align: center;
510
+ font-size: 1.2rem;
511
+ font-weight: 700;
512
+ -webkit-user-select: none;
513
+ -moz-user-select: none;
514
+ -ms-user-select: none;
515
+ user-select: none;
516
+ margin-top: 52px;
517
+ }
518
+ @media (min-width: 960px) {
519
+ .paginationComponent {
520
+ margin-bottom: 0;
521
+ }
522
+ }
523
+
524
+ .paginationControl {
525
+ padding: 16px;
526
+ }
527
+
528
+ .paginationControl .arrow {
529
+ font-size: 1.8rem;
530
+ color: #4A4A4A;
531
+ margin: 1rem 1rem 0;
532
+ cursor: pointer;
533
+ }
534
+
535
+ .paginationControl .folioName {
536
+ position: relative;
537
+ top: -0.2rem;
538
+ color: #4A4A4A;
539
+ }
540
+
541
+ #diplomatic #content-view h1,
542
+ #diplomatic #content-view h2,
543
+ #diplomatic #content-view h3,
544
+ #diplomatic #content-view h4, #diplomatic .header-wrapper h1,
545
+ #diplomatic .header-wrapper h2,
546
+ #diplomatic .header-wrapper h3,
547
+ #diplomatic .header-wrapper h4, #diplomatic #entry-list-view h1,
548
+ #diplomatic #entry-list-view h2,
549
+ #diplomatic #entry-list-view h3,
550
+ #diplomatic #entry-list-view h4, #diplomatic #annotation-list-view h1,
551
+ #diplomatic #annotation-list-view h2,
552
+ #diplomatic #annotation-list-view h3,
553
+ #diplomatic #annotation-list-view h4 {
554
+ font-family: "Lato", sans-serif;
555
+ color: black;
556
+ padding: 0;
557
+ margin: 0;
558
+ }
559
+ #diplomatic #content-view h1, #diplomatic .header-wrapper h1, #diplomatic #entry-list-view h1, #diplomatic #annotation-list-view h1 {
560
+ font-family: "Taviraj", serif;
561
+ font-size: 32px;
562
+ }
563
+ #diplomatic #content-view h2, #diplomatic #content-view h3, #diplomatic .header-wrapper h2, #diplomatic .header-wrapper h3, #diplomatic #entry-list-view h2, #diplomatic #entry-list-view h3, #diplomatic #annotation-list-view h2, #diplomatic #annotation-list-view h3 {
564
+ font-weight: 700;
565
+ }
566
+ #diplomatic #content-view h2, #diplomatic .header-wrapper h2, #diplomatic #entry-list-view h2, #diplomatic #annotation-list-view h2 {
567
+ font-size: 22px;
568
+ }
569
+ #diplomatic #content-view h3, #diplomatic .header-wrapper h3, #diplomatic #entry-list-view h3, #diplomatic #annotation-list-view h3 {
570
+ font-size: 18px;
571
+ }
572
+ #diplomatic #content-view h4, #diplomatic .header-wrapper h4, #diplomatic #entry-list-view h4, #diplomatic #annotation-list-view h4 {
573
+ font-size: 18px;
574
+ font-weight: 700;
575
+ }
576
+ #diplomatic #content-view p, #diplomatic .header-wrapper p, #diplomatic #entry-list-view p, #diplomatic #annotation-list-view p {
577
+ font-family: "Martel", serif;
578
+ line-height: 1.25;
579
+ }
580
+ #diplomatic #content-view span, #diplomatic .header-wrapper span, #diplomatic #entry-list-view span, #diplomatic #annotation-list-view span {
581
+ font-family: "Martel", serif;
582
+ line-height: 1.25;
583
+ margin: 0;
584
+ }
585
+ #diplomatic #content-view a.MuiButton-containedPrimary.cta-button, #diplomatic .header-wrapper a.MuiButton-containedPrimary.cta-button, #diplomatic #entry-list-view a.MuiButton-containedPrimary.cta-button, #diplomatic #annotation-list-view a.MuiButton-containedPrimary.cta-button {
586
+ color: white;
587
+ padding: 10px 70px;
588
+ border-radius: 0;
589
+ }
590
+ #diplomatic #content-view a.MuiButton-containedPrimary.cta-button .MuiButton-label span, #diplomatic .header-wrapper a.MuiButton-containedPrimary.cta-button .MuiButton-label span, #diplomatic #entry-list-view a.MuiButton-containedPrimary.cta-button .MuiButton-label span, #diplomatic #annotation-list-view a.MuiButton-containedPrimary.cta-button .MuiButton-label span {
591
+ font-family: "Lato", sans-serif;
592
+ font-size: 20px;
593
+ }
594
+ #diplomatic #content-view a, #diplomatic .header-wrapper a, #diplomatic #entry-list-view a, #diplomatic #annotation-list-view a {
595
+ color: #792421;
596
+ }
597
+ #diplomatic #content-view a:hover, #diplomatic .header-wrapper a:hover, #diplomatic #entry-list-view a:hover, #diplomatic #annotation-list-view a:hover {
598
+ color: #CBA374;
599
+ }
600
+ #diplomatic #content-view .cta-link.MuiLink-underlineHover:hover, #diplomatic .header-wrapper .cta-link.MuiLink-underlineHover:hover, #diplomatic #entry-list-view .cta-link.MuiLink-underlineHover:hover, #diplomatic #annotation-list-view .cta-link.MuiLink-underlineHover:hover {
601
+ text-decoration: none;
602
+ }
603
+ #diplomatic #content-view a.cta-link, #diplomatic .header-wrapper a.cta-link, #diplomatic #entry-list-view a.cta-link, #diplomatic #annotation-list-view a.cta-link {
604
+ color: black;
605
+ text-align: center;
606
+ width: fit-content;
607
+ text-decoration: none;
608
+ font-family: "Lato", sans-serif;
609
+ font-size: 16px;
610
+ font-weight: 700;
611
+ position: relative;
612
+ cursor: pointer;
613
+ margin-bottom: 5px;
614
+ }
615
+ @media (min-width: 960px) {
616
+ #diplomatic #content-view a.cta-link, #diplomatic .header-wrapper a.cta-link, #diplomatic #entry-list-view a.cta-link, #diplomatic #annotation-list-view a.cta-link {
617
+ font-size: 18px;
618
+ }
619
+ }
620
+ #diplomatic #content-view a.cta-link.with-icon:after, #diplomatic .header-wrapper a.cta-link.with-icon:after, #diplomatic #entry-list-view a.cta-link.with-icon:after, #diplomatic #annotation-list-view a.cta-link.with-icon:after {
621
+ font-family: "Font Awesome 5 Free";
622
+ margin-left: 7px;
623
+ font-weight: 600;
624
+ content: "\f054";
625
+ font-size: 15px;
626
+ }
627
+ #diplomatic #content-view a.cta-link:before, #diplomatic .header-wrapper a.cta-link:before, #diplomatic #entry-list-view a.cta-link:before, #diplomatic #annotation-list-view a.cta-link:before {
628
+ position: absolute;
629
+ content: "";
630
+ height: 2px;
631
+ background-color: black;
632
+ width: 50%;
633
+ right: 30%;
634
+ bottom: -5px;
635
+ border-radius: 2px;
636
+ }
637
+ #diplomatic #content-view a.cta-link:hover:before, #diplomatic .header-wrapper a.cta-link:hover:before, #diplomatic #entry-list-view a.cta-link:hover:before, #diplomatic #annotation-list-view a.cta-link:hover:before {
638
+ background-color: #792421;
639
+ text-decoration: none;
640
+ height: 6px;
641
+ bottom: -9px;
642
+ -webkit-animation: slide-down .2s;
643
+ -moz-animation: slide-down .2s;
644
+ -ms-animation: slide-down .2s;
645
+ -o-animation: slide-down .2s;
646
+ animation: slide-down .2s;
647
+ }
648
+ #diplomatic #content-view a.cta-link:hover:after, #diplomatic .header-wrapper a.cta-link:hover:after, #diplomatic #entry-list-view a.cta-link:hover:after, #diplomatic #annotation-list-view a.cta-link:hover:after {
649
+ color: #792421;
650
+ }
651
+ #diplomatic #content-view a.cta-link.active:before, #diplomatic .header-wrapper a.cta-link.active:before, #diplomatic #entry-list-view a.cta-link.active:before, #diplomatic #annotation-list-view a.cta-link.active:before {
652
+ background-color: #792421;
653
+ text-decoration: none;
654
+ height: 6px;
655
+ bottom: -9px;
656
+ -webkit-animation: slide-down .2s;
657
+ -moz-animation: slide-down .2s;
658
+ -ms-animation: slide-down .2s;
659
+ -o-animation: slide-down .2s;
660
+ animation: slide-down .2s;
661
+ }
662
+ #diplomatic #content-view a.cta-link.active:after, #diplomatic .header-wrapper a.cta-link.active:after, #diplomatic #entry-list-view a.cta-link.active:after, #diplomatic #annotation-list-view a.cta-link.active:after {
663
+ color: #792421;
664
+ }
665
+ #diplomatic #content-view a.cta-link.light, #diplomatic .header-wrapper a.cta-link.light, #diplomatic #entry-list-view a.cta-link.light, #diplomatic #annotation-list-view a.cta-link.light {
666
+ color: #444444;
667
+ }
668
+ #diplomatic #content-view a.cta-link.light:before, #diplomatic .header-wrapper a.cta-link.light:before, #diplomatic #entry-list-view a.cta-link.light:before, #diplomatic #annotation-list-view a.cta-link.light:before {
669
+ background-color: #444444;
670
+ }
671
+ #diplomatic #content-view a.cta-link.light:hover:before, #diplomatic .header-wrapper a.cta-link.light:hover:before, #diplomatic #entry-list-view a.cta-link.light:hover:before, #diplomatic #annotation-list-view a.cta-link.light:hover:before {
672
+ background-color: #792421;
673
+ }
674
+ #diplomatic #content-view a.cta-link.video-link:after, #diplomatic .header-wrapper a.cta-link.video-link:after, #diplomatic #entry-list-view a.cta-link.video-link:after, #diplomatic #annotation-list-view a.cta-link.video-link:after {
675
+ content: "\f04b";
676
+ font-size: 12px;
677
+ margin-bottom: -2px;
678
+ }
679
+ #diplomatic #content-view a.cta-link.search-link:after, #diplomatic .header-wrapper a.cta-link.search-link:after, #diplomatic #entry-list-view a.cta-link.search-link:after, #diplomatic #annotation-list-view a.cta-link.search-link:after {
680
+ font-family: "Material Icons";
681
+ content: "search";
682
+ font-size: 16px;
683
+ }
684
+ #diplomatic #header {
685
+ width: 100%;
686
+ padding: 0px 20px;
687
+ background-color: white;
688
+ border-radius: 0;
689
+ }
690
+ @media (min-width: 1280px) {
691
+ #diplomatic #header {
692
+ padding: 5px 50px;
693
+ }
694
+ }
695
+ #diplomatic #header img {
696
+ width: 210px;
697
+ }
698
+ @media (min-width: 600px) {
699
+ #diplomatic #header img {
700
+ width: 300px;
701
+ }
702
+ }
703
+ @media (min-width: 960px) {
704
+ #diplomatic #header img {
705
+ width: 300px;
706
+ }
707
+ }
708
+ #diplomatic #header .expandedViewOnly {
709
+ width: 100%;
710
+ }
711
+ #diplomatic #header .nav-item {
712
+ font-size: 16px;
713
+ margin-right: 5px;
714
+ white-space: nowrap;
715
+ margin-bottom: 15px;
716
+ }
717
+ #diplomatic #header .search-btn {
718
+ margin-bottom: 10px;
719
+ font-size: 18px;
720
+ }
721
+ #diplomatic .maroon-dropdown {
722
+ background-color: #460C0A;
723
+ border-radius: 0;
724
+ -webkit-box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.8), 0 5px 5px -5px rgba(0, 0, 0, 0.8);
725
+ -moz-box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.8), 0 5px 5px -5px rgba(0, 0, 0, 0.8);
726
+ box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.8), 0 5px 5px -5px rgba(0, 0, 0, 0.8);
727
+ }
728
+ #diplomatic .mobile-menu {
729
+ padding: 50px 0;
730
+ }
731
+ #diplomatic .mobile-menu .list-container {
732
+ position: relative;
733
+ }
734
+ #diplomatic .mobile-menu .list-container .list {
735
+ color: "white";
736
+ }
737
+ #diplomatic .search-bar {
738
+ height: 162px;
739
+ }
740
+ #diplomatic .search-bar .label {
741
+ font-size: 32px;
742
+ color: white;
743
+ font-weight: 400;
744
+ white-space: nowrap;
745
+ }
746
+ #diplomatic .search-bar .content {
747
+ width: 50%;
748
+ }
749
+ #diplomatic .search-bar #search input {
750
+ border: 1px solid #DEDEDF;
751
+ border-radius: 4px;
752
+ width: 300px;
753
+ height: 38px;
754
+ font-size: 14px;
755
+ padding: 5px 15px;
756
+ font-family: "Lato", sans-serif;
757
+ }
758
+
759
+ #diplomatic.sticky .header-wrapper.sticky {
760
+ position: sticky;
761
+ top: 0;
762
+ z-index: 2;
763
+ }
764
+
765
+ #diplomatic #footer {
766
+ color: white;
767
+ background-color: #460C0A;
768
+ display: flex;
769
+ flex-direction: column;
770
+ padding: 10px 20px;
771
+ }
772
+ @media (min-width: 600px) {
773
+ #diplomatic #footer {
774
+ padding: 20px 30px;
775
+ }
776
+ }
777
+ @media (min-width: 960px) {
778
+ #diplomatic #footer {
779
+ padding: 30px 40px;
780
+ }
781
+ }
782
+ #diplomatic #footer p, #diplomatic #footer a {
783
+ font-family: "Lato", sans-serif;
784
+ font-size: 16px;
785
+ color: #FAFAFA;
786
+ line-height: 1.5;
787
+ margin: 0;
788
+ }
789
+ #diplomatic #footer a:hover {
790
+ color: #CBA374;
791
+ fill: #CBA374;
792
+ }
793
+ #diplomatic #footer .top {
794
+ margin-bottom: 10px;
795
+ }
796
+ #diplomatic #footer .top p {
797
+ margin: 0 5px;
798
+ white-space: nowrap;
799
+ }
800
+ #diplomatic #footer .doi {
801
+ text-align: center;
802
+ }
803
+ #diplomatic #footer .copyright .symbols {
804
+ text-decoration: none;
805
+ }
806
+ #diplomatic #footer .copyright svg {
807
+ width: 14px;
808
+ height: 14px;
809
+ }
810
+ #diplomatic #footer .logos {
811
+ margin-bottom: 10px;
812
+ }
813
+ #diplomatic #footer .logos img {
814
+ width: 150px;
815
+ }
816
+ @media (min-width: 600px) {
817
+ #diplomatic #footer .logos img {
818
+ width: 200px;
819
+ }
820
+ }
821
+ @media (min-width: 600px) {
822
+ #diplomatic #footer .logos img {
823
+ width: 250px;
824
+ }
825
+ }
826
+ #diplomatic #footer .footer-links {
827
+ width: 100%;
828
+ text-align: center;
829
+ font-size: 12px;
830
+ line-height: 2;
831
+ }
832
+
833
+ #diplomatic.fixed {
834
+ background: white;
835
+ position: fixed;
836
+ width: 100vw;
837
+ height: calc(100vh - 12rem);
838
+ font-size: 0.7rem;
839
+ -webkit-user-select: none;
840
+ -moz-user-select: none;
841
+ -ms-user-select: none;
842
+ user-select: none;
843
+ font-family: "OpenSans", sans-serif;
844
+ font-size: 0.9rem;
845
+ }
846
+ @media (min-width: 600px) {
847
+ #diplomatic.fixed {
848
+ height: calc(100vh - 13rem);
849
+ }
850
+ }
851
+ @media (min-width: 960px) {
852
+ #diplomatic.fixed {
853
+ height: calc(100vh - 14rem);
854
+ }
855
+ }
856
+ #diplomatic.fixed #content {
857
+ line-height: 1.2rem;
858
+ }
859
+ #diplomatic.fixed h1,
860
+ #diplomatic.fixed h2,
861
+ #diplomatic.fixed h3,
862
+ #diplomatic.fixed h4 {
863
+ color: rgba(0, 0, 0, 0.7215686275);
864
+ font-family: "OpenSans", sans-serif;
865
+ font-weight: 700;
866
+ padding: 0;
867
+ line-height: 1.5rem;
868
+ }
869
+
870
+ .imageGridComponent {
871
+ background-color: #000000;
872
+ font-size: 0.8rem;
873
+ overflow: scroll;
874
+ height: 100vh;
875
+ }
876
+
877
+ .imageGridComponent > ul {
878
+ display: flex;
879
+ flex-wrap: wrap;
880
+ list-style: none;
881
+ padding-left: 0;
882
+ margin: 1.5rem 0 8rem 2rem;
883
+ }
884
+
885
+ .imageGridComponent > ul > li {
886
+ margin-bottom: 20px;
887
+ width: 150px;
888
+ height: 220px;
889
+ }
890
+
891
+ .imageGridComponent > ul > li > figure {
892
+ margin: 8px;
893
+ }
894
+
895
+ .imageGridComponent > ul > li > figure:hover {
896
+ border: 2px #eee solid;
897
+ margin: 6px;
898
+ }
899
+
900
+ .imageGridComponent > ul > li > .thumbnail-caption {
901
+ text-align: center;
902
+ color: white;
903
+ }
904
+
905
+ .hidden {
906
+ display: none;
907
+ }
908
+
909
+ .imageGridComponent .imageGridToolbar {
910
+ padding: 5px;
911
+ color: white;
912
+ }
913
+ .imageGridComponent .imageGridToolbar .jump-to {
914
+ float: right;
915
+ display: "inline";
916
+ margin-right: 30px;
917
+ }
918
+ .imageGridComponent .imageGridToolbar .jump-to #jump-to-input {
919
+ margin-left: 5px;
920
+ }
921
+ .imageGridComponent .imageGridToolbar .jump-to #jump-to-button {
922
+ margin-left: 5px;
923
+ cursor: pointer;
924
+ }
925
+
926
+ .split-pane-view {
927
+ height: 100%;
928
+ width: 100%;
929
+ display: grid;
930
+ grid-template-areas: "image_viewer divider transcription";
931
+ }
932
+
933
+ .split-pane-view > .divider {
934
+ z-index: 2;
935
+ grid-area: divider;
936
+ width: 1rem;
937
+ background: #BBB;
938
+ cursor: ew-resize;
939
+ display: flex;
940
+ }
941
+
942
+ .split-pane-view > .divider > .drawer-button {
943
+ align-self: center;
944
+ align: center;
945
+ cursor: auto;
946
+ }
947
+
948
+ .split-pane-view > .divider > .drawer-button:hover {
949
+ color: white;
950
+ }
951
+
952
+ .split-pane-view > .divider > .hidden {
953
+ display: none;
954
+ }
955
+
956
+ .split-pane-view #annotation-view {
957
+ font-size: 16px;
958
+ }
959
+
960
+ #image-view-seadragon-left,
961
+ #image-view-seadragon-right {
962
+ width: 100%;
963
+ height: 100%;
964
+ grid-area: image_viewer;
965
+ background: black;
966
+ }
967
+
968
+ .imageViewComponent {
969
+ position: relative;
970
+ padding: 0;
971
+ margin: 0;
972
+ width: 100%;
973
+ height: 100vh;
974
+ }
975
+
976
+ .ImageZoomControl {
977
+ position: absolute;
978
+ z-index: 1;
979
+ top: 8rem;
980
+ color: white;
981
+ list-style: none;
982
+ background: #4A4A4A;
983
+ opacity: 0.4;
984
+ margin: 0;
985
+ padding: 0.4rem 0.5rem;
986
+ border-radius: 0.3rem;
987
+ }
988
+ @media (min-width: 960px) {
989
+ .ImageZoomControl {
990
+ top: 4rem;
991
+ left: 2rem;
992
+ }
993
+ }
994
+
995
+ .ImageZoomControl > li {
996
+ color: #E0E0E0;
997
+ }
998
+
999
+ .ImageZoomControl > li > .zoom-in {
1000
+ margin-top: 8px;
1001
+ }
1002
+
1003
+ .ImageZoomControl > li:hover {
1004
+ color: white;
1005
+ }
1006
+
1007
+ .ImageZoomControl > li > .zoom-3 {
1008
+ margin-top: 8px;
1009
+ }
1010
+
1011
+ .ImageZoomControl > li > .zoom-2 {
1012
+ margin-top: 8px;
1013
+ margin-left: 5px;
1014
+ }
1015
+
1016
+ .ImageZoomControl > li > .zoom-1 {
1017
+ margin-top: 8px;
1018
+ margin-left: 7px;
1019
+ }
1020
+
1021
+ .ImageZoomControl > li > .zoom-out {
1022
+ margin-top: 8px;
1023
+ }
1024
+
1025
+ .ImageZoomControl > li > .zoom-grid {
1026
+ margin-top: 30px;
1027
+ }
1028
+
1029
+ .transcriptionViewComponent {
1030
+ overflow: scroll;
1031
+ height: calc(100vh - 7rem);
1032
+ }
1033
+ .transcriptionViewComponent .transcriptContent {
1034
+ padding: 50px 16px;
1035
+ -webkit-user-select: text;
1036
+ -moz-user-select: text;
1037
+ -ms-user-select: text;
1038
+ user-select: text;
1039
+ margin-bottom: 92px;
1040
+ }
1041
+ @media (min-width: 960px) {
1042
+ .transcriptionViewComponent .transcriptContent {
1043
+ padding: 5px 16px;
1044
+ }
1045
+ }
1046
+ .transcriptionViewComponent .transcriptContent figure {
1047
+ display: inline;
1048
+ }
1049
+ .transcriptionViewComponent .transcriptContent .block[data-layout=right-middle] {
1050
+ max-width: 250px;
1051
+ }
1052
+ .transcriptionViewComponent .transcriptContent .block[data-layout=right-top] {
1053
+ max-width: 250px;
1054
+ }
1055
+ .transcriptionViewComponent .transcriptContent .block[data-layout=right-bottom] {
1056
+ max-width: 250px;
1057
+ }
1058
+ .transcriptionViewComponent .transcriptContent .x-small-inline-figure {
1059
+ margin: 5px;
1060
+ border: 1px solid gray;
1061
+ width: 30px;
1062
+ }
1063
+ .transcriptionViewComponent .transcriptContent .small-inline-figure {
1064
+ margin: 5px;
1065
+ border: 1px solid gray;
1066
+ width: 60px;
1067
+ }
1068
+ .transcriptionViewComponent .transcriptContent .medium-inline-figure {
1069
+ margin: 5px;
1070
+ border: 1px solid gray;
1071
+ width: 200px;
1072
+ }
1073
+ .transcriptionViewComponent .transcriptContent .large-inline-figure {
1074
+ margin: 5px;
1075
+ border: 1px solid gray;
1076
+ width: 350px;
1077
+ }
1078
+ .transcriptionViewComponent .transcriptContent .surface {
1079
+ grid-area: transcription;
1080
+ margin: 0;
1081
+ padding: 0;
1082
+ list-style: none;
1083
+ }
1084
+ .transcriptionViewComponent .transcriptContent .grid-mode {
1085
+ display: grid;
1086
+ grid-auto-rows: minmax(min-content, 0fr);
1087
+ grid-gap: 2px;
1088
+ }
1089
+ .transcriptionViewComponent .transcriptContent .surface > .small-font {
1090
+ font-size: 11pt;
1091
+ }
1092
+ .transcriptionViewComponent .transcriptContent .surface > div {
1093
+ padding: 10px;
1094
+ }
1095
+ .transcriptionViewComponent .transcriptContent .surface > #z0 {
1096
+ grid-area: z0;
1097
+ }
1098
+ .transcriptionViewComponent .transcriptContent .surface > #z1 {
1099
+ grid-area: z1;
1100
+ }
1101
+ .transcriptionViewComponent .transcriptContent .surface > #z2 {
1102
+ grid-area: z2;
1103
+ }
1104
+ .transcriptionViewComponent .transcriptContent .surface > #z3 {
1105
+ grid-area: z3;
1106
+ }
1107
+ .transcriptionViewComponent .transcriptContent .surface > #z4 {
1108
+ grid-area: z4;
1109
+ }
1110
+ .transcriptionViewComponent .transcriptContent .surface > #z5 {
1111
+ grid-area: z5;
1112
+ }
1113
+ .transcriptionViewComponent .transcriptContent .surface > #z6 {
1114
+ grid-area: z6;
1115
+ }
1116
+ .transcriptionViewComponent .transcriptContent .surface > #z7 {
1117
+ grid-area: z7;
1118
+ }
1119
+ .transcriptionViewComponent .transcriptContent .surface > #z8 {
1120
+ grid-area: z8;
1121
+ }
1122
+ .transcriptionViewComponent .transcriptContent .surface > #z9 {
1123
+ grid-area: z9;
1124
+ }
1125
+ .transcriptionViewComponent .transcriptContent .surface > #z10 {
1126
+ grid-area: z10;
1127
+ }
1128
+ .transcriptionViewComponent .transcriptContent .surface > #z11 {
1129
+ grid-area: z11;
1130
+ }
1131
+ .transcriptionViewComponent .transcriptContent .surface > #z12 {
1132
+ grid-area: z12;
1133
+ }
1134
+ .transcriptionViewComponent .transcriptContent .surface > #z13 {
1135
+ grid-area: z13;
1136
+ }
1137
+ .transcriptionViewComponent .transcriptContent .surface > #z14 {
1138
+ grid-area: z14;
1139
+ }
1140
+ .transcriptionViewComponent .transcriptContent .surface > #z15 {
1141
+ grid-area: z15;
1142
+ }
1143
+ .transcriptionViewComponent .transcriptContent .surface > #z16 {
1144
+ grid-area: z16;
1145
+ }
1146
+ .transcriptionViewComponent .transcriptContent .surface > #z17 {
1147
+ grid-area: z17;
1148
+ }
1149
+ .transcriptionViewComponent .transcriptContent .surface > #z18 {
1150
+ grid-area: z18;
1151
+ }
1152
+ .transcriptionViewComponent .transcriptContent .surface > #z19 {
1153
+ grid-area: z19;
1154
+ }
1155
+ .transcriptionViewComponent .transcriptContent .surface > #z20 {
1156
+ grid-area: z20;
1157
+ }
1158
+ .transcriptionViewComponent .transcriptContent .highlight {
1159
+ background-color: yellow;
1160
+ }
1161
+
1162
+ .editor-comment-content {
1163
+ word-wrap: break-word;
1164
+ }
1165
+
1166
+ .xmlViewComponent .navigationComponent {
1167
+ background-color: white;
1168
+ color: #000000;
1169
+ }
1170
+
1171
+ .xmlContent {
1172
+ padding: 0;
1173
+ margin: 4.5rem 0 0;
1174
+ width: calc(100% - 1.2rem);
1175
+ min-height: 100vh;
1176
+ -webkit-user-select: text;
1177
+ -moz-user-select: text;
1178
+ -ms-user-select: text;
1179
+ user-select: text;
1180
+ min-width: 10rem;
1181
+ }
1182
+
1183
+ .xmlViewComponent {
1184
+ overflow: scroll;
1185
+ margin: 0 0 0 1rem;
1186
+ height: calc(100vh - 7rem);
1187
+ }
1188
+
1189
+ .xmlContentInner {
1190
+ overflow-x: scroll;
1191
+ }
1192
+
1193
+ #glossaryView #glossaryViewInner {
1194
+ overflow-y: scroll;
1195
+ margin: 5px 0 0 0;
1196
+ width: calc(100% - 1.2rem);
1197
+ height: calc(100vh - 170px);
1198
+ padding: 5px 16px;
1199
+ }
1200
+ @media (min-width: 960px) {
1201
+ #glossaryView #glossaryViewInner {
1202
+ margin: 52px 0 0 0;
1203
+ }
1204
+ }
1205
+ #glossaryView .cite-header {
1206
+ text-align: center;
1207
+ margin-bottom: 5px;
1208
+ }
1209
+ #glossaryView .cite-instructions {
1210
+ margin: 20px;
1211
+ margin-left: 15%;
1212
+ margin-right: 15%;
1213
+ }
1214
+ #glossaryView .navigationComponent {
1215
+ position: sticky;
1216
+ top: 0;
1217
+ }
1218
+ @media (min-width: 960px) {
1219
+ #glossaryView .navigationComponent {
1220
+ position: fixed;
1221
+ top: initial;
1222
+ }
1223
+ }
1224
+ #glossaryView .glossaryNav {
1225
+ background: white;
1226
+ padding: 5px;
1227
+ position: relative;
1228
+ }
1229
+ #glossaryView .glossaryNav #glossary-filter {
1230
+ margin-right: 10px;
1231
+ }
1232
+ #glossaryView .glossaryNav .alphaNav {
1233
+ display: none;
1234
+ }
1235
+ @media (min-width: 960px) {
1236
+ #glossaryView .glossaryNav .alphaNav {
1237
+ display: block;
1238
+ }
1239
+ }
1240
+ #glossaryView .alphaNav {
1241
+ color: blue;
1242
+ display: inline;
1243
+ }
1244
+ #glossaryView .title {
1245
+ white-space: nowrap;
1246
+ position: relative;
1247
+ width: calc(100% - 1.7rem);
1248
+ text-align: center;
1249
+ top: -2em;
1250
+ font-size: 1.8rem;
1251
+ font-weight: 700;
1252
+ -webkit-user-select: none;
1253
+ -moz-user-select: none;
1254
+ -ms-user-select: none;
1255
+ user-select: none;
1256
+ }
1257
+ @media (min-width: 960px) {
1258
+ #glossaryView .title {
1259
+ top: -1em;
1260
+ }
1261
+ }
1262
+ #glossaryView .subtitle {
1263
+ white-space: nowrap;
1264
+ position: relative;
1265
+ width: calc(100% - 1.7rem);
1266
+ text-align: center;
1267
+ top: -2em;
1268
+ font-style: italic;
1269
+ -webkit-user-select: none;
1270
+ -moz-user-select: none;
1271
+ -ms-user-select: none;
1272
+ user-select: none;
1273
+ }
1274
+ @media (min-width: 960px) {
1275
+ #glossaryView .subtitle {
1276
+ top: -1em;
1277
+ }
1278
+ }
1279
+ #glossaryView #glossaryContent {
1280
+ padding: 5rem 0 0;
1281
+ min-height: 100vh;
1282
+ -webkit-user-select: text;
1283
+ -moz-user-select: text;
1284
+ -ms-user-select: text;
1285
+ user-select: text;
1286
+ min-width: 10rem;
1287
+ }
1288
+ @media (min-width: 960px) {
1289
+ #glossaryView #glossaryContent {
1290
+ padding: 3.5rem 0 0;
1291
+ }
1292
+ }
1293
+
1294
+ .jumpToFolio_component {
1295
+ margin: 1rem 0 0 -4.5rem;
1296
+ padding: 0.6rem;
1297
+ height: 1.2rem;
1298
+ width: 9.5rem;
1299
+ background: #e7e7e7;
1300
+ border: 1px solid rgba(90, 98, 102, 0.53);
1301
+ border-radius: 0.3rem;
1302
+ -webkit-box-shadow: 6px 6px 5px 0 rgba(0, 0, 0, 0.211765);
1303
+ -moz-box-shadow: 6px 6px 5px 0 rgba(0, 0, 0, 0.211765);
1304
+ box-shadow: 6px 6px 5px 0 rgba(0, 0, 0, 0.211765);
1305
+ font-family: sans-serif;
1306
+ }
1307
+
1308
+ .jumpToFolio_component input:focus {
1309
+ outline: none;
1310
+ }
1311
+
1312
+ .jumpToFolio_component:after,
1313
+ .jumpToFolio_component:before {
1314
+ bottom: 100%;
1315
+ left: 50%;
1316
+ border: solid transparent;
1317
+ content: " ";
1318
+ height: 0;
1319
+ width: 0;
1320
+ position: absolute;
1321
+ pointer-events: none;
1322
+ }
1323
+
1324
+ .jumpToFolio_component:after {
1325
+ border-color: rgba(255, 255, 255, 0);
1326
+ border-bottom-color: #e7e7e7;
1327
+ border-width: 9px;
1328
+ margin-left: -9px;
1329
+ }
1330
+
1331
+ .jumpToFolio_component:before {
1332
+ border-color: rgba(194, 225, 245, 0);
1333
+ border-bottom-color: rgba(90, 98, 102, 0.53);
1334
+ border-width: 11px;
1335
+ margin-left: -11px;
1336
+ }
1337
+
1338
+ /* This is a sample stylesheet for use with CETEIcean. It is not intended */
1339
+ /* to be comprehensive. The rules here are largely derived from earlier work */
1340
+ /* on TEI Boilerplate */
1341
+ /* language support */
1342
+ /* render Arabic, Persian, Ottoman, Hebrew as rtl */
1343
+ [lang=ar],
1344
+ [lang=ota],
1345
+ [lang=fa],
1346
+ [lang=he],
1347
+ [lang*=-Arab-AR] {
1348
+ direction: rtl;
1349
+ text-align: right;
1350
+ }
1351
+
1352
+ /* display latin scripts as ltr */
1353
+ [lang=en],
1354
+ [lang=fr],
1355
+ [lang=de],
1356
+ [lang=it],
1357
+ [lang*=ar-Latn-],
1358
+ [lang*=ota-Latn-] {
1359
+ direction: ltr;
1360
+ text-align: left;
1361
+ }
1362
+
1363
+ /* Choice elements */
1364
+ tei-choice tei-abbr + tei-expan:before,
1365
+ tei-choice tei-expan + tei-abbr:before,
1366
+ tei-choice tei-sic + tei-corr:before,
1367
+ tei-choice tei-corr + tei-sic:before,
1368
+ tei-choice tei-orig + tei-reg:before,
1369
+ tei-choice tei-reg + tei-orig:before {
1370
+ content: " (";
1371
+ }
1372
+
1373
+ tei-choice tei-abbr + tei-expan:after,
1374
+ tei-choice tei-expan + tei-abbr:after,
1375
+ tei-choice tei-sic + tei-corr:after,
1376
+ tei-choice tei-corr + tei-sic:after,
1377
+ tei-choice tei-orig + tei-reg:after,
1378
+ tei-choice tei-reg + tei-orig:after {
1379
+ content: ")";
1380
+ }
1381
+
1382
+ /* A */
1383
+ tei-ab {
1384
+ display: block;
1385
+ margin-top: 1em;
1386
+ margin-bottom: 1em;
1387
+ }
1388
+
1389
+ tei-accMat {
1390
+ display: block;
1391
+ }
1392
+
1393
+ tei-accMat:before {
1394
+ content: "accompanying materials: ";
1395
+ }
1396
+
1397
+ tei-acquisition {
1398
+ display: block;
1399
+ margin-top: 0;
1400
+ margin-bottom: 0;
1401
+ }
1402
+
1403
+ tei-acquisition:before {
1404
+ font-weight: bold;
1405
+ content: "acquisition";
1406
+ }
1407
+
1408
+ tei-activity {
1409
+ display: block;
1410
+ }
1411
+
1412
+ tei-activity:before {
1413
+ content: "activity: ";
1414
+ }
1415
+
1416
+ tei-add[place=above] {
1417
+ color: blue;
1418
+ vertical-align: super;
1419
+ font-size: 10pt;
1420
+ }
1421
+
1422
+ tei-add[place=inline]:before {
1423
+ content: "«";
1424
+ }
1425
+
1426
+ tei-add[place=inline]:after {
1427
+ content: "»";
1428
+ }
1429
+
1430
+ tei-add[place=below] {
1431
+ vertical-align: sub;
1432
+ }
1433
+
1434
+ tei-additional {
1435
+ display: block;
1436
+ }
1437
+
1438
+ tei-additions {
1439
+ display: block;
1440
+ }
1441
+
1442
+ tei-additions:before {
1443
+ content: "Significant additions within the document: ";
1444
+ }
1445
+
1446
+ tei-addrLine {
1447
+ display: block;
1448
+ }
1449
+
1450
+ tei-address[data-tei-rend~=block], addresss[data-tei-rendition~="#block"] {
1451
+ display: block;
1452
+ }
1453
+
1454
+ tei-adminInfo {
1455
+ display: block;
1456
+ }
1457
+
1458
+ tei-app tei-note {
1459
+ display: none;
1460
+ }
1461
+
1462
+ tei-appInfo {
1463
+ display: block;
1464
+ }
1465
+
1466
+ tei-appInfo:before {
1467
+ content: "Application information: ";
1468
+ }
1469
+
1470
+ tei-application {
1471
+ display: block;
1472
+ }
1473
+
1474
+ tei-application:after {
1475
+ content: " " attr(version);
1476
+ }
1477
+
1478
+ tei-argument {
1479
+ display: block;
1480
+ }
1481
+
1482
+ tei-att {
1483
+ font-family: Courier, monospace;
1484
+ }
1485
+
1486
+ tei-att:before {
1487
+ content: "@";
1488
+ }
1489
+
1490
+ tei-titlestmt > tei-author {
1491
+ display: block;
1492
+ margin-bottom: 1em;
1493
+ }
1494
+
1495
+ tei-publicationstmt > tei-availability {
1496
+ font-size: 80%;
1497
+ }
1498
+
1499
+ tei-publicationstmt > tei-availability:before {
1500
+ font-weight: bold;
1501
+ content: "Availability: ";
1502
+ }
1503
+
1504
+ tei-publicationstmt > tei-availability[data-tei-status]:before {
1505
+ font-weight: bold;
1506
+ content: "Availability (" attr(status) "): ";
1507
+ }
1508
+
1509
+ /* B */
1510
+ tei-back {
1511
+ display: block;
1512
+ }
1513
+
1514
+ tei-bibl[data-tei-rend~=block], bibl[data-tei-rendition~="#block"] {
1515
+ display: block;
1516
+ padding-left: 2em;
1517
+ text-indent: -2em;
1518
+ }
1519
+
1520
+ tei-biblFull {
1521
+ display: block;
1522
+ }
1523
+
1524
+ tei-binding {
1525
+ display: block;
1526
+ }
1527
+
1528
+ tei-binding:before {
1529
+ content: "Binding: \a";
1530
+ white-space: pre-wrap;
1531
+ }
1532
+
1533
+ tei-binding[data-tei-contemporary]:before {
1534
+ content: "Binding: \a" "Contemporary: " attr(contemporary) "\a";
1535
+ white-space: pre-wrap;
1536
+ }
1537
+
1538
+ tei-bindingdesc {
1539
+ display: block;
1540
+ }
1541
+
1542
+ tei-bindngdesc:before {
1543
+ content: "Binding description: \a";
1544
+ }
1545
+
1546
+ tei-birth {
1547
+ display: block;
1548
+ }
1549
+
1550
+ tei-birth:before {
1551
+ content: "Birth: ";
1552
+ }
1553
+
1554
+ /* c */
1555
+ tei-cRefPattern {
1556
+ display: none;
1557
+ }
1558
+
1559
+ tei-caption {
1560
+ display: block;
1561
+ margin-top: 1em;
1562
+ margin-bottom: 1em;
1563
+ }
1564
+
1565
+ tei-case[data-tei-value]:before {
1566
+ font-weight: bold;
1567
+ content: attr(value) " ";
1568
+ }
1569
+
1570
+ tei-castgroup {
1571
+ display: block;
1572
+ margin-top: 1em;
1573
+ margin-bottom: 1em;
1574
+ }
1575
+
1576
+ tei-castitem {
1577
+ display: list-item;
1578
+ }
1579
+
1580
+ tei-castlist {
1581
+ display: block;
1582
+ list-style-type: none;
1583
+ margin-top: 1em;
1584
+ margin-bottom: 1em;
1585
+ margin-left: 2em;
1586
+ }
1587
+
1588
+ tei-cb {
1589
+ display: block;
1590
+ margin-top: 1em;
1591
+ margin-bottom: 1em;
1592
+ }
1593
+
1594
+ tei-cb:before {
1595
+ content: "[column break]";
1596
+ }
1597
+
1598
+ tei-cell {
1599
+ border-right: thin solid black;
1600
+ border-bottom: thin solid black;
1601
+ padding: 2px;
1602
+ }
1603
+
1604
+ /* for cell or row with @role = label */
1605
+ tei-cell[data-tei-role=label] {
1606
+ font-weight: bold;
1607
+ }
1608
+
1609
+ tei-climate {
1610
+ display: block;
1611
+ margin-top: 1em;
1612
+ margin-bottom: 1em;
1613
+ }
1614
+
1615
+ tei-climate:before {
1616
+ font-weight: bold;
1617
+ content: "Climate: ";
1618
+ }
1619
+
1620
+ tei-code {
1621
+ font-family: Courier, monospace;
1622
+ }
1623
+
1624
+ tei-collation {
1625
+ display: block;
1626
+ margin-top: 1em;
1627
+ margin-bottom: 1em;
1628
+ }
1629
+
1630
+ tei-condition {
1631
+ display: block;
1632
+ margin-top: 1em;
1633
+ margin-bottom: 1em;
1634
+ }
1635
+
1636
+ tei-constitution {
1637
+ display: block;
1638
+ margin-top: 1em;
1639
+ margin-bottom: 1em;
1640
+ }
1641
+
1642
+ tei-constitution:before {
1643
+ font-weight: bold;
1644
+ content: "Constitution: ";
1645
+ }
1646
+
1647
+ tei-constitution[data-tei-type] {
1648
+ display: block;
1649
+ margin-top: 1em;
1650
+ margin-bottom: 1em;
1651
+ }
1652
+
1653
+ tei-constitution[data-tei-type]:before {
1654
+ font-weight: bold;
1655
+ content: "Constitution (" attr(type) "): ";
1656
+ }
1657
+
1658
+ tei-constitution[data-tei-type=frags] {
1659
+ display: block;
1660
+ margin-top: 1em;
1661
+ margin-bottom: 1em;
1662
+ }
1663
+
1664
+ tei-constitution[data-tei-type=frags]:before {
1665
+ font-weight: bold;
1666
+ content: "Constitution (fragments): ";
1667
+ }
1668
+
1669
+ tei-custevent {
1670
+ display: list-item;
1671
+ }
1672
+
1673
+ tei-custodialhist {
1674
+ display: block;
1675
+ margin-top: 1em;
1676
+ margin-bottom: 1em;
1677
+ }
1678
+
1679
+ /* d */
1680
+ tei-date[data-tei-when]:empty:before {
1681
+ content: attr(when);
1682
+ }
1683
+
1684
+ tei-del {
1685
+ color: red;
1686
+ }
1687
+
1688
+ /* e */
1689
+ tei-editionstmt {
1690
+ display: block;
1691
+ }
1692
+
1693
+ teieg-egxml {
1694
+ display: block;
1695
+ font-size: 80%;
1696
+ margin-left: 1em;
1697
+ padding-left: 1em;
1698
+ border-left: 1px solid #aaaaaa;
1699
+ margin-top: 0.75em;
1700
+ margin-bottom: 0.75em;
1701
+ padding-top: 0.75em;
1702
+ padding-bottom: 0.75em;
1703
+ font-family: monospace;
1704
+ white-space: pre;
1705
+ }
1706
+
1707
+ tei-emph {
1708
+ font-style: italic;
1709
+ }
1710
+
1711
+ tei-encodingdesc {
1712
+ display: none;
1713
+ }
1714
+
1715
+ tei-epigraph {
1716
+ display: block;
1717
+ margin-top: 1em;
1718
+ margin-bottom: 1em;
1719
+ }
1720
+
1721
+ tei-explicit {
1722
+ font-style: italic;
1723
+ }
1724
+
1725
+ tei-filedesc > tei-extent {
1726
+ display: none;
1727
+ }
1728
+
1729
+ /* f */
1730
+ tei-figure {
1731
+ display: block;
1732
+ text-align: center;
1733
+ margin-left: auto;
1734
+ margin-right: auto;
1735
+ }
1736
+
1737
+ /* g */
1738
+ tei-gap[data-tei-reason=lost]:before {
1739
+ content: "[";
1740
+ }
1741
+
1742
+ tei-gap[data-tei-reason=lost]:after {
1743
+ content: attr(data-content) "]";
1744
+ }
1745
+
1746
+ tei-gap[data-tei-reason=illegible]:after {
1747
+ content: attr(data-content);
1748
+ }
1749
+
1750
+ tei-gi {
1751
+ font-family: Courier, monospace;
1752
+ }
1753
+
1754
+ tei-gi:before {
1755
+ content: "<";
1756
+ }
1757
+
1758
+ tei-gi:after {
1759
+ content: ">";
1760
+ }
1761
+
1762
+ /* h */
1763
+ tei-head {
1764
+ display: block;
1765
+ font-family: "OpenSans", sans-serif;
1766
+ font-weight: 700;
1767
+ font-size: 1.5em;
1768
+ line-height: 1.5rem;
1769
+ }
1770
+
1771
+ tei-body > tei-head {
1772
+ font-size: 180%;
1773
+ text-indent: -0.5em;
1774
+ }
1775
+
1776
+ tei-div.textpart {
1777
+ display: none;
1778
+ }
1779
+
1780
+ tei-div > tei-head {
1781
+ font-size: 170%;
1782
+ text-indent: -0.5em;
1783
+ }
1784
+
1785
+ tei-div > tei-div > tei-head {
1786
+ font-size: 155%;
1787
+ }
1788
+
1789
+ tei-div > tei-div > tei-div > tei-head {
1790
+ font-size: 140%;
1791
+ }
1792
+
1793
+ tei-div > tei-div > tei-div > tei-div > tei-head, list > tei-head {
1794
+ font-size: 130%;
1795
+ }
1796
+
1797
+ tei-div > tei-div > tei-div > tei-div > tei-div > tei-head {
1798
+ font-size: 120%;
1799
+ }
1800
+
1801
+ tei-div > tei-div > tei-div > tei-div > tei-div > tei-div tei-head {
1802
+ font-size: 110%;
1803
+ }
1804
+
1805
+ tei-figure > tei-head {
1806
+ display: block;
1807
+ margin: 1.5em auto 1.5em auto;
1808
+ padding: 0.5em 1.5em 1.5em 1.5em;
1809
+ border: 1px solid black;
1810
+ border-radius: 15px;
1811
+ width: 325px;
1812
+ position: relative;
1813
+ border: 1px solid #aaaaaa;
1814
+ background: #fafafa;
1815
+ /* reset text-indent for note with <l> ancestors. */
1816
+ text-indent: 0;
1817
+ font-size: 85%;
1818
+ text-align: justify;
1819
+ -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
1820
+ -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
1821
+ box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
1822
+ width: 85%;
1823
+ font-family: Georgia, Serif;
1824
+ font-size: 13pt;
1825
+ }
1826
+
1827
+ tei-hi[rend~=caps] {
1828
+ font-weight: bold;
1829
+ }
1830
+
1831
+ tei-hi[rend~=italic] {
1832
+ font-style: italic;
1833
+ }
1834
+
1835
+ tei-hi[rend~=underline] {
1836
+ text-decoration: underline;
1837
+ }
1838
+
1839
+ tei-ident {
1840
+ font-family: Courier, monospace;
1841
+ }
1842
+
1843
+ tei-incipit {
1844
+ font-style: italic;
1845
+ }
1846
+
1847
+ tei-item {
1848
+ display: list-item;
1849
+ margin-left: 1em;
1850
+ }
1851
+
1852
+ tei-cell item {
1853
+ margin-left: 1em;
1854
+ }
1855
+
1856
+ /* j */
1857
+ /* l */
1858
+ tei-l {
1859
+ display: block;
1860
+ width: 35em;
1861
+ }
1862
+
1863
+ tei-l[data-lineno]:before {
1864
+ content: attr(data-lineno);
1865
+ position: absolute;
1866
+ left: 2em;
1867
+ }
1868
+
1869
+ tei-lb:after {
1870
+ content: "\a";
1871
+ white-space: pre;
1872
+ }
1873
+
1874
+ tei-lg {
1875
+ display: block;
1876
+ margin-top: 1em;
1877
+ margin-bottom: 1em;
1878
+ }
1879
+
1880
+ tei-list {
1881
+ display: block;
1882
+ margin-top: 1em;
1883
+ margin-bottom: 1em;
1884
+ list-style-type: none;
1885
+ }
1886
+
1887
+ tei-item > tei-list {
1888
+ margin-top: 0;
1889
+ }
1890
+
1891
+ tei-sourcedesc tei-list {
1892
+ list-style-type: none;
1893
+ }
1894
+
1895
+ tei-sourcedesc > tei-list > tei-head {
1896
+ font-size: 140%;
1897
+ font-weight: bold;
1898
+ }
1899
+
1900
+ tei-sourcedesc tei-list > tei-item {
1901
+ display: list-item;
1902
+ }
1903
+
1904
+ /* Match only lists that are descendants of
1905
+ tei-text. Otherwise they show up in the header. */
1906
+ tei-text tei-list[type=simple] {
1907
+ list-style-type: none;
1908
+ }
1909
+
1910
+ tei-text tei-list[type=bulleted] {
1911
+ list-style-type: disc;
1912
+ }
1913
+
1914
+ tei-text tei-list[type=ordered] {
1915
+ list-style-type: none;
1916
+ counter-reset: items 0;
1917
+ }
1918
+
1919
+ tei-text tei-list[type=ordered] > tei-item {
1920
+ display: list-item;
1921
+ margin-left: 0;
1922
+ }
1923
+
1924
+ tei-item > tei-list[type=ordered] {
1925
+ margin-left: 1em;
1926
+ }
1927
+
1928
+ tei-text tei-list[type=ordered] > item:before {
1929
+ counter-increment: items 1;
1930
+ content: counter(items, decimal) ". ";
1931
+ }
1932
+
1933
+ tei-text tei-list[type=gloss] {
1934
+ list-style-type: none;
1935
+ }
1936
+
1937
+ tei-list[type=gloss] > tei-label {
1938
+ display: block;
1939
+ margin-top: 0.25em;
1940
+ margin-bottom: 0.25em;
1941
+ font-weight: bold;
1942
+ }
1943
+
1944
+ tei-list[type=gloss] > tei-item {
1945
+ margin-left: 2em;
1946
+ }
1947
+
1948
+ tei-item > tei-list[type=ordered] {
1949
+ margin-left: 1em;
1950
+ }
1951
+
1952
+ tei-listapp {
1953
+ display: block;
1954
+ margin: 1em;
1955
+ padding: 1em;
1956
+ }
1957
+
1958
+ tei-listbibl {
1959
+ display: block;
1960
+ list-style-type: none;
1961
+ margin-left: 0.5 em;
1962
+ margin-top: 0.5em;
1963
+ }
1964
+
1965
+ tei-listbibl > tei-head {
1966
+ font-size: 120%;
1967
+ font-weight: bold;
1968
+ }
1969
+
1970
+ tei-listbibl > tei-bibl {
1971
+ display: list-item;
1972
+ margin-left: 0.5em;
1973
+ }
1974
+
1975
+ tei-listwit {
1976
+ display: block;
1977
+ list-style-type: none;
1978
+ margin-left: 0.5em;
1979
+ }
1980
+
1981
+ tei-listwit > tei-head {
1982
+ font-size: 120%;
1983
+ font-weight: bold;
1984
+ }
1985
+
1986
+ tei-listwit > tei-witness {
1987
+ display: list-item;
1988
+ margin-left: 2em;
1989
+ text-indent: -1.1em;
1990
+ }
1991
+
1992
+ tei-witness > tei-listwit {
1993
+ display: inline;
1994
+ }
1995
+
1996
+ tei-witness > tei-listwit > tei-head {
1997
+ display: inline;
1998
+ }
1999
+
2000
+ tei-witness > tei-listwit > tei-witness {
2001
+ display: inline;
2002
+ }
2003
+
2004
+ tei-locus {
2005
+ display: none;
2006
+ }
2007
+
2008
+ /* m */
2009
+ tei-milestone {
2010
+ display: none;
2011
+ margin-left: auto;
2012
+ margin-right: auto;
2013
+ text-align: center;
2014
+ }
2015
+
2016
+ tei-musicNotation {
2017
+ font-weight: bold;
2018
+ }
2019
+
2020
+ tei-musicNotation:before {
2021
+ font-weight: bold;
2022
+ content: "Musical Notation: ";
2023
+ }
2024
+
2025
+ /* n */
2026
+ tei-node {
2027
+ display: none;
2028
+ }
2029
+
2030
+ tei-note {
2031
+ display: none;
2032
+ }
2033
+
2034
+ tei-notesstmt {
2035
+ display: none;
2036
+ }
2037
+
2038
+ /* o */
2039
+ tei-ovar {
2040
+ font-style: italic;
2041
+ }
2042
+
2043
+ tei-origPlace {
2044
+ font-weight: bold;
2045
+ }
2046
+
2047
+ tei-origPlace:before {
2048
+ font-weight: bold;
2049
+ content: "Place of Origin: ";
2050
+ }
2051
+
2052
+ /* p */
2053
+ tei-p {
2054
+ display: block;
2055
+ margin-top: 1em;
2056
+ margin-bottom: 1em;
2057
+ text-align: justify;
2058
+ }
2059
+
2060
+ *[data-tei-rendition~="#center"] p {
2061
+ text-align: center;
2062
+ }
2063
+
2064
+ tei-availability > p:first-child {
2065
+ margin-top: 0em;
2066
+ }
2067
+
2068
+ tei-performance {
2069
+ display: block;
2070
+ margin-top: 1em;
2071
+ margin-bottom: 1em;
2072
+ }
2073
+
2074
+ tei-person {
2075
+ display: block;
2076
+ margin-top: 1em;
2077
+ margin-bottom: 1em;
2078
+ }
2079
+
2080
+ tei-personGrp {
2081
+ display: block;
2082
+ margin-top: 1em;
2083
+ margin-bottom: 1em;
2084
+ }
2085
+
2086
+ tei-postscript {
2087
+ display: block;
2088
+ margin-top: 2em;
2089
+ }
2090
+
2091
+ tei-principal {
2092
+ font-weight: bold;
2093
+ }
2094
+
2095
+ tei-principal:before {
2096
+ font-weight: bold;
2097
+ content: "Principal: ";
2098
+ }
2099
+
2100
+ tei-profiledesc {
2101
+ display: none;
2102
+ }
2103
+
2104
+ tei-publicationstmt > * {
2105
+ display: none;
2106
+ }
2107
+
2108
+ tei-publicationstmt {
2109
+ display: block;
2110
+ margin-top: 1em;
2111
+ margin-bottom: 1em;
2112
+ }
2113
+
2114
+ tei-publicationstmt > date {
2115
+ display: none;
2116
+ }
2117
+
2118
+ tei-publicationstmt > publisher {
2119
+ display: none;
2120
+ }
2121
+
2122
+ /* q */
2123
+ tei-q {
2124
+ quotes: "“" "”" "‘" "’" "“" "”" "‘" "’" "“" "”" "‘" "’" "“" "”";
2125
+ }
2126
+
2127
+ tei-q:before {
2128
+ content: "";
2129
+ }
2130
+
2131
+ tei-q:after {
2132
+ content: "";
2133
+ }
2134
+
2135
+ tei-q[data-tei-next]:after {
2136
+ content: "" !important;
2137
+ }
2138
+
2139
+ tei-q[data-tei-prev]:before {
2140
+ content: "" !important;
2141
+ }
2142
+
2143
+ tei-quote {
2144
+ font-style: italic;
2145
+ }
2146
+
2147
+ /* r */
2148
+ tei-app tei-rdg {
2149
+ /*perhaps choice */
2150
+ display: none;
2151
+ }
2152
+
2153
+ tei-re {
2154
+ display: block;
2155
+ margin-top: 0;
2156
+ margin-bottom: 0;
2157
+ }
2158
+
2159
+ tei-recordhist {
2160
+ display: block;
2161
+ margin-top: 1em;
2162
+ margin-bottom: 1em;
2163
+ }
2164
+
2165
+ tei-ref {
2166
+ color: #5f0000;
2167
+ text-decoration: underline;
2168
+ cursor: pointer;
2169
+ }
2170
+
2171
+ tei-remarks {
2172
+ font-weight: bold;
2173
+ }
2174
+
2175
+ tei-remarks:before {
2176
+ font-weight: bold;
2177
+ content: "remarks: ";
2178
+ }
2179
+
2180
+ tei-respstmt {
2181
+ display: block;
2182
+ margin-top: 0;
2183
+ margin-bottom: 0;
2184
+ }
2185
+
2186
+ tei-revisiondesc {
2187
+ display: none;
2188
+ }
2189
+
2190
+ tei-row {
2191
+ display: grid;
2192
+ grid-auto-flow: column;
2193
+ grid-auto-columns: 1fr;
2194
+ }
2195
+
2196
+ /* s */
2197
+ tei-salute {
2198
+ display: block;
2199
+ margin-top: 1em;
2200
+ margin-bottom: 1em;
2201
+ }
2202
+
2203
+ tei-samplingdecl {
2204
+ display: block;
2205
+ margin-top: 0;
2206
+ margin-bottom: 0;
2207
+ }
2208
+
2209
+ tei-scriptnote {
2210
+ display: block;
2211
+ margin-top: 1em;
2212
+ margin-bottom: 1em;
2213
+ }
2214
+
2215
+ tei-seal {
2216
+ display: block;
2217
+ margin-top: 0;
2218
+ margin-bottom: 0;
2219
+ }
2220
+
2221
+ tei-seal:before {
2222
+ font-weight: bold;
2223
+ content: "Seal: ";
2224
+ }
2225
+
2226
+ tei-sealdesc {
2227
+ display: block;
2228
+ margin-top: 1em;
2229
+ margin-bottom: 1em;
2230
+ }
2231
+
2232
+ tei-secFol:before {
2233
+ font-weight: bold;
2234
+ content: "Second Folio: ";
2235
+ }
2236
+
2237
+ tei-secl > *:first-child:before {
2238
+ content: "\a[";
2239
+ white-space: pre;
2240
+ }
2241
+
2242
+ tei-secl > *:last-child:after {
2243
+ content: "]\a\a";
2244
+ white-space: pre;
2245
+ }
2246
+
2247
+ tei-seg {
2248
+ outline: 0px solid transparent;
2249
+ }
2250
+
2251
+ tei-sense {
2252
+ display: block;
2253
+ margin-top: 0;
2254
+ margin-bottom: 0;
2255
+ }
2256
+
2257
+ tei-seriesstmt {
2258
+ display: none;
2259
+ }
2260
+
2261
+ tei-setting {
2262
+ display: block;
2263
+ margin-top: 0;
2264
+ margin-bottom: 0;
2265
+ }
2266
+
2267
+ tei-signed {
2268
+ display: block;
2269
+ margin-top: 2em;
2270
+ }
2271
+
2272
+ tei-soCalled {
2273
+ quotes: "“" "”" "‘" "’" "“" "”" "‘" "’" "“" "”" "‘" "’" "“" "”";
2274
+ }
2275
+
2276
+ tei-soCalled:before {
2277
+ content: open-quote;
2278
+ }
2279
+
2280
+ tei-soCalled:after {
2281
+ content: close-quote;
2282
+ }
2283
+
2284
+ tei-soCalled[data-tei-next]:after {
2285
+ content: "" !important;
2286
+ }
2287
+
2288
+ tei-soCalled[data-tei-prev]:before {
2289
+ content: "" !important;
2290
+ }
2291
+
2292
+ tei-sound {
2293
+ font-style: italic;
2294
+ }
2295
+
2296
+ tei-source {
2297
+ display: block;
2298
+ margin-top: 0;
2299
+ margin-bottom: 0;
2300
+ }
2301
+
2302
+ tei-sourcedesc {
2303
+ display: none;
2304
+ }
2305
+
2306
+ tei-space:before {
2307
+ font-weight: bold;
2308
+ content: "";
2309
+ }
2310
+
2311
+ tei-span[data-tei-data-n]:before {
2312
+ content: attr(data-n);
2313
+ }
2314
+
2315
+ tei-speaker {
2316
+ font-weight: bold;
2317
+ margin-right: 0;
2318
+ }
2319
+
2320
+ tei-sponsor {
2321
+ display: block;
2322
+ margin-top: 0;
2323
+ margin-bottom: 0;
2324
+ }
2325
+
2326
+ tei-sponsor:before {
2327
+ font-weight: bold;
2328
+ content: "Sponsor:";
2329
+ }
2330
+
2331
+ tei-stage {
2332
+ display: block;
2333
+ margin-top: 1em;
2334
+ margin-bottom: 1em;
2335
+ font-style: italic;
2336
+ }
2337
+
2338
+ tei-stamp {
2339
+ display: block;
2340
+ margin-top: 1em;
2341
+ margin-bottom: 1em;
2342
+ }
2343
+
2344
+ tei-stamp:before {
2345
+ font-weight: bold;
2346
+ content: "Stamped: ";
2347
+ }
2348
+
2349
+ tei-surplus > *:first-child:before {
2350
+ content: "\a[";
2351
+ white-space: pre;
2352
+ }
2353
+
2354
+ tei-surplus > *:last-child:after {
2355
+ content: "]\a\a";
2356
+ white-space: pre;
2357
+ }
2358
+
2359
+ /* t */
2360
+ tei-tei {
2361
+ display: block;
2362
+ }
2363
+
2364
+ tei-table {
2365
+ display: block;
2366
+ border-top: thin solid black;
2367
+ border-left: thin solid black;
2368
+ }
2369
+
2370
+ tei-table {
2371
+ margin-top: 2em;
2372
+ margin-bottom: 2em;
2373
+ font-size: 12pt;
2374
+ }
2375
+
2376
+ tei-table > tei-head {
2377
+ border-bottom: thin solid black;
2378
+ border-right: thin solid black;
2379
+ font-size: 120%;
2380
+ font-weight: bold;
2381
+ padding: 2px;
2382
+ text-align: center;
2383
+ }
2384
+
2385
+ tei-teiheader {
2386
+ display: block;
2387
+ margin-top: 2em;
2388
+ margin-bottom: 2em;
2389
+ }
2390
+
2391
+ tei-tei > tei-text {
2392
+ display: block;
2393
+ line-height: 1.5;
2394
+ }
2395
+
2396
+ tei-textclass {
2397
+ display: none;
2398
+ }
2399
+
2400
+ tei-textdesc {
2401
+ display: none;
2402
+ }
2403
+
2404
+ /* title */
2405
+ tei-tei tei-title {
2406
+ display: inline;
2407
+ }
2408
+
2409
+ tei-tei tei-title[level=a] {
2410
+ quotes: "“" "”" "‘" "’" "“" "”" "‘" "’" "“" "”" "‘" "’" "“" "”";
2411
+ }
2412
+
2413
+ tei-tei tei-title[level=a]:before {
2414
+ content: open-quote;
2415
+ }
2416
+
2417
+ tei-tei tei-title[level=a]:after {
2418
+ content: close-quote;
2419
+ }
2420
+
2421
+ tei-tei tei-title[level=a][next]:after {
2422
+ content: "" !important;
2423
+ }
2424
+
2425
+ tei-tei tei-title[level=a][prev]:before {
2426
+ content: "" !important;
2427
+ }
2428
+
2429
+ tei-title[level=m] {
2430
+ font-style: italic;
2431
+ }
2432
+
2433
+ tei-titlestmt > tei-title {
2434
+ display: block;
2435
+ font-family: Arvo, sans-serif;
2436
+ font-weight: normal;
2437
+ font-weight: bold !important;
2438
+ font-size: 150%;
2439
+ }
2440
+
2441
+ tei-typedesc {
2442
+ display: none;
2443
+ }
2444
+
2445
+ /* u */
2446
+ tei-u:before {
2447
+ content: "-";
2448
+ }
2449
+
2450
+ tei-view {
2451
+ font-style: italic;
2452
+ }
2453
+
2454
+ tei-wit {
2455
+ display: inline;
2456
+ }
2457
+
2458
+ tei-witdetail {
2459
+ display: none;
2460
+ }
2461
+
2462
+ /*# sourceMappingURL=editioncrafter.css.map */