asciidoctor-m3d 0.2.5 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +7 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +44 -29
- data/asciidoctor-m3d.gemspec +3 -2
- data/lib/asciidoctor-m3d.rb +2 -1
- data/lib/asciidoctor/m3d/biblio.rng +35 -6
- data/lib/asciidoctor/m3d/converter.rb +39 -24
- data/lib/asciidoctor/m3d/isodoc.rng +1 -1
- data/lib/asciidoctor/m3d/isostandard.rng +64 -15
- data/lib/asciidoctor/m3d/m3d.rng +43 -23
- data/lib/asciidoctor/m3d/version.rb +1 -1
- data/lib/isodoc/m3d/html/dots-w@2x.png +0 -0
- data/lib/isodoc/m3d/html/dots@2x.png +0 -0
- data/lib/isodoc/m3d/html/header.html +219 -0
- data/lib/isodoc/m3d/html/html_m3d_intro.html +14 -0
- data/lib/isodoc/m3d/html/html_m3d_titlepage.html +95 -0
- data/lib/isodoc/m3d/html/htmlstyle.scss +940 -0
- data/lib/isodoc/m3d/html/m3d.scss +697 -0
- data/lib/isodoc/m3d/html/scripts.html +82 -0
- data/lib/isodoc/m3d/html/word_m3d_intro.html +10 -0
- data/lib/isodoc/m3d/html/word_m3d_titlepage.html +58 -0
- data/lib/isodoc/m3d/html/wordstyle.scss +1003 -0
- data/lib/isodoc/m3d/m3dhtmlconvert.rb +142 -0
- data/lib/isodoc/m3d/m3dhtmlrender.rb +68 -0
- data/lib/isodoc/m3d/m3dwordconvert.rb +88 -0
- data/lib/isodoc/m3d/m3wordrender.rb +68 -0
- data/lib/isodoc/m3d/metadata.rb +82 -0
- metadata +24 -8
- data/lib/asciidoctor/m3d/m3dconvert.rb +0 -135
data/lib/asciidoctor/m3d/m3d.rng
CHANGED
@@ -1,10 +1,9 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
3
3
|
<!--
|
4
|
-
default namespace = "https://open.ribose.com/standards/m3d"
|
5
4
|
Currently we inherit from a namespaced grammar, isostandard. Until we inherit from isodoc,
|
6
5
|
we cannot have a new default namespace: we will end up with a grammar with two different
|
7
|
-
namespaces, one for isostandard and one for
|
6
|
+
namespaces, one for isostandard and one for csand additions. And we do not want that.
|
8
7
|
-->
|
9
8
|
<include href="isostandard.rng">
|
10
9
|
<start>
|
@@ -25,19 +24,6 @@
|
|
25
24
|
<ref name="FormattedString"/>
|
26
25
|
</element>
|
27
26
|
</define>
|
28
|
-
<define name="status">
|
29
|
-
<element name="status">
|
30
|
-
<choice>
|
31
|
-
<value>proposal</value>
|
32
|
-
<value>working-draft</value>
|
33
|
-
<value>committee-draft</value>
|
34
|
-
<value>draft-standard</value>
|
35
|
-
<value>final-draft</value>
|
36
|
-
<value>published</value>
|
37
|
-
<value>withdrawn</value>
|
38
|
-
</choice>
|
39
|
-
</element>
|
40
|
-
</define>
|
41
27
|
<define name="figure">
|
42
28
|
<element name="figure">
|
43
29
|
<attribute name="id">
|
@@ -70,6 +56,20 @@
|
|
70
56
|
</choice>
|
71
57
|
</element>
|
72
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
73
|
<!-- TextElement |= keyword -->
|
74
74
|
<define name="TextElement">
|
75
75
|
<choice>
|
@@ -92,15 +92,35 @@
|
|
92
92
|
<ref name="keyword"/>
|
93
93
|
</choice>
|
94
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>
|
95
113
|
</include>
|
96
|
-
<define name="
|
97
|
-
<
|
98
|
-
<
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
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>
|
104
124
|
</define>
|
105
125
|
<define name="pre">
|
106
126
|
<element name="pre">
|
Binary file
|
Binary file
|
@@ -0,0 +1,219 @@
|
|
1
|
+
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
2
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
3
|
+
xmlns:w="urn:schemas-microsoft-com:office:word"
|
4
|
+
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
|
5
|
+
xmlns="http://www.w3.org/TR/REC-html40">
|
6
|
+
|
7
|
+
<head>
|
8
|
+
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
9
|
+
<meta name=ProgId content=Word.Document>
|
10
|
+
<meta name=Generator content="Microsoft Word 15">
|
11
|
+
<meta name=Originator content="Microsoft Word 15">
|
12
|
+
<link id=Main-File rel=Main-File href="../m3aawg-document-template-2015-10.html">
|
13
|
+
<!--[if gte mso 9]><xml>
|
14
|
+
<o:shapedefaults v:ext="edit" spidmax="2051"/>
|
15
|
+
</xml><![endif]--><!--[if gte mso 9]><xml>
|
16
|
+
<o:shapelayout v:ext="edit">
|
17
|
+
<o:idmap v:ext="edit" data="2"/>
|
18
|
+
</o:shapelayout></xml><![endif]-->
|
19
|
+
</head>
|
20
|
+
|
21
|
+
<body lang=EL link=blue vlink=purple>
|
22
|
+
|
23
|
+
<div style='mso-element:footnote-separator' id=fs>
|
24
|
+
|
25
|
+
<p class=MsoNormal><span lang=EN-US><span style='mso-special-character:footnote-separator'><![if !supportFootnotes]>
|
26
|
+
|
27
|
+
<hr align=left size=1 width="33%">
|
28
|
+
|
29
|
+
<![endif]></span></span></p>
|
30
|
+
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<div style='mso-element:footnote-continuation-separator' id=fcs>
|
34
|
+
|
35
|
+
<p class=MsoNormal><span lang=EN-US><span style='mso-special-character:footnote-continuation-separator'><![if !supportFootnotes]>
|
36
|
+
|
37
|
+
<hr align=left size=1>
|
38
|
+
|
39
|
+
<![endif]></span></span></p>
|
40
|
+
|
41
|
+
</div>
|
42
|
+
|
43
|
+
<div style='mso-element:endnote-separator' id=es>
|
44
|
+
|
45
|
+
<p class=MsoNormal><span lang=EN-US><span style='mso-special-character:footnote-separator'><![if !supportFootnotes]>
|
46
|
+
|
47
|
+
<hr align=left size=1 width="33%">
|
48
|
+
|
49
|
+
<![endif]></span></span></p>
|
50
|
+
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div style='mso-element:endnote-continuation-separator' id=ecs>
|
54
|
+
|
55
|
+
<p class=MsoNormal><span lang=EN-US><span style='mso-special-character:footnote-continuation-separator'><![if !supportFootnotes]>
|
56
|
+
|
57
|
+
<hr align=left size=1>
|
58
|
+
|
59
|
+
<![endif]></span></span></p>
|
60
|
+
|
61
|
+
</div>
|
62
|
+
|
63
|
+
<div style='mso-element:header' id=eh1>
|
64
|
+
|
65
|
+
|
66
|
+
</div>
|
67
|
+
|
68
|
+
<p class=MsoHeader style='margin-right:18.0pt'><span lang=EN-US><o:p> </o:p></span></p>
|
69
|
+
|
70
|
+
</div>
|
71
|
+
|
72
|
+
<div style='mso-element:header' id=h1>
|
73
|
+
|
74
|
+
|
75
|
+
</div>
|
76
|
+
|
77
|
+
<div style='mso-element:footer' id=ef1>
|
78
|
+
|
79
|
+
<div style='mso-element:frame;mso-element-wrap:around;mso-element-anchor-vertical:
|
80
|
+
paragraph;mso-element-anchor-horizontal:margin;mso-element-left:right;
|
81
|
+
mso-element-top:.05pt;mso-height-rule:exactly'>
|
82
|
+
|
83
|
+
<table cellspacing=0 cellpadding=0 hspace=0 vspace=0 align=right>
|
84
|
+
<tr>
|
85
|
+
<td valign=top align=left style='padding-top:0cm;padding-right:0cm;
|
86
|
+
padding-bottom:0cm;padding-left:0cm'>
|
87
|
+
<p class=MsoFooter style='mso-element:frame;mso-element-wrap:around;
|
88
|
+
mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;
|
89
|
+
mso-element-left:right;mso-element-top:.05pt;mso-height-rule:exactly'><!--[if supportFields]><span
|
90
|
+
class=MsoPageNumber><span lang=EN-US><span style='mso-element:field-begin'></span>PAGE<span
|
91
|
+
style='mso-spacerun:yes'> </span></span></span><![endif]--><!--[if supportFields]><span
|
92
|
+
class=MsoPageNumber><span lang=EN-US><span style='mso-element:field-end'></span></span></span><![endif]--><span
|
93
|
+
class=MsoPageNumber><span lang=EN-US><o:p></o:p></span></span></p>
|
94
|
+
</td>
|
95
|
+
</tr>
|
96
|
+
</table>
|
97
|
+
|
98
|
+
</div>
|
99
|
+
|
100
|
+
<p class=MsoFooter style='margin-right:18.0pt'><span lang=EN-US><o:p> </o:p></span></p>
|
101
|
+
|
102
|
+
</div>
|
103
|
+
|
104
|
+
<div style='mso-element:footer' id=f1>
|
105
|
+
|
106
|
+
<div style='mso-element:frame;mso-element-wrap:around;mso-element-anchor-vertical:
|
107
|
+
paragraph;mso-element-anchor-horizontal:margin;mso-element-left:right;
|
108
|
+
mso-element-top:.05pt;mso-height-rule:exactly'>
|
109
|
+
|
110
|
+
<table cellspacing=0 cellpadding=0 hspace=0 vspace=0 align=right>
|
111
|
+
<tr>
|
112
|
+
<td valign=top align=left style='padding-top:0cm;padding-right:0cm;
|
113
|
+
padding-bottom:0cm;padding-left:0cm'>
|
114
|
+
<p class=MsoHeader style='mso-element:frame;mso-element-wrap:around;
|
115
|
+
mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;
|
116
|
+
mso-element-left:right;mso-element-top:.05pt;mso-height-rule:exactly'><!--[if supportFields]><span
|
117
|
+
class=MsoPageNumber><span lang=EN-US style='font-family:"Garamond",serif'><span
|
118
|
+
style='mso-element:field-begin'></span>PAGE<span style='mso-spacerun:yes'>
|
119
|
+
</span><span style='mso-element:field-separator'></span></span></span><![endif]--><span
|
120
|
+
class=MsoPageNumber><span lang=EN-US style='font-family:"Garamond",serif'>1</span></span><!--[if supportFields]><span
|
121
|
+
class=MsoPageNumber><span lang=EN-US style='font-family:"Garamond",serif'><span
|
122
|
+
style='mso-element:field-end'></span></span></span><![endif]--><span
|
123
|
+
class=MsoPageNumber><span lang=EN-US style='font-family:"Garamond",serif'><o:p></o:p></span></span></p>
|
124
|
+
</td>
|
125
|
+
</tr>
|
126
|
+
</table>
|
127
|
+
|
128
|
+
</div>
|
129
|
+
|
130
|
+
<p class=MsoFooter><b style='mso-bidi-font-weight:normal'><span lang=EN-US
|
131
|
+
style='font-size:8.0pt;font-family:"Garamond",serif;mso-bidi-font-family:Arial'>{{doctitle}}<span style='mso-tab-count:2'> </span><o:p></o:p></span></b></p>
|
132
|
+
|
133
|
+
<p class=MsoFooter style='margin-right:18.0pt;tab-stops:center 181.5pt right 432.0pt'><span
|
134
|
+
lang=EN-US style='mso-bidi-font-size:12.0pt;mso-bidi-font-family:Arial;
|
135
|
+
background:#E0E0E0'><o:p> </o:p></span></p>
|
136
|
+
|
137
|
+
</div>
|
138
|
+
|
139
|
+
<div style='mso-element:header' id=fh1>
|
140
|
+
|
141
|
+
<p class=MsoHeader><img width="323" height="39" src="logo.jpg"></img>
|
142
|
+
<!--[if gte vml 1]><v:line id="_x0000_s2049" alt=""
|
143
|
+
style='position:absolute;flip:y;z-index:251659264;mso-wrap-style:none;
|
144
|
+
mso-wrap-edited:f;mso-width-percent:0;mso-height-percent:0;
|
145
|
+
mso-width-percent:0;mso-height-percent:0;v-text-anchor:middle' from="0,39.6pt"
|
146
|
+
to="500.4pt,39.6pt" strokecolor="#ff0c00">
|
147
|
+
<v:shadow color="#969696"/>
|
148
|
+
</v:line><![endif]--></span></b></p>
|
149
|
+
|
150
|
+
</div>
|
151
|
+
|
152
|
+
<div style='mso-element:footer' id=ff1>
|
153
|
+
|
154
|
+
<p class=MsoFooter><b style='mso-bidi-font-weight:normal'><span lang=EN-US
|
155
|
+
style='font-size:8.0pt;mso-bidi-font-family:Arial'><span style='mso-tab-count:
|
156
|
+
1'> </span></span></b><span
|
157
|
+
lang=EN-US style='mso-no-proof:yes'><!--[if gte vml 1]><v:line id="_x0000_s2049"
|
158
|
+
style='position:absolute;flip:y;z-index:251660288;visibility:visible;
|
159
|
+
mso-wrap-style:square;mso-width-percent:0;mso-height-percent:0;
|
160
|
+
mso-wrap-distance-left:9pt;mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;
|
161
|
+
mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;
|
162
|
+
mso-position-horizontal-relative:text;mso-position-vertical:absolute;
|
163
|
+
mso-position-vertical-relative:text;mso-width-percent:0;mso-height-percent:0;
|
164
|
+
mso-width-relative:page;mso-height-relative:page' from="0,0" to="500.4pt,0"
|
165
|
+
strokecolor="#ff0c00">
|
166
|
+
<v:shadow color="#969696"/>
|
167
|
+
</v:line><![endif]--></span><b style='mso-bidi-font-weight:normal'><span
|
168
|
+
lang=EN-US style='font-family:"Arial",sans-serif;mso-hansi-font-family:Garamond;
|
169
|
+
mso-bidi-font-family:"Times New Roman";color:#33A9CC'>M<sup>3</sup>AAWG</span></b><b
|
170
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-US style='font-size:8.0pt;
|
171
|
+
mso-bidi-font-family:Arial'><o:p></o:p></span></b></p>
|
172
|
+
|
173
|
+
<p class=MsoFooter><span lang=EN-US style='font-size:8.0pt;mso-bidi-font-family:
|
174
|
+
Arial'><span style='mso-tab-count:1'> </span></span><span
|
175
|
+
lang=EN-US style='font-size:9.0pt;mso-bidi-font-size:11.0pt;font-family:"Arial",sans-serif;
|
176
|
+
mso-hansi-font-family:Garamond;mso-bidi-font-family:"Times New Roman"'>Messaging,
|
177
|
+
Malware and Mobile Anti-Abuse Working Group</span><span lang=EN-US
|
178
|
+
style='font-size:8.0pt;mso-bidi-font-family:Arial'><o:p></o:p></span></p>
|
179
|
+
|
180
|
+
<p class=MsoFooter><span lang=EN-US style='font-size:8.0pt;mso-bidi-font-family:
|
181
|
+
Arial'><span style='mso-tab-count:1'> </span></span><span
|
182
|
+
lang=EN-US style='font-size:9.0pt;mso-bidi-font-size:11.0pt;font-family:"Arial",sans-serif;
|
183
|
+
mso-bidi-font-family:"Times New Roman"'>P.O. Box 29920 </span><span lang=EN-US
|
184
|
+
style='font-size:8.0pt;mso-bidi-font-size:11.0pt;font-family:Wingdings;
|
185
|
+
color:#33A9CC'>n</span><span lang=EN-US style='font-size:8.0pt;mso-bidi-font-size:
|
186
|
+
11.0pt;font-family:"Times New Roman",serif;color:#33A9CC'> </span><span
|
187
|
+
lang=EN-US style='font-size:9.0pt;mso-bidi-font-size:11.0pt;font-family:"Arial",sans-serif;
|
188
|
+
mso-bidi-font-family:"Times New Roman"'>San Francisco, CA 94129-0920 </span><span
|
189
|
+
lang=EN-US style='font-size:8.0pt;mso-bidi-font-size:11.0pt;font-family:Wingdings;
|
190
|
+
color:#33A9CC'>n</span><span lang=EN-US style='font-size:8.0pt;mso-bidi-font-size:
|
191
|
+
11.0pt;font-family:"Times New Roman",serif;color:blue'> </span><u
|
192
|
+
style='text-underline:blue'><span lang=EN-US style='font-size:9.0pt;mso-bidi-font-size:
|
193
|
+
11.0pt;font-family:"Arial",sans-serif;mso-bidi-font-family:"Times New Roman";
|
194
|
+
color:blue'><a href="http://www.M3AAWG.org/">www.M3AAWG.org<u style='text-underline:
|
195
|
+
#000000'><span style='text-underline:#000000;text-decoration:none;text-underline:
|
196
|
+
none'> </span></u></a></span></u><span lang=EN-US style='font-size:8.0pt;
|
197
|
+
mso-bidi-font-size:11.0pt;font-family:Wingdings;color:#33A9CC'>n</span><span
|
198
|
+
lang=EN-US style='font-size:8.0pt;mso-bidi-font-size:11.0pt;font-family:"Times New Roman",serif;
|
199
|
+
color:blue'><a href="mailto:info@M3AAWG.org"><span style='text-decoration:none;
|
200
|
+
text-underline:none'> </span><span style='font-family:"Arial",sans-serif;
|
201
|
+
mso-bidi-font-family:"Times New Roman"'>info@M3AAWG.org</span></a></span><span
|
202
|
+
lang=EN-US style='font-size:8.0pt;mso-bidi-font-family:Arial'><o:p></o:p></span></p>
|
203
|
+
|
204
|
+
</div>
|
205
|
+
|
206
|
+
<p class=MsoFooter><b style='mso-bidi-font-weight:normal'><span lang=EN-US
|
207
|
+
style='font-size:8.0pt;font-family:"Garamond",serif;mso-bidi-font-family:Arial'>{{doctitle}}<span style='mso-tab-count:2'> </span><o:p></o:p></span></b></p>
|
208
|
+
|
209
|
+
</div>
|
210
|
+
|
211
|
+
<div style='mso-element:footer' id=f2>
|
212
|
+
|
213
|
+
<p class=MsoFooter>As with all M3AAWG documents that we publish, please check the M3AAWG website (<a href="http://www.m3aawg.org">www.m3aawg.org</a>) for updates to this paper.</p>
|
214
|
+
<p class=MsoFooter>© 2017 copyright by the Messaging, Malware and Mobile Anti-Abuse Working Group (M3AAWG)</p>
|
215
|
+
</div>
|
216
|
+
|
217
|
+
</body>
|
218
|
+
|
219
|
+
</html>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<div class="coverpage">
|
2
|
+
<p class="coverpage-title">Messaging, Malware and Mobile Anti-Abuse Working Group</p>
|
3
|
+
<p class="coverpage-doc-identity">{{doctitle}}</p>
|
4
|
+
<p class="coverpage-date">{{revdate_monthyear}}</p>
|
5
|
+
</div>
|
6
|
+
|
7
|
+
<nav>
|
8
|
+
<h1 id="content">Contents</h1>
|
9
|
+
<div id="toc"></div>
|
10
|
+
|
11
|
+
</nav>
|
12
|
+
|
13
|
+
|
14
|
+
<div class="rule toc"></div>
|
@@ -0,0 +1,95 @@
|
|
1
|
+
<div class="document-stage-band" id="working-draft-band">
|
2
|
+
<p class="document-stage">{{ status }}</p>
|
3
|
+
</div>
|
4
|
+
|
5
|
+
<div class="document-type-band" id="standard-band">
|
6
|
+
<p class="document-type">Ribose {{ doctype }}</p>
|
7
|
+
</div>
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
<div id='toggle'> <span>•</span> </div>
|
12
|
+
|
13
|
+
<header>
|
14
|
+
|
15
|
+
<!--<div class="WordSection1">-->
|
16
|
+
<div class="coverpage">
|
17
|
+
<div class="wrapper-top">
|
18
|
+
|
19
|
+
<div class="coverpage-doc-identity">
|
20
|
+
<div class="doc-number">
|
21
|
+
<span class="docnumber">{{ docnumber }}</span>
|
22
|
+
<span class="docnumber-separator">:</span>
|
23
|
+
<span class="docyear">{{ docyear }}</span>
|
24
|
+
</div>
|
25
|
+
|
26
|
+
<div class="coverpage-title">
|
27
|
+
<span class="title-first">{{ doctitle }}</span>
|
28
|
+
<!--<span class="title-second">{{ docsubtitle }}</span>-->
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
|
32
|
+
<div class="coverpage-logo">
|
33
|
+
<span>The Calendaring and Scheduling Consortium</span>
|
34
|
+
</div>
|
35
|
+
|
36
|
+
<div class="coverpage-tc-name">
|
37
|
+
<span>TC {{ tc }}</span>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div class="title-section1">
|
42
|
+
<div class="coverpage-stage-block" >
|
43
|
+
<span class="coverpage-stage" id="{{ doctype | replace: ' ', '-' | downcase }}">Ribose {{ doctype }}</span>
|
44
|
+
</div>
|
45
|
+
|
46
|
+
<div class="coverpage-stage-block" >
|
47
|
+
<span class="coverpage-maturity" id="{{ status | replace: ' ', '-' | downcase }}">{{ status }}</span>
|
48
|
+
</div>
|
49
|
+
|
50
|
+
{% if status != "Published" and status != "Withdrawn" %}
|
51
|
+
<div class="coverpage-warning">
|
52
|
+
<span class="title">Warning for Drafts</span>
|
53
|
+
|
54
|
+
<p class="content">
|
55
|
+
This document is not a Ribose Standard. It is distributed for review and
|
56
|
+
comment, and is subject to change without notice and may not be referred to as
|
57
|
+
a Standard. Recipients of this draft are invited to submit, with their
|
58
|
+
comments, notification of any relevant patent rights of which they are aware
|
59
|
+
and to provide supporting documentation.
|
60
|
+
</p>
|
61
|
+
</div>
|
62
|
+
{% endif %}
|
63
|
+
|
64
|
+
<div class="copyright">
|
65
|
+
<p class="year">
|
66
|
+
© {{ docyear }} The Calendaring and Scheduling Consortium, Inc.
|
67
|
+
</p>
|
68
|
+
|
69
|
+
<p class="message">
|
70
|
+
All rights reserved. Unless otherwise specified, no part of this
|
71
|
+
publication may be reproduced or utilized otherwise in any form or by any
|
72
|
+
means, electronic or mechanical, including photocopying, or posting on the
|
73
|
+
internet or an intranet, without prior written permission. Permission can
|
74
|
+
be requested from the address below.
|
75
|
+
</p>
|
76
|
+
|
77
|
+
<div class="contact-info">
|
78
|
+
<p class="name">The Calendaring and Scheduling Consortium, Inc.</p>
|
79
|
+
<p class="address">
|
80
|
+
4390 Chaffin Lane<br />
|
81
|
+
McKinleyville<br />
|
82
|
+
California 95519<br />
|
83
|
+
United States of America<br />
|
84
|
+
<br />
|
85
|
+
<a href="mailto:copyright@ribose.com">copyright@ribose.com</a><br />
|
86
|
+
<a href="open.ribose.com">open.ribose.com</a>
|
87
|
+
</p>
|
88
|
+
</div>
|
89
|
+
</div>
|
90
|
+
|
91
|
+
<div class="rule"></div>
|
92
|
+
</div>
|
93
|
+
|
94
|
+
|
95
|
+
</header>
|
@@ -0,0 +1,940 @@
|
|
1
|
+
/*
|
2
|
+
0 CSS RESET
|
3
|
+
*/
|
4
|
+
|
5
|
+
/* http://meyerweb.com/eric/tools/css/reset/
|
6
|
+
v2.0 | 20110126
|
7
|
+
License: none (public domain)
|
8
|
+
*/
|
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
|
+
|
27
|
+
html, body, div, span, applet, object, iframe,
|
28
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
29
|
+
a, abbr, acronym, address, big, cite, code,
|
30
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
31
|
+
small, strike, strong, sub, sup, tt, var,
|
32
|
+
b, u, i, center,
|
33
|
+
dl, dt, dd, ol, ul, li,
|
34
|
+
fieldset, form, label, legend,
|
35
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
36
|
+
article, aside, canvas, details, embed,
|
37
|
+
figure, figcaption, footer, header, hgroup,
|
38
|
+
menu, nav, output, ruby, section, summary,
|
39
|
+
time, mark, audio, video {
|
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;
|
96
|
+
}
|
97
|
+
|
98
|
+
|
99
|
+
/* HTML5 display-role reset for older browsers */
|
100
|
+
article, aside, details, figcaption, figure,
|
101
|
+
footer, header, hgroup, menu, nav, section {
|
102
|
+
display: block;
|
103
|
+
}
|
104
|
+
body {
|
105
|
+
line-height: 1;
|
106
|
+
}
|
107
|
+
blockquote, q {
|
108
|
+
quotes: none;
|
109
|
+
}
|
110
|
+
blockquote:before, blockquote:after,
|
111
|
+
q:before, q:after {
|
112
|
+
content: '';
|
113
|
+
content: none;
|
114
|
+
}
|
115
|
+
table {
|
116
|
+
border-collapse: collapse;
|
117
|
+
border-spacing: 0;
|
118
|
+
}
|
119
|
+
|
120
|
+
|
121
|
+
/*
|
122
|
+
1. HTML & Body
|
123
|
+
*/
|
124
|
+
|
125
|
+
body {
|
126
|
+
margin: 0;
|
127
|
+
margin-left: auto;
|
128
|
+
margin-right: auto;
|
129
|
+
max-width: 100%;
|
130
|
+
color: #1d1d1d;
|
131
|
+
font-weight: 300;
|
132
|
+
font-size: 15px;
|
133
|
+
line-height: 1.4em;
|
134
|
+
background-color: #ffffff;
|
135
|
+
}
|
136
|
+
|
137
|
+
main {margin: 0 3em 0 6em;}
|
138
|
+
|
139
|
+
#toc{
|
140
|
+
font-family: $bodyfont;
|
141
|
+
font-weight: 400;
|
142
|
+
}
|
143
|
+
|
144
|
+
/*
|
145
|
+
2. Responsive navigation layout
|
146
|
+
*/
|
147
|
+
|
148
|
+
|
149
|
+
@media (min-width: 768px) {
|
150
|
+
nav {
|
151
|
+
position: fixed;
|
152
|
+
top: 0;
|
153
|
+
bottom: 0;
|
154
|
+
left: 0;
|
155
|
+
width: 323px;
|
156
|
+
font-size: 0.9em;
|
157
|
+
overflow: auto;
|
158
|
+
padding: 0 0 0 45px;
|
159
|
+
margin-right: 30px;
|
160
|
+
background-color:#f7f7f7;
|
161
|
+
}
|
162
|
+
|
163
|
+
#toggle {
|
164
|
+
position: fixed;
|
165
|
+
height: 100%;
|
166
|
+
width: 30px;
|
167
|
+
background-color:#1d1d1d;
|
168
|
+
color: white!important;
|
169
|
+
cursor: pointer;
|
170
|
+
z-index: 100;
|
171
|
+
}
|
172
|
+
|
173
|
+
#toggle span {
|
174
|
+
text-align: center;
|
175
|
+
width: 100%;
|
176
|
+
position: absolute;
|
177
|
+
top: 50%;
|
178
|
+
transform: translate(0, -50%);
|
179
|
+
|
180
|
+
}
|
181
|
+
|
182
|
+
|
183
|
+
.container {
|
184
|
+
padding-left: 360px;
|
185
|
+
}
|
186
|
+
|
187
|
+
.rule.toc {
|
188
|
+
display: none;
|
189
|
+
}
|
190
|
+
|
191
|
+
h1.toc-contents {
|
192
|
+
margin-top: 1em;
|
193
|
+
}
|
194
|
+
|
195
|
+
ul#toc-list {
|
196
|
+
padding:0;
|
197
|
+
margin:0;
|
198
|
+
}
|
199
|
+
}
|
200
|
+
|
201
|
+
@media (max-width: 768px) {
|
202
|
+
#toc {
|
203
|
+
padding: 0 1.5em 0 1.5em;
|
204
|
+
overflow: visible;
|
205
|
+
}
|
206
|
+
}
|
207
|
+
|
208
|
+
|
209
|
+
|
210
|
+
#toc ul {
|
211
|
+
margin: 0;
|
212
|
+
padding: 0;
|
213
|
+
list-style: none;
|
214
|
+
}
|
215
|
+
|
216
|
+
#toc li {
|
217
|
+
padding: 5px 10px;
|
218
|
+
}
|
219
|
+
|
220
|
+
#toc a {
|
221
|
+
color: #485094;
|
222
|
+
text-decoration: none;
|
223
|
+
display: block;
|
224
|
+
}
|
225
|
+
|
226
|
+
#toc a:hover {
|
227
|
+
color: white;
|
228
|
+
}
|
229
|
+
|
230
|
+
#toc .h2 {
|
231
|
+
padding-left: 30px;
|
232
|
+
}
|
233
|
+
|
234
|
+
#toc .h3 {
|
235
|
+
padding-left: 50px;
|
236
|
+
}
|
237
|
+
|
238
|
+
#toc .toc-active a {
|
239
|
+
color: white;
|
240
|
+
}
|
241
|
+
|
242
|
+
#toc .toc-active, #toc li:hover {
|
243
|
+
background: #1d1d1d;
|
244
|
+
box-shadow: inset -5px 0px 10px -5px #1d1d1d!important;
|
245
|
+
|
246
|
+
}
|
247
|
+
|
248
|
+
#toc li:hover a {
|
249
|
+
color: white;
|
250
|
+
}
|
251
|
+
|
252
|
+
/*
|
253
|
+
Document types + stages
|
254
|
+
*/
|
255
|
+
|
256
|
+
.document-type-band {
|
257
|
+
left:0;
|
258
|
+
top:180px;
|
259
|
+
height: 100%;
|
260
|
+
position: fixed;
|
261
|
+
display: block;
|
262
|
+
z-index: 99;
|
263
|
+
/*box-shadow: -5px 0px 10px #1d1d1d*/
|
264
|
+
|
265
|
+
}
|
266
|
+
|
267
|
+
.document-stage-band {
|
268
|
+
left:0;
|
269
|
+
top:0;
|
270
|
+
height: 100%;
|
271
|
+
position: fixed;
|
272
|
+
display: block;
|
273
|
+
z-index: 98;
|
274
|
+
box-shadow: -5px 0px 10px #1d1d1d
|
275
|
+
}
|
276
|
+
|
277
|
+
.document-type {
|
278
|
+
position: relative;
|
279
|
+
width: 25px;
|
280
|
+
}
|
281
|
+
|
282
|
+
.document-stage {
|
283
|
+
position: relative;
|
284
|
+
width: 25px;
|
285
|
+
}
|
286
|
+
|
287
|
+
p.document-type, p.document-stage {
|
288
|
+
color: white;
|
289
|
+
text-transform: uppercase;
|
290
|
+
font-size: 0.9em;
|
291
|
+
font-weight: 400;
|
292
|
+
letter-spacing: 0.05em;
|
293
|
+
margin:0;
|
294
|
+
margin-left: 6px;
|
295
|
+
writing-mode:tb-rl;
|
296
|
+
-webkit-transform:rotate(180deg);
|
297
|
+
-moz-transform:rotate(180deg);
|
298
|
+
-o-transform: rotate(180deg);
|
299
|
+
white-space:nowrap;
|
300
|
+
display:block;
|
301
|
+
bottom:0;
|
302
|
+
}
|
303
|
+
|
304
|
+
p.document-type {
|
305
|
+
font-weight: 400;
|
306
|
+
height: 210px;
|
307
|
+
}
|
308
|
+
|
309
|
+
#governance-band p.document-type {
|
310
|
+
font-weight: 400;
|
311
|
+
height: 230px!important;
|
312
|
+
}
|
313
|
+
|
314
|
+
p.document-stage {
|
315
|
+
font-weight: 300;
|
316
|
+
height:160px;
|
317
|
+
}
|
318
|
+
|
319
|
+
#standard-band {
|
320
|
+
background-color: #0ac442;
|
321
|
+
}
|
322
|
+
|
323
|
+
#standard {
|
324
|
+
border-bottom: solid 3px #0ac442;
|
325
|
+
}
|
326
|
+
|
327
|
+
#governance {
|
328
|
+
border-bottom: solid 3px #750697;
|
329
|
+
}
|
330
|
+
|
331
|
+
#governance-band {
|
332
|
+
background-color: #750697;
|
333
|
+
}
|
334
|
+
|
335
|
+
#guide {
|
336
|
+
border-bottom: solid 3px #48a0e7;
|
337
|
+
}
|
338
|
+
|
339
|
+
#guide-band {
|
340
|
+
background-color: #48a0e7;
|
341
|
+
}
|
342
|
+
|
343
|
+
.coverpage-maturity {
|
344
|
+
font-family: $bodyfont;
|
345
|
+
font-weight: 400;
|
346
|
+
font-size: 1em;
|
347
|
+
margin: 0 0 2em 0;
|
348
|
+
text-transform: uppercase;
|
349
|
+
}
|
350
|
+
|
351
|
+
#proposal {
|
352
|
+
border-bottom: solid 3px #00BFFF;
|
353
|
+
}
|
354
|
+
|
355
|
+
#proposal-band {
|
356
|
+
background-color: #00BFFF;
|
357
|
+
}
|
358
|
+
|
359
|
+
#working-draft {
|
360
|
+
border-bottom: solid 3px #fda706;
|
361
|
+
}
|
362
|
+
|
363
|
+
#working-draft-band {
|
364
|
+
background-color: #fda706;
|
365
|
+
}
|
366
|
+
|
367
|
+
#committee-draft {
|
368
|
+
border-bottom: solid 3px #fd06fd;
|
369
|
+
}
|
370
|
+
|
371
|
+
#committee-draft-band {
|
372
|
+
background-color: #fd06fd;
|
373
|
+
}
|
374
|
+
|
375
|
+
#draft-standard {
|
376
|
+
border-bottom: solid 3px #fdf906;
|
377
|
+
}
|
378
|
+
|
379
|
+
#draft-standard-band {
|
380
|
+
background-color: #fdf906;
|
381
|
+
}
|
382
|
+
|
383
|
+
#final-draft {
|
384
|
+
border-bottom: solid 3px #7e0d13;
|
385
|
+
}
|
386
|
+
|
387
|
+
#final-draft-band {
|
388
|
+
background-color: #7e0d13;
|
389
|
+
}
|
390
|
+
|
391
|
+
#published {
|
392
|
+
border-bottom: solid 3px #0ac442;
|
393
|
+
}
|
394
|
+
|
395
|
+
#published-band {
|
396
|
+
background-color: #0ac442;
|
397
|
+
}
|
398
|
+
|
399
|
+
#withdrawn {
|
400
|
+
border-bottom: solid 3px #a0a0a0;
|
401
|
+
}
|
402
|
+
|
403
|
+
#withdrawn-band {
|
404
|
+
background-color: #a0a0a0;
|
405
|
+
}
|
406
|
+
|
407
|
+
/*
|
408
|
+
3. TYPOGRAPHY
|
409
|
+
*/
|
410
|
+
|
411
|
+
/*
|
412
|
+
3.1 Titles
|
413
|
+
*/
|
414
|
+
|
415
|
+
h1,h2,h3,h4,h5,h6 {
|
416
|
+
font-family: $headerfont;
|
417
|
+
color: #0e1a85;
|
418
|
+
font-weight: 600;
|
419
|
+
margin-top: 2em;
|
420
|
+
margin-bottom: 0.3em;
|
421
|
+
}
|
422
|
+
|
423
|
+
h1 {
|
424
|
+
font-size: 1.4em;
|
425
|
+
text-transform: uppercase;
|
426
|
+
margin-top: 2em;
|
427
|
+
}
|
428
|
+
|
429
|
+
h1#content {
|
430
|
+
margin-top: 2em;
|
431
|
+
}
|
432
|
+
|
433
|
+
h2 {
|
434
|
+
font-size: 1.3em;
|
435
|
+
font-weight: 400;
|
436
|
+
}
|
437
|
+
|
438
|
+
h3 {
|
439
|
+
font-size: 1.1em;
|
440
|
+
font-weight: 400;
|
441
|
+
}
|
442
|
+
|
443
|
+
/*
|
444
|
+
span[id^="toc"]:after {
|
445
|
+
float: left;
|
446
|
+
padding-right: 4px;
|
447
|
+
margin-left: -20px;
|
448
|
+
font-family: "Font Awesome 5 Free";
|
449
|
+
font-weight: 900;
|
450
|
+
font-size: 0.8em;
|
451
|
+
color: #cfcfcf;
|
452
|
+
content: "\f0c1";
|
453
|
+
}
|
454
|
+
*/
|
455
|
+
|
456
|
+
.TermNum, .Terms, .AltTerms {
|
457
|
+
color: #485094;
|
458
|
+
font-weight: 400;
|
459
|
+
}
|
460
|
+
|
461
|
+
p.TermNum {
|
462
|
+
font-size: 0.9em;
|
463
|
+
line-height: 1em;
|
464
|
+
margin: 0;
|
465
|
+
margin-top: 2em;
|
466
|
+
}
|
467
|
+
|
468
|
+
p.Terms {
|
469
|
+
font-size: 1.1em;
|
470
|
+
line-height: 1.7em;
|
471
|
+
margin: 0;
|
472
|
+
}
|
473
|
+
|
474
|
+
/*
|
475
|
+
p.AltTerms {
|
476
|
+
font-style: italic;
|
477
|
+
margin: 0;
|
478
|
+
}
|
479
|
+
*/
|
480
|
+
|
481
|
+
span.obligation {
|
482
|
+
font-weight: 400;
|
483
|
+
}
|
484
|
+
|
485
|
+
|
486
|
+
/*
|
487
|
+
3.2 Links
|
488
|
+
*/
|
489
|
+
|
490
|
+
a, a:visited{
|
491
|
+
text-decoration: none;
|
492
|
+
color: #485094;
|
493
|
+
}
|
494
|
+
|
495
|
+
a:hover {
|
496
|
+
color: white;
|
497
|
+
background: #1d1d1d;
|
498
|
+
box-shadow: 3px 0 0 #1d1d1d, -3px 0 0 #1d1d1d;
|
499
|
+
/* padding: 2px 0 2px 0; */
|
500
|
+
}
|
501
|
+
|
502
|
+
::selection {
|
503
|
+
background: #1d1d1d; /* WebKit/Blink Browsers */
|
504
|
+
color: white;
|
505
|
+
}
|
506
|
+
::-moz-selection {
|
507
|
+
background: #1d1d1d; /* Gecko Browsers */
|
508
|
+
color: white;
|
509
|
+
}
|
510
|
+
|
511
|
+
.contact-info a:hover {
|
512
|
+
color: #485094;
|
513
|
+
text-decoration: underline;
|
514
|
+
background: none;
|
515
|
+
box-shadow: 0 0 0 0;
|
516
|
+
}
|
517
|
+
|
518
|
+
|
519
|
+
|
520
|
+
/*
|
521
|
+
3.3 Lists
|
522
|
+
*/
|
523
|
+
|
524
|
+
ul {
|
525
|
+
margin-left: 1.2em;
|
526
|
+
}
|
527
|
+
|
528
|
+
ul {
|
529
|
+
margin-left: 1.2em; }
|
530
|
+
|
531
|
+
ul > li {
|
532
|
+
list-style: none;
|
533
|
+
}
|
534
|
+
|
535
|
+
ul > li:before {
|
536
|
+
content: "—";
|
537
|
+
display: inline-block; width: 1em;
|
538
|
+
margin-left: -1.2em;
|
539
|
+
}
|
540
|
+
|
541
|
+
li p {
|
542
|
+
display: inline;
|
543
|
+
}
|
544
|
+
|
545
|
+
li:first-child {
|
546
|
+
margin-top: 1em;
|
547
|
+
}
|
548
|
+
|
549
|
+
#toc ul {
|
550
|
+
margin-bottom: 0.25em; }
|
551
|
+
|
552
|
+
#toc li {
|
553
|
+
list-style-type: none; }
|
554
|
+
|
555
|
+
#toc li:before {
|
556
|
+
content: " ";
|
557
|
+
display: none;
|
558
|
+
}
|
559
|
+
|
560
|
+
|
561
|
+
|
562
|
+
/*
|
563
|
+
3.4 Rules
|
564
|
+
*/
|
565
|
+
|
566
|
+
.rule {
|
567
|
+
width: 100%;
|
568
|
+
height: 1px;
|
569
|
+
background-color: #0e1a85;
|
570
|
+
margin: 2em 0;
|
571
|
+
}
|
572
|
+
|
573
|
+
h2 p {
|
574
|
+
display: inline;
|
575
|
+
}
|
576
|
+
|
577
|
+
/*
|
578
|
+
3.5 Bibliograhy
|
579
|
+
*/
|
580
|
+
|
581
|
+
p.Biblio, p.NormRef {
|
582
|
+
margin-top: 1em;
|
583
|
+
margin-left: 2em;
|
584
|
+
text-indent:-2em;
|
585
|
+
}
|
586
|
+
|
587
|
+
/*
|
588
|
+
3.6 Source Code + figures
|
589
|
+
*/
|
590
|
+
|
591
|
+
.figure, .Sourcecode {
|
592
|
+
font-family: $monospacefont;
|
593
|
+
background-color: #f7f7f7;
|
594
|
+
font-size: 0.8em;
|
595
|
+
line-height: 1.6em;
|
596
|
+
padding: 1.5em;
|
597
|
+
margin: 2em 0 1em 0;
|
598
|
+
overflow: auto;
|
599
|
+
}
|
600
|
+
|
601
|
+
.FigureTitle {
|
602
|
+
font-weight: 700;
|
603
|
+
font-size: 1em;
|
604
|
+
text-align: center;
|
605
|
+
}
|
606
|
+
|
607
|
+
/*
|
608
|
+
3.7 Notes
|
609
|
+
*/
|
610
|
+
|
611
|
+
.Note {
|
612
|
+
background-color: #fff495;
|
613
|
+
color: #47430c;
|
614
|
+
padding: 1.2em;
|
615
|
+
margin: 2em 0 1em 0;
|
616
|
+
}
|
617
|
+
|
618
|
+
/*
|
619
|
+
3.8 Examples
|
620
|
+
*/
|
621
|
+
|
622
|
+
.example {
|
623
|
+
background-color: #e1eef1;
|
624
|
+
padding: 1.2em;
|
625
|
+
margin: 2em 0 1em 0;
|
626
|
+
}
|
627
|
+
|
628
|
+
.example .example-title {
|
629
|
+
font-weight: 700;
|
630
|
+
text-transform: uppercase;
|
631
|
+
text-align: center;
|
632
|
+
margin-top:0;
|
633
|
+
}
|
634
|
+
|
635
|
+
/*
|
636
|
+
3.9 Tables
|
637
|
+
*/
|
638
|
+
|
639
|
+
table {
|
640
|
+
border-collapse: collapse;
|
641
|
+
width: 100%;
|
642
|
+
font-weight: 300;
|
643
|
+
margin: 1em 0 2em 0;
|
644
|
+
margin-left: auto;
|
645
|
+
margin-right: auto;
|
646
|
+
padding-right: 2em;
|
647
|
+
}
|
648
|
+
|
649
|
+
table, th, td {
|
650
|
+
border: 1px solid black;
|
651
|
+
font-size: 0.95em;
|
652
|
+
}
|
653
|
+
|
654
|
+
td, th {
|
655
|
+
padding: 1em;
|
656
|
+
}
|
657
|
+
|
658
|
+
td.header {
|
659
|
+
font-weight: 400;
|
660
|
+
}
|
661
|
+
|
662
|
+
p.TableTitle {
|
663
|
+
text-align: center;
|
664
|
+
margin-top: 2.5em;
|
665
|
+
font-weight: 400;
|
666
|
+
}
|
667
|
+
|
668
|
+
/*
|
669
|
+
3.10 Footnotes
|
670
|
+
*/
|
671
|
+
|
672
|
+
a.footnote-number {
|
673
|
+
vertical-align: super;
|
674
|
+
font-size: 0.8em;
|
675
|
+
}
|
676
|
+
|
677
|
+
.footnote {
|
678
|
+
font-size: 0.9em;
|
679
|
+
}
|
680
|
+
|
681
|
+
|
682
|
+
/*
|
683
|
+
3.11 Blockquotes
|
684
|
+
*/
|
685
|
+
|
686
|
+
.Quote {
|
687
|
+
background-color: #f7f7f7;
|
688
|
+
font-style: italic;
|
689
|
+
width: 80%;
|
690
|
+
padding: 1.5em;
|
691
|
+
margin-top: 2em;
|
692
|
+
margin-left: auto;
|
693
|
+
margin-right: auto;
|
694
|
+
}
|
695
|
+
|
696
|
+
.QuoteAttribution
|
697
|
+
{text-align:right;}
|
698
|
+
|
699
|
+
|
700
|
+
/*
|
701
|
+
3.12 Formulas
|
702
|
+
*/
|
703
|
+
|
704
|
+
.formula, .Formula {
|
705
|
+
background-color: #f7f7f7;
|
706
|
+
padding: 1.5em;
|
707
|
+
margin-top: 2em;
|
708
|
+
text-align: center;
|
709
|
+
}
|
710
|
+
|
711
|
+
/*
|
712
|
+
3.13 Contact Info
|
713
|
+
*/
|
714
|
+
|
715
|
+
.contact-info {
|
716
|
+
background-color: #f7f7f7;
|
717
|
+
padding: 2em;
|
718
|
+
margin-top: 5em;
|
719
|
+
width: auto;
|
720
|
+
margin-left: auto;
|
721
|
+
margin-right: auto;
|
722
|
+
text-align: left;
|
723
|
+
}
|
724
|
+
|
725
|
+
.contact-info p, .contact-info a {
|
726
|
+
font-family: $monospacefont;
|
727
|
+
font-weight: 400;
|
728
|
+
}
|
729
|
+
|
730
|
+
.contact-info .name {
|
731
|
+
font-weight: 700;
|
732
|
+
font-size: 1.2em;
|
733
|
+
margin-bottom:0;
|
734
|
+
}
|
735
|
+
|
736
|
+
.contact-info .address {
|
737
|
+
font-size: 1em;
|
738
|
+
line-height: 1.3em;
|
739
|
+
margin-top:0;
|
740
|
+
}
|
741
|
+
|
742
|
+
/*
|
743
|
+
Keywords
|
744
|
+
*/
|
745
|
+
|
746
|
+
span.keyword {
|
747
|
+
font-weight: 600;
|
748
|
+
}
|
749
|
+
|
750
|
+
/*
|
751
|
+
Paragraphs
|
752
|
+
*/
|
753
|
+
|
754
|
+
p {
|
755
|
+
margin-top: 1em;
|
756
|
+
margin-bottom: 1em;
|
757
|
+
}
|
758
|
+
|
759
|
+
/* Admonitions */
|
760
|
+
|
761
|
+
.Admonition, .admonition {
|
762
|
+
background-color: #ffb3b3;
|
763
|
+
/* color: #47430c;*/
|
764
|
+
padding: 0.5em;
|
765
|
+
margin: 1.5em 0 1.5em 0;
|
766
|
+
text-align: left;
|
767
|
+
}
|
768
|
+
|
769
|
+
.Admonition p, .admonition p {
|
770
|
+
margin: 0;
|
771
|
+
}
|
772
|
+
|
773
|
+
|
774
|
+
/*
|
775
|
+
4.0 Page header
|
776
|
+
*/
|
777
|
+
|
778
|
+
/*
|
779
|
+
4.1 Top Logo
|
780
|
+
*/
|
781
|
+
|
782
|
+
.wrapper-top {
|
783
|
+
background-color:#0e1a85;
|
784
|
+
/* background-image: url("img/dots@2x.png"); */
|
785
|
+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAACXBIWXMAABYlAAAWJQFJUiTwAAADwUlEQVR4nO3YgQ2AMAwDwcAiWZ1NizrH30lIeIEq9nPOGSDqPgC7+93v/suy3Mmvhx+6VAAIcwFAmc4nyzYAIMgGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAECSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAIS5AKCs3oFk2QYAJNkAIMwFAGX1DiTLNgAgyQYAYS4AKKt3IFm2AQBJNgAIcwFAWb0DybINAEiyAUCYCwDK6h1Ilm0AQJINAMJcAFBW70CybAMAkmwAEOYCgLJ6B5JlGwCQZAOAMBcAlNU7kCzbAIAkGwCEuQCgrN6BZNkGACTZACDMBQBl9Q4kyzYAIMkGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAECSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAIS5AKCs3oFk2QYAJNkAIMwFAGX1DiTLNgAgyQYAYS4AKKt3IFm2AQBJNgAIcwFAWb0DybINAEiyAUCYCwDK6h1Ilm0AQJINAMJcAFBW70CybAMAkmwAEOYCgLJ6B5JlGwCQZAOAMBcAlNU7kCzbAIAkGwCEuQCgrN6BZNkGACTZACDMBQBl9Q4kyzYAIMkGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAECSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAFTNzA9ggAr9aahO8QAAAABJRU5ErkJggg==');
|
786
|
+
color: #ffffff;
|
787
|
+
padding: 2em 0;
|
788
|
+
}
|
789
|
+
|
790
|
+
.doc-number {
|
791
|
+
font-size: 0.5em;
|
792
|
+
font-family: $bodyfont;
|
793
|
+
}
|
794
|
+
|
795
|
+
.coverpage-title {
|
796
|
+
padding-bottom: 0.5em;
|
797
|
+
font-family: $headerfont;
|
798
|
+
font-size: 1.2em;
|
799
|
+
line-height: 1.2em;
|
800
|
+
font-weight: 900;
|
801
|
+
padding-left: 1em;
|
802
|
+
padding-right: 1em;
|
803
|
+
}
|
804
|
+
|
805
|
+
.coverpage-date {
|
806
|
+
font-family: $headerfont;
|
807
|
+
font-weight: 900;
|
808
|
+
}
|
809
|
+
|
810
|
+
.title-section1 {
|
811
|
+
padding: 0 2em 0 3em;
|
812
|
+
}
|
813
|
+
|
814
|
+
.prefatory-section {
|
815
|
+
padding: 0 3em 0 6em;
|
816
|
+
}
|
817
|
+
|
818
|
+
|
819
|
+
.zzSTDTitle1, .MsoCommentText {
|
820
|
+
display: none;
|
821
|
+
}
|
822
|
+
|
823
|
+
|
824
|
+
.coverpage {
|
825
|
+
text-align: center;
|
826
|
+
padding-left: 1.5em;
|
827
|
+
}
|
828
|
+
|
829
|
+
.coverpage-logo span, .coverpage-tc-name span {
|
830
|
+
font-family: $bodyfont;
|
831
|
+
text-transform: uppercase;
|
832
|
+
font-weight: 600;
|
833
|
+
}
|
834
|
+
|
835
|
+
.coverpage-tc-name {
|
836
|
+
font-size: 1.2em;
|
837
|
+
line-height: 1.2em;
|
838
|
+
margin: 0.25em 0;
|
839
|
+
}
|
840
|
+
|
841
|
+
/*
|
842
|
+
4.2 Document Identity
|
843
|
+
*/
|
844
|
+
|
845
|
+
.coverpage-doc-identity {
|
846
|
+
font-size: 2em;
|
847
|
+
line-height: 2em;
|
848
|
+
}
|
849
|
+
|
850
|
+
|
851
|
+
.coverpage-title .title-second {
|
852
|
+
display: none;
|
853
|
+
}
|
854
|
+
|
855
|
+
.coverpage-stage-block {
|
856
|
+
font-family: $bodyfont;
|
857
|
+
font-weight: 700;
|
858
|
+
font-size: 1.25em;
|
859
|
+
margin: 2em 0em 2em 0em;
|
860
|
+
text-transform: uppercase;
|
861
|
+
}
|
862
|
+
|
863
|
+
|
864
|
+
|
865
|
+
|
866
|
+
/*
|
867
|
+
4.3 Draft Warning
|
868
|
+
*/
|
869
|
+
|
870
|
+
|
871
|
+
.coverpage-warning {
|
872
|
+
border-top: solid 1px #f36f36;
|
873
|
+
border-bottom: solid 1px #f36f36;
|
874
|
+
margin: 1em 2em;
|
875
|
+
color: #485094;
|
876
|
+
padding: 1em;
|
877
|
+
}
|
878
|
+
|
879
|
+
.coverpage-warning .title {
|
880
|
+
color: #f36f36;
|
881
|
+
font-family: $headerfont;
|
882
|
+
font-weight: 700;
|
883
|
+
text-transform: uppercase;
|
884
|
+
font-size: 1.2em;
|
885
|
+
}
|
886
|
+
|
887
|
+
|
888
|
+
|
889
|
+
/*
|
890
|
+
4.4 Copyright
|
891
|
+
*/
|
892
|
+
|
893
|
+
.copyright {
|
894
|
+
padding: 1em;
|
895
|
+
font-size: 0.8em;
|
896
|
+
text-align: left;
|
897
|
+
}
|
898
|
+
|
899
|
+
|
900
|
+
.copyright .name, .copyright .address {color: #485094;}
|
901
|
+
|
902
|
+
|
903
|
+
|
904
|
+
/*
|
905
|
+
5.0 Other styles
|
906
|
+
*/
|
907
|
+
|
908
|
+
|
909
|
+
|
910
|
+
/*
|
911
|
+
To top button
|
912
|
+
*/
|
913
|
+
|
914
|
+
#myBtn {
|
915
|
+
font-family: $monospacefont;
|
916
|
+
display: none;
|
917
|
+
position: fixed;
|
918
|
+
bottom: 20px;
|
919
|
+
right: 30px;
|
920
|
+
z-index: 99;
|
921
|
+
font-size: 12px;
|
922
|
+
border: none;
|
923
|
+
outline: none;
|
924
|
+
background-color: #1d1d1d;
|
925
|
+
opacity: 0.15;
|
926
|
+
color: white;
|
927
|
+
cursor: pointer;
|
928
|
+
padding: 10px 15px 10px 15px;
|
929
|
+
border-radius: 4px;
|
930
|
+
}
|
931
|
+
|
932
|
+
#myBtn:hover {
|
933
|
+
opacity: 1;
|
934
|
+
}
|
935
|
+
|
936
|
+
a.anchorjs-link:hover {
|
937
|
+
background: none;
|
938
|
+
color: #485094;
|
939
|
+
box-shadow: none;
|
940
|
+
}
|