metanorma-itu 1.0.2 → 1.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e18def3906b392a164e0fc200836e95217ec2c0689d4721bc64ef4e8c3a7cc0d
4
- data.tar.gz: 1d0ca7d8a3840c579f554fe32208a5b12fa7b9de960e68d2aca824ca103ab030
3
+ metadata.gz: 1fbdf41fa2fae78d51abadf06175e679d3d6834182477ad9ff3dcd38510b1751
4
+ data.tar.gz: 4895c906d08ccda2bfbb3baddfd2065c287a1ed218f916a3fdb6a923c155dc0e
5
5
  SHA512:
6
- metadata.gz: d38ceb1119b8a45cad531b4fdad23b3186c1a0765c3f263e6daebdb1632020549c8838fb89a9d9f73983dfe7cadc71facdaec6d5d334df76f5e5eb80c219f2ab
7
- data.tar.gz: 015be0de1ece74eb7efb1edda36282cf1979eab4b08a9bb5eed74d28ca9ed288ce1b68fdf9547bef8932b64d5cb222d7a271d5972615e9b994b51bcc9ea7b6bb
6
+ metadata.gz: 1111b0aedc979ff66de83b6fb7cf7e4b0340ef6d72c173e688c478bde1634dce238f5fa8109e30d6db55893966c8764faa36645210b9d165af6a16fe1c5a1700
7
+ data.tar.gz: 2a9806bfe6f53fbd33ca4d15e3006acfb7784dc13297c7d3e0cab8dc5324016400af1516747ad84b5996405e37bb67b172394e5fe0e0422b5915ea5b7695aa7d
@@ -1,161 +1,429 @@
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
+ html, body, div, span, applet, object, iframe,
61
+ p, blockquote,
62
+ a, abbr, acronym, address, big, cite,
63
+ del, dfn, em, img, ins, q, s,
64
+ small, strike, strong, sub, sup, var,
65
+ b, u, i, center,
66
+ dl, dt, dd, ol, ul, li,
67
+ fieldset, form, label, legend,
68
+ table, caption, tbody, tfoot, thead, tr, th, td,
69
+ article, aside, canvas, details, embed,
70
+ figure, figcaption, footer, header, hgroup,
71
+ menu, nav, output, ruby, section, summary,
72
+ time, mark, audio, video {
73
+ font-family: $bodyfont;
74
+ }
75
+
76
+ code, pre, tt, kbd, samp {
77
+ font-family: $monospacefont;
78
+ font-variant-ligatures: none;
79
+ }
80
+
81
+ code *, pre *, tt *, kbd *, samp * {
82
+ font-family: $monospacefont !important;
83
+ font-variant-ligatures: none;
84
+ }
85
+
86
+ h1, h2, h3, h4, h5, h6, .h2Annex {
87
+ font-family: $headerfont;
88
+ }
89
+
90
+ dl {
91
+ display: grid;
92
+ grid-template-columns: max-content auto;
93
+ }
94
+
95
+ dt {
96
+ grid-column-start: 1;
97
+ }
98
+
99
+ dd {
100
+ grid-column-start: 2;
101
+ }
102
+
103
+ dd p, dt p {
104
+ margin-top: 0px;
105
+ }
106
+
1
107
  dl.glossary dt {
2
108
  font-weight: bold;
3
109
  }
4
110
 
111
+
112
+ /* HTML5 display-role reset for older browsers */
113
+ article, aside, details, figcaption, figure,
114
+ footer, header, hgroup, menu, nav, section {
115
+ display: block;
116
+ }
5
117
  body {
6
- @include bodyStyle1(14px, 1.6em, #141115, #fff);
118
+ line-height: 1;
7
119
  }
8
120
 
9
- nav {
10
- @include sidebarNav(
11
- $offsetLeft: 45px,
12
- $colorBg: #fff,
13
- $width: 323px);
14
-
15
- #toc {
16
- @include sidebarToc();
17
- }
121
+ blockquote, q {
122
+ quotes: none;
123
+ }
124
+ blockquote:before, blockquote:after,
125
+ q:before, q:after {
126
+ content: '';
127
+ content: none;
128
+ }
129
+ table {
130
+ border-collapse: collapse;
131
+ border-spacing: 0;
18
132
  }
19
133
 
20
- #toc {
21
- font-family: $bodyfont;
22
- font-weight: 400;
23
134
 
24
- @include toc($colorLink: #141115, $colorLinkActiveBg: #da1d52, $colorLinkActiveFg: white);
135
+ /*
136
+ 1. HTML & Body
137
+ */
25
138
 
26
- .h1 {
27
- text-transform: uppercase;
139
+ body {
140
+ margin: 0;
141
+ margin-left: auto;
142
+ margin-right: auto;
143
+ max-width: 100%;
144
+ color: #141115;
145
+ font-weight: 400;
146
+ font-size: 14px;
147
+ line-height: 1.6em;
148
+ background-color: #fff;
28
149
  }
29
150
 
30
- li:hover a {
31
- background: none;
32
- box-shadow: none;
33
- }
151
+ main {margin: 0 3em 0 6em;}
34
152
 
35
- li:before {
36
- content: " ";
37
- display: none;
153
+ #toc{
154
+ font-family: $bodyfont;
155
+ font-weight: 400;
38
156
  }
39
157
 
40
- @media print {
41
- .toc-active a {
42
- color: #4D7EA5;
158
+ /*
159
+ 2. Responsive navigation layout
160
+ */
161
+
162
+
163
+ @media screen and (min-width: 768px) {
164
+ nav {
165
+ position: fixed;
166
+ top: 0;
167
+ bottom: 0;
168
+ left: 0;
169
+ width: 323px;
170
+ font-size: 0.9em;
171
+ overflow: auto;
172
+ padding: 0 0 0 45px;
173
+ margin-right: 30px;
174
+ background-color:#ffffff;
43
175
  }
44
176
 
45
- .toc-active, li:hover {
46
- background: white;
47
- box-shadow: none !important;
177
+ #toggle {
178
+ position: fixed;
179
+ height: 100%;
180
+ width: 30px;
181
+ background-color:#DA1D52;
182
+ color: white!important;
183
+ cursor: pointer;
184
+ z-index: 100;
48
185
  }
49
186
 
50
- li:hover a {
51
- color: black;
187
+ #toggle span {
188
+ text-align: center;
189
+ width: 100%;
190
+ position: absolute;
191
+ top: 50%;
192
+ transform: translate(0, -50%);
193
+
194
+ }
195
+
196
+ .container {
197
+ padding-left: 360px;
198
+ }
199
+
200
+ .rule.toc {
201
+ display: none;
202
+ }
203
+
204
+ h1.toc-contents {
205
+ margin-top: 1em;
206
+ }
207
+
208
+ ul#toc-list {
209
+ padding:0;
210
+ margin:0;
52
211
  }
53
- }
54
212
  }
55
213
 
56
- #toc-list {
57
- ul {
58
- margin-bottom: 0.25em;
59
- }
60
- li {
61
- list-style-type: none;
214
+ @media screen and (max-width: 768px) {
215
+ #toc {
216
+ padding: 0 1.5em 0 1.5em;
217
+ overflow: visible;
218
+ }
219
+ }
220
+
221
+ div.figure > img {
222
+ margin-left: auto;
223
+ margin-right: auto;
224
+ display: block;
225
+ max-width: 100%;
226
+ height: auto;
62
227
  }
228
+
229
+
230
+
231
+ #toc ul {
232
+ margin: 0;
233
+ padding: 0;
234
+ list-style: none;
63
235
  }
64
236
 
65
- #toggle {
66
- @include sidebarNavToggle(
67
- $colorBg: #da1d52,
68
- $colorFg: white);
237
+ #toc li a {
238
+ padding: 5px 10px;
239
+ font-size: 14px;
69
240
  }
70
241
 
71
- .container {
72
- @include sidebarNavContainer(360px);
242
+ #toc a {
243
+ color: #141115;
244
+ text-decoration: none;
245
+ display: block;
73
246
  }
74
247
 
248
+ #toc a:hover {
249
+ box-shadow: none;
250
+ color: white;
251
+ }
75
252
 
76
- .rule {
77
- @include rule(1px, #00539F, 2em 0);
253
+ #toc .h1 {
254
+ text-transform: uppercase;
255
+ }
78
256
 
79
- &.toc {
80
- @include tocSeparator();
81
- }
257
+ #toc .h2 {
258
+ padding-left: 30px;
82
259
  }
83
- .rule-2 {
84
- width: 100%;
85
- height: 1px;
86
- background-color: #00539F;
260
+
261
+ #toc .h3 {
262
+ padding-left: 50px;
87
263
  }
88
- .rule-thick {
89
- width: 100%;
90
- height: 3px;
91
- background-color: #00539F;
92
- margin-top: 3em;
264
+
265
+ #toc .toc-active a {
266
+ color: white;
93
267
  }
94
268
 
95
- @media screen and (min-width: 768px) {
96
- h1.toc-contents {
97
- margin-top: 1em;
98
- }
269
+ #toc .toc-active, #toc li:hover {
270
+ background: #DA1D52;
271
+ box-shadow: inset -5px 0px 10px -5px #DA1D52!important;
272
+ }
99
273
 
100
- ul#toc-list {
101
- padding: 0;
102
- margin: 0;
103
- }
274
+ #toc li:hover a {
275
+ color: white;
276
+ background: none;
277
+ box-shadow: none;
104
278
  }
105
279
 
280
+ #toc li a {
281
+ text-transform: nonce;
282
+ }
106
283
 
107
- .figure {
108
- @include figureBlock();
109
- @include monospaceBlockStyle();
284
+ /*
285
+ Document types + stages
286
+ */
287
+
288
+ .document-type-band {
289
+ left:0;
290
+ top:180px;
291
+ height: 100%;
292
+ position: fixed;
293
+ display: block;
294
+ z-index: 99;
295
+ /*box-shadow: -5px 0px 10px #1d1d1d*/
110
296
 
111
- background-color: #f6f6f6;
112
297
  }
113
298
 
299
+ .document-stage-band {
300
+ font-family: $bodyfont;
301
+ left:0;
302
+ top:0;
303
+ height: 100%;
304
+ position: fixed;
305
+ display: block;
306
+ z-index: 98;
307
+ box-shadow: -5px 0px 10px #1d1d1d;
308
+ }
309
+
310
+ .document-type {
311
+ font-family: $bodyfont;
312
+ position: relative;
313
+ width: 25px;
314
+ }
114
315
 
115
- .Sourcecode {
116
- @include sourceBlock(#f6f6f6);
316
+ .document-stage {
317
+ font-family: $bodyfont;
318
+ position: relative;
319
+ width: 25px;
117
320
  }
118
321
 
119
- .example .Sourcecode, .example .pseudocode {
120
- background: none;
121
- margin: 0;
122
- padding: 0 0 0 2em;
322
+ p.document-type, p.document-stage {
323
+ text-transform: uppercase;
324
+ font-size: 0.9em;
325
+ font-weight: 400;
326
+ letter-spacing: 0.05em;
327
+ margin:0;
328
+ margin-left: 6px;
329
+ writing-mode:tb-rl;
330
+ -webkit-transform:rotate(180deg);
331
+ -moz-transform:rotate(180deg);
332
+ -o-transform: rotate(180deg);
333
+ white-space:nowrap;
334
+ display:block;
335
+ bottom:0;
336
+ }
337
+
338
+ p.document-type {
339
+ font-weight: 400;
340
+ height: 150;
123
341
  }
124
342
 
125
- .document-stage-band {
126
- @include docBand($order: 1, $textLength: 160px, $fontWeight: 300);
343
+ p.document-stage {
344
+ font-weight: 300;
345
+ height:160px;
127
346
  }
128
347
 
129
- .document-type-band {
130
- @include docBand($order: 2, $textLength: 210px, $offset: 180px);
348
+ #focus-group-band p.document-type,
349
+ #implementers-guide-band p.document-type {
350
+ font-weight: 400;
351
+ height: 230px!important;
131
352
  }
132
- .coverpage-maturity, .coverpage-stage {
133
- @include coverpageStageBlock();
353
+
354
+ #recommendation-band p, #recommendation-supplement p,
355
+ #recommendation-amendment p, #recommendation-corrigendum p,
356
+ #recommendation-errata p, #recommendation-annex p {
357
+ height: 270px;
134
358
  }
135
- #superseded-draft {
136
- border-bottom: solid 3px #fd06fd;
359
+
360
+ #technical-paper-band p, #technical-report-band {
361
+ height: 150px;
137
362
  }
138
- #superseded-band {
139
- background-color: #fd06fd;
363
+
364
+
365
+ #recommendation-band, #recommendation-supplement-band,
366
+ #recommendation-amendment-band, #recommendation-corrigendum-band,
367
+ #recommendation-errata-band, #recommendation-annex-band {
368
+ color: #2A2D34;
369
+ background-color: #a3d88f; }
370
+
371
+ #recommendation, #recommendation-supplement,
372
+ #recommendation-amendment, #recommendation-corrigendum,
373
+ #recommendation-errata, #recommendation-annex {
374
+ color: #2A2D34;
375
+ border-bottom: solid 3px #a3d88f;
140
376
  }
377
+
378
+ #technical-paper, #technical-report {
379
+ border-bottom: solid 3px #53DD6C; }
380
+
381
+ #technical-paper-band, #technical-report-band {
382
+ background-color: #53DD6C; }
383
+
384
+
385
+ #focus-group, #implementers-guide {
386
+ border-bottom: solid 3px #750697; }
387
+
388
+ #focus-group-band, #implementers-guide-band {
389
+ background-color: #750697; }
390
+
391
+ #joint-itu-iso-iec {
392
+ border-bottom: solid 3px #48a0e7; }
393
+
394
+ #joint-itu-iso-iec-band {
395
+ background-color: #48a0e7; }
396
+
397
+ .coverpage-maturity, .coverpage-stage {
398
+ font-family: $bodyfont;
399
+ font-weight: 400;
400
+ font-size: 1em;
401
+ margin: 0 0 2em 0;
402
+ text-transform: uppercase; }
403
+
404
+ #superseded-draft {
405
+ border-bottom: solid 3px #fd06fd; }
406
+
407
+ #superseded-band {
408
+ background-color: #fd06fd; }
409
+
141
410
  #in-force-prepublished {
142
- border-bottom: solid 3px #fdf906;
143
- }
411
+ border-bottom: solid 3px #fdf906; }
412
+
144
413
  #in-force-prepublished-band {
145
- background-color: #fdf906;
146
- }
414
+ background-color: #fdf906; }
415
+
147
416
  #in-force {
148
- border-bottom: solid 3px #9ABD48;
149
- }
417
+ border-bottom: solid 3px #9ABD48; }
418
+
150
419
  #in-force-band {
151
- background-color: #d9f39d;
152
- }
420
+ background-color: #d9f39d; }
421
+
153
422
  #withdrawn {
154
- border-bottom: solid 3px #7e0d13;
155
- }
423
+ border-bottom: solid 3px #7e0d13; }
424
+
156
425
  #withdrawn-band {
157
- background-color: #7e0d13;
158
- }
426
+ background-color: #7e0d13; }
159
427
 
160
428
  .logo-wrapper {
161
429
  width: 100%;
@@ -182,214 +450,292 @@ nav {
182
450
  font-style: italic;
183
451
  }
184
452
 
453
+ /*
454
+ 3. TYPOGRAPHY
455
+ */
185
456
 
186
- /* Headings */
187
-
188
- h1, h2, h3, h4, h5, h6 {
189
- font-weight: 400;
190
- margin-top: 1.6em;
191
- margin-bottom: 0.3em;
192
- }
457
+ /*
458
+ 3.1 Titles
459
+ */
193
460
 
194
- h1, h2, h3, h4 {
195
- @media print {
196
- page-break-after: avoid;
197
- margin-top: 1.2em;
461
+ h1,h2,h3,h4,h5,h6 {
462
+ font-family: $headerfont;
463
+ font-weight: 400;
464
+ margin-top: 1.6em;
465
+ margin-bottom: 0.3em;
198
466
  }
199
- }
200
-
201
- h1 {
202
- font-size: 1.4em;
203
- text-transform: uppercase;
204
- margin-top: 2em;
205
467
 
206
- &#content {
468
+ h1 {
469
+ font-size: 1.4em;
470
+ text-transform: uppercase;
207
471
  margin-top: 2em;
208
472
  }
209
473
 
210
- @media print {
211
- font-size: 1.5em;
212
- line-height: 1.5;
213
-
214
- &.content {
474
+ h1#content {
215
475
  margin-top: 2em;
216
- line-height: 2.5em;
217
- }
218
476
  }
219
- }
220
477
 
221
- h2 {
222
- margin-top: 1.7em;
223
- font-size: 1.5em;
478
+ h2 {
479
+ margin-top: 1.7em;
480
+ font-size: 1.5em;
481
+ }
224
482
 
225
- p {
226
- display: inline;
483
+ h3 {
484
+ margin-top: 1.5em;
485
+ font-size: 1.4em;
227
486
  }
228
487
 
229
- @media print {
230
- font-size: 1.2em;
488
+ h4 {
489
+ font-size: 1.2em;
231
490
  }
232
- }
233
491
 
234
- h3 {
235
- margin-top: 1.5em;
236
- font-size: 1.4em;
492
+ .TermNum, .Terms, .AltTerms {
493
+ font-weight: 400;
494
+ }
237
495
 
238
- @media print {
239
- font-size: 1em;
496
+ h2.TermNum {
497
+ margin-bottom: 0;
498
+ }
499
+ /*
500
+ p.Terms {
501
+ font-size: 1.1em;
502
+ line-height: 1.5em;
503
+ margin: 0;
504
+ }
505
+ */
506
+ p.AltTerms {
507
+ /*
508
+ font-style: italic;
509
+ */
510
+ font-size: 20px;
511
+ margin-top: 1em;
240
512
  }
241
- }
242
513
 
243
- h4 {
244
- font-size: 1.2em;
245
- }
514
+ /*
515
+ 3.2 Links
516
+ */
246
517
 
518
+ a, a:visited{
519
+ text-decoration: none;
520
+ color: #00539F;
521
+ }
247
522
 
248
- /* Terms */
523
+ a:hover {
524
+ color: white;
525
+ background: #00539F;
526
+ box-shadow: 3px 0 0 #00539F, -3px 0 0 #00539F;
527
+ /* padding: 2px 0 2px 0; */
528
+ }
249
529
 
250
- .TermNum, .Terms, .AltTerms {
251
- font-weight: 400;
252
- }
530
+ ::selection {
531
+ background: #00539F; /* WebKit/Blink Browsers */
532
+ color: white;
533
+ }
534
+ ::-moz-selection {
535
+ background: #00539F; /* Gecko Browsers */
536
+ color: white;
537
+ }
253
538
 
254
- h2.TermNum {
255
- margin-bottom: 0;
256
- }
539
+ .contact-info a:hover {
540
+ color: #00539F;
541
+ text-decoration: underline;
542
+ background: none;
543
+ box-shadow: 0 0 0 0;
544
+ }
257
545
 
258
- p.AltTerms {
259
- font-size: 20px;
260
- margin-top: 1em;
261
- }
262
546
 
263
547
 
264
- /* Links, selection */
548
+ /*
549
+ 3.3 Lists
550
+ */
265
551
 
266
- a, a:visited {
267
- text-decoration: none;
268
- color: #00539F;
269
- }
552
+ ul, ol {margin-left: 1.2em;}
270
553
 
271
- a:hover {
272
- color: white;
273
- background: #00539F;
274
- box-shadow: 3px 0 0 #00539F, -3px 0 0 #00539F;
275
- }
554
+ ul > li {
555
+ list-style: none;
556
+ }
276
557
 
277
- ::selection {
278
- background: #00539F; /* WebKit/Blink Browsers */
279
- color: white;
280
- }
281
- ::-moz-selection {
282
- background: #00539F; /* Gecko Browsers */
283
- color: white;
558
+ ul > li:before {
559
+ content: "\2014";
560
+ display: inline-block;
561
+ width: 1em;
562
+ margin-left: -1.2em;
563
+ }
564
+
565
+ ul > li p:first-child {
566
+ display: inline;
567
+ }
568
+
569
+ ul > li:first-child {
570
+ margin-top: 1em;
284
571
  }
285
572
 
573
+ #toc-list ul {margin-bottom: 0.25em;}
286
574
 
287
- /* Lists */
575
+ #toc-list li {list-style-type: none;}
288
576
 
289
- ul, ol {
290
- margin-left: 1.2em;
577
+ #toc li:before {
578
+ content: " ";
579
+ display: none;
580
+ }
291
581
 
292
- > li {
293
- list-style: none;
294
582
 
295
- &:before {
296
- content: "\2014";
297
- display: inline-block;
298
- width: 1em;
299
- margin-left: -1.2em;
300
- }
583
+ /*
584
+ 3.4 Rules
585
+ */
301
586
 
302
- p:first-child {
303
- display: inline;
304
- }
587
+ .rule {
588
+ width: 100%;
589
+ height: 1px;
590
+ background-color: #00539F;
591
+ margin: 2em 0;
592
+ }
305
593
 
306
- &:first-child {
307
- margin-top: 1em;
308
- }
309
- }
594
+ .rule-2 {
595
+ width: 100%;
596
+ height: 1px;
597
+ background-color: #00539F;
598
+ }
599
+
600
+ .rule-thick {
601
+ width: 100%;
602
+ height: 3px;
603
+ background-color: #00539F;
604
+ margin-top: 3em;
310
605
  }
311
606
 
312
607
 
313
- /* Bibliograhy */
608
+ /*
609
+ 3.5 Bibliograhy
610
+ */
314
611
 
315
612
  p.Biblio, p.NormRef {
316
- margin-top: 1em;
317
- margin-left: 2em;
613
+ margin-top: 1em;
614
+ margin-left: 2em;
318
615
  }
319
616
 
617
+ /*
618
+ 3.6 Source Code + figures
619
+ */
620
+
621
+ .figure, .Sourcecode {
622
+ font-family: $monospacefont;
623
+ font-variant-ligatures: none;
624
+ background-color: #f6f6f6;
625
+ font-size: 0.8em;
626
+ line-height: 1.6em;
627
+ padding: 1.5em;
628
+ margin: 2em 0 1em 0;
629
+ overflow: auto;
630
+ }
631
+
632
+ .FigureTitle, .SourceTitle, .AdmonitionTitle {
633
+ font-weight: 700;
634
+ font-size: 1em;
635
+ text-align: center;
636
+ }
320
637
 
321
- /* Blocks */
638
+ /*
639
+ 3.7 Notes
640
+ */
322
641
 
323
642
  .Note {
324
- background-color: #ffca3a;
325
- color: #141115;
326
- padding: 1.2em;
327
- margin: 1em 0 1em 0;
643
+ background-color: #ffca3a;
644
+ color: #141115;
645
+ padding: 1.2em;
646
+ margin: 1em 0 1em 0;
328
647
 
329
- p {
330
- margin: 0;
331
- }
648
+ p {
649
+ margin: 0;
650
+ }
332
651
  }
333
652
 
334
653
  .Admonition {
335
- background-color: #ffcccc;
336
- color: #47430c;
337
- padding: 1.2em;
338
- margin: 1em 0 1em 0;
654
+ background-color: #ffcccc;
655
+ color: #47430c;
656
+ padding: 1.2em;
657
+ margin: 1em 0 1em 0;
339
658
 
340
- p {
341
- margin: 0;
342
- }
659
+ p {
660
+ margin: 0;
661
+ }
343
662
  }
344
663
 
664
+
665
+ /*
666
+ 3.8 Examples
667
+ */
668
+
345
669
  .example {
346
- @include exampleBlock(#e1eef1, null, 1.2em, 2em);
670
+ background-color: #e1eef1;
671
+ padding: 1.2em;
672
+ margin: 2em 0 1em 0;
673
+ padding-left: 2em;
674
+ }
347
675
 
348
- .example-title {
349
- margin-top: 0;
350
- margin-left: -1.5em;
351
- }
676
+ .example .example-title {
677
+ font-weight: 700;
678
+ text-transform: uppercase;
679
+ margin-top:0;
680
+ margin-left:-1.5em;
681
+ }
352
682
 
353
- .Sourcecode, .pseudocode {
354
- background: none;
355
- margin: 0;
356
- padding: 0 0 0 2em;
357
- }
683
+ .example .Sourcecode, .example .pseudocode {
684
+ background: none;
685
+ margin: 0;
686
+ padding: 0 0 0 2em;
358
687
  }
359
688
 
360
689
  .pseudocode {
361
- background-color: #f6f6f6;
362
- padding: 1.2em;
363
- margin: 2em 0 1em 0;
364
- padding-left: 2em;
690
+ background-color: #f6f6f6;
691
+ padding: 1.2em;
692
+ margin: 2em 0 1em 0;
693
+ padding-left: 2em;
694
+ }
365
695
 
366
- .example-title {
696
+ .pseudocode .example-title {
367
697
  font-weight: 700;
368
698
  text-transform: uppercase;
369
699
  text-align: center;
370
700
  margin-top:0;
371
701
  margin-left:-1.5em;
372
- }
373
702
  }
374
703
 
375
704
  .recommend {
376
- background-color: #ccffcc;
377
- padding: 1.2em;
378
- margin: 2em 0 1em 0;
705
+ background-color: #ccffcc;
706
+ padding: 1.2em;
707
+ margin: 2em 0 1em 0;
379
708
  }
380
709
 
381
-
382
- /* Tables */
710
+ /*
711
+ 3.9 Tables
712
+ */
383
713
 
384
714
  table {
715
+ border-collapse: collapse;
716
+ width: 100%;
385
717
  color: #141115;
718
+ font-weight: 300;
719
+ margin: 1em 0 2em 0;
720
+ margin-left: auto;
721
+ margin-right: auto;
722
+ padding-right: 2em;
723
+ }
386
724
 
387
- tr:nth-child(even) {
388
- background: #f1f8ff;
389
- }
390
- tr:nth-child(odd) {
391
- background: #f6f8fa;
392
- }
725
+ table, th, td {
726
+ border: none!important;
727
+ font-size: 0.95em;
728
+ }
729
+
730
+ tr:nth-child(even) {background: #f1f8ff}
731
+ tr:nth-child(odd) {background: #f6f8fa}
732
+
733
+ td, th {
734
+ padding: 1em;
735
+ }
736
+
737
+ td.header {
738
+ font-weight: 400;
393
739
  }
394
740
 
395
741
  p.TableTitle {
@@ -398,80 +744,103 @@ p.TableTitle {
398
744
  font-weight: 400;
399
745
  }
400
746
 
401
-
402
- /* Footnotes */
747
+ /*
748
+ 3.10 Footnotes
749
+ */
403
750
 
404
751
  a.footnote-number {
405
- vertical-align: super;
406
- font-size: 0.8em;
752
+ vertical-align: super;
753
+ font-size: 0.8em;
407
754
  }
408
755
 
409
756
  .footnote {
410
- font-size: 0.9em;
757
+ font-size: 0.9em;
411
758
  }
412
759
 
760
+
761
+ /*
762
+ 3.11 Blockquotes
763
+ */
764
+
413
765
  .Quote {
414
- background-color: #f6f6f6;
415
- font-style: italic;
416
- width: 80%;
417
- padding: 1.5em;
418
- margin-top: 2em;
419
- margin-left: auto;
420
- margin-right: auto;
766
+ background-color: #f6f6f6;
767
+ font-style: italic;
768
+ width: 80%;
769
+ padding: 1.5em;
770
+ margin-top: 2em;
771
+ margin-left: auto;
772
+ margin-right: auto;
421
773
  }
422
774
 
423
775
 
776
+ /*
777
+ 3.12 Formulas
778
+ */
779
+
424
780
  .formula {
425
- @include formulaBlock(#f6f6f6);
781
+ background-color: #f6f6f6;
782
+ padding: 1.5em;
783
+ margin-top: 2em;
784
+ text-align: center;
426
785
  }
427
786
 
787
+ /*
788
+ 3.13 Contact Info
789
+ */
428
790
 
429
791
  .contact-info {
430
- padding: 2em;
431
- margin-top: 5em;
432
- width: 280px;
792
+ padding: 2em;
793
+ margin-top: 5em;
794
+ width: 280px;
433
795
  text-align: left;
434
796
  color: #00539F!important;
435
797
  background-color: #f1f8ff;
436
798
  border-radius: 25px;
437
799
 
438
- a, a:hover {
439
- color: #00539F;
440
- }
441
- a:hover {
442
- text-decoration: underline;
443
- background: none;
444
- box-shadow: 0 0 0 0;
445
- }
800
+ }
801
+
802
+ .contact-info a,
803
+ .contact-info a:hover {
804
+ color: #00539F;
805
+ }
446
806
 
447
- p, a {
807
+ .contact-info p, .contact-info a {
448
808
  font-family: $monospacefont;
449
809
  font-variant-ligatures: none;
450
810
  font-weight: 400;
451
- }
811
+ }
452
812
 
453
- .name {
813
+ .contact-info .name {
454
814
  font-weight: 700;
455
815
  font-size: 14px;
456
816
  margin-bottom: 5px;
457
- }
817
+ }
458
818
 
459
- .address {
819
+ .contact-info .address {
460
820
  font-size: 12px;
461
821
  line-height: 1.3em;
462
822
  margin-top:0;
463
- }
464
823
  }
465
824
 
825
+ /*
826
+ Keywords
827
+ */
466
828
 
467
829
  span.keyword {
468
- font-weight: 600;
830
+ font-weight: 600;
469
831
  }
470
832
 
833
+ /*
834
+ Paragraphs
835
+ */
471
836
 
472
837
  p {
473
- margin-top: 1em;
474
- margin-bottom: 1em;
838
+ margin-top: 1em;
839
+ margin-bottom: 1em;
840
+ }
841
+
842
+ h2 p {
843
+ display: inline;
475
844
  }
476
845
 
477
846
  .addition {
@@ -483,19 +852,219 @@ p {
483
852
  text-decoration: line-through;
484
853
  }
485
854
 
486
- @import 'coverpage';
487
855
 
856
+ /*
857
+ 4.0 Page header
858
+ */
859
+
860
+ /*
861
+ 4.1 Top Logo
862
+ */
863
+
864
+ .icon-svg {
865
+ width: 100%;
866
+ color: #5ecf86;
867
+ }
868
+
869
+ .wrapper-top {
870
+ background: #fff;
871
+ color: #141115;
872
+ padding: 3em 0 6em 10em;
873
+ margin-left: 0em;
874
+ background: url(data:image/png;base64,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);
875
+ background-repeat: repeat-y;
876
+ background-size: 100px;
877
+ }
878
+
879
+ .doc-type {
880
+ font-size: 18px;
881
+ letter-spacing: 4px;
882
+ color: #797979;
883
+ margin-bottom: 42px;
884
+ }
885
+
886
+ .ITU-sector, .doc-identifier {
887
+ font-size: 42px;
888
+ font-weight: 800;
889
+ display: inline;}
890
+
891
+ .doc-info-left {
892
+ float: right;
893
+ padding-right: 42px;
894
+ }
895
+
896
+ .doc-identifier, .publication-month {
897
+ display: block;
898
+ text-align: right;
899
+ }
900
+
901
+ .publication-month {
902
+ font-size: 18px;
903
+ padding-top: 10px;
904
+ line-height: 1;
905
+ }
906
+
907
+ .doc-category {
908
+ text-transform: uppercase;
909
+ font-size: 16px;
910
+ line-height: 1.2;
911
+ }
912
+
913
+ .coverpage-title {
914
+ margin-top: 42px;
915
+ }
916
+
917
+ .coverpage-title span {
918
+ display: block;
919
+ font-size: 20px;
920
+ line-height: 1.5;
921
+ }
922
+
923
+ span.doc-title {
924
+ font-size: 26px;
925
+ font-weight: 800;
926
+ margin-top: 20px;
927
+ border-top: 2px solid #DA1D52;
928
+ margin-right: 42px;
929
+ }
930
+
931
+ .doc-footer {
932
+ margin-top: 100px;
933
+ }
934
+
935
+ .doc-footer .keywords {
936
+ display: block;
937
+ }
938
+
939
+ .doc-footer div {
940
+ clear: both;
941
+ }
942
+
943
+ .doc-footer span, .doc-footer .keywords {
944
+ font-size: 18px;
945
+ font-weight: 400;
946
+ letter-spacing: 0;
947
+ color: black;
948
+ float: left;
949
+ padding-right: 10px;
950
+ }
951
+
952
+ .WordSection11 {
953
+ padding: 0 2em 0 3em; }
954
+
955
+ .info-section {
956
+ padding: 0 }
957
+
958
+ .prefatory-section {
959
+ padding: 0 3em 0 6em; }
960
+
961
+ .zzSTDTitle1, .zzSTDTitle2, .MsoCommentText {
962
+ display: none; }
963
+
964
+ .coverpage {
965
+ text-align: left;
966
+ padding-left: 1.5em; }
967
+
968
+
969
+ /*
970
+ 4.2 Document Identity
971
+ */
972
+
973
+ .coverpage-doc-identity {
974
+ font-size: 2em;
975
+ line-height: 2em;
976
+ }
977
+
978
+ .coverpage-title .title-second {
979
+ display: none;
980
+ }
981
+
982
+ .coverpage-stage-block {
983
+ font-family: $bodyfont;
984
+ font-weight: 600;
985
+ font-size: 1.25em;
986
+ margin: 2em 0em 2em 0em;
987
+ text-transform: uppercase;
988
+ }
989
+
990
+ /*
991
+ 4.3 Draft Warning
992
+ */
993
+
994
+ .coverpage-warning {
995
+ border: #f36f36 solid 2px;
996
+ color: #f36f36!important;
997
+ margin: 1em 2em;
998
+ color: #2e81c2;
999
+ padding: 2em 1em 1em 1em;
1000
+ border-radius: 25px;
1001
+ }
1002
+
1003
+ .coverpage-warning h1 {
1004
+ margin-top: 0em;
1005
+ }
1006
+
1007
+ .coverpage-warning .title {
1008
+ font-family: $bodyfont;
1009
+ font-weight: 300;
1010
+ text-transform: uppercase;
1011
+ font-size: 1.2em;
1012
+ }
1013
+
1014
+
1015
+ /*
1016
+ 4.4 Copyright
1017
+ */
1018
+
1019
+ .copyright {
1020
+ padding: 1em;
1021
+ font-size: 0.9em;
1022
+ text-align: left;
1023
+ }
1024
+
1025
+
1026
+ /* .copyright .name, .copyright .address {color: #2e81c2;} */
1027
+
1028
+
1029
+
1030
+ /*
1031
+ 5.0 Other styles
1032
+ */
1033
+
1034
+
1035
+
1036
+ /*
1037
+ To top button
1038
+ */
488
1039
 
489
1040
  #myBtn {
490
- @include toTopBtn($color: white, $colorBg: #00539F);
1041
+ font-family: $monospacefont;
1042
+ font-variant-ligatures: none;
1043
+ display: none;
1044
+ position: fixed;
1045
+ bottom: 20px;
1046
+ right: 30px;
1047
+ z-index: 99;
1048
+ font-size: 12px;
1049
+ border: none;
1050
+ outline: none;
1051
+ background-color: #00539F;
1052
+ opacity: 0.15;
1053
+ color: white;
1054
+ cursor: pointer;
1055
+ padding: 10px 15px 10px 15px;
1056
+ border-radius: 4px;
1057
+ text-transform: uppercase;
1058
+ }
491
1059
 
492
- @media print {
493
- background-color: white;
1060
+ #myBtn:hover {
1061
+ opacity: 1;
494
1062
  }
495
- }
496
1063
 
497
- a.anchorjs-link {
498
- @include anchorLink(#2e81c2);
1064
+ a.anchorjs-link:hover {
1065
+ background: none;
1066
+ color: #2e81c2;
1067
+ box-shadow: none;
499
1068
  }
500
1069
 
501
1070
  @page {
@@ -503,26 +1072,33 @@ a.anchorjs-link {
503
1072
  }
504
1073
 
505
1074
  @media print {
506
- .document-info, nav {
507
- page-break-before: always;
1075
+
1076
+
1077
+ .document-info, nav, .copyright {
1078
+ page-break-before: always;
508
1079
  }
509
1080
 
510
1081
  nav {
511
1082
  page-break-after: always;
512
- line-height: 1;
513
- position: relative;
514
- width: auto;
515
- font-size: 0.9em;
516
- overflow: auto;
517
- padding: 0;
518
- margin-right: 0;
519
- background-color: white;
1083
+ }
1084
+
1085
+ h1, h2, h3, h4 {
1086
+ page-break-after: avoid;
1087
+ margin-top: 1.2em;
520
1088
  }
521
1089
 
522
1090
  .note, .figure, .Sourcecode, table {
523
1091
  page-break-inside: avoid;
524
1092
  }
525
1093
 
1094
+ .info-section {
1095
+ display: none;
1096
+ }
1097
+
1098
+ .coverpage {
1099
+ height: 23cm;
1100
+ }
1101
+
526
1102
  .wrapper-top {
527
1103
  top: 0;
528
1104
  padding-top: 4cm;
@@ -531,17 +1107,79 @@ a.anchorjs-link {
531
1107
 
532
1108
  .wrapper-top-bottom {
533
1109
  margin-top: -5px;
534
- display: none;
535
1110
  }
536
1111
 
537
- .Note {
538
- background-color: #fff495;
539
- color: #47430c;
540
- padding: 5px;
541
- margin: 2em 0 1em 0;
542
1112
 
543
- p {
1113
+ #toggle, .document-stage-band,
1114
+ .document-type-band, button#myBtn {
1115
+ display: none;
1116
+ }
1117
+
1118
+ button#myBtn {
1119
+ background-color: white;
1120
+ }
1121
+
1122
+ .container {
1123
+ padding-left: 0;
1124
+ }
1125
+
1126
+ nav {
1127
+ position: relative;
1128
+ width: auto;
1129
+ font-size: 0.9em;
1130
+ overflow: auto;
1131
+ padding: 0;
1132
+ margin-right: 0;
1133
+ background-color: white;
1134
+ }
1135
+
1136
+ #toc .toc-active a {
1137
+ color: #4D7EA5;
1138
+ }
1139
+
1140
+ #toc .toc-active, #toc li:hover {
1141
+ background: white;
1142
+ box-shadow: none !important; }
1143
+
1144
+ #toc li:hover a {
1145
+ color: black; }
1146
+
1147
+
1148
+ h1.content {
1149
+ margin-top: 2em;
1150
+ line-height: 2.5em;
1151
+ }
1152
+
1153
+ h1 {
1154
+ font-size: 1.5em;
1155
+ line-height: 1.5;
1156
+ }
1157
+
1158
+ h2 {
1159
+ font-size: 1.2em
1160
+ }
1161
+
1162
+ h3 {
1163
+ font-size: 1em;
1164
+ }
1165
+
1166
+ .Note {
1167
+ background-color: #fff495;
1168
+ color: #47430c;
1169
+ padding: 5px;
1170
+ margin: 2em 0 1em 0; }
1171
+
1172
+ .Note p {
544
1173
  padding: 0 5px 0 5px;
545
1174
  }
546
- }
1175
+
1176
+ nav {
1177
+ line-height: 1;
1178
+ }
1179
+
1180
+ .wrapper-top-bottom {
1181
+ display: none;
1182
+ }
1183
+
547
1184
  }
1185
+