metanorma-m3aawg 1.4.1 → 1.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +2 -0
- data/lib/asciidoctor/m3aawg/converter.rb +4 -33
- data/lib/asciidoctor/m3aawg/isodoc.rng +16 -7
- data/lib/isodoc/m3aawg/base_convert.rb +0 -32
- data/lib/isodoc/m3aawg/html/htmlstyle.css +1030 -0
- data/lib/isodoc/m3aawg/html/m3d.css +758 -0
- data/lib/isodoc/m3aawg/html/m3d.scss +0 -1
- data/lib/isodoc/m3aawg/html/wordstyle.css +1278 -0
- data/lib/isodoc/m3aawg/html/wordstyle.scss +0 -1
- data/lib/isodoc/m3aawg/html_convert.rb +2 -0
- data/lib/isodoc/m3aawg/i18n-en.yaml +1 -0
- data/lib/isodoc/m3aawg/i18n.rb +10 -0
- data/lib/isodoc/m3aawg/init.rb +27 -0
- data/lib/isodoc/m3aawg/m3d.report.xsl +1506 -1172
- data/lib/isodoc/m3aawg/presentation_xml_convert.rb +10 -1
- data/lib/isodoc/m3aawg/word_convert.rb +2 -0
- data/lib/isodoc/m3aawg/xref.rb +6 -0
- data/lib/metanorma/m3aawg/processor.rb +1 -1
- data/lib/metanorma/m3aawg/version.rb +1 -1
- data/metanorma-m3d.gemspec +3 -7
- metadata +24 -59
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22aff62dc924926aa7ab09848015f5e7ff323ea2b59ddb4722105e45fb705ac9
|
4
|
+
data.tar.gz: 6fd9fef7b7512f11a6f43746257f4a41d1d9452fe07d39bd6f93166b0e76b047
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d32906798587b973eff3894283069181f6add337ee2b3d40522821302a102553c1e0dcb9e4496bcc1078f30b546d4ed4c3e31ee99d449ca883a2af9a01d1fd1
|
7
|
+
data.tar.gz: e030f5e5de744da5097a66df718a8c171cec2c9536e50bf9df9ac1f67d119c088f9c223d32a7e99915902761547c98ff8bd08d456ed3b5a0d95b1c0db32d7b7e
|
data/Rakefile
CHANGED
@@ -18,24 +18,8 @@ module Asciidoctor
|
|
18
18
|
|
19
19
|
register_for "m3aawg"
|
20
20
|
|
21
|
-
def
|
22
|
-
|
23
|
-
c.role **{ type: "author" }
|
24
|
-
c.organization do |a|
|
25
|
-
a.name "Messaging Malware and Mobile Anti-Abuse Working Group"
|
26
|
-
a.abbreviation "M3AAWG"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
def metadata_publisher(node, xml)
|
32
|
-
xml.contributor do |c|
|
33
|
-
c.role **{ type: "publisher" }
|
34
|
-
c.organization do |a|
|
35
|
-
a.name "Messaging Malware and Mobile Anti-Abuse Working Group"
|
36
|
-
a.abbreviation "M3AAWG"
|
37
|
-
end
|
38
|
-
end
|
21
|
+
def default_publisher
|
22
|
+
"Messaging Malware and Mobile Anti-Abuse Working Group"
|
39
23
|
end
|
40
24
|
|
41
25
|
def metadata_committee(node, xml)
|
@@ -56,7 +40,7 @@ module Asciidoctor
|
|
56
40
|
docstatus = node.attr("status")
|
57
41
|
dn = node.attr("docnumber")
|
58
42
|
if docstatus
|
59
|
-
abbr = IsoDoc::M3AAWG::Metadata.new("en", "Latn",
|
43
|
+
abbr = IsoDoc::M3AAWG::Metadata.new("en", "Latn", @i18n).
|
60
44
|
stage_abbr(docstatus)
|
61
45
|
dn = "#{dn}(#{abbr})" unless abbr.empty?
|
62
46
|
end
|
@@ -65,19 +49,6 @@ module Asciidoctor
|
|
65
49
|
xml.docnumber { |i| i << node.attr("docnumber") }
|
66
50
|
end
|
67
51
|
|
68
|
-
def metadata_copyright(node, xml)
|
69
|
-
from = node.attr("copyright-year") || Date.today.year
|
70
|
-
xml.copyright do |c|
|
71
|
-
c.from from
|
72
|
-
c.owner do |owner|
|
73
|
-
owner.organization do |o|
|
74
|
-
o.name "Messaging Malware and Mobile Anti-Abuse Working Group"
|
75
|
-
o.abbreviation "M3AAWG"
|
76
|
-
end
|
77
|
-
end
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
52
|
def title_validate(root)
|
82
53
|
nil
|
83
54
|
end
|
@@ -88,7 +59,7 @@ module Asciidoctor
|
|
88
59
|
end
|
89
60
|
|
90
61
|
def doctype(node)
|
91
|
-
d =
|
62
|
+
d = super
|
92
63
|
unless %w{policy best-practices supporting-document report}.include? d
|
93
64
|
@log.add("Document Attributes", nil, "#{d} is not a legal document type: reverting to 'report'")
|
94
65
|
d = "report"
|
@@ -42,8 +42,11 @@
|
|
42
42
|
</define>
|
43
43
|
<define name="xref">
|
44
44
|
<element name="xref">
|
45
|
+
<!-- attribute target { xsd:IDREF }, -->
|
45
46
|
<attribute name="target">
|
46
|
-
<data type="
|
47
|
+
<data type="string">
|
48
|
+
<param name="pattern">\i\c*|\c+#\c+</param>
|
49
|
+
</data>
|
47
50
|
</attribute>
|
48
51
|
<optional>
|
49
52
|
<attribute name="type">
|
@@ -922,6 +925,9 @@
|
|
922
925
|
<optional>
|
923
926
|
<attribute name="script"/>
|
924
927
|
</optional>
|
928
|
+
<optional>
|
929
|
+
<attribute name="type"/>
|
930
|
+
</optional>
|
925
931
|
<optional>
|
926
932
|
<attribute name="obligation">
|
927
933
|
<choice>
|
@@ -961,9 +967,6 @@
|
|
961
967
|
</define>
|
962
968
|
<define name="content-subsection">
|
963
969
|
<element name="clause">
|
964
|
-
<optional>
|
965
|
-
<attribute name="type"/>
|
966
|
-
</optional>
|
967
970
|
<ref name="Content-Section"/>
|
968
971
|
</element>
|
969
972
|
</define>
|
@@ -992,6 +995,9 @@
|
|
992
995
|
</choice>
|
993
996
|
</attribute>
|
994
997
|
</optional>
|
998
|
+
<optional>
|
999
|
+
<attribute name="type"/>
|
1000
|
+
</optional>
|
995
1001
|
<optional>
|
996
1002
|
<ref name="section-title"/>
|
997
1003
|
</optional>
|
@@ -1011,9 +1017,6 @@
|
|
1011
1017
|
</define>
|
1012
1018
|
<define name="clause">
|
1013
1019
|
<element name="clause">
|
1014
|
-
<optional>
|
1015
|
-
<attribute name="type"/>
|
1016
|
-
</optional>
|
1017
1020
|
<ref name="Clause-Section"/>
|
1018
1021
|
</element>
|
1019
1022
|
</define>
|
@@ -1042,6 +1045,9 @@
|
|
1042
1045
|
</choice>
|
1043
1046
|
</attribute>
|
1044
1047
|
</optional>
|
1048
|
+
<optional>
|
1049
|
+
<attribute name="type"/>
|
1050
|
+
</optional>
|
1045
1051
|
<optional>
|
1046
1052
|
<ref name="section-title"/>
|
1047
1053
|
</optional>
|
@@ -1180,6 +1186,9 @@
|
|
1180
1186
|
<optional>
|
1181
1187
|
<attribute name="script"/>
|
1182
1188
|
</optional>
|
1189
|
+
<optional>
|
1190
|
+
<attribute name="type"/>
|
1191
|
+
</optional>
|
1183
1192
|
<optional>
|
1184
1193
|
<attribute name="obligation">
|
1185
1194
|
<choice>
|
@@ -1,40 +1,8 @@
|
|
1
|
-
require_relative "metadata"
|
2
1
|
require "fileutils"
|
3
2
|
|
4
3
|
module IsoDoc
|
5
4
|
module M3AAWG
|
6
5
|
module BaseRender
|
7
|
-
def metadata_init(lang, script, labels)
|
8
|
-
@meta = Metadata.new(lang, script, labels)
|
9
|
-
end
|
10
|
-
|
11
|
-
#def add_image(filenames)
|
12
|
-
#filenames.each do |filename|
|
13
|
-
#FileUtils.cp html_doc_path(filename), File.join(@localdir, filename)
|
14
|
-
#@files_to_delete << File.join(@localdir, filename)
|
15
|
-
#end
|
16
|
-
#end
|
17
|
-
|
18
|
-
def annex_name(annex, name, div)
|
19
|
-
div.h1 **{ class: "Annex" } do |t|
|
20
|
-
t << "#{@xrefs.anchor(annex['id'], :label)} "
|
21
|
-
t.br
|
22
|
-
t.b do |b|
|
23
|
-
name&.children&.each { |c2| parse(c2, b) }
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
def i18n_init(lang, script)
|
29
|
-
super
|
30
|
-
@annex_lbl = "Appendix"
|
31
|
-
@labels["annex"] = "Appendix"
|
32
|
-
end
|
33
|
-
|
34
|
-
def fileloc(loc)
|
35
|
-
File.join(File.dirname(__FILE__), loc)
|
36
|
-
end
|
37
|
-
|
38
6
|
def cleanup(docxml)
|
39
7
|
super
|
40
8
|
term_cleanup(docxml)
|
@@ -0,0 +1,1030 @@
|
|
1
|
+
/*
|
2
|
+
0 CSS RESET
|
3
|
+
*/
|
4
|
+
/* http://meyerweb.com/eric/tools/css/reset/
|
5
|
+
v2.0 | 20110126
|
6
|
+
License: none (public domain)
|
7
|
+
*/
|
8
|
+
/* Colors
|
9
|
+
Orange: #EE9C4F
|
10
|
+
Blue: #69C5DC
|
11
|
+
Drak Gray: #A5A8AB
|
12
|
+
Gray: #69C5DC
|
13
|
+
Light Gray: #F5F6F6
|
14
|
+
*/
|
15
|
+
html, body, div, span, applet, object, iframe,
|
16
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
17
|
+
a, abbr, acronym, address, big, cite, code,
|
18
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
19
|
+
small, strike, strong, sub, sup, tt, var,
|
20
|
+
b, u, i, center,
|
21
|
+
ol, ul, li,
|
22
|
+
fieldset, form, label, legend,
|
23
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
24
|
+
article, aside, canvas, details, embed,
|
25
|
+
figure, figcaption, footer, header, hgroup,
|
26
|
+
menu, nav, output, ruby, section, summary,
|
27
|
+
time, mark, audio, video {
|
28
|
+
margin: 0;
|
29
|
+
padding: 0; }
|
30
|
+
|
31
|
+
html, body, div, span, applet, object, iframe,
|
32
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
33
|
+
a, abbr, acronym, address, big, cite, code,
|
34
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
35
|
+
small, strike, strong, sub, sup, tt, var,
|
36
|
+
b, u, i, center,
|
37
|
+
dl, dt, dd, ol, ul, li,
|
38
|
+
fieldset, form, label, legend,
|
39
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
40
|
+
article, aside, canvas, details, embed,
|
41
|
+
figure, figcaption, footer, header, hgroup,
|
42
|
+
menu, nav, output, ruby, section, summary,
|
43
|
+
time, mark, audio, video {
|
44
|
+
border: 0;
|
45
|
+
font-size: 100%; }
|
46
|
+
|
47
|
+
html, body, div, span, applet, object, iframe,
|
48
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
49
|
+
a, abbr, acronym, address, big, cite, code,
|
50
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
51
|
+
small, strike, strong, tt, var,
|
52
|
+
b, u, i, center,
|
53
|
+
dl, dd, ol, ul, li,
|
54
|
+
fieldset, form, label, legend,
|
55
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
56
|
+
article, aside, canvas, details, embed,
|
57
|
+
figure, figcaption, footer, header, hgroup,
|
58
|
+
menu, nav, output, ruby, section, summary,
|
59
|
+
time, mark, audio, video {
|
60
|
+
vertical-align: baseline; }
|
61
|
+
|
62
|
+
html, body, div, span, applet, object, iframe,
|
63
|
+
p, blockquote,
|
64
|
+
a, abbr, acronym, address, big, cite,
|
65
|
+
del, dfn, em, img, ins, q, s,
|
66
|
+
small, strike, strong, sub, sup, var,
|
67
|
+
b, u, i, center,
|
68
|
+
dl, dt, dd, ol, ul, li,
|
69
|
+
fieldset, form, label, legend,
|
70
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
71
|
+
article, aside, canvas, details, embed,
|
72
|
+
figure, figcaption, footer, header, hgroup,
|
73
|
+
menu, nav, output, ruby, section, summary,
|
74
|
+
time, mark, audio, video {
|
75
|
+
font-family: {{bodyfont}}; }
|
76
|
+
|
77
|
+
code, pre, tt, kbd, samp {
|
78
|
+
font-family: {{monospacefont}};
|
79
|
+
font-variant-ligatures: none; }
|
80
|
+
|
81
|
+
code *, pre *, tt *, kbd *, samp * {
|
82
|
+
font-family: {{monospacefont}} !important;
|
83
|
+
font-variant-ligatures: none; }
|
84
|
+
|
85
|
+
article, aside, details, figcaption, figure,
|
86
|
+
footer, header, hgroup, menu, nav, section {
|
87
|
+
display: block; }
|
88
|
+
|
89
|
+
table {
|
90
|
+
border-collapse: collapse;
|
91
|
+
border-spacing: 0; }
|
92
|
+
|
93
|
+
h1, h2, h3, h4, h5, h6 {
|
94
|
+
font-family: {{headerfont}}; }
|
95
|
+
|
96
|
+
blockquote, q {
|
97
|
+
quotes: none; }
|
98
|
+
blockquote:before, blockquote:after, q:before, q:after {
|
99
|
+
content: '';
|
100
|
+
content: none; }
|
101
|
+
|
102
|
+
.h2Annex {
|
103
|
+
font-family: {{headerfont}}; }
|
104
|
+
|
105
|
+
dl {
|
106
|
+
display: grid;
|
107
|
+
grid-template-columns: max-content auto; }
|
108
|
+
dl dt p, dl dd p {
|
109
|
+
margin-top: 0; }
|
110
|
+
dl dt {
|
111
|
+
grid-column-start: 1; }
|
112
|
+
dl dd {
|
113
|
+
grid-column-start: 2; }
|
114
|
+
|
115
|
+
b, strong {
|
116
|
+
font-weight: bold; }
|
117
|
+
|
118
|
+
div.document-stage-band, div.document-type-band {
|
119
|
+
background-color: #333333; }
|
120
|
+
|
121
|
+
#standard-band {
|
122
|
+
background-color: #0AC442; }
|
123
|
+
|
124
|
+
#standard {
|
125
|
+
border-bottom: solid 3px #0AC442; }
|
126
|
+
|
127
|
+
#directive-band {
|
128
|
+
background-color: #540D6E; }
|
129
|
+
|
130
|
+
#directive {
|
131
|
+
border-bottom: solid 3px #540D6E; }
|
132
|
+
|
133
|
+
#guide-band {
|
134
|
+
background-color: #D183C9; }
|
135
|
+
|
136
|
+
#guide {
|
137
|
+
border-bottom: solid 3px #D183C9; }
|
138
|
+
|
139
|
+
#specification-band {
|
140
|
+
background-color: #65AFFF; }
|
141
|
+
|
142
|
+
#specification {
|
143
|
+
border-bottom: solid 3px #65AFFF; }
|
144
|
+
|
145
|
+
#report-band {
|
146
|
+
background-color: #3A405A; }
|
147
|
+
|
148
|
+
#report {
|
149
|
+
border-bottom: solid 3px #3A405A; }
|
150
|
+
|
151
|
+
#amendment-band {
|
152
|
+
background-color: #F26430; }
|
153
|
+
|
154
|
+
#amendment {
|
155
|
+
border-bottom: solid 3px #F26430; }
|
156
|
+
|
157
|
+
#corrigendum-band {
|
158
|
+
background-color: #C84630; }
|
159
|
+
|
160
|
+
#corrigendum {
|
161
|
+
border-bottom: solid 3px #C84630; }
|
162
|
+
|
163
|
+
#administrative-band {
|
164
|
+
background-color: #BFAE48; }
|
165
|
+
|
166
|
+
#administrative {
|
167
|
+
border-bottom: solid 3px #BFAE48; }
|
168
|
+
|
169
|
+
#advisory-band {
|
170
|
+
background-color: #BD9391; }
|
171
|
+
|
172
|
+
#advisory {
|
173
|
+
border-bottom: solid 3px #BD9391; }
|
174
|
+
|
175
|
+
#proposal-band {
|
176
|
+
background-color: #39A0ED; }
|
177
|
+
|
178
|
+
#proposal {
|
179
|
+
border-bottom: solid 3px #39A0ED; }
|
180
|
+
|
181
|
+
#working-draft-band {
|
182
|
+
background-color: #2D7393; }
|
183
|
+
|
184
|
+
#working-draft {
|
185
|
+
border-bottom: solid 3px #2D7393; }
|
186
|
+
|
187
|
+
#committee-draft-band {
|
188
|
+
background-color: #2A6B7C; }
|
189
|
+
|
190
|
+
#committee-draft {
|
191
|
+
border-bottom: solid 3px #2A6B7C; }
|
192
|
+
|
193
|
+
#draft-standard-band {
|
194
|
+
background-color: #1C7F7A; }
|
195
|
+
|
196
|
+
#draft-standard {
|
197
|
+
border-bottom: solid 3px #1C7F7A; }
|
198
|
+
|
199
|
+
#final-draft-band {
|
200
|
+
background-color: #53C170; }
|
201
|
+
|
202
|
+
#final-draft {
|
203
|
+
border-bottom: solid 3px #53C170; }
|
204
|
+
|
205
|
+
#published-band {
|
206
|
+
background-color: #069E2D; }
|
207
|
+
|
208
|
+
#published {
|
209
|
+
border-bottom: solid 3px #069E2D; }
|
210
|
+
|
211
|
+
#withdrawn-band {
|
212
|
+
background-color: #004E64; }
|
213
|
+
|
214
|
+
#withdrawn {
|
215
|
+
border-bottom: solid 3px #004E64; }
|
216
|
+
|
217
|
+
#cancelled-band {
|
218
|
+
background-color: #2E382E; }
|
219
|
+
|
220
|
+
#cancelled {
|
221
|
+
border-bottom: solid 3px #2E382E; }
|
222
|
+
|
223
|
+
body {
|
224
|
+
margin-left: auto;
|
225
|
+
margin-right: auto;
|
226
|
+
max-width: 100%;
|
227
|
+
font-size: 15px;
|
228
|
+
font-weight: 300;
|
229
|
+
line-height: 1.4em;
|
230
|
+
color: #1d1d1d;
|
231
|
+
background-color: #ffffff; }
|
232
|
+
body main {
|
233
|
+
margin: 0 3em 0 6em; }
|
234
|
+
|
235
|
+
#report {
|
236
|
+
border-bottom: none; }
|
237
|
+
|
238
|
+
main {
|
239
|
+
margin: 0 3em 0 6em; }
|
240
|
+
|
241
|
+
#toc {
|
242
|
+
font-family: {{bodyfont}};
|
243
|
+
font-weight: 400; }
|
244
|
+
#toc ul {
|
245
|
+
margin: 0;
|
246
|
+
padding: 0;
|
247
|
+
list-style: none; }
|
248
|
+
#toc ul li a {
|
249
|
+
padding: 5px 10px; }
|
250
|
+
#toc ul a {
|
251
|
+
color: #69C5DC;
|
252
|
+
text-decoration: none;
|
253
|
+
display: block; }
|
254
|
+
#toc ul a:hover {
|
255
|
+
box-shadow: none;
|
256
|
+
color: #69C5DC; }
|
257
|
+
#toc .h2 {
|
258
|
+
padding-left: 30px; }
|
259
|
+
#toc .h3 {
|
260
|
+
padding-left: 50px; }
|
261
|
+
#toc .toc-active, #toc li:hover {
|
262
|
+
background: #69C5DC;
|
263
|
+
box-shadow: inset -5px 0px 10px -5px #69C5DC !important; }
|
264
|
+
#toc .toc-active a, #toc li:hover a {
|
265
|
+
color: #69C5DC; }
|
266
|
+
@media print {
|
267
|
+
#toc .toc-active, #toc li:hover {
|
268
|
+
background: white;
|
269
|
+
box-shadow: none !important; }
|
270
|
+
#toc .toc-active a {
|
271
|
+
color: #69C5DC; }
|
272
|
+
#toc li:hover a {
|
273
|
+
color: black; } }
|
274
|
+
@media screen and (max-width: 768px) {
|
275
|
+
#toc {
|
276
|
+
padding: 0 1.5em;
|
277
|
+
overflow: visible; } }
|
278
|
+
#toc .toc-active a {
|
279
|
+
color: white; }
|
280
|
+
#toc ul a:hover {
|
281
|
+
color: white; }
|
282
|
+
|
283
|
+
@media screen and (min-width: 768px) {
|
284
|
+
nav {
|
285
|
+
position: fixed;
|
286
|
+
top: 0;
|
287
|
+
bottom: 0;
|
288
|
+
left: 0;
|
289
|
+
width: 323px;
|
290
|
+
font-size: 0.9em;
|
291
|
+
overflow: auto;
|
292
|
+
padding: 0 0 0 45px;
|
293
|
+
background-color: #f7f7f7; } }
|
294
|
+
|
295
|
+
@media print {
|
296
|
+
nav {
|
297
|
+
position: relative;
|
298
|
+
width: auto;
|
299
|
+
font-size: 0.9em;
|
300
|
+
overflow: auto;
|
301
|
+
padding: 0;
|
302
|
+
margin-right: 0;
|
303
|
+
background-color: white; } }
|
304
|
+
|
305
|
+
@media screen and (min-width: 768px) {
|
306
|
+
#toggle {
|
307
|
+
position: fixed;
|
308
|
+
height: 100%;
|
309
|
+
width: 30px;
|
310
|
+
background-color: #69C5DC;
|
311
|
+
color: white !important;
|
312
|
+
cursor: pointer;
|
313
|
+
z-index: 100; }
|
314
|
+
#toggle span {
|
315
|
+
text-align: center;
|
316
|
+
width: 100%;
|
317
|
+
position: absolute;
|
318
|
+
top: 50%;
|
319
|
+
transform: translate(0, -50%); } }
|
320
|
+
|
321
|
+
@media screen and (max-width: 768px) {
|
322
|
+
#toggle {
|
323
|
+
display: none; } }
|
324
|
+
|
325
|
+
@media print {
|
326
|
+
#toggle {
|
327
|
+
display: none; } }
|
328
|
+
|
329
|
+
#myBtn {
|
330
|
+
font-family: {{monospacefont}};
|
331
|
+
font-variant-ligatures: none;
|
332
|
+
display: none;
|
333
|
+
position: fixed;
|
334
|
+
bottom: 20px;
|
335
|
+
right: 30px;
|
336
|
+
z-index: 99;
|
337
|
+
font-size: 12px;
|
338
|
+
border: none;
|
339
|
+
outline: none;
|
340
|
+
background-color: #69C5DC;
|
341
|
+
opacity: 0.15;
|
342
|
+
color: white;
|
343
|
+
cursor: pointer;
|
344
|
+
padding: 10px 15px 10px 15px;
|
345
|
+
border-radius: 4px; }
|
346
|
+
#myBtn:hover {
|
347
|
+
opacity: 1; }
|
348
|
+
@media print {
|
349
|
+
#myBtn {
|
350
|
+
display: none; } }
|
351
|
+
#myBtn a.anchorjs-link:hover {
|
352
|
+
background: none;
|
353
|
+
color: #485094;
|
354
|
+
box-shadow: none; }
|
355
|
+
|
356
|
+
/*
|
357
|
+
2. Responsive navigation layout
|
358
|
+
*/
|
359
|
+
@media screen and (min-width: 768px) {
|
360
|
+
.container {
|
361
|
+
padding-left: 360px; }
|
362
|
+
.rule.toc {
|
363
|
+
display: none; }
|
364
|
+
h1.toc-contents {
|
365
|
+
margin-top: 1em; }
|
366
|
+
ul#toc-list {
|
367
|
+
padding: 0;
|
368
|
+
margin: 0; }
|
369
|
+
nav {
|
370
|
+
padding-left: 45px; } }
|
371
|
+
|
372
|
+
div.figure {
|
373
|
+
line-height: 1.6em;
|
374
|
+
padding: 1.5em;
|
375
|
+
margin: 2em 0 1em 0;
|
376
|
+
overflow: auto;
|
377
|
+
padding: 1.2em 1.2em 1.2em 2.2em;
|
378
|
+
margin: 2em 0 2em -1em; }
|
379
|
+
div.figure .FigureTitle, div.figure .figure-title {
|
380
|
+
font-weight: 700;
|
381
|
+
font-size: 1em;
|
382
|
+
text-align: center; }
|
383
|
+
div.figure > img {
|
384
|
+
margin-left: auto;
|
385
|
+
margin-right: auto;
|
386
|
+
display: block;
|
387
|
+
max-width: 100%;
|
388
|
+
height: auto; }
|
389
|
+
|
390
|
+
/*
|
391
|
+
Document types + stages
|
392
|
+
*/
|
393
|
+
.document-type-band {
|
394
|
+
left: 0;
|
395
|
+
top: 180px;
|
396
|
+
height: 100%;
|
397
|
+
position: fixed;
|
398
|
+
display: block;
|
399
|
+
z-index: 102; }
|
400
|
+
.document-type-band > :first-child {
|
401
|
+
position: relative;
|
402
|
+
width: 25px;
|
403
|
+
font-weight: 400;
|
404
|
+
color: white;
|
405
|
+
text-transform: uppercase;
|
406
|
+
font-size: 0.9em;
|
407
|
+
font-weight: 400;
|
408
|
+
letter-spacing: 0.05em;
|
409
|
+
margin: 0;
|
410
|
+
margin-left: 6px;
|
411
|
+
writing-mode: tb-rl;
|
412
|
+
-webkit-transform: rotate(180deg);
|
413
|
+
-moz-transform: rotate(180deg);
|
414
|
+
-o-transform: rotate(180deg);
|
415
|
+
white-space: nowrap;
|
416
|
+
display: block;
|
417
|
+
bottom: 0; }
|
418
|
+
@media print {
|
419
|
+
.document-type-band {
|
420
|
+
display: none; } }
|
421
|
+
.document-type-band .document-type {
|
422
|
+
top: 20px; }
|
423
|
+
|
424
|
+
.document-stage-band {
|
425
|
+
left: 0;
|
426
|
+
top: 0;
|
427
|
+
height: 100%;
|
428
|
+
position: fixed;
|
429
|
+
display: block;
|
430
|
+
z-index: 101;
|
431
|
+
box-shadow: -5px 0px 10px #1d1d1d; }
|
432
|
+
.document-stage-band > :first-child {
|
433
|
+
position: relative;
|
434
|
+
width: 25px;
|
435
|
+
font-weight: 400;
|
436
|
+
height: 150;
|
437
|
+
color: white;
|
438
|
+
text-transform: uppercase;
|
439
|
+
font-size: 0.9em;
|
440
|
+
font-weight: 400;
|
441
|
+
letter-spacing: 0.05em;
|
442
|
+
margin: 0;
|
443
|
+
margin-left: 6px;
|
444
|
+
writing-mode: tb-rl;
|
445
|
+
-webkit-transform: rotate(180deg);
|
446
|
+
-moz-transform: rotate(180deg);
|
447
|
+
-o-transform: rotate(180deg);
|
448
|
+
white-space: nowrap;
|
449
|
+
display: block;
|
450
|
+
bottom: 0; }
|
451
|
+
@media print {
|
452
|
+
.document-stage-band {
|
453
|
+
display: none; } }
|
454
|
+
p.document-stage {
|
455
|
+
position: relative;
|
456
|
+
width: 25px;
|
457
|
+
font-weight: 400;
|
458
|
+
height: 120;
|
459
|
+
color: white;
|
460
|
+
text-transform: uppercase;
|
461
|
+
font-size: 0.9em;
|
462
|
+
font-weight: 400;
|
463
|
+
letter-spacing: 0.05em;
|
464
|
+
margin: 0;
|
465
|
+
margin-left: 6px;
|
466
|
+
writing-mode: tb-rl;
|
467
|
+
-webkit-transform: rotate(180deg);
|
468
|
+
-moz-transform: rotate(180deg);
|
469
|
+
-o-transform: rotate(180deg);
|
470
|
+
white-space: nowrap;
|
471
|
+
display: block;
|
472
|
+
bottom: 0; }
|
473
|
+
|
474
|
+
#governance-band p.document-type {
|
475
|
+
height: 230px !important; }
|
476
|
+
|
477
|
+
p.document-stage {
|
478
|
+
font-weight: 300;
|
479
|
+
height: 160px; }
|
480
|
+
|
481
|
+
#standard-band {
|
482
|
+
background-color: #0ac442; }
|
483
|
+
|
484
|
+
#standard {
|
485
|
+
border-bottom: solid 3px #0ac442; }
|
486
|
+
|
487
|
+
#governance {
|
488
|
+
border-bottom: solid 3px #750697; }
|
489
|
+
|
490
|
+
#governance-band {
|
491
|
+
background-color: #750697; }
|
492
|
+
|
493
|
+
#guide {
|
494
|
+
border-bottom: solid 3px #48a0e7; }
|
495
|
+
|
496
|
+
#guide-band {
|
497
|
+
background-color: #48a0e7; }
|
498
|
+
|
499
|
+
.coverpage-maturity {
|
500
|
+
font-family: {{bodyfont}};
|
501
|
+
font-weight: 400;
|
502
|
+
font-size: 1em;
|
503
|
+
margin: 0 0 2em 0;
|
504
|
+
text-transform: uppercase; }
|
505
|
+
|
506
|
+
#proposal {
|
507
|
+
border-bottom: solid 3px #00BFFF; }
|
508
|
+
|
509
|
+
#proposal-band {
|
510
|
+
background-color: #00BFFF; }
|
511
|
+
|
512
|
+
#working-draft {
|
513
|
+
border-bottom: solid 3px #fda706; }
|
514
|
+
|
515
|
+
#working-draft-band {
|
516
|
+
background-color: #F22E15; }
|
517
|
+
|
518
|
+
#committee-draft {
|
519
|
+
border-bottom: solid 3px #fd06fd; }
|
520
|
+
|
521
|
+
#committee-draft-band {
|
522
|
+
background-color: #fd06fd; }
|
523
|
+
|
524
|
+
#draft-standard {
|
525
|
+
border-bottom: solid 3px #fdf906; }
|
526
|
+
|
527
|
+
#draft-standard-band {
|
528
|
+
background-color: #fdf906; }
|
529
|
+
|
530
|
+
#final-draft {
|
531
|
+
border-bottom: solid 3px #7e0d13; }
|
532
|
+
|
533
|
+
#final-draft-band {
|
534
|
+
background-color: #7e0d13; }
|
535
|
+
|
536
|
+
#standard {
|
537
|
+
border-bottom: solid 3px #69C5DC; }
|
538
|
+
|
539
|
+
#published-band {
|
540
|
+
background-color: #69C5DC; }
|
541
|
+
|
542
|
+
#obsolete {
|
543
|
+
border-bottom: solid 3px #7e0d13; }
|
544
|
+
|
545
|
+
#obsolete-band {
|
546
|
+
background-color: #7e0d13; }
|
547
|
+
|
548
|
+
/*
|
549
|
+
3. TYPOGRAPHY
|
550
|
+
*/
|
551
|
+
/*
|
552
|
+
3.1 Titles
|
553
|
+
*/
|
554
|
+
h1, h2, h3, h4, h5, h6 {
|
555
|
+
font-family: {{headerfont}};
|
556
|
+
color: black;
|
557
|
+
font-weight: 600;
|
558
|
+
margin-top: 2em;
|
559
|
+
margin-bottom: 0.3em; }
|
560
|
+
|
561
|
+
h1 {
|
562
|
+
font-size: 1.4em;
|
563
|
+
text-transform: uppercase;
|
564
|
+
margin-top: 2em; }
|
565
|
+
|
566
|
+
h1#content {
|
567
|
+
margin-top: 2em; }
|
568
|
+
|
569
|
+
h2 {
|
570
|
+
font-size: 1.3em; }
|
571
|
+
|
572
|
+
h3 {
|
573
|
+
font-size: 1.1em; }
|
574
|
+
|
575
|
+
@media screen {
|
576
|
+
span[id^="toc"]:after {
|
577
|
+
float: left;
|
578
|
+
padding-right: 4px;
|
579
|
+
margin-left: -20px;
|
580
|
+
font-family: "Font Awesome 5 Free";
|
581
|
+
font-weight: 900;
|
582
|
+
font-size: 0.8em;
|
583
|
+
color: #cfcfcf;
|
584
|
+
content: "\f0c1"; } }
|
585
|
+
|
586
|
+
.TermNum, .Terms, .AltTerms {
|
587
|
+
color: black;
|
588
|
+
font-weight: 400; }
|
589
|
+
|
590
|
+
p.TermNum {
|
591
|
+
font-size: 0.9em;
|
592
|
+
line-height: 1em;
|
593
|
+
margin: 0;
|
594
|
+
margin-top: 2em; }
|
595
|
+
|
596
|
+
p.Terms {
|
597
|
+
font-size: 1.1em;
|
598
|
+
line-height: 1.7em;
|
599
|
+
margin: 0; }
|
600
|
+
|
601
|
+
p.AltTerms {
|
602
|
+
font-style: italic;
|
603
|
+
margin: 0; }
|
604
|
+
|
605
|
+
/*
|
606
|
+
span.obligation {
|
607
|
+
font-weight: 400;
|
608
|
+
}
|
609
|
+
*/
|
610
|
+
/*
|
611
|
+
3.2 Links
|
612
|
+
*/
|
613
|
+
a, a:visited {
|
614
|
+
text-decoration: none;
|
615
|
+
color: #69C5DC; }
|
616
|
+
|
617
|
+
a:hover {
|
618
|
+
color: white;
|
619
|
+
background: #69C5DC;
|
620
|
+
box-shadow: 3px 0 0 #69C5DC, -3px 0 0 #69C5DC; }
|
621
|
+
|
622
|
+
::selection,
|
623
|
+
::-moz-selection {
|
624
|
+
background: #69C5DC;
|
625
|
+
color: white; }
|
626
|
+
|
627
|
+
/*
|
628
|
+
3.3 Lists
|
629
|
+
*/
|
630
|
+
ul, ol {
|
631
|
+
margin-left: 0.5em; }
|
632
|
+
|
633
|
+
#toc ul {
|
634
|
+
margin-bottom: 0.25em; }
|
635
|
+
|
636
|
+
#toc li {
|
637
|
+
list-style-type: none; }
|
638
|
+
|
639
|
+
/*
|
640
|
+
3.4 Rules
|
641
|
+
*/
|
642
|
+
.rule {
|
643
|
+
width: 100%;
|
644
|
+
height: 1px;
|
645
|
+
background-color: #F22E15;
|
646
|
+
margin: 2em 0; }
|
647
|
+
|
648
|
+
/*
|
649
|
+
3.5 Bibliograhy
|
650
|
+
*/
|
651
|
+
p.Biblio, p.NormRef {
|
652
|
+
margin-top: 1em;
|
653
|
+
margin-left: 2em; }
|
654
|
+
|
655
|
+
/*
|
656
|
+
3.6 Source Code + figures
|
657
|
+
*/
|
658
|
+
.figure,
|
659
|
+
pre,
|
660
|
+
.pseudocode {
|
661
|
+
background-color: #F5F6F6;
|
662
|
+
font-size: 0.8em;
|
663
|
+
line-height: 1.6em;
|
664
|
+
padding: 1.5em;
|
665
|
+
margin: 2em 0 1em 0;
|
666
|
+
overflow: auto;
|
667
|
+
padding: 1.2em 1.2em 1.2em 2.2em;
|
668
|
+
margin: 2em 0 2em -1em;
|
669
|
+
color: #5b5e5f;
|
670
|
+
border-left: solid 5px #69C5DC; }
|
671
|
+
.figure .SourceTitle,
|
672
|
+
pre .SourceTitle,
|
673
|
+
.pseudocode .SourceTitle {
|
674
|
+
font-weight: 700;
|
675
|
+
font-size: 1em;
|
676
|
+
text-align: center; }
|
677
|
+
|
678
|
+
pre {
|
679
|
+
font-family: {{monospacefont}};
|
680
|
+
font-variant-ligatures: none; }
|
681
|
+
|
682
|
+
.AdmonitionTitle {
|
683
|
+
font-weight: 700;
|
684
|
+
font-size: 1em;
|
685
|
+
text-align: center; }
|
686
|
+
|
687
|
+
.RecommendationTitle {
|
688
|
+
font-weight: 700;
|
689
|
+
font-size: 1em;
|
690
|
+
text-align: center; }
|
691
|
+
|
692
|
+
.FigureTitle,
|
693
|
+
.SourceTitle {
|
694
|
+
font-weight: 700;
|
695
|
+
font-size: 1em;
|
696
|
+
text-align: center; }
|
697
|
+
|
698
|
+
/*
|
699
|
+
3.7 Notes
|
700
|
+
*/
|
701
|
+
.Note {
|
702
|
+
background-color: #F5F6F6;
|
703
|
+
border-left: solid 5px #69C5DC;
|
704
|
+
color: #5b5e5f;
|
705
|
+
padding: 1.2em 1.2em 1.2em 2.2em;
|
706
|
+
margin: 2em 0 2em -1em; }
|
707
|
+
|
708
|
+
.Admonition {
|
709
|
+
background-color: #ffcccc;
|
710
|
+
border-left: solid 5px #69C5DC;
|
711
|
+
color: #5b5e5f;
|
712
|
+
padding: 1.2em 1.2em 1.2em 2.2em;
|
713
|
+
margin: 2em 0 2em -1em; }
|
714
|
+
|
715
|
+
/*
|
716
|
+
3.8 Examples
|
717
|
+
*/
|
718
|
+
.example {
|
719
|
+
background-color: #e1eef1;
|
720
|
+
padding: 1.2em;
|
721
|
+
margin: 2em 0 1em 0;
|
722
|
+
text-align: left;
|
723
|
+
color: #424242;
|
724
|
+
padding-left: 2.7em;
|
725
|
+
border-left: solid 5px #69C5DC;
|
726
|
+
color: #5b5e5f;
|
727
|
+
margin: 2em 0 2em -1em; }
|
728
|
+
.example p {
|
729
|
+
margin: 0; }
|
730
|
+
.example .example-title {
|
731
|
+
font-weight: 700;
|
732
|
+
text-transform: uppercase;
|
733
|
+
margin-left: -1.5em; }
|
734
|
+
.example .example-title {
|
735
|
+
margin-top: 0; }
|
736
|
+
.example p {
|
737
|
+
margin: 0; }
|
738
|
+
.example pre,
|
739
|
+
.example .pseudocode {
|
740
|
+
background: none; }
|
741
|
+
|
742
|
+
/*
|
743
|
+
3.9 Tables
|
744
|
+
*/
|
745
|
+
table {
|
746
|
+
width: 100%;
|
747
|
+
font-weight: 300;
|
748
|
+
margin: 1em 0 2em 0;
|
749
|
+
margin-left: auto;
|
750
|
+
margin-right: auto;
|
751
|
+
padding-right: 2em; }
|
752
|
+
table, table th, table td {
|
753
|
+
border: solid 1px #F5F6F6 !important;
|
754
|
+
font-size: 0.95em; }
|
755
|
+
table th, table td {
|
756
|
+
padding: 1em; }
|
757
|
+
table td.header {
|
758
|
+
font-weigth: 400; }
|
759
|
+
table th,
|
760
|
+
table td {
|
761
|
+
border: none !important;
|
762
|
+
font-size: 0.95em; }
|
763
|
+
|
764
|
+
tr:nth-child(even) {
|
765
|
+
background-color: #FBF9F8; }
|
766
|
+
|
767
|
+
thead {
|
768
|
+
background-color: #69C5DC;
|
769
|
+
color: white;
|
770
|
+
border: none; }
|
771
|
+
|
772
|
+
p.TableTitle {
|
773
|
+
text-align: center;
|
774
|
+
margin-top: 2.5em;
|
775
|
+
font-weight: 400; }
|
776
|
+
|
777
|
+
/*
|
778
|
+
3.10 Footnotes
|
779
|
+
*/
|
780
|
+
a.footnote-number {
|
781
|
+
vertical-align: super;
|
782
|
+
font-size: 0.8em; }
|
783
|
+
|
784
|
+
.footnote {
|
785
|
+
font-size: 0.9em; }
|
786
|
+
|
787
|
+
/*
|
788
|
+
3.11 Blockquotes
|
789
|
+
*/
|
790
|
+
.Quote {
|
791
|
+
background-color: #f7f7f7;
|
792
|
+
font-style: italic;
|
793
|
+
width: 80%;
|
794
|
+
padding: 1.5em;
|
795
|
+
margin-top: 2em;
|
796
|
+
margin-left: auto;
|
797
|
+
margin-right: auto; }
|
798
|
+
|
799
|
+
.QuoteAttribution {
|
800
|
+
text-align: right; }
|
801
|
+
|
802
|
+
/*
|
803
|
+
3.12 Formulas
|
804
|
+
*/
|
805
|
+
.formula, .Formula {
|
806
|
+
background-color: #F5F6F6;
|
807
|
+
border-left: solid 5px #69C5DC;
|
808
|
+
color: #5b5e5f;
|
809
|
+
padding: 1.2em 1.2em 1.2em 2.2em;
|
810
|
+
margin: 2em 0 2em -1em;
|
811
|
+
text-align: center; }
|
812
|
+
|
813
|
+
/*
|
814
|
+
3.13 Contact Info
|
815
|
+
*/
|
816
|
+
.contact-info {
|
817
|
+
background-color: #f7f7f7;
|
818
|
+
padding: 2em;
|
819
|
+
margin-top: 5em;
|
820
|
+
width: auto;
|
821
|
+
margin-left: auto;
|
822
|
+
margin-right: auto;
|
823
|
+
text-align: left; }
|
824
|
+
|
825
|
+
.contact-info p, .contact-info a {
|
826
|
+
font-family: {{monospacefont}};
|
827
|
+
font-variant-ligatures: none;
|
828
|
+
font-weight: 400; }
|
829
|
+
|
830
|
+
#boilerplate-name {
|
831
|
+
font-weight: 700;
|
832
|
+
font-size: 1.2em;
|
833
|
+
margin-bottom: 0; }
|
834
|
+
|
835
|
+
#boilerplate-address {
|
836
|
+
font-size: 1em;
|
837
|
+
line-height: 1.3em;
|
838
|
+
margin-top: 0; }
|
839
|
+
|
840
|
+
/*
|
841
|
+
Keywords
|
842
|
+
*/
|
843
|
+
span.keyword {
|
844
|
+
font-weight: 600; }
|
845
|
+
|
846
|
+
/*
|
847
|
+
Paragraphs
|
848
|
+
*/
|
849
|
+
p {
|
850
|
+
margin-top: 1em;
|
851
|
+
margin-bottom: 1em; }
|
852
|
+
|
853
|
+
/* Admonitions */
|
854
|
+
.Admonition, .admonition {
|
855
|
+
background-color: #ffb3b3;
|
856
|
+
/* color: #47430c;*/
|
857
|
+
padding: 0.5em;
|
858
|
+
margin: 1.5em 0 1.5em 0;
|
859
|
+
text-align: left; }
|
860
|
+
|
861
|
+
.Admonition p, .admonition p {
|
862
|
+
margin: 0; }
|
863
|
+
|
864
|
+
/*
|
865
|
+
4.0 Page header
|
866
|
+
*/
|
867
|
+
/*
|
868
|
+
4.1 Top Logo
|
869
|
+
*/
|
870
|
+
.coverpage {
|
871
|
+
/*background: radial-gradient(#2D5D8E, #0D1E2B);*/
|
872
|
+
/*background-image: url("img/dots@2x.png");*/
|
873
|
+
color: black;
|
874
|
+
padding: 2em 0 0 2em; }
|
875
|
+
|
876
|
+
.doc-number {
|
877
|
+
font-size: 0.5em;
|
878
|
+
font-family: {{bodyfont}}; }
|
879
|
+
|
880
|
+
.coverpage-title {
|
881
|
+
padding-bottom: 0.5em;
|
882
|
+
font-family: {{headerfont}};
|
883
|
+
font-size: 1.5em;
|
884
|
+
font-weight: 900; }
|
885
|
+
|
886
|
+
.coverpage-date {
|
887
|
+
font-family: {{headerfont}};
|
888
|
+
font-weight: 900; }
|
889
|
+
|
890
|
+
.prefatory-section {
|
891
|
+
padding: 0 2em 0 3em; }
|
892
|
+
|
893
|
+
.zzSTDTitle1, .MsoCommentText {
|
894
|
+
display: none; }
|
895
|
+
|
896
|
+
.coverpage {
|
897
|
+
text-align: center; }
|
898
|
+
|
899
|
+
.coverpage-logo {
|
900
|
+
margin-top: 2em;
|
901
|
+
margin-bottom: 2em;
|
902
|
+
background-color: white; }
|
903
|
+
|
904
|
+
.coverpage-logo img {
|
905
|
+
width: 400px;
|
906
|
+
height: auto; }
|
907
|
+
|
908
|
+
.coverpage-logo span, .coverpage-tc-name span {
|
909
|
+
font-family: {{bodyfont}};
|
910
|
+
text-transform: uppercase;
|
911
|
+
font-weight: 300;
|
912
|
+
display: block; }
|
913
|
+
|
914
|
+
/*
|
915
|
+
.coverpage-tc-name {
|
916
|
+
font-size: 1.2em;
|
917
|
+
line-height: 1.2em;
|
918
|
+
margin: 0.25em 0;
|
919
|
+
}
|
920
|
+
*/
|
921
|
+
/*
|
922
|
+
4.2 Document Identity
|
923
|
+
*/
|
924
|
+
.titles {
|
925
|
+
background-color: #69C5DC; }
|
926
|
+
|
927
|
+
.title-first {
|
928
|
+
font-size: 2em;
|
929
|
+
line-height: 2em;
|
930
|
+
padding-bottom: 1em;
|
931
|
+
font-weight: 900;
|
932
|
+
text-transform: uppercase;
|
933
|
+
background-color: #69C5DC;
|
934
|
+
color: white; }
|
935
|
+
|
936
|
+
.title-second {
|
937
|
+
font-size: 1.5em;
|
938
|
+
line-height: 2em;
|
939
|
+
margin-top: 3em;
|
940
|
+
padding-top: 1em;
|
941
|
+
font-weight: 600;
|
942
|
+
text-transform: uppercase;
|
943
|
+
color: white; }
|
944
|
+
|
945
|
+
.docinfo {
|
946
|
+
margin-top: 2em;
|
947
|
+
margin-bottom: 3em; }
|
948
|
+
|
949
|
+
.coverpage-doc-identity {
|
950
|
+
min-height: 100px;
|
951
|
+
width: 100%;
|
952
|
+
background-size: 240px 80px;
|
953
|
+
margin: auto; }
|
954
|
+
|
955
|
+
.coverpage-title .title-second {
|
956
|
+
display: none; }
|
957
|
+
|
958
|
+
.coverpage-stage-block {
|
959
|
+
font-family: {{bodyfont}};
|
960
|
+
font-weight: 700;
|
961
|
+
font-size: 1em;
|
962
|
+
margin: 1em 0em 1em 0em;
|
963
|
+
text-transform: uppercase; }
|
964
|
+
|
965
|
+
.section-title {
|
966
|
+
background-color: #69C5DC;
|
967
|
+
padding: 1em 2em 1em 5.5em;
|
968
|
+
margin: 4em -3em 3em -5em;
|
969
|
+
border-bottom: 4px solid #F22E15; }
|
970
|
+
|
971
|
+
.section-title h1 {
|
972
|
+
font-size: 2em;
|
973
|
+
font-weight: 800;
|
974
|
+
line-height: 1em;
|
975
|
+
margin-top: 0.5em;
|
976
|
+
margin-bottom: 0;
|
977
|
+
color: white;
|
978
|
+
text-transform: none; }
|
979
|
+
|
980
|
+
h2 {
|
981
|
+
border-bottom: solid 1px #69C5DC;
|
982
|
+
color: black; }
|
983
|
+
|
984
|
+
/*
|
985
|
+
4.3 Draft Warning
|
986
|
+
*/
|
987
|
+
.coverpage-warning {
|
988
|
+
border-top: solid 1px #F22E15;
|
989
|
+
border-bottom: solid 1px #F22E15;
|
990
|
+
margin: 1em 2em;
|
991
|
+
color: black;
|
992
|
+
padding: 1em; }
|
993
|
+
|
994
|
+
.coverpage-warning .title {
|
995
|
+
color: #F22E15;
|
996
|
+
font-family: {{headerfont}};
|
997
|
+
font-weight: 700;
|
998
|
+
text-transform: uppercase;
|
999
|
+
font-size: 1.2em; }
|
1000
|
+
|
1001
|
+
/*
|
1002
|
+
4.4 Copyright
|
1003
|
+
*/
|
1004
|
+
.copyright {
|
1005
|
+
padding: 1em;
|
1006
|
+
font-size: 0.8em;
|
1007
|
+
text-align: left; }
|
1008
|
+
|
1009
|
+
.contact-info {
|
1010
|
+
color: black; }
|
1011
|
+
|
1012
|
+
/*
|
1013
|
+
5.0 Other styles
|
1014
|
+
*/
|
1015
|
+
a.anchorjs-link:hover {
|
1016
|
+
background: none;
|
1017
|
+
color: #485094;
|
1018
|
+
box-shadow: none; }
|
1019
|
+
|
1020
|
+
@page {
|
1021
|
+
margin: 1cm; }
|
1022
|
+
|
1023
|
+
@media print {
|
1024
|
+
.section-title {
|
1025
|
+
page-break-before: always; }
|
1026
|
+
#toggle, .document-stage-band,
|
1027
|
+
.document-type-band {
|
1028
|
+
display: none; }
|
1029
|
+
.container {
|
1030
|
+
padding-left: 0; } }
|