metanorma-iso 3.0.0 → 3.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.
- checksums.yaml +4 -4
- data/lib/isodoc/iso/html/htmlstyle.css +12 -9
- data/lib/isodoc/iso/html/isodoc-dis.css +1152 -860
- data/lib/isodoc/iso/html/isodoc.css +376 -272
- data/lib/isodoc/iso/html/style-human.css +631 -381
- data/lib/isodoc/iso/html/style-human.scss +1 -1
- data/lib/isodoc/iso/html/style-iso.css +703 -430
- data/lib/isodoc/iso/html/style-iso.scss +1 -1
- data/lib/isodoc/iso/html/wordstyle-dis.css +686 -573
- data/lib/isodoc/iso/html/wordstyle.css +551 -465
- data/lib/metanorma/iso/basicdoc.rng +37 -32
- data/lib/metanorma/iso/isodoc.rng +23 -17
- data/lib/metanorma/iso/version.rb +1 -1
- data/metanorma-iso.gemspec +3 -2
- metadata +24 -10
@@ -20,7 +20,8 @@ figure, figcaption, footer, header, hgroup,
|
|
20
20
|
menu, output, ruby, section, summary,
|
21
21
|
time, mark, audio, video {
|
22
22
|
margin: 0;
|
23
|
-
padding: 0;
|
23
|
+
padding: 0;
|
24
|
+
}
|
24
25
|
|
25
26
|
html, body, div, span, applet, object, iframe,
|
26
27
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
@@ -36,7 +37,8 @@ figure, figcaption, footer, header, hgroup,
|
|
36
37
|
menu, nav, output, ruby, section, summary,
|
37
38
|
time, mark, audio, video {
|
38
39
|
border: 0;
|
39
|
-
font-size: 100%;
|
40
|
+
font-size: 100%;
|
41
|
+
}
|
40
42
|
|
41
43
|
html, body, div, span, applet, object, iframe,
|
42
44
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
@@ -51,7 +53,8 @@ article, aside, canvas, details, embed,
|
|
51
53
|
figure, figcaption, footer, header, hgroup,
|
52
54
|
menu, nav, output, ruby, section, summary,
|
53
55
|
time, mark, audio, video {
|
54
|
-
vertical-align: baseline;
|
56
|
+
vertical-align: baseline;
|
57
|
+
}
|
55
58
|
|
56
59
|
html, body, div, span, applet, object, iframe,
|
57
60
|
p, blockquote,
|
@@ -66,90 +69,115 @@ article, aside, canvas, details, embed,
|
|
66
69
|
figure, figcaption, footer, header, hgroup,
|
67
70
|
menu, nav, output, ruby, section, summary,
|
68
71
|
time, mark, audio, video {
|
69
|
-
font-family: {{bodyfont}};
|
72
|
+
font-family: {{bodyfont}};
|
73
|
+
}
|
70
74
|
|
71
75
|
code, pre, tt, kbd, samp {
|
72
76
|
font-family: {{monospacefont}};
|
73
|
-
font-variant-ligatures: none;
|
77
|
+
font-variant-ligatures: none;
|
78
|
+
}
|
74
79
|
|
75
80
|
code *, pre *, tt *, kbd *, samp * {
|
76
81
|
font-family: {{monospacefont}} !important;
|
77
|
-
font-variant-ligatures: none;
|
82
|
+
font-variant-ligatures: none;
|
83
|
+
}
|
78
84
|
|
79
85
|
p code, dt code, li code, label code, legend code, caption code, th code, td code,
|
80
86
|
p tt, dt tt, li tt, label tt, legend tt, caption tt, th tt, td tt,
|
81
87
|
p kbd, dt kbd, li kbd, label kbd, legend kbd, caption kbd, th kbd, td kbd,
|
82
88
|
p samp, dt samp, li samp, label samp, legend samp, caption samp, th samp, td samp {
|
83
|
-
font-size: {{monospacefontsize}};
|
89
|
+
font-size: {{monospacefontsize}};
|
90
|
+
}
|
84
91
|
|
85
92
|
sub, sup {
|
86
|
-
font-size: 0.75em;
|
93
|
+
font-size: 0.75em;
|
94
|
+
}
|
87
95
|
|
88
96
|
article, aside, details, figcaption, figure,
|
89
97
|
footer, header, hgroup, menu, nav, section {
|
90
|
-
display: block;
|
98
|
+
display: block;
|
99
|
+
}
|
91
100
|
|
92
101
|
table {
|
93
102
|
border-collapse: collapse;
|
94
|
-
border-spacing: 0;
|
103
|
+
border-spacing: 0;
|
104
|
+
}
|
95
105
|
|
96
106
|
h1, h2, h3, h4, h5, h6 {
|
97
|
-
font-family: {{headerfont}};
|
107
|
+
font-family: {{headerfont}};
|
108
|
+
}
|
98
109
|
|
99
110
|
.h1, .h2, .h3, .h4, .h5, .h6 {
|
100
|
-
font-family: {{headerfont}};
|
111
|
+
font-family: {{headerfont}};
|
112
|
+
}
|
101
113
|
|
102
114
|
blockquote, q {
|
103
|
-
quotes: none;
|
104
|
-
|
105
|
-
|
106
|
-
|
115
|
+
quotes: none;
|
116
|
+
}
|
117
|
+
blockquote::before, blockquote::after, q::before, q::after {
|
118
|
+
content: "";
|
119
|
+
content: none;
|
120
|
+
}
|
107
121
|
|
108
122
|
.h2Annex {
|
109
|
-
font-family: {{headerfont}};
|
123
|
+
font-family: {{headerfont}};
|
124
|
+
}
|
110
125
|
|
111
126
|
dl {
|
112
127
|
display: grid;
|
113
|
-
grid-template-columns: max-content auto;
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
128
|
+
grid-template-columns: max-content auto;
|
129
|
+
}
|
130
|
+
dl dt p, dl dd p {
|
131
|
+
margin-top: 0;
|
132
|
+
}
|
133
|
+
dl dt {
|
134
|
+
grid-column-start: 1;
|
135
|
+
}
|
136
|
+
dl dd {
|
137
|
+
grid-column-start: 2;
|
138
|
+
}
|
120
139
|
|
121
140
|
b, strong {
|
122
|
-
font-weight: bold;
|
141
|
+
font-weight: bold;
|
142
|
+
}
|
123
143
|
|
124
144
|
div.document-stage-band, div.document-type-band {
|
125
|
-
background-color: #333333;
|
145
|
+
background-color: #333333;
|
146
|
+
}
|
126
147
|
|
127
148
|
a.FootnoteRef + a.FootnoteRef::before {
|
128
149
|
content: ", ";
|
129
|
-
vertical-align: super;
|
150
|
+
vertical-align: super;
|
151
|
+
}
|
130
152
|
|
131
153
|
a.TableFootnoteRef + a.TableFootnoteRef::before {
|
132
154
|
content: ", ";
|
133
|
-
vertical-align: super;
|
155
|
+
vertical-align: super;
|
156
|
+
}
|
134
157
|
|
135
158
|
a.TableFootnoteRef, span.TableFootnoteRef,
|
136
159
|
a.FootnoteRef, span.FootnoteRef {
|
137
|
-
vertical-align: super;
|
160
|
+
vertical-align: super;
|
161
|
+
}
|
138
162
|
|
139
163
|
.addition {
|
140
|
-
color: blue;
|
164
|
+
color: blue;
|
165
|
+
}
|
141
166
|
|
142
167
|
.deletion {
|
143
168
|
color: red;
|
144
|
-
text-decoration: line-through;
|
169
|
+
text-decoration: line-through;
|
170
|
+
}
|
145
171
|
|
146
172
|
ruby {
|
147
173
|
ruby-position: over;
|
148
|
-
-webkit-ruby-position: before;
|
174
|
+
-webkit-ruby-position: before;
|
175
|
+
}
|
149
176
|
|
150
177
|
ruby ruby {
|
151
178
|
ruby-position: under;
|
152
|
-
-webkit-ruby-position: after;
|
179
|
+
-webkit-ruby-position: after;
|
180
|
+
}
|
153
181
|
|
154
182
|
/* code highlighting with line numbers */
|
155
183
|
table.rouge-line-table td.rouge-gutter {
|
@@ -157,13 +185,15 @@ table.rouge-line-table td.rouge-gutter {
|
|
157
185
|
-ms-user-select: none;
|
158
186
|
-webkit-user-select: none;
|
159
187
|
user-select: none;
|
160
|
-
padding-right: 1em;
|
188
|
+
padding-right: 1em;
|
189
|
+
}
|
161
190
|
|
162
191
|
table.rouge-line-table td.rouge-code {
|
163
192
|
-moz-user-select: all;
|
164
193
|
-ms-user-select: all;
|
165
194
|
-webkit-user-select: all;
|
166
|
-
user-select: all;
|
195
|
+
user-select: all;
|
196
|
+
}
|
167
197
|
|
168
198
|
table.rouge-line-table,
|
169
199
|
table.rouge-line-table th,
|
@@ -172,27 +202,32 @@ table.rouge-line-table td {
|
|
172
202
|
border: none;
|
173
203
|
margin: 0;
|
174
204
|
padding: 0;
|
175
|
-
font-size: 100%;
|
205
|
+
font-size: 100%;
|
206
|
+
}
|
176
207
|
|
177
208
|
table.rouge-line-table pre {
|
178
209
|
margin: 0;
|
179
210
|
padding: 0;
|
180
211
|
overflow-x: visible;
|
181
|
-
font-size: 100%;
|
212
|
+
font-size: 100%;
|
213
|
+
}
|
182
214
|
|
183
215
|
/* header § links */
|
184
216
|
a.header {
|
185
217
|
color: inherit;
|
186
|
-
text-decoration: none;
|
218
|
+
text-decoration: none;
|
219
|
+
}
|
187
220
|
|
188
221
|
a.header:hover {
|
189
222
|
color: #a53221 !important;
|
190
223
|
background: inherit;
|
191
|
-
box-shadow: none;
|
224
|
+
box-shadow: none;
|
225
|
+
}
|
192
226
|
|
193
227
|
a.header:visited {
|
194
228
|
color: inherit;
|
195
|
-
text-decoration: none;
|
229
|
+
text-decoration: none;
|
230
|
+
}
|
196
231
|
|
197
232
|
a.anchor {
|
198
233
|
position: absolute;
|
@@ -203,18 +238,21 @@ a.anchor {
|
|
203
238
|
text-decoration: none !important;
|
204
239
|
visibility: hidden;
|
205
240
|
text-align: center;
|
206
|
-
font-weight: 400;
|
241
|
+
font-weight: 400;
|
242
|
+
}
|
207
243
|
|
208
244
|
a.anchor::before {
|
209
|
-
content: "
|
210
|
-
font-size: .85em;
|
245
|
+
content: "§";
|
246
|
+
font-size: 0.85em;
|
211
247
|
display: block;
|
212
|
-
padding-top: .1em;
|
248
|
+
padding-top: 0.1em;
|
249
|
+
}
|
213
250
|
|
214
251
|
a.anchor:hover {
|
215
252
|
color: #a53221;
|
216
253
|
background: inherit;
|
217
|
-
box-shadow: none;
|
254
|
+
box-shadow: none;
|
255
|
+
}
|
218
256
|
|
219
257
|
h1 > a.anchor:hover,
|
220
258
|
h2 > a.anchor:hover,
|
@@ -230,13 +268,15 @@ h4:hover > a.anchor,
|
|
230
268
|
h5:hover > a.anchor,
|
231
269
|
h6:hover > a.anchor,
|
232
270
|
.inline-header:hover > a.anchor {
|
233
|
-
visibility: visible;
|
271
|
+
visibility: visible;
|
272
|
+
}
|
234
273
|
|
235
274
|
/* collapsible snippets: collapsible before hidable */
|
236
275
|
.hidable {
|
237
276
|
max-height: 0;
|
238
277
|
overflow: hidden;
|
239
|
-
transition: max-height 0.2s ease-out;
|
278
|
+
transition: max-height 0.2s ease-out;
|
279
|
+
}
|
240
280
|
|
241
281
|
.collapsible {
|
242
282
|
background-color: #777;
|
@@ -248,131 +288,171 @@ h6:hover > a.anchor,
|
|
248
288
|
border: none;
|
249
289
|
text-align: left;
|
250
290
|
outline: none;
|
251
|
-
font-size: 15px;
|
291
|
+
font-size: 15px;
|
292
|
+
}
|
252
293
|
|
253
294
|
.active, .collapsible:hover {
|
254
|
-
background-color: #555;
|
295
|
+
background-color: #555;
|
296
|
+
}
|
255
297
|
|
256
298
|
.collapsible:after {
|
257
|
-
content:
|
299
|
+
content: "▼";
|
258
300
|
color: white;
|
259
301
|
font-weight: bold;
|
260
302
|
float: right;
|
261
303
|
margin-left: 12px;
|
262
|
-
margin-right: 12px;
|
304
|
+
margin-right: 12px;
|
305
|
+
}
|
263
306
|
|
264
307
|
.active:after {
|
265
|
-
content: "
|
308
|
+
content: "▲";
|
309
|
+
}
|
266
310
|
|
267
311
|
/* collapsible: */
|
268
312
|
.collapsible + .hidable {
|
269
|
-
margin-top: 0;
|
313
|
+
margin-top: 0;
|
314
|
+
}
|
270
315
|
|
271
316
|
.collapsible:not(.active) + .hidable {
|
272
317
|
overflow: hidden;
|
273
|
-
padding: 0;
|
318
|
+
padding: 0;
|
319
|
+
}
|
274
320
|
|
275
321
|
#standard-band {
|
276
|
-
background-color: #0AC442;
|
322
|
+
background-color: #0AC442;
|
323
|
+
}
|
277
324
|
|
278
325
|
#standard {
|
279
|
-
border-bottom: solid 3px #0AC442;
|
326
|
+
border-bottom: solid 3px #0AC442;
|
327
|
+
}
|
280
328
|
|
281
329
|
#directive-band {
|
282
|
-
background-color: #540D6E;
|
330
|
+
background-color: #540D6E;
|
331
|
+
}
|
283
332
|
|
284
333
|
#directive {
|
285
|
-
border-bottom: solid 3px #540D6E;
|
334
|
+
border-bottom: solid 3px #540D6E;
|
335
|
+
}
|
286
336
|
|
287
337
|
#guide-band {
|
288
|
-
background-color: #D183C9;
|
338
|
+
background-color: #D183C9;
|
339
|
+
}
|
289
340
|
|
290
341
|
#guide {
|
291
|
-
border-bottom: solid 3px #D183C9;
|
342
|
+
border-bottom: solid 3px #D183C9;
|
343
|
+
}
|
292
344
|
|
293
345
|
#specification-band {
|
294
|
-
background-color: #65AFFF;
|
346
|
+
background-color: #65AFFF;
|
347
|
+
}
|
295
348
|
|
296
349
|
#specification {
|
297
|
-
border-bottom: solid 3px #65AFFF;
|
350
|
+
border-bottom: solid 3px #65AFFF;
|
351
|
+
}
|
298
352
|
|
299
353
|
#report-band {
|
300
|
-
background-color: #3A405A;
|
354
|
+
background-color: #3A405A;
|
355
|
+
}
|
301
356
|
|
302
357
|
#report {
|
303
|
-
border-bottom: solid 3px #3A405A;
|
358
|
+
border-bottom: solid 3px #3A405A;
|
359
|
+
}
|
304
360
|
|
305
361
|
#amendment-band {
|
306
|
-
background-color: #F26430;
|
362
|
+
background-color: #F26430;
|
363
|
+
}
|
307
364
|
|
308
365
|
#amendment {
|
309
|
-
border-bottom: solid 3px #F26430;
|
366
|
+
border-bottom: solid 3px #F26430;
|
367
|
+
}
|
310
368
|
|
311
369
|
#corrigendum-band {
|
312
|
-
background-color: #C84630;
|
370
|
+
background-color: #C84630;
|
371
|
+
}
|
313
372
|
|
314
373
|
#corrigendum {
|
315
|
-
border-bottom: solid 3px #C84630;
|
374
|
+
border-bottom: solid 3px #C84630;
|
375
|
+
}
|
316
376
|
|
317
377
|
#administrative-band {
|
318
|
-
background-color: #BFAE48;
|
378
|
+
background-color: #BFAE48;
|
379
|
+
}
|
319
380
|
|
320
381
|
#administrative {
|
321
|
-
border-bottom: solid 3px #BFAE48;
|
382
|
+
border-bottom: solid 3px #BFAE48;
|
383
|
+
}
|
322
384
|
|
323
385
|
#advisory-band {
|
324
|
-
background-color: #BD9391;
|
386
|
+
background-color: #BD9391;
|
387
|
+
}
|
325
388
|
|
326
389
|
#advisory {
|
327
|
-
border-bottom: solid 3px #BD9391;
|
390
|
+
border-bottom: solid 3px #BD9391;
|
391
|
+
}
|
328
392
|
|
329
393
|
#proposal-band {
|
330
|
-
background-color: #39A0ED;
|
394
|
+
background-color: #39A0ED;
|
395
|
+
}
|
331
396
|
|
332
397
|
#proposal {
|
333
|
-
border-bottom: solid 3px #39A0ED;
|
398
|
+
border-bottom: solid 3px #39A0ED;
|
399
|
+
}
|
334
400
|
|
335
401
|
#working-draft-band {
|
336
|
-
background-color: #2D7393;
|
402
|
+
background-color: #2D7393;
|
403
|
+
}
|
337
404
|
|
338
405
|
#working-draft {
|
339
|
-
border-bottom: solid 3px #2D7393;
|
406
|
+
border-bottom: solid 3px #2D7393;
|
407
|
+
}
|
340
408
|
|
341
409
|
#committee-draft-band {
|
342
|
-
background-color: #2A6B7C;
|
410
|
+
background-color: #2A6B7C;
|
411
|
+
}
|
343
412
|
|
344
413
|
#committee-draft {
|
345
|
-
border-bottom: solid 3px #2A6B7C;
|
414
|
+
border-bottom: solid 3px #2A6B7C;
|
415
|
+
}
|
346
416
|
|
347
417
|
#draft-standard-band {
|
348
|
-
background-color: #1C7F7A;
|
418
|
+
background-color: #1C7F7A;
|
419
|
+
}
|
349
420
|
|
350
421
|
#draft-standard {
|
351
|
-
border-bottom: solid 3px #1C7F7A;
|
422
|
+
border-bottom: solid 3px #1C7F7A;
|
423
|
+
}
|
352
424
|
|
353
425
|
#final-draft-band {
|
354
|
-
background-color: #53C170;
|
426
|
+
background-color: #53C170;
|
427
|
+
}
|
355
428
|
|
356
429
|
#final-draft {
|
357
|
-
border-bottom: solid 3px #53C170;
|
430
|
+
border-bottom: solid 3px #53C170;
|
431
|
+
}
|
358
432
|
|
359
433
|
#published-band {
|
360
|
-
background-color: #069E2D;
|
434
|
+
background-color: #069E2D;
|
435
|
+
}
|
361
436
|
|
362
437
|
#published {
|
363
|
-
border-bottom: solid 3px #069E2D;
|
438
|
+
border-bottom: solid 3px #069E2D;
|
439
|
+
}
|
364
440
|
|
365
441
|
#withdrawn-band {
|
366
|
-
background-color: #004E64;
|
442
|
+
background-color: #004E64;
|
443
|
+
}
|
367
444
|
|
368
445
|
#withdrawn {
|
369
|
-
border-bottom: solid 3px #004E64;
|
446
|
+
border-bottom: solid 3px #004E64;
|
447
|
+
}
|
370
448
|
|
371
449
|
#cancelled-band {
|
372
|
-
background-color: #2E382E;
|
450
|
+
background-color: #2E382E;
|
451
|
+
}
|
373
452
|
|
374
453
|
#cancelled {
|
375
|
-
border-bottom: solid 3px #2E382E;
|
454
|
+
border-bottom: solid 3px #2E382E;
|
455
|
+
}
|
376
456
|
|
377
457
|
body {
|
378
458
|
margin-left: auto;
|
@@ -382,278 +462,357 @@ body {
|
|
382
462
|
font-weight: 300;
|
383
463
|
line-height: 1.4em;
|
384
464
|
color: -internal-root-color;
|
385
|
-
background-color: #ffffff;
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
465
|
+
background-color: #ffffff;
|
466
|
+
}
|
467
|
+
body main {
|
468
|
+
margin: 0 3em 0 6em;
|
469
|
+
}
|
470
|
+
body main {
|
471
|
+
margin: 0;
|
472
|
+
}
|
390
473
|
|
391
474
|
/* HTML5 display-role reset for older browsers */
|
392
475
|
article, aside, details, figcaption, figure,
|
393
476
|
footer, header, hgroup, menu, nav, section {
|
394
|
-
display: block;
|
477
|
+
display: block;
|
478
|
+
}
|
395
479
|
|
396
480
|
body {
|
397
|
-
line-height: 1.3;
|
481
|
+
line-height: 1.3;
|
482
|
+
}
|
398
483
|
|
399
484
|
blockquote, q {
|
400
|
-
quotes: none;
|
485
|
+
quotes: none;
|
486
|
+
}
|
401
487
|
|
402
488
|
blockquote::before, blockquote::after,
|
403
489
|
q::before, q::after {
|
404
|
-
content:
|
405
|
-
content: none;
|
490
|
+
content: "";
|
491
|
+
content: none;
|
492
|
+
}
|
406
493
|
|
407
494
|
/* New CSS */
|
408
495
|
body {
|
409
496
|
margin-left: 298px;
|
410
|
-
margin-right: 2em;
|
497
|
+
margin-right: 2em;
|
498
|
+
}
|
411
499
|
|
412
500
|
main {
|
413
501
|
padding-left: 4em;
|
414
|
-
padding-right: 2em;
|
502
|
+
padding-right: 2em;
|
503
|
+
}
|
415
504
|
|
416
505
|
.title-section, .prefatory-section {
|
417
506
|
padding-left: 4em;
|
418
|
-
padding-top: 2em;
|
507
|
+
padding-top: 2em;
|
508
|
+
}
|
419
509
|
|
420
510
|
.coverpage_docnumber, .coverpage_techcommittee {
|
421
511
|
text-align: right;
|
422
512
|
font-size: 0.9em;
|
423
|
-
line-height: 0.5em;
|
513
|
+
line-height: 0.5em;
|
514
|
+
}
|
424
515
|
|
425
516
|
.doctitle-en, .doctitle-fr {
|
426
517
|
margin-top: 2em;
|
427
|
-
text-align: left;
|
518
|
+
text-align: left;
|
519
|
+
}
|
428
520
|
|
429
521
|
.doctitle-en {
|
430
522
|
padding-left: 3em;
|
431
523
|
margin-left: -3em;
|
432
524
|
/*padding-top: 2em;*/
|
433
|
-
padding-bottom: 2em;
|
525
|
+
padding-bottom: 2em;
|
526
|
+
}
|
434
527
|
|
435
528
|
.doctitle-en span {
|
436
529
|
font-size: 2em;
|
437
|
-
line-height: 1.5em;
|
530
|
+
line-height: 1.5em;
|
531
|
+
}
|
438
532
|
|
439
533
|
.doctitle-fr span {
|
440
534
|
font-size: 1.5em;
|
441
535
|
line-height: 1.2em;
|
442
|
-
font-style: italic;
|
536
|
+
font-style: italic;
|
537
|
+
}
|
443
538
|
|
444
539
|
.doctitle-part {
|
445
|
-
margin-top: 1em;
|
540
|
+
margin-top: 1em;
|
541
|
+
}
|
446
542
|
|
447
543
|
span.title, span.subtitle, span.part {
|
448
|
-
font-weight: 800;
|
544
|
+
font-weight: 800;
|
545
|
+
}
|
449
546
|
|
450
547
|
span.partlabel {
|
451
|
-
display: block;
|
548
|
+
display: block;
|
549
|
+
}
|
452
550
|
|
453
551
|
.coverpage_docstage {
|
454
552
|
margin-top: 2em;
|
455
|
-
margin-bottom: 2em;
|
553
|
+
margin-bottom: 2em;
|
554
|
+
}
|
456
555
|
|
457
556
|
.coverpage_warning {
|
458
557
|
font-size: 0.9em;
|
459
558
|
font-style: italic;
|
460
|
-
padding-bottom: 1em;
|
559
|
+
padding-bottom: 1em;
|
560
|
+
}
|
461
561
|
|
462
562
|
.boilerplate-copyright p {
|
463
563
|
margin-top: 1em;
|
464
564
|
display: block;
|
465
|
-
font-size: 0.9em;
|
565
|
+
font-size: 0.9em;
|
566
|
+
}
|
466
567
|
|
467
568
|
/* TYPOGRAPHY */
|
468
569
|
h1, .h1 {
|
469
570
|
font-size: 1.5em;
|
470
571
|
line-height: 2em;
|
471
572
|
margin-top: 2em;
|
472
|
-
margin-bottom: 1em;
|
573
|
+
margin-bottom: 1em;
|
574
|
+
}
|
473
575
|
|
474
576
|
h2, .h2 {
|
475
577
|
font-size: 1.2em;
|
476
578
|
line-height: 1.5em;
|
477
579
|
margin-top: 2em;
|
478
|
-
margin-bottom: 1em;
|
580
|
+
margin-bottom: 1em;
|
581
|
+
}
|
479
582
|
|
480
583
|
h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
|
481
|
-
margin-bottom: 1em;
|
584
|
+
margin-bottom: 1em;
|
585
|
+
}
|
482
586
|
|
483
587
|
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
484
|
-
line-height: 1.2;
|
588
|
+
line-height: 1.2;
|
589
|
+
}
|
485
590
|
|
486
591
|
{% if doctype == "Amendment" or doctype == "Technical Corrigendum" %}
|
487
592
|
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
488
593
|
font-weight: normal;
|
489
594
|
font-size: initial;
|
490
|
-
font-style: italic;
|
595
|
+
font-style: italic;
|
596
|
+
}
|
491
597
|
|
492
598
|
{% endif %}
|
493
599
|
p {
|
494
600
|
margin-top: 1em;
|
495
|
-
margin-bottom: 1em;
|
601
|
+
margin-bottom: 1em;
|
602
|
+
}
|
496
603
|
|
497
604
|
p.zzSTDTitle1 {
|
498
605
|
font-weight: 700;
|
499
|
-
font-size: 1.5em;
|
606
|
+
font-size: 1.5em;
|
607
|
+
}
|
500
608
|
|
501
609
|
p.zzSTDTitle2 {
|
502
|
-
font-size: 1.5em;
|
610
|
+
font-size: 1.5em;
|
611
|
+
}
|
503
612
|
|
504
613
|
span.obligation {
|
505
|
-
font-weight: 400;
|
614
|
+
font-weight: 400;
|
615
|
+
}
|
506
616
|
|
507
617
|
a {
|
508
618
|
color: black;
|
509
|
-
text-decoration-color: black;
|
619
|
+
text-decoration-color: black;
|
620
|
+
}
|
510
621
|
|
511
622
|
h2 p, .h2 p {
|
512
|
-
display: inline;
|
623
|
+
display: inline;
|
624
|
+
}
|
513
625
|
|
514
626
|
ul > li {
|
515
|
-
list-style: none;
|
627
|
+
list-style: none;
|
628
|
+
}
|
516
629
|
|
517
630
|
ul > li > p:first-child::before {
|
518
|
-
content: "
|
631
|
+
content: "—";
|
519
632
|
display: inline-block;
|
520
633
|
width: 1em;
|
521
634
|
margin-left: -1.5em;
|
522
|
-
margin-right: 0.5em;
|
635
|
+
margin-right: 0.5em;
|
636
|
+
}
|
523
637
|
|
524
638
|
li p {
|
525
639
|
margin-bottom: 0.6em;
|
526
|
-
line-height: 1.2;
|
640
|
+
line-height: 1.2;
|
641
|
+
}
|
527
642
|
|
528
643
|
p.AltTerms {
|
529
|
-
margin-bottom: 0;
|
644
|
+
margin-bottom: 0;
|
645
|
+
}
|
530
646
|
|
531
647
|
p.Terms {
|
532
|
-
margin-top: 0em;
|
648
|
+
margin-top: 0em;
|
649
|
+
}
|
533
650
|
|
534
651
|
/* Navigation*/
|
535
652
|
#toc, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) {
|
536
653
|
font-family: {{bodyfont}};
|
537
|
-
font-weight: 400;
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
654
|
+
font-weight: 400;
|
655
|
+
}
|
656
|
+
#toc ul, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) ul {
|
657
|
+
margin: 0;
|
658
|
+
padding: 0;
|
659
|
+
list-style: none;
|
660
|
+
}
|
661
|
+
#toc ul li a, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) ul li a {
|
662
|
+
padding: 5px 10px;
|
663
|
+
}
|
664
|
+
#toc ul a, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) ul a {
|
665
|
+
text-decoration: none;
|
666
|
+
display: block;
|
667
|
+
}
|
668
|
+
#toc ul a:hover, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) ul a:hover {
|
669
|
+
box-shadow: none;
|
670
|
+
color: black;
|
671
|
+
}
|
672
|
+
#toc .h2, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) .h2 {
|
673
|
+
padding-left: 30px;
|
674
|
+
}
|
675
|
+
#toc .h3, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) .h3 {
|
676
|
+
padding-left: 50px;
|
677
|
+
}
|
678
|
+
#toc .h4, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) .h4 {
|
679
|
+
padding-left: 70px;
|
680
|
+
}
|
681
|
+
#toc .h5, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) .h5 {
|
682
|
+
padding-left: 90px;
|
683
|
+
}
|
684
|
+
#toc .h6, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) .h6 {
|
685
|
+
padding-left: 110px;
|
686
|
+
}
|
687
|
+
#toc .toc-active, #toc li:hover, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) .toc-active, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) li:hover {
|
688
|
+
background: #f7f7f7;
|
689
|
+
box-shadow: inset -5px 0px 10px -5px #f7f7f7 !important;
|
690
|
+
}
|
691
|
+
#toc .toc-active a, #toc li:hover a, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) .toc-active a, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) li:hover a {
|
692
|
+
color: black;
|
693
|
+
}
|
694
|
+
@media print {
|
560
695
|
#toc .toc-active, #toc li:hover, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) .toc-active, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) li:hover {
|
561
|
-
background:
|
562
|
-
box-shadow:
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
696
|
+
background: white;
|
697
|
+
box-shadow: none !important;
|
698
|
+
}
|
699
|
+
#toc li:hover a, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) li:hover a {
|
700
|
+
color: black;
|
701
|
+
}
|
702
|
+
}
|
703
|
+
@media screen and (max-width: 768px) {
|
704
|
+
#toc, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) {
|
705
|
+
padding: 0 1.5em;
|
706
|
+
overflow: visible;
|
707
|
+
}
|
708
|
+
}
|
709
|
+
#toc .toc-active,
|
710
|
+
#toc li:hover, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) .toc-active,
|
711
|
+
#toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) li:hover {
|
712
|
+
box-shadow: 0px 1px 0px 0px black !important;
|
713
|
+
background: none;
|
714
|
+
}
|
715
|
+
#toc li::before, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) li::before {
|
716
|
+
content: " ";
|
717
|
+
display: none;
|
718
|
+
}
|
583
719
|
|
584
720
|
#toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) {
|
585
721
|
margin-top: 0;
|
586
722
|
margin-bottom: 0;
|
587
|
-
font-size: 100%;
|
723
|
+
font-size: 100%;
|
724
|
+
}
|
588
725
|
|
589
726
|
nav {
|
590
|
-
line-height: 1.2em;
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
727
|
+
line-height: 1.2em;
|
728
|
+
}
|
729
|
+
@media screen and (min-width: 768px) {
|
730
|
+
nav {
|
731
|
+
position: fixed;
|
732
|
+
top: 0;
|
733
|
+
bottom: 0;
|
734
|
+
left: 0;
|
735
|
+
width: 278px;
|
736
|
+
font-size: 0.9em;
|
737
|
+
overflow: auto;
|
738
|
+
padding: 0 0 0 20px;
|
739
|
+
background-color: #f7f7f7;
|
740
|
+
}
|
741
|
+
}
|
742
|
+
@media print {
|
743
|
+
nav {
|
744
|
+
position: relative;
|
745
|
+
width: auto;
|
746
|
+
font-size: 0.9em;
|
747
|
+
overflow: auto;
|
748
|
+
padding: 0;
|
749
|
+
margin-right: 0;
|
750
|
+
background-color: white;
|
751
|
+
}
|
752
|
+
}
|
753
|
+
|
611
754
|
#toggle {
|
612
755
|
border-right: solid black 1px;
|
613
756
|
margin-left: -4em;
|
614
|
-
margin-top: -2em;
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
757
|
+
margin-top: -2em;
|
758
|
+
}
|
759
|
+
@media screen and (min-width: 768px) {
|
760
|
+
#toggle {
|
761
|
+
position: fixed;
|
762
|
+
height: 100%;
|
763
|
+
width: 30px;
|
764
|
+
background-color: #f7f7f7;
|
765
|
+
color: black !important;
|
766
|
+
cursor: pointer;
|
767
|
+
z-index: 100;
|
768
|
+
}
|
769
|
+
#toggle span {
|
770
|
+
text-align: center;
|
771
|
+
width: 100%;
|
772
|
+
position: absolute;
|
773
|
+
top: 50%;
|
774
|
+
transform: translate(0, -50%);
|
775
|
+
}
|
776
|
+
}
|
777
|
+
@media screen and (max-width: 768px) {
|
778
|
+
#toggle {
|
779
|
+
display: none;
|
780
|
+
}
|
781
|
+
}
|
782
|
+
@media print {
|
783
|
+
#toggle {
|
784
|
+
display: none;
|
785
|
+
}
|
786
|
+
}
|
787
|
+
|
636
788
|
@media screen and (min-width: 768px) {
|
637
789
|
.container {
|
638
|
-
padding-left: 360px;
|
790
|
+
padding-left: 360px;
|
791
|
+
}
|
639
792
|
.rule.toc {
|
640
|
-
display: none;
|
793
|
+
display: none;
|
794
|
+
}
|
641
795
|
h1.toc-contents {
|
642
|
-
margin-top: 1em;
|
796
|
+
margin-top: 1em;
|
797
|
+
}
|
643
798
|
ul#toc-list, ul#toc-list > :is(.h1, .h2, .h3, .h4, .h5, .h6) {
|
644
799
|
padding: 0;
|
645
|
-
margin: 0;
|
646
|
-
|
800
|
+
margin: 0;
|
801
|
+
}
|
802
|
+
}
|
647
803
|
@media screen and (max-width: 768px) {
|
648
804
|
body {
|
649
|
-
margin-left: 2em;
|
805
|
+
margin-left: 2em;
|
806
|
+
}
|
650
807
|
main {
|
651
|
-
padding: 0;
|
808
|
+
padding: 0;
|
809
|
+
}
|
652
810
|
.title-section, .prefatory-section {
|
653
811
|
padding-left: 0;
|
654
812
|
padding-top: 0;
|
655
|
-
width: 100%;
|
656
|
-
|
813
|
+
width: 100%;
|
814
|
+
}
|
815
|
+
}
|
657
816
|
.figure,
|
658
817
|
pre,
|
659
818
|
.pseudocode {
|
@@ -663,33 +822,39 @@ pre,
|
|
663
822
|
padding: 1.5em;
|
664
823
|
margin: 2em 0 1em 0;
|
665
824
|
overflow: auto;
|
666
|
-
font-size: {{normalfontsize}};
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
825
|
+
font-size: {{normalfontsize}};
|
826
|
+
}
|
827
|
+
.figure .SourceTitle,
|
828
|
+
pre .SourceTitle,
|
829
|
+
.pseudocode .SourceTitle {
|
830
|
+
font-weight: 700;
|
831
|
+
font-size: 1em;
|
832
|
+
text-align: center;
|
833
|
+
}
|
673
834
|
|
674
835
|
div.figure {
|
675
836
|
line-height: 1.6em;
|
676
837
|
padding: 1.5em;
|
677
838
|
margin: 2em 0 1em 0;
|
678
|
-
overflow: auto;
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
839
|
+
overflow: auto;
|
840
|
+
}
|
841
|
+
div.figure .FigureTitle, div.figure .figure-title {
|
842
|
+
font-weight: 700;
|
843
|
+
font-size: 1em;
|
844
|
+
text-align: center;
|
845
|
+
}
|
846
|
+
div.figure > img, div.figure > svg {
|
847
|
+
margin-left: auto;
|
848
|
+
margin-right: auto;
|
849
|
+
display: block;
|
850
|
+
max-width: 100%;
|
851
|
+
height: auto;
|
852
|
+
}
|
689
853
|
|
690
854
|
table div.figure {
|
691
855
|
padding: 0;
|
692
|
-
margin: 0;
|
856
|
+
margin: 0;
|
857
|
+
}
|
693
858
|
|
694
859
|
/*
|
695
860
|
Document types + stages
|
@@ -700,30 +865,35 @@ table div.figure {
|
|
700
865
|
height: 100%;
|
701
866
|
position: fixed;
|
702
867
|
display: block;
|
703
|
-
z-index: 102;
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
.document-type-band
|
726
|
-
|
868
|
+
z-index: 102;
|
869
|
+
}
|
870
|
+
.document-type-band > :first-child {
|
871
|
+
position: relative;
|
872
|
+
width: 25px;
|
873
|
+
font-weight: 400;
|
874
|
+
color: white;
|
875
|
+
text-transform: uppercase;
|
876
|
+
font-size: 0.9em;
|
877
|
+
font-weight: 400;
|
878
|
+
letter-spacing: 0.05em;
|
879
|
+
margin: 0;
|
880
|
+
margin-left: 6px;
|
881
|
+
writing-mode: tb-rl;
|
882
|
+
-webkit-transform: rotate(180deg);
|
883
|
+
-moz-transform: rotate(180deg);
|
884
|
+
-o-transform: rotate(180deg);
|
885
|
+
white-space: nowrap;
|
886
|
+
display: block;
|
887
|
+
bottom: 0;
|
888
|
+
}
|
889
|
+
@media print {
|
890
|
+
.document-type-band {
|
891
|
+
display: none;
|
892
|
+
}
|
893
|
+
}
|
894
|
+
.document-type-band .document-type {
|
895
|
+
top: 20px;
|
896
|
+
}
|
727
897
|
|
728
898
|
.document-stage-band {
|
729
899
|
left: 0;
|
@@ -732,29 +902,34 @@ table div.figure {
|
|
732
902
|
position: fixed;
|
733
903
|
display: block;
|
734
904
|
z-index: 101;
|
735
|
-
box-shadow: -5px 0px 10px #1d1d1d;
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
905
|
+
box-shadow: -5px 0px 10px #1d1d1d;
|
906
|
+
}
|
907
|
+
.document-stage-band > :first-child {
|
908
|
+
position: relative;
|
909
|
+
width: 25px;
|
910
|
+
font-weight: 400;
|
911
|
+
height: 100%;
|
912
|
+
color: white;
|
913
|
+
text-transform: uppercase;
|
914
|
+
font-size: 0.9em;
|
915
|
+
font-weight: 400;
|
916
|
+
letter-spacing: 0.05em;
|
917
|
+
margin: 0;
|
918
|
+
margin-left: 6px;
|
919
|
+
writing-mode: tb-rl;
|
920
|
+
-webkit-transform: rotate(180deg);
|
921
|
+
-moz-transform: rotate(180deg);
|
922
|
+
-o-transform: rotate(180deg);
|
923
|
+
white-space: nowrap;
|
924
|
+
display: block;
|
925
|
+
bottom: 0;
|
926
|
+
}
|
927
|
+
@media print {
|
928
|
+
.document-stage-band {
|
929
|
+
display: none;
|
930
|
+
}
|
931
|
+
}
|
932
|
+
|
758
933
|
p.document-stage {
|
759
934
|
position: relative;
|
760
935
|
width: 25px;
|
@@ -774,70 +949,90 @@ p.document-stage {
|
|
774
949
|
white-space: nowrap;
|
775
950
|
display: block;
|
776
951
|
bottom: 0;
|
777
|
-
writing-mode: vertical-rl;
|
952
|
+
writing-mode: vertical-rl;
|
953
|
+
}
|
778
954
|
|
779
955
|
#governance-band p.document-type {
|
780
956
|
font-weight: 400;
|
781
|
-
height: 230px !important;
|
957
|
+
height: 230px !important;
|
958
|
+
}
|
782
959
|
|
783
960
|
p.document-stage {
|
784
961
|
font-weight: 300;
|
785
|
-
height: 160px;
|
962
|
+
height: 160px;
|
963
|
+
}
|
786
964
|
|
787
965
|
#standard-band {
|
788
|
-
background-color: #0ac442;
|
966
|
+
background-color: #0ac442;
|
967
|
+
}
|
789
968
|
|
790
969
|
#standard {
|
791
|
-
border-bottom: solid 3px #0ac442;
|
970
|
+
border-bottom: solid 3px #0ac442;
|
971
|
+
}
|
792
972
|
|
793
973
|
#governance {
|
794
|
-
border-bottom: solid 3px #750697;
|
974
|
+
border-bottom: solid 3px #750697;
|
975
|
+
}
|
795
976
|
|
796
977
|
#governance-band {
|
797
|
-
background-color: #750697;
|
978
|
+
background-color: #750697;
|
979
|
+
}
|
798
980
|
|
799
981
|
#guide {
|
800
|
-
border-bottom: solid 3px #48a0e7;
|
982
|
+
border-bottom: solid 3px #48a0e7;
|
983
|
+
}
|
801
984
|
|
802
985
|
#guide-band {
|
803
|
-
background-color: #48a0e7;
|
986
|
+
background-color: #48a0e7;
|
987
|
+
}
|
804
988
|
|
805
989
|
.coverpage-maturity {
|
806
|
-
font-family:
|
990
|
+
font-family: "Overpass", sans-serif;
|
807
991
|
font-weight: 400;
|
808
992
|
font-size: 1em;
|
809
993
|
margin: 0 0 2em 0;
|
810
|
-
text-transform: uppercase;
|
994
|
+
text-transform: uppercase;
|
995
|
+
}
|
811
996
|
|
812
997
|
#working-draft {
|
813
|
-
border-bottom: solid 3px #fda706;
|
998
|
+
border-bottom: solid 3px #fda706;
|
999
|
+
}
|
814
1000
|
|
815
1001
|
#working-draft-band {
|
816
|
-
background-color: #fda706;
|
1002
|
+
background-color: #fda706;
|
1003
|
+
}
|
817
1004
|
|
818
1005
|
#committee-draft {
|
819
|
-
border-bottom: solid 3px #fd06fd;
|
1006
|
+
border-bottom: solid 3px #fd06fd;
|
1007
|
+
}
|
820
1008
|
|
821
1009
|
#committee-draft-band {
|
822
|
-
background-color: #fd06fd;
|
1010
|
+
background-color: #fd06fd;
|
1011
|
+
}
|
823
1012
|
|
824
1013
|
#draft-standard {
|
825
|
-
border-bottom: solid 3px #fdf906;
|
1014
|
+
border-bottom: solid 3px #fdf906;
|
1015
|
+
}
|
826
1016
|
|
827
1017
|
#draft-standard {
|
828
|
-
border-bottom: solid 3px #fdf906;
|
1018
|
+
border-bottom: solid 3px #fdf906;
|
1019
|
+
}
|
829
1020
|
|
830
1021
|
#standard {
|
831
|
-
border-bottom: solid 3px #0ac442;
|
1022
|
+
border-bottom: solid 3px #0ac442;
|
1023
|
+
}
|
832
1024
|
|
833
1025
|
#standard-band {
|
834
|
-
background-color: #0ac442;
|
1026
|
+
background-color: #0ac442;
|
1027
|
+
}
|
835
1028
|
|
836
1029
|
#obsolete {
|
837
|
-
border-bottom: solid 3px #7e0d13;
|
1030
|
+
border-bottom: solid 3px #7e0d13;
|
1031
|
+
}
|
838
1032
|
|
839
1033
|
#obsolete-band {
|
840
|
-
background-color: #7e0d13;
|
1034
|
+
background-color: #7e0d13;
|
1035
|
+
}
|
841
1036
|
|
842
1037
|
/* 3 Other styles */
|
843
1038
|
/*
|
@@ -845,111 +1040,141 @@ p.document-stage {
|
|
845
1040
|
*/
|
846
1041
|
a {
|
847
1042
|
color: black;
|
848
|
-
text-decoration-color: black;
|
1043
|
+
text-decoration-color: black;
|
1044
|
+
}
|
849
1045
|
|
850
1046
|
/*
|
851
1047
|
3.3 Lists
|
852
1048
|
*/
|
853
1049
|
ul, ol {
|
854
|
-
margin-left: 2em;
|
1050
|
+
margin-left: 2em;
|
1051
|
+
}
|
855
1052
|
|
856
1053
|
#toc-list ul {
|
857
|
-
margin-bottom: 0.25em;
|
1054
|
+
margin-bottom: 0.25em;
|
1055
|
+
}
|
858
1056
|
|
859
1057
|
#toc-list ol li {
|
860
|
-
list-style-type: none;
|
1058
|
+
list-style-type: none;
|
1059
|
+
}
|
861
1060
|
|
862
1061
|
/* https://github.com/metanorma/metanorma-iso/issues/319 : force a) parentheses for ordered lists */
|
863
|
-
ol[class=
|
864
|
-
counter-reset: alphabet;
|
1062
|
+
ol[class=alphabet] {
|
1063
|
+
counter-reset: alphabet;
|
1064
|
+
}
|
865
1065
|
|
866
|
-
ol[class=
|
867
|
-
counter-reset: arabic;
|
1066
|
+
ol[class=arabic] {
|
1067
|
+
counter-reset: arabic;
|
1068
|
+
}
|
868
1069
|
|
869
|
-
ol[class=
|
870
|
-
counter-reset: roman;
|
1070
|
+
ol[class=roman] {
|
1071
|
+
counter-reset: roman;
|
1072
|
+
}
|
871
1073
|
|
872
|
-
ol[class=
|
873
|
-
counter-reset: alphabet_upper;
|
1074
|
+
ol[class=alphabet_upper] {
|
1075
|
+
counter-reset: alphabet_upper;
|
1076
|
+
}
|
874
1077
|
|
875
|
-
ol[class=
|
876
|
-
counter-reset: roman_upper;
|
1078
|
+
ol[class=roman_upper] {
|
1079
|
+
counter-reset: roman_upper;
|
1080
|
+
}
|
877
1081
|
|
878
|
-
ol[class=
|
879
|
-
counter-reset: alphabet2;
|
1082
|
+
ol[class=alphabet] ol[class=alphabet] {
|
1083
|
+
counter-reset: alphabet2;
|
1084
|
+
}
|
880
1085
|
|
881
|
-
ol[class=
|
882
|
-
counter-reset: arabic2;
|
1086
|
+
ol[class=arabic] ol[class=arabic] {
|
1087
|
+
counter-reset: arabic2;
|
1088
|
+
}
|
883
1089
|
|
884
|
-
ol[class=
|
885
|
-
counter-reset: roman2;
|
1090
|
+
ol[class=roman] ol[class=roman] {
|
1091
|
+
counter-reset: roman2;
|
1092
|
+
}
|
886
1093
|
|
887
|
-
ol[class=
|
888
|
-
counter-reset: alphabet_upper2;
|
1094
|
+
ol[class=alphabet_upper] ol[class=alphabet_upper] {
|
1095
|
+
counter-reset: alphabet_upper2;
|
1096
|
+
}
|
889
1097
|
|
890
|
-
ol[class=
|
891
|
-
counter-reset: roman_upper2;
|
1098
|
+
ol[class=roman_upper] ol[class=roman_upper] {
|
1099
|
+
counter-reset: roman_upper2;
|
1100
|
+
}
|
892
1101
|
|
893
1102
|
ol {
|
894
|
-
counter-reset: alphabet;
|
1103
|
+
counter-reset: alphabet;
|
1104
|
+
}
|
895
1105
|
|
896
1106
|
ol > li {
|
897
1107
|
list-style: none;
|
898
|
-
position: relative;
|
1108
|
+
position: relative;
|
1109
|
+
}
|
899
1110
|
|
900
1111
|
ol > li::before {
|
901
1112
|
position: absolute;
|
902
|
-
left: -1.4em;
|
1113
|
+
left: -1.4em;
|
1114
|
+
}
|
903
1115
|
|
904
|
-
ol[class=
|
905
|
-
left: -
|
1116
|
+
ol[class=roman] > li::before {
|
1117
|
+
left: -2em;
|
1118
|
+
}
|
906
1119
|
|
907
|
-
ol[class=
|
908
|
-
left: -2.3em;
|
1120
|
+
ol[class=roman_upper] > li::before {
|
1121
|
+
left: -2.3em;
|
1122
|
+
}
|
909
1123
|
|
910
|
-
ol[class=
|
1124
|
+
ol[class=alphabet] > li::before {
|
911
1125
|
counter-increment: alphabet;
|
912
|
-
content: counter(alphabet, lower-alpha) ") ";
|
1126
|
+
content: counter(alphabet, lower-alpha) ") ";
|
1127
|
+
}
|
913
1128
|
|
914
|
-
ol[class=
|
1129
|
+
ol[class=arabic] > li::before {
|
915
1130
|
counter-increment: arabic;
|
916
|
-
content: counter(arabic, decimal) ") ";
|
1131
|
+
content: counter(arabic, decimal) ") ";
|
1132
|
+
}
|
917
1133
|
|
918
|
-
ol[class=
|
1134
|
+
ol[class=roman] > li::before {
|
919
1135
|
counter-increment: roman;
|
920
|
-
content: counter(roman, lower-roman) ") ";
|
1136
|
+
content: counter(roman, lower-roman) ") ";
|
1137
|
+
}
|
921
1138
|
|
922
|
-
ol[class=
|
1139
|
+
ol[class=alphabet_upper] > li::before {
|
923
1140
|
counter-increment: alphabet_upper;
|
924
|
-
content: counter(alphabet_upper, upper-alpha) ") ";
|
1141
|
+
content: counter(alphabet_upper, upper-alpha) ") ";
|
1142
|
+
}
|
925
1143
|
|
926
|
-
ol[class=
|
1144
|
+
ol[class=roman_upper] > li::before {
|
927
1145
|
counter-increment: roman_upper;
|
928
|
-
content: counter(roman_upper, upper-roman) ") ";
|
1146
|
+
content: counter(roman_upper, upper-roman) ") ";
|
1147
|
+
}
|
929
1148
|
|
930
1149
|
ol > li::before {
|
931
1150
|
counter-increment: alphabet;
|
932
|
-
content: counter(alphabet, lower-alpha) ") ";
|
1151
|
+
content: counter(alphabet, lower-alpha) ") ";
|
1152
|
+
}
|
933
1153
|
|
934
|
-
ol[class=
|
1154
|
+
ol[class=alphabet] ol[class=alphabet] > li::before {
|
935
1155
|
counter-increment: alphabet2;
|
936
|
-
content: counter(alphabet2, lower-alpha) ") ";
|
1156
|
+
content: counter(alphabet2, lower-alpha) ") ";
|
1157
|
+
}
|
937
1158
|
|
938
|
-
ol[class=
|
1159
|
+
ol[class=arabic] ol[class=arabic] > li::before {
|
939
1160
|
counter-increment: arabic2;
|
940
|
-
content: counter(arabic2, decimal) ") ";
|
1161
|
+
content: counter(arabic2, decimal) ") ";
|
1162
|
+
}
|
941
1163
|
|
942
|
-
ol[class=
|
1164
|
+
ol[class=roman] ol[class=roman] > li::before {
|
943
1165
|
counter-increment: roman2;
|
944
|
-
content: counter(roman2, lower-roman) ") ";
|
1166
|
+
content: counter(roman2, lower-roman) ") ";
|
1167
|
+
}
|
945
1168
|
|
946
|
-
ol[class=
|
1169
|
+
ol[class=alphabet_upper] ol[class=alphabet_upper] > li::before {
|
947
1170
|
counter-increment: alphabet_upper2;
|
948
|
-
content: counter(alphabet_upper2, upper-alpha) ") ";
|
1171
|
+
content: counter(alphabet_upper2, upper-alpha) ") ";
|
1172
|
+
}
|
949
1173
|
|
950
|
-
ol[class=
|
1174
|
+
ol[class=roman_upper] ol[class=roman_upper] > li::before {
|
951
1175
|
counter-increment: roman_upper2;
|
952
|
-
content: counter(roman_upper2, upper-roman) ") ";
|
1176
|
+
content: counter(roman_upper2, upper-roman) ") ";
|
1177
|
+
}
|
953
1178
|
|
954
1179
|
/*
|
955
1180
|
3.4 Rules
|
@@ -958,14 +1183,16 @@ ol[class="roman_upper"] ol[class="roman_upper"] > li::before {
|
|
958
1183
|
width: 100%;
|
959
1184
|
height: 1px;
|
960
1185
|
background-color: #0e1a85;
|
961
|
-
margin: 2em 0;
|
1186
|
+
margin: 2em 0;
|
1187
|
+
}
|
962
1188
|
|
963
1189
|
/*
|
964
1190
|
3.5 Bibliograhy
|
965
1191
|
*/
|
966
1192
|
p.Biblio, p.NormRef {
|
967
1193
|
margin-top: 1em;
|
968
|
-
margin-left: 2em;
|
1194
|
+
margin-left: 2em;
|
1195
|
+
}
|
969
1196
|
|
970
1197
|
/*
|
971
1198
|
3.6 Source Code + figures
|
@@ -979,38 +1206,45 @@ pre,
|
|
979
1206
|
padding: 1.5em;
|
980
1207
|
margin: 2em 0 1em 0;
|
981
1208
|
overflow: auto;
|
982
|
-
font-size: {{normalfontsize}};
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
1209
|
+
font-size: {{normalfontsize}};
|
1210
|
+
}
|
1211
|
+
.figure .SourceTitle,
|
1212
|
+
pre .SourceTitle,
|
1213
|
+
.pseudocode .SourceTitle {
|
1214
|
+
font-weight: 700;
|
1215
|
+
font-size: 1em;
|
1216
|
+
text-align: center;
|
1217
|
+
}
|
989
1218
|
|
990
1219
|
pre {
|
991
1220
|
font-family: {{monospacefont}};
|
992
|
-
font-variant-ligatures: none;
|
1221
|
+
font-variant-ligatures: none;
|
1222
|
+
}
|
993
1223
|
|
994
1224
|
.AdmonitionTitle {
|
995
1225
|
font-weight: 700;
|
996
1226
|
font-size: 1em;
|
997
|
-
text-align: center;
|
1227
|
+
text-align: center;
|
1228
|
+
}
|
998
1229
|
|
999
1230
|
.RecommendationTitle {
|
1000
1231
|
font-weight: 700;
|
1001
1232
|
font-size: 1em;
|
1002
|
-
text-align: center;
|
1233
|
+
text-align: center;
|
1234
|
+
}
|
1003
1235
|
|
1004
1236
|
.ListTitle {
|
1005
1237
|
font-weight: 700;
|
1006
1238
|
font-size: 1em;
|
1007
1239
|
text-align: center;
|
1008
|
-
text-align: left;
|
1240
|
+
text-align: left;
|
1241
|
+
}
|
1009
1242
|
|
1010
1243
|
.figure-title, .FigureTitle, .SourceTitle, .AdmonitionTitle, .RecommendationTitle {
|
1011
1244
|
font-weight: 700;
|
1012
1245
|
font-size: 1em;
|
1013
|
-
text-align: center;
|
1246
|
+
text-align: center;
|
1247
|
+
}
|
1014
1248
|
|
1015
1249
|
/*
|
1016
1250
|
3.7 Notes
|
@@ -1020,26 +1254,31 @@ pre {
|
|
1020
1254
|
color: #47430c;
|
1021
1255
|
padding: 0.5em;
|
1022
1256
|
margin: 1.5em 0 1.5em 0;
|
1023
|
-
text-align: left;
|
1257
|
+
text-align: left;
|
1258
|
+
}
|
1024
1259
|
|
1025
1260
|
.Note p, .note p {
|
1026
|
-
margin: 0;
|
1261
|
+
margin: 0;
|
1262
|
+
}
|
1027
1263
|
|
1028
1264
|
.Admonition {
|
1029
1265
|
background-color: #ffcccc;
|
1030
1266
|
color: #47430c;
|
1031
1267
|
padding: 0.5em;
|
1032
1268
|
margin: 1.5em 0 1.5em 0;
|
1033
|
-
text-align: left;
|
1269
|
+
text-align: left;
|
1270
|
+
}
|
1034
1271
|
|
1035
1272
|
.Admonition p, .zzHelp p {
|
1036
|
-
margin: 0;
|
1273
|
+
margin: 0;
|
1274
|
+
}
|
1037
1275
|
|
1038
1276
|
div.zzHelp {
|
1039
1277
|
color: green;
|
1040
1278
|
padding: 0.5em;
|
1041
1279
|
margin: 1.5em 0 1.5em 0;
|
1042
|
-
text-align: left;
|
1280
|
+
text-align: left;
|
1281
|
+
}
|
1043
1282
|
|
1044
1283
|
/*
|
1045
1284
|
3.8 Examples
|
@@ -1052,18 +1291,23 @@ div.zzHelp {
|
|
1052
1291
|
color: #424242;
|
1053
1292
|
padding-left: 2em;
|
1054
1293
|
color: black;
|
1055
|
-
padding-left: 0.5em;
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1294
|
+
padding-left: 0.5em;
|
1295
|
+
}
|
1296
|
+
.example p {
|
1297
|
+
margin: 0;
|
1298
|
+
}
|
1299
|
+
.example .example-title {
|
1300
|
+
font-weight: 700;
|
1301
|
+
text-transform: uppercase;
|
1302
|
+
margin-left: -1.5em;
|
1303
|
+
}
|
1304
|
+
.example .example-title {
|
1305
|
+
margin-top: 0;
|
1306
|
+
}
|
1307
|
+
.example pre,
|
1308
|
+
.example .pseudocode {
|
1309
|
+
background: none;
|
1310
|
+
}
|
1067
1311
|
|
1068
1312
|
/*
|
1069
1313
|
3.9 Tables
|
@@ -1074,36 +1318,46 @@ table {
|
|
1074
1318
|
margin: 1em 0 2em 0;
|
1075
1319
|
margin-left: auto;
|
1076
1320
|
margin-right: auto;
|
1077
|
-
padding-right: 2em;
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1321
|
+
padding-right: 2em;
|
1322
|
+
}
|
1323
|
+
table, table th, table td {
|
1324
|
+
border: 1px solid black;
|
1325
|
+
font-size: 0.95em;
|
1326
|
+
}
|
1327
|
+
table th, table td {
|
1328
|
+
padding: 1em;
|
1329
|
+
}
|
1330
|
+
table td.header {
|
1331
|
+
font-weight: 400;
|
1332
|
+
}
|
1085
1333
|
|
1086
1334
|
td,
|
1087
1335
|
th {
|
1088
|
-
padding: 1em !important;
|
1336
|
+
padding: 1em !important;
|
1337
|
+
}
|
1089
1338
|
|
1090
1339
|
table.rouge-line-table td, table.rouge-line-table th {
|
1091
|
-
padding: 0em !important;
|
1340
|
+
padding: 0em !important;
|
1341
|
+
}
|
1092
1342
|
|
1093
1343
|
td > p:first-child, th > p:first-child {
|
1094
|
-
margin-top: 0em;
|
1344
|
+
margin-top: 0em;
|
1345
|
+
}
|
1095
1346
|
|
1096
1347
|
td > p:last-child, th > p:last-child {
|
1097
|
-
margin-bottom: 0em;
|
1348
|
+
margin-bottom: 0em;
|
1349
|
+
}
|
1098
1350
|
|
1099
1351
|
p.TableTitle {
|
1100
1352
|
text-align: center;
|
1101
1353
|
margin-top: 2.5em;
|
1102
1354
|
font-weight: 800;
|
1103
|
-
font-size: 1.1em;
|
1355
|
+
font-size: 1.1em;
|
1356
|
+
}
|
1104
1357
|
|
1105
1358
|
.TableFootnote {
|
1106
|
-
text-align: left !important;
|
1359
|
+
text-align: left !important;
|
1360
|
+
}
|
1107
1361
|
|
1108
1362
|
/*
|
1109
1363
|
table.modspec {
|
@@ -1137,14 +1391,17 @@ table.modspec {
|
|
1137
1391
|
*/
|
1138
1392
|
a.footnote-number, a.TableFootnoteRef, span.TableFootnoteRef {
|
1139
1393
|
vertical-align: super;
|
1140
|
-
font-size: 0.8em;
|
1394
|
+
font-size: 0.8em;
|
1395
|
+
}
|
1141
1396
|
|
1142
1397
|
.footnote {
|
1143
|
-
font-size: {{footnotefontsize}};
|
1398
|
+
font-size: {{footnotefontsize}};
|
1399
|
+
}
|
1144
1400
|
|
1145
1401
|
sup a {
|
1146
1402
|
vertical-align: super;
|
1147
|
-
font-size: 0.8em;
|
1403
|
+
font-size: 0.8em;
|
1404
|
+
}
|
1148
1405
|
|
1149
1406
|
#footnote_box {
|
1150
1407
|
font-size: {{footnotefontsize}};
|
@@ -1154,26 +1411,32 @@ sup a {
|
|
1154
1411
|
border: 1px solid #888;
|
1155
1412
|
-moz-box-shadow: 0px 0px 5px #888;
|
1156
1413
|
-webkit-box-shadow: 0px 0px 5px #888;
|
1157
|
-
box-shadow: 0px 0px 5px #888;
|
1414
|
+
box-shadow: 0px 0px 5px #888;
|
1415
|
+
}
|
1158
1416
|
|
1159
1417
|
ol.footnotes-list, aside.footnote {
|
1160
|
-
margin-left: 1em;
|
1418
|
+
margin-left: 1em;
|
1419
|
+
}
|
1161
1420
|
|
1162
1421
|
ol.footnotes-list li, aside.footnote {
|
1163
1422
|
font-size: {{footnotefontsize}};
|
1164
1423
|
vertical-align: top;
|
1165
1424
|
list-style: decimal;
|
1166
|
-
margin-bottom: 1em;
|
1425
|
+
margin-bottom: 1em;
|
1426
|
+
}
|
1167
1427
|
|
1168
1428
|
ol.footnotes-list:first-child {
|
1169
|
-
margin-top: 2em;
|
1429
|
+
margin-top: 2em;
|
1430
|
+
}
|
1170
1431
|
|
1171
1432
|
ol.footnotes-list p, aside.footnote p {
|
1172
|
-
display: inline;
|
1433
|
+
display: inline;
|
1434
|
+
}
|
1173
1435
|
|
1174
1436
|
ol > li > p::before {
|
1175
1437
|
content: "";
|
1176
|
-
display: none;
|
1438
|
+
display: none;
|
1439
|
+
}
|
1177
1440
|
|
1178
1441
|
/*
|
1179
1442
|
3.11 Blockquotes
|
@@ -1185,7 +1448,8 @@ ol > li > p::before {
|
|
1185
1448
|
padding: 1.5em;
|
1186
1449
|
margin-top: 2em;
|
1187
1450
|
margin-left: auto;
|
1188
|
-
margin-right: auto;
|
1451
|
+
margin-right: auto;
|
1452
|
+
}
|
1189
1453
|
|
1190
1454
|
/*
|
1191
1455
|
3.12 Formulas
|
@@ -1196,34 +1460,40 @@ ol > li > p::before {
|
|
1196
1460
|
margin-top: 2em;
|
1197
1461
|
text-align: center;
|
1198
1462
|
margin-left: 20%;
|
1199
|
-
margin-right: 20%;
|
1463
|
+
margin-right: 20%;
|
1464
|
+
}
|
1200
1465
|
|
1201
1466
|
dl.formula_dl {
|
1202
1467
|
background-color: #f7f7f7;
|
1203
1468
|
margin-left: 20%;
|
1204
|
-
margin-right: 20%;
|
1469
|
+
margin-right: 20%;
|
1470
|
+
}
|
1205
1471
|
|
1206
1472
|
/*
|
1207
1473
|
Keywords
|
1208
1474
|
*/
|
1209
1475
|
span.keyword {
|
1210
|
-
font-weight: 600;
|
1476
|
+
font-weight: 600;
|
1477
|
+
}
|
1211
1478
|
|
1212
1479
|
.Admonition, .admonition {
|
1213
1480
|
background-color: #ffb3b3;
|
1214
1481
|
/* color: #47430c;*/
|
1215
1482
|
padding: 0.5em;
|
1216
1483
|
margin: 1.5em 0 1.5em 0;
|
1217
|
-
text-align: left;
|
1484
|
+
text-align: left;
|
1485
|
+
}
|
1218
1486
|
|
1219
1487
|
.Admonition p, .admonition p {
|
1220
|
-
margin: 0;
|
1488
|
+
margin: 0;
|
1489
|
+
}
|
1221
1490
|
|
1222
1491
|
/* Collapse TOC */
|
1223
1492
|
.collapse-group {
|
1224
1493
|
display: flex;
|
1225
1494
|
align-items: center;
|
1226
|
-
position: relative;
|
1495
|
+
position: relative;
|
1496
|
+
}
|
1227
1497
|
|
1228
1498
|
.collapse-button {
|
1229
1499
|
position: absolute;
|
@@ -1232,10 +1502,13 @@ span.keyword {
|
|
1232
1502
|
height: 20px;
|
1233
1503
|
width: 20px;
|
1234
1504
|
cursor: pointer;
|
1235
|
-
background-image: url('data:image/svg+xml,<svg focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="rgba(0,0,0,.54)" d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"></path></svg>');
|
1505
|
+
background-image: url('data:image/svg+xml,<svg focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="rgba(0,0,0,.54)" d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"></path></svg>');
|
1506
|
+
}
|
1236
1507
|
|
1237
1508
|
.collapse {
|
1238
|
-
display: none;
|
1509
|
+
display: none;
|
1510
|
+
}
|
1239
1511
|
|
1240
1512
|
.expand {
|
1241
|
-
transform: rotateZ(-180deg);
|
1513
|
+
transform: rotateZ(-180deg);
|
1514
|
+
}
|