metanorma-ogc 1.2.7 → 1.2.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +7 -5
- data/lib/asciidoctor/ogc/basicdoc.rng +52 -3
- data/lib/asciidoctor/ogc/converter.rb +0 -1
- data/lib/asciidoctor/ogc/isodoc.rng +51 -3
- data/lib/isodoc/ogc/base_convert.rb +2 -2
- data/lib/isodoc/ogc/html/htmlstyle.css +206 -206
- data/lib/isodoc/ogc/html/htmlstyle.scss +4 -4
- data/lib/isodoc/ogc/html/ogc.css +21 -21
- data/lib/isodoc/ogc/html/ogc.scss +21 -21
- data/lib/isodoc/ogc/html/ogc_wp.css +35 -35
- data/lib/isodoc/ogc/html/ogc_wp.scss +35 -35
- data/lib/isodoc/ogc/html/wordstyle.css +19 -19
- data/lib/isodoc/ogc/html/wordstyle.scss +19 -19
- data/lib/isodoc/ogc/html/wordstyle_wp.css +23 -23
- data/lib/isodoc/ogc/html/wordstyle_wp.scss +23 -23
- data/lib/isodoc/ogc/html_convert.rb +6 -3
- data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +263 -55
- data/lib/isodoc/ogc/ogc.best-practice.xsl +263 -55
- data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +263 -55
- data/lib/isodoc/ogc/ogc.community-practice.xsl +263 -55
- data/lib/isodoc/ogc/ogc.community-standard.xsl +263 -55
- data/lib/isodoc/ogc/ogc.discussion-paper.xsl +263 -55
- data/lib/isodoc/ogc/ogc.engineering-report.xsl +263 -55
- data/lib/isodoc/ogc/ogc.other.xsl +263 -55
- data/lib/isodoc/ogc/ogc.policy.xsl +263 -55
- data/lib/isodoc/ogc/ogc.reference-model.xsl +263 -55
- data/lib/isodoc/ogc/ogc.release-notes.xsl +263 -55
- data/lib/isodoc/ogc/ogc.standard.xsl +263 -55
- data/lib/isodoc/ogc/ogc.test-suite.xsl +263 -55
- data/lib/isodoc/ogc/ogc.user-guide.xsl +263 -55
- data/lib/isodoc/ogc/ogc.white-paper.xsl +255 -47
- data/lib/isodoc/ogc/presentation_xml_convert.rb +13 -0
- data/lib/isodoc/ogc/word_convert.rb +9 -5
- data/lib/isodoc/ogc/xref.rb +8 -4
- data/lib/metanorma/ogc.rb +7 -0
- data/lib/metanorma/ogc/processor.rb +16 -8
- data/lib/metanorma/ogc/version.rb +1 -1
- data/metanorma-ogc.gemspec +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e95cb5e967227b7768df33d08b3e2e3b70bfcbd7030ba0f5aefa091315bd8aec
|
4
|
+
data.tar.gz: 45585c842aae29e420d1f077bc9a3d8a37712a94bb0b2bc14de8e37c2878c48e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b095cea06604606bf565a4ee2699ac4c84553b7be09a90cf9bf5e4a9a4ad65566e3e425161063d3282a2a802e411487df3167352089506b3412e99b5f4017c43
|
7
|
+
data.tar.gz: 9320167efb0439ae364797ff99495502f4bd5e287e977701bc4c7b673bfb3328fe73ed45a7cdefc91cc5e3320a6505af6d7c94ff6382050b536de8a5619a6457
|
data/.github/workflows/rake.yml
CHANGED
@@ -36,7 +36,10 @@ jobs:
|
|
36
36
|
with:
|
37
37
|
ruby-version: ${{ matrix.ruby }}
|
38
38
|
|
39
|
-
-
|
39
|
+
- if: matrix.os == 'macos-latest'
|
40
|
+
run: brew install autoconf automake libtool
|
41
|
+
|
42
|
+
- uses: actions/cache@v2
|
40
43
|
with:
|
41
44
|
path: vendor/bundle
|
42
45
|
key: bundle-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/*.gemspec') }}
|
@@ -48,15 +51,14 @@ jobs:
|
|
48
51
|
|
49
52
|
- run: bundle exec rake
|
50
53
|
|
51
|
-
|
52
|
-
name: Trigger notify workflow
|
54
|
+
tests-passed:
|
53
55
|
needs: rake
|
54
56
|
runs-on: ubuntu-latest
|
55
57
|
steps:
|
56
|
-
- name: Trigger
|
58
|
+
- name: Trigger tests passed event
|
57
59
|
uses: Sibz/github-status-action@v1
|
58
60
|
with:
|
59
|
-
authToken: ${{ secrets.GITHUB_TOKEN }}
|
61
|
+
authToken: ${{ secrets.METANORMA_CI_PAT_TOKEN || secrets.GITHUB_TOKEN }}
|
60
62
|
context: 'tests-passed-successfully'
|
61
63
|
description: 'Tests passed successfully'
|
62
64
|
state: 'success'
|
@@ -596,6 +596,7 @@
|
|
596
596
|
<ref name="bookmark"/>
|
597
597
|
<ref name="image"/>
|
598
598
|
<ref name="index"/>
|
599
|
+
<ref name="index-xref"/>
|
599
600
|
</choice>
|
600
601
|
</define>
|
601
602
|
<define name="PureTextElement">
|
@@ -728,13 +729,61 @@
|
|
728
729
|
</define>
|
729
730
|
<define name="index">
|
730
731
|
<element name="index">
|
731
|
-
<attribute name="primary"/>
|
732
732
|
<optional>
|
733
|
-
<attribute name="
|
733
|
+
<attribute name="to">
|
734
|
+
<data type="IDREF"/>
|
735
|
+
</attribute>
|
736
|
+
</optional>
|
737
|
+
<element name="primary">
|
738
|
+
<oneOrMore>
|
739
|
+
<ref name="PureTextElement"/>
|
740
|
+
</oneOrMore>
|
741
|
+
</element>
|
742
|
+
<optional>
|
743
|
+
<element name="secondary">
|
744
|
+
<oneOrMore>
|
745
|
+
<ref name="PureTextElement"/>
|
746
|
+
</oneOrMore>
|
747
|
+
</element>
|
748
|
+
</optional>
|
749
|
+
<optional>
|
750
|
+
<element name="tertiary">
|
751
|
+
<oneOrMore>
|
752
|
+
<ref name="PureTextElement"/>
|
753
|
+
</oneOrMore>
|
754
|
+
</element>
|
755
|
+
</optional>
|
756
|
+
</element>
|
757
|
+
</define>
|
758
|
+
<define name="index-xref">
|
759
|
+
<element name="index-xref">
|
760
|
+
<attribute name="also">
|
761
|
+
<data type="boolean"/>
|
762
|
+
</attribute>
|
763
|
+
<element name="primary">
|
764
|
+
<oneOrMore>
|
765
|
+
<ref name="PureTextElement"/>
|
766
|
+
</oneOrMore>
|
767
|
+
</element>
|
768
|
+
<optional>
|
769
|
+
<element name="secondary">
|
770
|
+
<oneOrMore>
|
771
|
+
<ref name="PureTextElement"/>
|
772
|
+
</oneOrMore>
|
773
|
+
</element>
|
734
774
|
</optional>
|
735
775
|
<optional>
|
736
|
-
<
|
776
|
+
<element name="tertiary">
|
777
|
+
<oneOrMore>
|
778
|
+
<ref name="PureTextElement"/>
|
779
|
+
</oneOrMore>
|
780
|
+
</element>
|
737
781
|
</optional>
|
782
|
+
<element name="target">
|
783
|
+
<oneOrMore>
|
784
|
+
<ref name="PureTextElement"/>
|
785
|
+
</oneOrMore>
|
786
|
+
</element>
|
738
787
|
</element>
|
739
788
|
</define>
|
740
789
|
<!-- bare ID element, used for referencing arbitrary spans of text -->
|
@@ -55,6 +55,13 @@
|
|
55
55
|
<param name="pattern">\i\c*|\c+#\c+</param>
|
56
56
|
</data>
|
57
57
|
</attribute>
|
58
|
+
<optional>
|
59
|
+
<attribute name="to">
|
60
|
+
<data type="string">
|
61
|
+
<param name="pattern">\i\c*|\c+#\c+</param>
|
62
|
+
</data>
|
63
|
+
</attribute>
|
64
|
+
</optional>
|
58
65
|
<optional>
|
59
66
|
<attribute name="type">
|
60
67
|
<ref name="ReferenceFormat"/>
|
@@ -246,6 +253,12 @@
|
|
246
253
|
<data type="boolean"/>
|
247
254
|
</attribute>
|
248
255
|
</optional>
|
256
|
+
<optional>
|
257
|
+
<attribute name="width"/>
|
258
|
+
</optional>
|
259
|
+
<optional>
|
260
|
+
<ref name="colgroup"/>
|
261
|
+
</optional>
|
249
262
|
<optional>
|
250
263
|
<ref name="tname"/>
|
251
264
|
</optional>
|
@@ -764,6 +777,21 @@
|
|
764
777
|
</define>
|
765
778
|
</include>
|
766
779
|
<!-- end overrides -->
|
780
|
+
<define name="colgroup">
|
781
|
+
<element name="colgroup">
|
782
|
+
<oneOrMore>
|
783
|
+
<ref name="col"/>
|
784
|
+
</oneOrMore>
|
785
|
+
</element>
|
786
|
+
</define>
|
787
|
+
<define name="col">
|
788
|
+
<element name="col">
|
789
|
+
<attribute name="width"/>
|
790
|
+
</element>
|
791
|
+
</define>
|
792
|
+
<define name="BibItemType" combine="choice">
|
793
|
+
<value>internal</value>
|
794
|
+
</define>
|
767
795
|
<define name="TextElement" combine="choice">
|
768
796
|
<ref name="concept"/>
|
769
797
|
</define>
|
@@ -814,6 +842,9 @@
|
|
814
842
|
<data type="boolean"/>
|
815
843
|
</attribute>
|
816
844
|
</optional>
|
845
|
+
<optional>
|
846
|
+
<attribute name="number"/>
|
847
|
+
</optional>
|
817
848
|
<optional>
|
818
849
|
<attribute name="obligation">
|
819
850
|
<choice>
|
@@ -869,9 +900,11 @@
|
|
869
900
|
<element name="code">
|
870
901
|
<text/>
|
871
902
|
</element>
|
872
|
-
<
|
873
|
-
<text
|
874
|
-
|
903
|
+
<optional>
|
904
|
+
<element name="text">
|
905
|
+
<text/>
|
906
|
+
</element>
|
907
|
+
</optional>
|
875
908
|
</element>
|
876
909
|
</define>
|
877
910
|
<define name="standard-document">
|
@@ -1041,6 +1074,9 @@
|
|
1041
1074
|
</choice>
|
1042
1075
|
</attribute>
|
1043
1076
|
</optional>
|
1077
|
+
<optional>
|
1078
|
+
<attribute name="number"/>
|
1079
|
+
</optional>
|
1044
1080
|
<optional>
|
1045
1081
|
<attribute name="type"/>
|
1046
1082
|
</optional>
|
@@ -1094,6 +1130,9 @@
|
|
1094
1130
|
<optional>
|
1095
1131
|
<attribute name="type"/>
|
1096
1132
|
</optional>
|
1133
|
+
<optional>
|
1134
|
+
<attribute name="number"/>
|
1135
|
+
</optional>
|
1097
1136
|
<optional>
|
1098
1137
|
<ref name="section-title"/>
|
1099
1138
|
</optional>
|
@@ -1196,6 +1235,9 @@
|
|
1196
1235
|
<optional>
|
1197
1236
|
<attribute name="type"/>
|
1198
1237
|
</optional>
|
1238
|
+
<optional>
|
1239
|
+
<attribute name="number"/>
|
1240
|
+
</optional>
|
1199
1241
|
<optional>
|
1200
1242
|
<attribute name="obligation">
|
1201
1243
|
<choice>
|
@@ -1524,6 +1566,7 @@
|
|
1524
1566
|
<value>add</value>
|
1525
1567
|
<value>modify</value>
|
1526
1568
|
<value>delete</value>
|
1569
|
+
<value>replace</value>
|
1527
1570
|
</choice>
|
1528
1571
|
</attribute>
|
1529
1572
|
<optional>
|
@@ -1554,6 +1597,11 @@
|
|
1554
1597
|
</optional>
|
1555
1598
|
<optional>
|
1556
1599
|
<element name="newcontent">
|
1600
|
+
<optional>
|
1601
|
+
<attribute name="id">
|
1602
|
+
<data type="ID"/>
|
1603
|
+
</attribute>
|
1604
|
+
</optional>
|
1557
1605
|
<zeroOrMore>
|
1558
1606
|
<ref name="BasicBlock"/>
|
1559
1607
|
</zeroOrMore>
|
@@ -35,7 +35,7 @@ module IsoDoc
|
|
35
35
|
end
|
36
36
|
end
|
37
37
|
|
38
|
-
def middle_clause
|
38
|
+
def middle_clause(_docxml)
|
39
39
|
"//clause[parent::sections][not(@type = 'scope' or "\
|
40
40
|
"@type = 'conformance')][not(descendant::terms)]"
|
41
41
|
end
|
@@ -46,7 +46,7 @@ module IsoDoc
|
|
46
46
|
end
|
47
47
|
|
48
48
|
def middle(isoxml, out)
|
49
|
-
middle_title(out)
|
49
|
+
middle_title(isoxml, out)
|
50
50
|
middle_admonitions(isoxml, out)
|
51
51
|
i = scope isoxml, out, 0
|
52
52
|
i = conformance isoxml, out, i
|
@@ -264,11 +264,213 @@ a.FootnoteRef + a.FootnoteRef:before {
|
|
264
264
|
#retired {
|
265
265
|
border-bottom: solid 3px #7e0d13; }
|
266
266
|
|
267
|
+
.coverpage-maturity, .coverpage-stage {
|
268
|
+
font-family: {{headerfont}};
|
269
|
+
font-weight: 400;
|
270
|
+
font-size: 1.3em;
|
271
|
+
margin: 0 0 2em 0;
|
272
|
+
text-transform: uppercase; }
|
273
|
+
|
274
|
+
.icon-svg {
|
275
|
+
width: 100%;
|
276
|
+
color: #5ecf86; }
|
277
|
+
|
278
|
+
.wrapper-top {
|
279
|
+
background: #00335b;
|
280
|
+
background: linear-gradient(130deg, #00335b 45%, #f1f8ff 100%);
|
281
|
+
color: #ffffff;
|
282
|
+
padding: 5em 0;
|
283
|
+
width: 100%; }
|
284
|
+
|
285
|
+
.wrapper-top-bottom {
|
286
|
+
width: 0;
|
287
|
+
height: 0;
|
288
|
+
border-top: 100px solid #00335b;
|
289
|
+
border-right: 100px solid transparent;
|
290
|
+
position: absolute; }
|
291
|
+
|
292
|
+
.document-type-band {
|
293
|
+
top: 260px; }
|
294
|
+
|
295
|
+
.document-stage-band > :first-child {
|
296
|
+
height: 240px; }
|
297
|
+
|
298
|
+
.coverpage-metadata {
|
299
|
+
margin-top: 35px;
|
300
|
+
padding-top: 15px;
|
301
|
+
margin-right: 25px;
|
302
|
+
border-top: solid 1px white; }
|
303
|
+
|
304
|
+
.coverpage-metadata,
|
305
|
+
.coverpage-alt-formats {
|
306
|
+
font-size: 12px;
|
307
|
+
font-family: {{headerfont}};
|
308
|
+
margin-left: 1em;
|
309
|
+
text-align: left; }
|
310
|
+
.coverpage-metadata span,
|
311
|
+
.coverpage-alt-formats span {
|
312
|
+
display: block;
|
313
|
+
text-align: left; }
|
314
|
+
.coverpage-metadata span a,
|
315
|
+
.coverpage-alt-formats span a {
|
316
|
+
color: white; }
|
317
|
+
.coverpage-metadata span a:hover,
|
318
|
+
.coverpage-alt-formats span a:hover {
|
319
|
+
text-decoration: underline;
|
320
|
+
background: none;
|
321
|
+
box-shadow: none !important;
|
322
|
+
font-weight: 400; }
|
323
|
+
.coverpage-metadata .value,
|
324
|
+
.coverpage-alt-formats .value {
|
325
|
+
font-size: 15px;
|
326
|
+
margin-bottom: 15px; }
|
327
|
+
.coverpage-metadata .label,
|
328
|
+
.coverpage-alt-formats .label {
|
329
|
+
font-size: 12px;
|
330
|
+
padding: 0; }
|
331
|
+
|
332
|
+
.coverpage-alt-formats span {
|
333
|
+
display: inline;
|
334
|
+
text-align: left; }
|
335
|
+
.coverpage-alt-formats span a {
|
336
|
+
padding-right: 5px; }
|
337
|
+
|
338
|
+
.coverpage-title {
|
339
|
+
padding-bottom: 0.5em;
|
340
|
+
font-family: {{headerfont}};
|
341
|
+
font-weight: 100;
|
342
|
+
padding-left: 1em;
|
343
|
+
padding-right: 1em; }
|
344
|
+
.coverpage-title span {
|
345
|
+
font-family: {{headerfont}};
|
346
|
+
font-size: 1.8em;
|
347
|
+
line-height: 1; }
|
348
|
+
|
349
|
+
.docstage-box table {
|
350
|
+
width: auto; }
|
351
|
+
|
352
|
+
.docstage-box th {
|
353
|
+
background-color: #93c0d6; }
|
354
|
+
|
355
|
+
.docstage-box td {
|
356
|
+
vertical-align: top;
|
357
|
+
background-color: #daeef3;
|
358
|
+
padding: 0.5em;
|
359
|
+
border: 0; }
|
360
|
+
|
361
|
+
.docstage-box th:first-child {
|
362
|
+
border-radius: 1em 0 0 0; }
|
363
|
+
|
364
|
+
.docstage-box th:last-child {
|
365
|
+
border-radius: 0 1em 0 0; }
|
366
|
+
|
367
|
+
.docstage-box tr:first-child {
|
368
|
+
border-radius: 0 0 0 1em; }
|
369
|
+
|
370
|
+
.docstage-box tr:last-child {
|
371
|
+
border-radius: 0 1em 0 0; }
|
372
|
+
|
373
|
+
.docstage-box tr:last-child > td:first-child {
|
374
|
+
border-radius: 0 0 0 1em; }
|
375
|
+
|
376
|
+
.docstage-box tr:last-child > td:last-child {
|
377
|
+
border-radius: 0 0 1em 0; }
|
378
|
+
|
379
|
+
.WordSection11 {
|
380
|
+
padding: 0 2em 0 3em; }
|
381
|
+
|
382
|
+
.info-section {
|
383
|
+
padding: 0 2em 0 5em; }
|
384
|
+
|
385
|
+
.prefatory-section {
|
386
|
+
padding: 0 3em 0 6em; }
|
387
|
+
|
388
|
+
.zzSTDTitle1, .MsoCommentText {
|
389
|
+
display: none; }
|
390
|
+
|
391
|
+
.coverpage {
|
392
|
+
text-align: center;
|
393
|
+
padding-left: 1.5em; }
|
394
|
+
|
395
|
+
.coverpage-logo span, .coverpage-tc-name span {
|
396
|
+
font-family: {{bodyfont}};
|
397
|
+
text-transform: none;
|
398
|
+
font-weight: 300;
|
399
|
+
margin-left: 1em; }
|
400
|
+
|
401
|
+
.coverpage-tc-name {
|
402
|
+
font-size: 1.2em;
|
403
|
+
line-height: 1.2em;
|
404
|
+
margin: 0.25em 0; }
|
405
|
+
|
406
|
+
.copyright {
|
407
|
+
padding: 1em;
|
408
|
+
font-size: 0.9em;
|
409
|
+
text-align: left; }
|
410
|
+
|
411
|
+
/* Document Identity */
|
412
|
+
.coverpage-doc-identity {
|
413
|
+
font-size: 2em;
|
414
|
+
line-height: 2em; }
|
415
|
+
|
416
|
+
.coverpage-title .title-second {
|
417
|
+
display: none; }
|
418
|
+
|
419
|
+
.coverpage-stage-block {
|
420
|
+
font-family: {{headerfont}};
|
421
|
+
font-weight: 600;
|
422
|
+
font-size: 1.25em;
|
423
|
+
margin: 2em 0em 2em 0em;
|
424
|
+
text-transform: uppercase; }
|
425
|
+
|
426
|
+
.authors {
|
427
|
+
margin-top: 2em; }
|
428
|
+
.authors span {
|
429
|
+
display: block;
|
430
|
+
line-height: 2; }
|
431
|
+
.authors span.roletag {
|
432
|
+
display: inline-block;
|
433
|
+
font-size: 12px;
|
434
|
+
color: #00335b;
|
435
|
+
background-color: white;
|
436
|
+
padding: 2px 5px;
|
437
|
+
margin-left: 7px;
|
438
|
+
border-radius: 5px; }
|
439
|
+
|
440
|
+
/* Draft Warning */
|
441
|
+
.coverpage-warning {
|
442
|
+
border: #f36f36 solid 2px;
|
443
|
+
color: #f36f36 !important;
|
444
|
+
margin: 1em 2em;
|
445
|
+
color: #2e81c2;
|
446
|
+
padding: 2em 1em 1em 1em;
|
447
|
+
border-radius: 25px; }
|
448
|
+
.coverpage-warning h1 {
|
449
|
+
font-family: {{headerfont}};
|
450
|
+
font-weight: 300;
|
451
|
+
text-transform: uppercase;
|
452
|
+
font-size: 1.2em; }
|
453
|
+
|
454
|
+
@media print {
|
455
|
+
.document-info, .copyright {
|
456
|
+
page-break-before: always; }
|
457
|
+
.coverpage {
|
458
|
+
height: 23cm; }
|
459
|
+
.info-section {
|
460
|
+
display: none; }
|
461
|
+
.wrapper-top {
|
462
|
+
top: 0;
|
463
|
+
padding-top: 4cm;
|
464
|
+
padding-bottom: 4cm; }
|
465
|
+
.wrapper-top-bottom {
|
466
|
+
margin-top: -5px;
|
467
|
+
display: none; } }
|
468
|
+
|
267
469
|
body {
|
268
470
|
margin-left: auto;
|
269
471
|
margin-right: auto;
|
270
472
|
max-width: 100%;
|
271
|
-
font-size:
|
473
|
+
font-size: {{normalfontsize}};
|
272
474
|
font-weight: 300;
|
273
475
|
line-height: 1.5;
|
274
476
|
color: #00335b;
|
@@ -501,208 +703,6 @@ dl {
|
|
501
703
|
#published {
|
502
704
|
color: #9ABD48; }
|
503
705
|
|
504
|
-
.coverpage-maturity, .coverpage-stage {
|
505
|
-
font-family: {{headerfont}};
|
506
|
-
font-weight: 400;
|
507
|
-
font-size: 1.3em;
|
508
|
-
margin: 0 0 2em 0;
|
509
|
-
text-transform: uppercase; }
|
510
|
-
|
511
|
-
.icon-svg {
|
512
|
-
width: 100%;
|
513
|
-
color: #5ecf86; }
|
514
|
-
|
515
|
-
.wrapper-top {
|
516
|
-
background: #00335b;
|
517
|
-
background: linear-gradient(130deg, #00335b 45%, #f1f8ff 100%);
|
518
|
-
color: #ffffff;
|
519
|
-
padding: 5em 0;
|
520
|
-
width: 100%; }
|
521
|
-
|
522
|
-
.wrapper-top-bottom {
|
523
|
-
width: 0;
|
524
|
-
height: 0;
|
525
|
-
border-top: 100px solid #00335b;
|
526
|
-
border-right: 100px solid transparent;
|
527
|
-
position: absolute; }
|
528
|
-
|
529
|
-
.document-type-band {
|
530
|
-
top: 260px; }
|
531
|
-
|
532
|
-
.document-stage-band > :first-child {
|
533
|
-
height: 240px; }
|
534
|
-
|
535
|
-
.coverpage-metadata {
|
536
|
-
margin-top: 35px;
|
537
|
-
padding-top: 15px;
|
538
|
-
margin-right: 25px;
|
539
|
-
border-top: solid 1px white; }
|
540
|
-
|
541
|
-
.coverpage-metadata,
|
542
|
-
.coverpage-alt-formats {
|
543
|
-
font-size: 12px;
|
544
|
-
font-family: {{headerfont}};
|
545
|
-
margin-left: 1em;
|
546
|
-
text-align: left; }
|
547
|
-
.coverpage-metadata span,
|
548
|
-
.coverpage-alt-formats span {
|
549
|
-
display: block;
|
550
|
-
text-align: left; }
|
551
|
-
.coverpage-metadata span a,
|
552
|
-
.coverpage-alt-formats span a {
|
553
|
-
color: white; }
|
554
|
-
.coverpage-metadata span a:hover,
|
555
|
-
.coverpage-alt-formats span a:hover {
|
556
|
-
text-decoration: underline;
|
557
|
-
background: none;
|
558
|
-
box-shadow: none !important;
|
559
|
-
font-weight: 400; }
|
560
|
-
.coverpage-metadata .value,
|
561
|
-
.coverpage-alt-formats .value {
|
562
|
-
font-size: 15px;
|
563
|
-
margin-bottom: 15px; }
|
564
|
-
.coverpage-metadata .label,
|
565
|
-
.coverpage-alt-formats .label {
|
566
|
-
font-size: 12px;
|
567
|
-
padding: 0; }
|
568
|
-
|
569
|
-
.coverpage-alt-formats span {
|
570
|
-
display: inline;
|
571
|
-
text-align: left; }
|
572
|
-
.coverpage-alt-formats span a {
|
573
|
-
padding-right: 5px; }
|
574
|
-
|
575
|
-
.coverpage-title {
|
576
|
-
padding-bottom: 0.5em;
|
577
|
-
font-family: {{headerfont}};
|
578
|
-
font-weight: 100;
|
579
|
-
padding-left: 1em;
|
580
|
-
padding-right: 1em; }
|
581
|
-
.coverpage-title span {
|
582
|
-
font-family: {{headerfont}};
|
583
|
-
font-size: 1.8em;
|
584
|
-
line-height: 1; }
|
585
|
-
|
586
|
-
.docstage-box table {
|
587
|
-
width: auto; }
|
588
|
-
|
589
|
-
.docstage-box th {
|
590
|
-
background-color: #93c0d6; }
|
591
|
-
|
592
|
-
.docstage-box td {
|
593
|
-
vertical-align: top;
|
594
|
-
background-color: #daeef3;
|
595
|
-
padding: 0.5em;
|
596
|
-
border: 0; }
|
597
|
-
|
598
|
-
.docstage-box th:first-child {
|
599
|
-
border-radius: 1em 0 0 0; }
|
600
|
-
|
601
|
-
.docstage-box th:last-child {
|
602
|
-
border-radius: 0 1em 0 0; }
|
603
|
-
|
604
|
-
.docstage-box tr:first-child {
|
605
|
-
border-radius: 0 0 0 1em; }
|
606
|
-
|
607
|
-
.docstage-box tr:last-child {
|
608
|
-
border-radius: 0 1em 0 0; }
|
609
|
-
|
610
|
-
.docstage-box tr:last-child > td:first-child {
|
611
|
-
border-radius: 0 0 0 1em; }
|
612
|
-
|
613
|
-
.docstage-box tr:last-child > td:last-child {
|
614
|
-
border-radius: 0 0 1em 0; }
|
615
|
-
|
616
|
-
.WordSection11 {
|
617
|
-
padding: 0 2em 0 3em; }
|
618
|
-
|
619
|
-
.info-section {
|
620
|
-
padding: 0 2em 0 5em; }
|
621
|
-
|
622
|
-
.prefatory-section {
|
623
|
-
padding: 0 3em 0 6em; }
|
624
|
-
|
625
|
-
.zzSTDTitle1, .MsoCommentText {
|
626
|
-
display: none; }
|
627
|
-
|
628
|
-
.coverpage {
|
629
|
-
text-align: center;
|
630
|
-
padding-left: 1.5em; }
|
631
|
-
|
632
|
-
.coverpage-logo span, .coverpage-tc-name span {
|
633
|
-
font-family: {{bodyfont}};
|
634
|
-
text-transform: none;
|
635
|
-
font-weight: 300;
|
636
|
-
margin-left: 1em; }
|
637
|
-
|
638
|
-
.coverpage-tc-name {
|
639
|
-
font-size: 1.2em;
|
640
|
-
line-height: 1.2em;
|
641
|
-
margin: 0.25em 0; }
|
642
|
-
|
643
|
-
.copyright {
|
644
|
-
padding: 1em;
|
645
|
-
font-size: 0.9em;
|
646
|
-
text-align: left; }
|
647
|
-
|
648
|
-
/* Document Identity */
|
649
|
-
.coverpage-doc-identity {
|
650
|
-
font-size: 2em;
|
651
|
-
line-height: 2em; }
|
652
|
-
|
653
|
-
.coverpage-title .title-second {
|
654
|
-
display: none; }
|
655
|
-
|
656
|
-
.coverpage-stage-block {
|
657
|
-
font-family: {{headerfont}};
|
658
|
-
font-weight: 600;
|
659
|
-
font-size: 1.25em;
|
660
|
-
margin: 2em 0em 2em 0em;
|
661
|
-
text-transform: uppercase; }
|
662
|
-
|
663
|
-
.authors {
|
664
|
-
margin-top: 2em; }
|
665
|
-
.authors span {
|
666
|
-
display: block;
|
667
|
-
line-height: 2; }
|
668
|
-
.authors span.roletag {
|
669
|
-
display: inline-block;
|
670
|
-
font-size: 12px;
|
671
|
-
color: #00335b;
|
672
|
-
background-color: white;
|
673
|
-
padding: 2px 5px;
|
674
|
-
margin-left: 7px;
|
675
|
-
border-radius: 5px; }
|
676
|
-
|
677
|
-
/* Draft Warning */
|
678
|
-
.coverpage-warning {
|
679
|
-
border: #f36f36 solid 2px;
|
680
|
-
color: #f36f36 !important;
|
681
|
-
margin: 1em 2em;
|
682
|
-
color: #2e81c2;
|
683
|
-
padding: 2em 1em 1em 1em;
|
684
|
-
border-radius: 25px; }
|
685
|
-
.coverpage-warning h1 {
|
686
|
-
font-family: {{headerfont}};
|
687
|
-
font-weight: 300;
|
688
|
-
text-transform: uppercase;
|
689
|
-
font-size: 1.2em; }
|
690
|
-
|
691
|
-
@media print {
|
692
|
-
.document-info, .copyright {
|
693
|
-
page-break-before: always; }
|
694
|
-
.coverpage {
|
695
|
-
height: 23cm; }
|
696
|
-
.info-section {
|
697
|
-
display: none; }
|
698
|
-
.wrapper-top {
|
699
|
-
top: 0;
|
700
|
-
padding-top: 4cm;
|
701
|
-
padding-bottom: 4cm; }
|
702
|
-
.wrapper-top-bottom {
|
703
|
-
margin-top: -5px;
|
704
|
-
display: none; } }
|
705
|
-
|
706
706
|
p {
|
707
707
|
margin-top: 1em;
|
708
708
|
margin-bottom: 1em; }
|
@@ -888,7 +888,7 @@ pre {
|
|
888
888
|
font-family: {{monospacefont}};
|
889
889
|
font-variant-ligatures: none;
|
890
890
|
background-color: #f7f7f7;
|
891
|
-
font-size:
|
891
|
+
font-size: {{monospacefontsize}};
|
892
892
|
line-height: 1.6em;
|
893
893
|
padding: 1.5em;
|
894
894
|
margin: 2em 0 1em 0;
|
@@ -921,7 +921,7 @@ pre {
|
|
921
921
|
.figure, pre, .pseudocode {
|
922
922
|
background-color: #e1eef1;
|
923
923
|
color: #424242;
|
924
|
-
font-size:
|
924
|
+
font-size: {{monospacefontsize}}; }
|
925
925
|
|
926
926
|
.Note {
|
927
927
|
background-color: #fff8bb;
|
@@ -1091,4 +1091,4 @@ a.footnote-number {
|
|
1091
1091
|
font-size: 0.8em; }
|
1092
1092
|
|
1093
1093
|
.footnote {
|
1094
|
-
font-size:
|
1094
|
+
font-size: {{footnotefontsize}}; }
|