asciidoctor-rsd 0.2.5 → 0.2.6
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 +5 -5
- data/Gemfile +1 -0
- data/Gemfile.lock +51 -36
- data/asciidoctor-rsd.gemspec +3 -2
- data/lib/asciidoctor-rsd.rb +2 -1
- data/lib/asciidoctor/rsd/biblio.rng +35 -6
- data/lib/asciidoctor/rsd/converter.rb +38 -23
- data/lib/asciidoctor/rsd/isodoc.rng +1 -1
- data/lib/asciidoctor/rsd/isostandard.rng +64 -15
- data/lib/asciidoctor/rsd/m3d.rng +154 -0
- data/lib/asciidoctor/rsd/version.rb +1 -1
- data/lib/{asciidoctor → isodoc}/rsd/html/dots-w@2x.png +0 -0
- data/lib/{asciidoctor → isodoc}/rsd/html/dots@2x.png +0 -0
- data/lib/{asciidoctor → isodoc}/rsd/html/header.html +8 -8
- data/lib/{asciidoctor → isodoc}/rsd/html/html_rsd_intro.html +0 -0
- data/lib/{asciidoctor → isodoc}/rsd/html/html_rsd_titlepage.html +11 -9
- data/lib/{asciidoctor → isodoc}/rsd/html/htmlstyle.scss +184 -95
- data/lib/isodoc/rsd/html/logo.jpg +0 -0
- data/lib/{asciidoctor → isodoc}/rsd/html/rsd.scss +2 -2
- data/lib/isodoc/rsd/html/scripts.html +82 -0
- data/lib/isodoc/rsd/html/word_rsd_intro.html +72 -0
- data/lib/isodoc/rsd/html/word_rsd_titlepage.html +54 -0
- data/lib/isodoc/rsd/html/wordstyle.scss +944 -0
- data/lib/isodoc/rsd/metadata.rb +82 -0
- data/lib/{asciidoctor/rsd/rsdconvert.rb → isodoc/rsd/rsdhtmlconvert.rb} +69 -73
- data/lib/isodoc/rsd/rsdhtmlrender.rb +68 -0
- data/lib/isodoc/rsd/rsdwordconvert.rb +88 -0
- data/lib/isodoc/rsd/rsdwordrender.rb +68 -0
- metadata +25 -16
- data/lib/asciidoctor/rsd/html/scripts.html +0 -68
@@ -0,0 +1,154 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
3
|
+
<!--
|
4
|
+
Currently we inherit from a namespaced grammar, isostandard. Until we inherit from isodoc,
|
5
|
+
we cannot have a new default namespace: we will end up with a grammar with two different
|
6
|
+
namespaces, one for isostandard and one for csand additions. And we do not want that.
|
7
|
+
-->
|
8
|
+
<include href="isostandard.rng">
|
9
|
+
<start>
|
10
|
+
<ref name="m3d-standard"/>
|
11
|
+
</start>
|
12
|
+
<define name="language">
|
13
|
+
<element name="language">
|
14
|
+
<value>en</value>
|
15
|
+
</element>
|
16
|
+
</define>
|
17
|
+
<define name="docidentifier">
|
18
|
+
<element name="docidentifier">
|
19
|
+
<text/>
|
20
|
+
</element>
|
21
|
+
</define>
|
22
|
+
<define name="btitle">
|
23
|
+
<element name="title">
|
24
|
+
<ref name="FormattedString"/>
|
25
|
+
</element>
|
26
|
+
</define>
|
27
|
+
<define name="figure">
|
28
|
+
<element name="figure">
|
29
|
+
<attribute name="id">
|
30
|
+
<data type="ID"/>
|
31
|
+
</attribute>
|
32
|
+
<optional>
|
33
|
+
<ref name="source"/>
|
34
|
+
</optional>
|
35
|
+
<optional>
|
36
|
+
<ref name="tname"/>
|
37
|
+
</optional>
|
38
|
+
<choice>
|
39
|
+
<oneOrMore>
|
40
|
+
<ref name="figure"/>
|
41
|
+
</oneOrMore>
|
42
|
+
<group>
|
43
|
+
<choice>
|
44
|
+
<zeroOrMore>
|
45
|
+
<ref name="TextElement"/>
|
46
|
+
</zeroOrMore>
|
47
|
+
<ref name="pre"/>
|
48
|
+
</choice>
|
49
|
+
<zeroOrMore>
|
50
|
+
<ref name="note"/>
|
51
|
+
</zeroOrMore>
|
52
|
+
<optional>
|
53
|
+
<ref name="dl"/>
|
54
|
+
</optional>
|
55
|
+
</group>
|
56
|
+
</choice>
|
57
|
+
</element>
|
58
|
+
</define>
|
59
|
+
<define name="status">
|
60
|
+
<element name="status">
|
61
|
+
<choice>
|
62
|
+
<value>proposal</value>
|
63
|
+
<value>working-draft</value>
|
64
|
+
<value>committee-draft</value>
|
65
|
+
<value>draft-standard</value>
|
66
|
+
<value>final-draft</value>
|
67
|
+
<value>published</value>
|
68
|
+
<value>withdrawn</value>
|
69
|
+
<ref name="LocalizedString"/>
|
70
|
+
</choice>
|
71
|
+
</element>
|
72
|
+
</define>
|
73
|
+
<!-- TextElement |= keyword -->
|
74
|
+
<define name="TextElement">
|
75
|
+
<choice>
|
76
|
+
<text/>
|
77
|
+
<ref name="em"/>
|
78
|
+
<ref name="eref"/>
|
79
|
+
<ref name="strong"/>
|
80
|
+
<ref name="stem"/>
|
81
|
+
<ref name="sub"/>
|
82
|
+
<ref name="sup"/>
|
83
|
+
<ref name="tt"/>
|
84
|
+
<ref name="strike"/>
|
85
|
+
<ref name="smallcap"/>
|
86
|
+
<ref name="xref"/>
|
87
|
+
<ref name="br"/>
|
88
|
+
<ref name="hyperlink"/>
|
89
|
+
<ref name="hr"/>
|
90
|
+
<ref name="pagebreak"/>
|
91
|
+
<ref name="bookmark"/>
|
92
|
+
<ref name="keyword"/>
|
93
|
+
</choice>
|
94
|
+
</define>
|
95
|
+
<define name="BibItemType" combine="choice">
|
96
|
+
<choice>
|
97
|
+
<value>guidance</value>
|
98
|
+
<value>proposal</value>
|
99
|
+
<value>standard</value>
|
100
|
+
<value>report</value>
|
101
|
+
<value>whitepaper</value>
|
102
|
+
<value>charter</value>
|
103
|
+
<value>policy</value>
|
104
|
+
<value>glossary</value>
|
105
|
+
<value>case-study</value>
|
106
|
+
</choice>
|
107
|
+
</define>
|
108
|
+
<define name="editorialgroup">
|
109
|
+
<element name="editorialgroup">
|
110
|
+
<ref name="committee"/>
|
111
|
+
</element>
|
112
|
+
</define>
|
113
|
+
</include>
|
114
|
+
<define name="committee">
|
115
|
+
<element name="committee">
|
116
|
+
<attribute name="type">
|
117
|
+
<choice>
|
118
|
+
<value>technical</value>
|
119
|
+
<value>provisional</value>
|
120
|
+
</choice>
|
121
|
+
</attribute>
|
122
|
+
<text/>
|
123
|
+
</element>
|
124
|
+
</define>
|
125
|
+
<define name="pre">
|
126
|
+
<element name="pre">
|
127
|
+
<text/>
|
128
|
+
</element>
|
129
|
+
</define>
|
130
|
+
<define name="keyword">
|
131
|
+
<element name="keyword">
|
132
|
+
<text/>
|
133
|
+
</element>
|
134
|
+
</define>
|
135
|
+
<define name="m3d-standard">
|
136
|
+
<element name="m3d-standard">
|
137
|
+
<ref name="bibdata"/>
|
138
|
+
<optional>
|
139
|
+
<ref name="version"/>
|
140
|
+
</optional>
|
141
|
+
<zeroOrMore>
|
142
|
+
<ref name="termdocsource"/>
|
143
|
+
</zeroOrMore>
|
144
|
+
<ref name="preface"/>
|
145
|
+
<oneOrMore>
|
146
|
+
<ref name="sections"/>
|
147
|
+
</oneOrMore>
|
148
|
+
<zeroOrMore>
|
149
|
+
<ref name="annex"/>
|
150
|
+
</zeroOrMore>
|
151
|
+
<ref name="bibliography"/>
|
152
|
+
</element>
|
153
|
+
</define>
|
154
|
+
</grammar>
|
File without changes
|
File without changes
|
@@ -74,7 +74,7 @@ mso-line-height-rule:exactly'><span lang=EN-GB>CS {{ docnumber }}:{{ docyea
|
|
74
74
|
|
75
75
|
<p class=MsoHeader style='margin-bottom:18.0pt'><span lang=EN-GB
|
76
76
|
style='font-size:10.0pt;mso-bidi-font-size:11.0pt;font-weight:normal'>©
|
77
|
-
|
77
|
+
Ribose Group Inc. {{ docyear }} – All rights reserved</span><span lang=EN-GB
|
78
78
|
style='font-weight:normal'><o:p></o:p></span></p>
|
79
79
|
|
80
80
|
</div>
|
@@ -93,21 +93,21 @@ style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
|
93
93
|
mso-bidi-font-size:11.0pt'><span style='mso-element:field-end'></span></span></b><![endif]--><span
|
94
94
|
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
95
95
|
style='mso-tab-count:1'> </span>©
|
96
|
-
|
96
|
+
Ribose Group Inc. {{ docyear }} – All rights reserved<o:p></o:p></span></p>
|
97
97
|
|
98
98
|
</div>
|
99
99
|
|
100
100
|
<div style='mso-element:header' id=eh2>
|
101
101
|
|
102
102
|
<p class=MsoHeader align=left style='text-align:left;line-height:12.0pt;
|
103
|
-
mso-line-height-rule:exactly'><span lang=EN-GB>
|
103
|
+
mso-line-height-rule:exactly'><span lang=EN-GB>Ribose Group Inc. {{ docnumber }}:{{ docyear }}</span></p>
|
104
104
|
|
105
105
|
</div>
|
106
106
|
|
107
107
|
<div style='mso-element:header' id=h2>
|
108
108
|
|
109
109
|
<p class=MsoHeader align=right style='text-align:right;line-height:12.0pt;
|
110
|
-
mso-line-height-rule:exactly'><span lang=EN-GB>
|
110
|
+
mso-line-height-rule:exactly'><span lang=EN-GB>Ribose Group Inc. {{ docnumber }}:{{ docyear }}</span></p>
|
111
111
|
|
112
112
|
</div>
|
113
113
|
|
@@ -124,14 +124,14 @@ lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
|
124
124
|
style='mso-element:field-end'></span></span><![endif]--><span lang=EN-GB
|
125
125
|
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span style='mso-tab-count:
|
126
126
|
1'> </span>©
|
127
|
-
|
127
|
+
Ribose Group Inc. {{ docyear }} – All rights reserved<o:p></o:p></span></p>
|
128
128
|
|
129
129
|
</div>
|
130
130
|
|
131
131
|
<div style='mso-element:footer' id=f2>
|
132
132
|
|
133
133
|
<p class=MsoFooter style='line-height:12.0pt'><span lang=EN-GB
|
134
|
-
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>©
|
134
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>© Ribose Group Inc. {{ docyear }} – All
|
135
135
|
rights reserved<span style='mso-tab-count:1'> </span></span><!--[if supportFields]><span
|
136
136
|
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
137
137
|
style='mso-element:field-begin'></span> PAGE<span style='mso-spacerun:yes'>
|
@@ -158,14 +158,14 @@ style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
|
158
158
|
mso-bidi-font-size:11.0pt'><span style='mso-element:field-end'></span></span></b><![endif]--><span
|
159
159
|
lang=EN-GB style='font-size:10.0pt;mso-bidi-font-size:11.0pt'><span
|
160
160
|
style='mso-tab-count:1'> </span>©
|
161
|
-
|
161
|
+
Ribose Group Inc. {{ docyear }} – All rights reserved<o:p></o:p></span></p>
|
162
162
|
|
163
163
|
</div>
|
164
164
|
|
165
165
|
<div style='mso-element:footer' id=f3>
|
166
166
|
|
167
167
|
<p class=MsoFooter style='line-height:12.0pt'><span lang=EN-GB
|
168
|
-
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>©
|
168
|
+
style='font-size:10.0pt;mso-bidi-font-size:11.0pt'>© Ribose Group Inc. {{ docyear }} – All
|
169
169
|
rights reserved<span style='mso-tab-count:1'> </span></span><!--[if supportFields]><b
|
170
170
|
style='mso-bidi-font-weight:normal'><span lang=EN-GB style='font-size:10.0pt;
|
171
171
|
mso-bidi-font-size:11.0pt'><span style='mso-element:field-begin'></span>
|
File without changes
|
@@ -30,14 +30,16 @@
|
|
30
30
|
</div>
|
31
31
|
|
32
32
|
<div class="coverpage-logo">
|
33
|
-
<span>
|
33
|
+
<span>Ribose Group Inc.</span>
|
34
34
|
</div>
|
35
35
|
|
36
36
|
<div class="coverpage-tc-name">
|
37
|
-
<span>
|
37
|
+
<span>{{ tc }}</span>
|
38
38
|
</div>
|
39
39
|
</div>
|
40
40
|
|
41
|
+
<div class="wrapper-top-bottom"></div>
|
42
|
+
|
41
43
|
<div class="WordSection11">
|
42
44
|
<div class="coverpage-stage-block" >
|
43
45
|
<span class="coverpage-stage" id="{{ doctype | replace: ' ', '-' | downcase }}">Ribose {{ doctype }}</span>
|
@@ -63,7 +65,7 @@
|
|
63
65
|
|
64
66
|
<div class="copyright">
|
65
67
|
<p class="year">
|
66
|
-
© {{ docyear }}
|
68
|
+
© {{ docyear }} Ribose Group Inc.
|
67
69
|
</p>
|
68
70
|
|
69
71
|
<p class="message">
|
@@ -75,15 +77,15 @@
|
|
75
77
|
</p>
|
76
78
|
|
77
79
|
<div class="contact-info">
|
78
|
-
<p class="name">
|
80
|
+
<p class="name">Ribose Group Inc.</p>
|
79
81
|
<p class="address">
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
82
|
+
Suite 1, 8/F, New Henry House<br />
|
83
|
+
10 Ice House Street<br />
|
84
|
+
Central<br />
|
85
|
+
Hong Kong<br />
|
84
86
|
<br />
|
85
87
|
<a href="mailto:copyright@ribose.com">copyright@ribose.com</a><br />
|
86
|
-
<a href="open.ribose.com">
|
88
|
+
<a href="open.ribose.com">www.ribose.com</a>
|
87
89
|
</p>
|
88
90
|
</div>
|
89
91
|
</div>
|
@@ -7,6 +7,23 @@
|
|
7
7
|
License: none (public domain)
|
8
8
|
*/
|
9
9
|
|
10
|
+
html, body, div, span, applet, object, iframe,
|
11
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
12
|
+
a, abbr, acronym, address, big, cite, code,
|
13
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
14
|
+
small, strike, strong, sub, sup, tt, var,
|
15
|
+
b, u, i, center,
|
16
|
+
ol, ul, li,
|
17
|
+
fieldset, form, label, legend,
|
18
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
19
|
+
article, aside, canvas, details, embed,
|
20
|
+
figure, figcaption, footer, header, hgroup,
|
21
|
+
menu, nav, output, ruby, section, summary,
|
22
|
+
time, mark, audio, video {
|
23
|
+
margin: 0;
|
24
|
+
padding: 0;
|
25
|
+
}
|
26
|
+
|
10
27
|
html, body, div, span, applet, object, iframe,
|
11
28
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
12
29
|
a, abbr, acronym, address, big, cite, code,
|
@@ -16,17 +33,68 @@ b, u, i, center,
|
|
16
33
|
dl, dt, dd, ol, ul, li,
|
17
34
|
fieldset, form, label, legend,
|
18
35
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
19
|
-
article, aside, canvas, details, embed,
|
20
|
-
figure, figcaption, footer, header, hgroup,
|
36
|
+
article, aside, canvas, details, embed,
|
37
|
+
figure, figcaption, footer, header, hgroup,
|
21
38
|
menu, nav, output, ruby, section, summary,
|
22
39
|
time, mark, audio, video {
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
40
|
+
border: 0;
|
41
|
+
font-size: 100%;
|
42
|
+
}
|
43
|
+
|
44
|
+
html, body, div, span, applet, object, iframe,
|
45
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
46
|
+
a, abbr, acronym, address, big, cite, code,
|
47
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
48
|
+
small, strike, strong, tt, var,
|
49
|
+
b, u, i, center,
|
50
|
+
dl, dd, ol, ul, li,
|
51
|
+
fieldset, form, label, legend,
|
52
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
53
|
+
article, aside, canvas, details, embed,
|
54
|
+
figure, figcaption, footer, header, hgroup,
|
55
|
+
menu, nav, output, ruby, section, summary,
|
56
|
+
time, mark, audio, video {
|
57
|
+
vertical-align: baseline;
|
58
|
+
}
|
59
|
+
|
60
|
+
|
61
|
+
html, body, div, span, applet, object, iframe,
|
62
|
+
p, blockquote, pre,
|
63
|
+
a, abbr, acronym, address, big, cite, code,
|
64
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
65
|
+
small, strike, strong, sub, sup, tt, var,
|
66
|
+
b, u, i, center,
|
67
|
+
dl, dt, dd, ol, ul, li,
|
68
|
+
fieldset, form, label, legend,
|
69
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
70
|
+
article, aside, canvas, details, embed,
|
71
|
+
figure, figcaption, footer, header, hgroup,
|
72
|
+
menu, nav, output, ruby, section, summary,
|
73
|
+
time, mark, audio, video {
|
74
|
+
font-family: $bodyfont;
|
75
|
+
}
|
76
|
+
|
77
|
+
h1, h2, h3, h4, h5, h6, .h2Annex {
|
78
|
+
font-family: $headerfont;
|
79
|
+
}
|
80
|
+
|
81
|
+
dl {
|
82
|
+
display: grid;
|
83
|
+
grid-template-columns: max-content auto;
|
84
|
+
}
|
85
|
+
|
86
|
+
dt {
|
87
|
+
grid-column-start: 1;
|
88
|
+
}
|
89
|
+
|
90
|
+
dd {
|
91
|
+
grid-column-start: 2;
|
92
|
+
}
|
93
|
+
|
94
|
+
dd p, dt p {
|
95
|
+
margin-top: 0px;
|
29
96
|
}
|
97
|
+
|
30
98
|
/* HTML5 display-role reset for older browsers */
|
31
99
|
article, aside, details, figcaption, figure,
|
32
100
|
footer, header, hgroup, menu, nav, section {
|
@@ -35,11 +103,7 @@ footer, header, hgroup, menu, nav, section {
|
|
35
103
|
body {
|
36
104
|
line-height: 1;
|
37
105
|
}
|
38
|
-
|
39
|
-
ol, ul {
|
40
|
-
list-style: none;
|
41
|
-
}
|
42
|
-
*/
|
106
|
+
|
43
107
|
blockquote, q {
|
44
108
|
quotes: none;
|
45
109
|
}
|
@@ -100,7 +164,7 @@ table {
|
|
100
164
|
position: fixed;
|
101
165
|
height: 100%;
|
102
166
|
width: 30px;
|
103
|
-
background-color:#
|
167
|
+
background-color:#1661AD;
|
104
168
|
color: white!important;
|
105
169
|
cursor: pointer;
|
106
170
|
z-index: 100;
|
@@ -115,7 +179,6 @@ table {
|
|
115
179
|
|
116
180
|
}
|
117
181
|
|
118
|
-
|
119
182
|
.container {
|
120
183
|
padding-left: 360px;
|
121
184
|
}
|
@@ -176,13 +239,15 @@ table {
|
|
176
239
|
}
|
177
240
|
|
178
241
|
#toc .toc-active, #toc li:hover {
|
179
|
-
background: #
|
180
|
-
box-shadow: inset -5px 0px 10px -5px #
|
242
|
+
background: #1661AD;
|
243
|
+
box-shadow: inset -5px 0px 10px -5px #1661AD!important;
|
181
244
|
|
182
245
|
}
|
183
246
|
|
184
247
|
#toc li:hover a {
|
185
248
|
color: white;
|
249
|
+
background: none;
|
250
|
+
box-shadow: none;
|
186
251
|
}
|
187
252
|
|
188
253
|
/*
|
@@ -239,7 +304,7 @@ p.document-type, p.document-stage {
|
|
239
304
|
|
240
305
|
p.document-type {
|
241
306
|
font-weight: 400;
|
242
|
-
height:
|
307
|
+
height: 150;
|
243
308
|
}
|
244
309
|
|
245
310
|
#governance-band p.document-type {
|
@@ -253,11 +318,11 @@ p.document-stage {
|
|
253
318
|
}
|
254
319
|
|
255
320
|
#standard-band {
|
256
|
-
background-color: #
|
321
|
+
background-color: #9ABD48;
|
257
322
|
}
|
258
323
|
|
259
324
|
#standard {
|
260
|
-
border-bottom: solid 3px #
|
325
|
+
border-bottom: solid 3px #9ABD48;
|
261
326
|
}
|
262
327
|
|
263
328
|
#governance {
|
@@ -284,20 +349,12 @@ p.document-stage {
|
|
284
349
|
text-transform: uppercase;
|
285
350
|
}
|
286
351
|
|
287
|
-
#proposal {
|
288
|
-
border-bottom: solid 3px #00BFFF;
|
289
|
-
}
|
290
|
-
|
291
|
-
#proposal-band {
|
292
|
-
background-color: #00BFFF;
|
293
|
-
}
|
294
|
-
|
295
352
|
#working-draft {
|
296
|
-
border-bottom: solid 3px #
|
353
|
+
border-bottom: solid 3px #F7803C;
|
297
354
|
}
|
298
355
|
|
299
356
|
#working-draft-band {
|
300
|
-
background-color: #
|
357
|
+
background-color: #F7803C;
|
301
358
|
}
|
302
359
|
|
303
360
|
#committee-draft {
|
@@ -316,28 +373,20 @@ p.document-stage {
|
|
316
373
|
background-color: #fdf906;
|
317
374
|
}
|
318
375
|
|
319
|
-
#
|
320
|
-
border-bottom: solid 3px #
|
321
|
-
}
|
322
|
-
|
323
|
-
#final-draft-band {
|
324
|
-
background-color: #7e0d13;
|
325
|
-
}
|
326
|
-
|
327
|
-
#published {
|
328
|
-
border-bottom: solid 3px #0ac442;
|
376
|
+
#standard {
|
377
|
+
border-bottom: solid 3px #9ABD48;
|
329
378
|
}
|
330
379
|
|
331
|
-
#
|
332
|
-
background-color: #
|
380
|
+
#standard-band {
|
381
|
+
background-color: #9ABD48;
|
333
382
|
}
|
334
383
|
|
335
|
-
#
|
336
|
-
border-bottom: solid 3px #
|
384
|
+
#obsolete {
|
385
|
+
border-bottom: solid 3px #7e0d13;
|
337
386
|
}
|
338
387
|
|
339
|
-
#
|
340
|
-
background-color: #
|
388
|
+
#obsolete-band {
|
389
|
+
background-color: #7e0d13;
|
341
390
|
}
|
342
391
|
|
343
392
|
/*
|
@@ -350,14 +399,14 @@ p.document-stage {
|
|
350
399
|
|
351
400
|
h1,h2,h3,h4,h5,h6 {
|
352
401
|
font-family: $headerfont;
|
353
|
-
color: #
|
354
|
-
font-weight:
|
402
|
+
color: #1661AD;
|
403
|
+
font-weight: 300;
|
355
404
|
margin-top: 2em;
|
356
405
|
margin-bottom: 0.3em;
|
357
406
|
}
|
358
407
|
|
359
408
|
h1 {
|
360
|
-
font-size: 1.
|
409
|
+
font-size: 1.6em;
|
361
410
|
text-transform: uppercase;
|
362
411
|
margin-top: 2em;
|
363
412
|
}
|
@@ -366,26 +415,15 @@ p.document-stage {
|
|
366
415
|
margin-top: 2em;
|
367
416
|
}
|
368
417
|
|
369
|
-
h2 {font-size: 1.
|
418
|
+
h2 {font-size: 1.5em;
|
419
|
+
font-weight: 400; }
|
370
420
|
|
371
|
-
h3 {font-size: 1.1em;
|
372
|
-
|
373
|
-
span[id^="toc"]:after {
|
374
|
-
float: left;
|
375
|
-
padding-right: 4px;
|
376
|
-
margin-left: -20px;
|
377
|
-
font-family: "Font Awesome 5 Free";
|
378
|
-
font-weight: 900;
|
379
|
-
font-size: 0.8em;
|
380
|
-
color: #cfcfcf;
|
381
|
-
content: "\f0c1";
|
382
|
-
}
|
421
|
+
h3 {font-size: 1.1em;
|
422
|
+
font-weight: 100;}
|
383
423
|
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
color: #485094;
|
388
|
-
font-weight: 400;
|
424
|
+
.TermNum, .Terms, .AltTerms {
|
425
|
+
color: #1661AD;
|
426
|
+
font-weight: 100;
|
389
427
|
}
|
390
428
|
|
391
429
|
p.TermNum {
|
@@ -401,10 +439,12 @@ p.document-stage {
|
|
401
439
|
margin: 0;
|
402
440
|
}
|
403
441
|
|
442
|
+
/*
|
404
443
|
p.AltTerms {
|
405
444
|
font-style: italic;
|
406
445
|
margin: 0;
|
407
446
|
}
|
447
|
+
*/
|
408
448
|
|
409
449
|
/*
|
410
450
|
3.2 Links
|
@@ -417,17 +457,17 @@ p.document-stage {
|
|
417
457
|
|
418
458
|
a:hover {
|
419
459
|
color: white;
|
420
|
-
background: #
|
421
|
-
box-shadow: 3px 0 0 #
|
460
|
+
background: #1661AD;
|
461
|
+
box-shadow: 3px 0 0 #1661AD, -3px 0 0 #1661AD;
|
422
462
|
/* padding: 2px 0 2px 0; */
|
423
463
|
}
|
424
464
|
|
425
465
|
::selection {
|
426
|
-
background: #
|
466
|
+
background: #1661AD; /* WebKit/Blink Browsers */
|
427
467
|
color: white;
|
428
468
|
}
|
429
469
|
::-moz-selection {
|
430
|
-
background: #
|
470
|
+
background: #1661AD; /* Gecko Browsers */
|
431
471
|
color: white;
|
432
472
|
}
|
433
473
|
|
@@ -444,12 +484,36 @@ p.document-stage {
|
|
444
484
|
3.3 Lists
|
445
485
|
*/
|
446
486
|
|
447
|
-
ul {margin-left:
|
487
|
+
ul {margin-left: 1.2em;}
|
488
|
+
|
489
|
+
ul li {
|
490
|
+
list-style: none;
|
491
|
+
}
|
492
|
+
|
493
|
+
li:before {
|
494
|
+
content: "—";
|
495
|
+
display: inline-block; width: 1em;
|
496
|
+
margin-left: -1.2em;
|
497
|
+
}
|
498
|
+
|
499
|
+
ul li p {
|
500
|
+
display: inline;
|
501
|
+
}
|
502
|
+
|
503
|
+
ul li:first-child {
|
504
|
+
margin-top: 1em;
|
505
|
+
}
|
448
506
|
|
449
507
|
#toc-list ul {margin-bottom: 0.25em;}
|
450
508
|
|
451
509
|
#toc-list li {list-style-type: none;}
|
452
510
|
|
511
|
+
#toc li:before {
|
512
|
+
content: " ";
|
513
|
+
display: none;
|
514
|
+
}
|
515
|
+
|
516
|
+
|
453
517
|
/*
|
454
518
|
3.4 Rules
|
455
519
|
*/
|
@@ -465,7 +529,7 @@ p.document-stage {
|
|
465
529
|
3.5 Bibliograhy
|
466
530
|
*/
|
467
531
|
|
468
|
-
p.Biblio {
|
532
|
+
p.Biblio, p.NormRef {
|
469
533
|
margin-top: 1em;
|
470
534
|
margin-left: 2em;
|
471
535
|
}
|
@@ -596,7 +660,8 @@ a.footnote-number {
|
|
596
660
|
*/
|
597
661
|
|
598
662
|
.contact-info {
|
599
|
-
background-color: #
|
663
|
+
background-color: #1661AD;
|
664
|
+
color: white;
|
600
665
|
padding: 2em;
|
601
666
|
margin-top: 5em;
|
602
667
|
width: auto;
|
@@ -605,6 +670,11 @@ a.footnote-number {
|
|
605
670
|
text-align: left;
|
606
671
|
}
|
607
672
|
|
673
|
+
.contact-info a,
|
674
|
+
.contact-info a:hover {
|
675
|
+
color: white;
|
676
|
+
}
|
677
|
+
|
608
678
|
.contact-info p, .contact-info a {
|
609
679
|
font-family: $monospacefont;
|
610
680
|
font-weight: 400;
|
@@ -639,6 +709,11 @@ p {
|
|
639
709
|
margin-bottom: 1em;
|
640
710
|
}
|
641
711
|
|
712
|
+
h2 p {
|
713
|
+
display: inline;
|
714
|
+
}
|
715
|
+
|
716
|
+
|
642
717
|
/*
|
643
718
|
4.0 Page header
|
644
719
|
*/
|
@@ -648,13 +723,20 @@ p {
|
|
648
723
|
*/
|
649
724
|
|
650
725
|
.wrapper-top {
|
651
|
-
background-color:#
|
726
|
+
background-color:#1661AD;
|
652
727
|
/* background-image: url("img/dots@2x.png"); */
|
653
|
-
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAACXBIWXMAABYlAAAWJQFJUiTwAAADwUlEQVR4nO3YgQ2AMAwDwcAiWZ1NizrH30lIeIEq9nPOGSDqPgC7+93v/suy3Mmvhx+6VAAIcwFAmc4nyzYAIMgGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAERSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAIS5AKCs3oFk2QYAJNkAIMwFAGX1DiTLNgAgyQYAYS4AKKt3IFm2AQBJNgAIcwFAWb0DybINAEiyAUCYCwDK6h1Ilm0AQJINAMJcAFBW70CybAMAkmwAEOYCgLJ6B5JlGwCQZAOAMBcAlNU7kCzbAIAkGwCEuQCgrN6BZNkGACTZACDMBQBl9Q4kyzYAIMkGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAERSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAIS5AKCs3oFk2QYAJNkAIMwFAGX1DiTLNgAgyQYAYS4AKKt3IFm2AQBJNgAIcwFAWb0DybINAEiyAUCYCwDK6h1Ilm0AQJINAMJcAFBW70CybAMAkmwAEOYCgLJ6B5JlGwCQZAOAMBcAlNU7kCzbAIAkGwCEuQCgrN6BZNkGACTZACDMBQBl9Q4kyzYAIMkGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAERSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAFTNzA9ggAr9aahO8QAAAABJRU5ErkJggg==');
|
654
728
|
color: #ffffff;
|
655
729
|
padding: 2em 0;
|
656
730
|
}
|
657
731
|
|
732
|
+
.wrapper-top-bottom {
|
733
|
+
width: 0;
|
734
|
+
height: 0;
|
735
|
+
border-top: 100px solid #1661AD;
|
736
|
+
border-right: 100px solid transparent;
|
737
|
+
position: absolute;
|
738
|
+
}
|
739
|
+
|
658
740
|
.doc-number {
|
659
741
|
font-size: 0.5em;
|
660
742
|
font-family: $bodyfont;
|
@@ -664,14 +746,18 @@ p {
|
|
664
746
|
padding-bottom: 0.5em;
|
665
747
|
font-family: $headerfont;
|
666
748
|
font-size: 1.5em;
|
667
|
-
|
749
|
+
line-height: 1.2em;
|
750
|
+
font-weight: 100;
|
751
|
+
padding-left: 1em;
|
752
|
+
padding-right: 1em;
|
753
|
+
text-transform: uppercase;
|
668
754
|
}
|
669
755
|
|
670
756
|
.WordSection11 {
|
671
757
|
padding: 0 2em 0 3em;
|
672
758
|
}
|
673
759
|
|
674
|
-
.
|
760
|
+
.prefatory-section {
|
675
761
|
padding: 0 3em 0 6em;
|
676
762
|
}
|
677
763
|
|
@@ -683,12 +769,13 @@ p {
|
|
683
769
|
|
684
770
|
.coverpage {
|
685
771
|
text-align: center;
|
772
|
+
padding-left: 1.5em;
|
686
773
|
}
|
687
774
|
|
688
775
|
.coverpage-logo span, .coverpage-tc-name span {
|
689
776
|
font-family: $bodyfont;
|
690
|
-
text-transform:
|
691
|
-
font-weight:
|
777
|
+
text-transform: none;
|
778
|
+
font-weight: 300;
|
692
779
|
}
|
693
780
|
|
694
781
|
.coverpage-tc-name {
|
@@ -706,7 +793,6 @@ p {
|
|
706
793
|
line-height: 2em;
|
707
794
|
}
|
708
795
|
|
709
|
-
|
710
796
|
.coverpage-title .title-second {
|
711
797
|
display: none;
|
712
798
|
}
|
@@ -719,32 +805,27 @@ p {
|
|
719
805
|
text-transform: uppercase;
|
720
806
|
}
|
721
807
|
|
722
|
-
|
723
|
-
|
724
|
-
|
725
808
|
/*
|
726
809
|
4.3 Draft Warning
|
727
810
|
*/
|
728
811
|
|
729
|
-
|
730
812
|
.coverpage-warning {
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
813
|
+
background: #f36f36;
|
814
|
+
color: white!important;
|
815
|
+
margin: 1em 2em;
|
816
|
+
color: #485094;
|
817
|
+
padding: 2em 1em 1em 1em;
|
818
|
+
border-radius: 25px;
|
736
819
|
}
|
737
820
|
|
738
821
|
.coverpage-warning .title {
|
739
|
-
color: #f36f36;
|
740
822
|
font-family: $headerfont;
|
741
|
-
font-weight:
|
823
|
+
font-weight: 300;
|
742
824
|
text-transform: uppercase;
|
743
825
|
font-size: 1.2em;
|
744
826
|
}
|
745
827
|
|
746
828
|
|
747
|
-
|
748
829
|
/*
|
749
830
|
4.4 Copyright
|
750
831
|
*/
|
@@ -756,7 +837,7 @@ p {
|
|
756
837
|
}
|
757
838
|
|
758
839
|
|
759
|
-
.copyright .name, .copyright .address {color: #485094;}
|
840
|
+
/* .copyright .name, .copyright .address {color: #485094;} */
|
760
841
|
|
761
842
|
|
762
843
|
|
@@ -780,14 +861,22 @@ To top button
|
|
780
861
|
font-size: 12px;
|
781
862
|
border: none;
|
782
863
|
outline: none;
|
783
|
-
background-color: #
|
864
|
+
background-color: #1f8ca0;
|
784
865
|
opacity: 0.15;
|
785
866
|
color: white;
|
786
867
|
cursor: pointer;
|
787
868
|
padding: 10px 15px 10px 15px;
|
788
869
|
border-radius: 4px;
|
870
|
+
text-transform: uppercase;
|
789
871
|
}
|
790
872
|
|
791
873
|
#myBtn:hover {
|
792
874
|
opacity: 1;
|
793
875
|
}
|
876
|
+
|
877
|
+
a.anchorjs-link:hover {
|
878
|
+
background: none;
|
879
|
+
color: #485094;
|
880
|
+
box-shadow: none;
|
881
|
+
}
|
882
|
+
|