metanorma-taste 0.1.2 → 0.1.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.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +9 -14
  3. data/README.adoc +22 -0
  4. data/data/csa/boilerplate.adoc +35 -0
  5. data/data/csa/config.yaml +61 -0
  6. data/data/csa/csa.scss +782 -0
  7. data/data/csa/csa.standard.xsl +14595 -0
  8. data/data/csa/header.html +246 -0
  9. data/data/csa/html_csa_intro.html +7 -0
  10. data/data/csa/html_csa_titlepage.html +94 -0
  11. data/data/csa/htmlstyle.scss +820 -0
  12. data/data/csa/i18n-en.yaml +10 -0
  13. data/data/csa/logo.svg +1 -0
  14. data/data/csa/metanorma.yml +70 -0
  15. data/data/csa/word_csa_intro.html +11 -0
  16. data/data/csa/word_csa_titlepage.html +75 -0
  17. data/data/csa/wordstyle.scss +1343 -0
  18. data/data/elf/config.yaml +1 -0
  19. data/data/enosema/config.yaml +1 -0
  20. data/data/icc/config.yaml +1 -0
  21. data/data/icc/icc-full.emf +0 -0
  22. data/data/icc/icc-small.emf +0 -0
  23. data/data/pdfa/config.yaml +36 -0
  24. data/data/pdfa/copyright-de.adoc +39 -0
  25. data/data/pdfa/copyright.adoc +45 -0
  26. data/data/pdfa/coverpage.pdf +0 -0
  27. data/data/pdfa/htmlcoverpage.html +18 -0
  28. data/data/pdfa/htmlstylesheet-override.scss +14 -0
  29. data/data/pdfa/i18n.yaml +13 -0
  30. data/data/pdfa/inside-cover.pdf +0 -0
  31. data/data/pdfa/pdfa-logo.emf +0 -0
  32. data/data/pdfa/pdfa-logo.svg +1 -0
  33. data/data/pdfa/pdfa.xsl +251 -0
  34. data/data/swf/config.yaml +18 -0
  35. data/data/swf/copyright.adoc +29 -0
  36. data/data/swf/i18n.yaml +3 -0
  37. data/data/swf/swf-full.svg +1 -0
  38. data/data/swf/swf-icon.svg +1 -0
  39. data/data/swf/swf-logo.pdf +3590 -13
  40. data/lib/metanorma/taste/base.rb +17 -2
  41. data/lib/metanorma/taste/base_override.rb +31 -0
  42. data/lib/metanorma/taste/stage_config.rb +20 -0
  43. data/lib/metanorma/taste/taste_config.rb +12 -2
  44. data/lib/metanorma/taste/version.rb +1 -1
  45. data/lib/metanorma/taste_register.rb +18 -0
  46. data/metanorma-taste.gemspec +20 -0
  47. metadata +302 -2
@@ -0,0 +1,820 @@
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
+ @use 'base_style/all' as *;
11
+
12
+ body {
13
+ @include bodyStyle1(15px, 1.4em, #1d1d1d, #ffffff, 300);
14
+ // @include sidebarNavContainer(323px);
15
+ }
16
+
17
+ main {
18
+ margin: 0 3em 0 6em;
19
+ }
20
+
21
+ #toc, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) {
22
+ @include toc(#4D7EA5, #4D7EA5, #4D7EA5);
23
+ @include sidebarToc();
24
+
25
+ .toc-active a {
26
+ color: white;
27
+ }
28
+
29
+ li a {
30
+ text-transform: none;
31
+ }
32
+
33
+ ul {
34
+ a:hover {
35
+ box-shadow: none;
36
+ color: white;
37
+ }
38
+ }
39
+ }
40
+
41
+ #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) {
42
+ margin-top: 0;
43
+ margin-bottom: 0;
44
+ font-size: 100%;
45
+ }
46
+
47
+
48
+ li {
49
+ margin-left: 1em;
50
+ list-style-position: outside;
51
+ }
52
+
53
+ nav {
54
+ @include sidebarNav(#f7f7f7, 323px, 30px);
55
+ }
56
+
57
+ #toggle {
58
+ @include sidebarNavToggle(white, #4D7EA5)
59
+ }
60
+
61
+ /*
62
+ 2. Responsive navigation layout
63
+ */
64
+
65
+ @media screen and (min-width: 768px) {
66
+ .container {
67
+ padding-left: 360px;
68
+ }
69
+
70
+ .rule.toc {
71
+ display: none;
72
+ }
73
+
74
+ h1.toc-contents {
75
+ margin-top: 1em;
76
+ }
77
+
78
+ ul#toc-list, ul#toc-list > :is(.h1, .h2, .h3, .h4, .h5, .h6) {
79
+ padding: 0;
80
+ margin: 0;
81
+ }
82
+ }
83
+
84
+ /*
85
+ Document types + stages
86
+ */
87
+
88
+ .document-type-band {
89
+ @include docBand($order: 2, $offset: 180px);
90
+
91
+ .document-type {
92
+ top: 20px;
93
+ }
94
+ }
95
+
96
+ .document-stage-band {
97
+ @include docBand(1, 160px);
98
+ &> :first-child {
99
+ font-weight: 300;
100
+ }
101
+ }
102
+
103
+ p.document-stage {
104
+ @include docBandTitle(120px);
105
+ }
106
+
107
+ #governance-band p.document-type {
108
+ height: 230px !important;
109
+ }
110
+
111
+ p.document-stage {
112
+ font-weight: 300;
113
+ height: 160px;
114
+ }
115
+
116
+ dt {
117
+ font-weight: 500;
118
+ }
119
+
120
+ #standard-band {
121
+ color: #0ac442;
122
+ background: none;
123
+ }
124
+
125
+ #standard {
126
+ border-bottom: solid 3px #0ac442;
127
+ }
128
+
129
+ #governance {
130
+ border-bottom: solid 3px #750697;
131
+ }
132
+
133
+ #governance-band {
134
+ background-color: #750697;
135
+ }
136
+
137
+ #guide {
138
+ border-bottom: solid 3px #48a0e7;
139
+ }
140
+
141
+ #guide-band {
142
+ background-color: #48a0e7;
143
+ }
144
+
145
+ .coverpage-maturity {
146
+ @include coverpageStageBlock();
147
+ }
148
+
149
+ #working-draft {
150
+ border-bottom: solid 3px #fda706;
151
+ }
152
+
153
+ #working-draft-band {
154
+ p {
155
+ color: #fda706;
156
+ }
157
+ background: none;
158
+ }
159
+
160
+ #committee-draft {
161
+ border-bottom: solid 3px #fd06fd;
162
+ }
163
+
164
+ #committee-draft-band {
165
+ background-color: #fd06fd;
166
+ }
167
+
168
+ #draft-standard {
169
+ border-bottom: solid 3px #fdf906;
170
+ }
171
+
172
+ #draft-standard-band {
173
+ background-color: #fdf906;
174
+ }
175
+
176
+ #standard {
177
+ border-bottom: solid 3px #0ac442;
178
+ }
179
+
180
+ #obsolete {
181
+ border-bottom: solid 3px #7e0d13;
182
+ }
183
+
184
+ #obsolete-band {
185
+ background-color: #7e0d13;
186
+ }
187
+
188
+ /*
189
+ 3. TYPOGRAPHY
190
+ */
191
+
192
+ /*
193
+ 3.1 Titles
194
+ */
195
+
196
+ h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
197
+ font-family: $headerfont;
198
+ line-height: 1.2em;
199
+ color: black;
200
+ font-weight: 600;
201
+ margin-top: 1.5em;
202
+ margin-bottom: 0.3em;
203
+ }
204
+
205
+ h1,.h1 {
206
+ font-size: 1.8em;
207
+ text-transform: uppercase;
208
+ /* margin-top: 2em;*/
209
+ }
210
+
211
+ h1#content,.h1#content {
212
+ margin-top: 2em;
213
+ }
214
+
215
+ h2,.h2 {
216
+ font-size: 1.6em;
217
+ }
218
+
219
+ h3,.h3 {
220
+ font-size: 1.5em;
221
+ }
222
+ /*
223
+ span[id^="toc"]::after {
224
+ float: left;
225
+ padding-right: 4px;
226
+ margin-left: -20px;
227
+ font-family: "Font Awesome 5 Free";
228
+ font-weight: 900;
229
+ font-size: 0.8em;
230
+ color: #cfcfcf;
231
+ content: "\f0c1";
232
+ }
233
+ */
234
+ .TermNum, .Terms, .AltTerms {
235
+ color: #00549f;
236
+ font-weight: 400;
237
+ }
238
+
239
+ p.TermNum {
240
+ font-size: 0.9em;
241
+ line-height: 1em;
242
+ margin: 0;
243
+ margin-top: 2em;
244
+ }
245
+
246
+ p.Terms {
247
+ font-size: 1.1em;
248
+ line-height: 1.7em;
249
+ margin: 0;
250
+ }
251
+
252
+ /*
253
+ p.AltTerms {
254
+ font-style: italic;
255
+ margin: 0;
256
+ }
257
+ */
258
+
259
+ span.obligation {
260
+ font-weight: 400;
261
+ }
262
+
263
+ /*
264
+ 3.2 Links
265
+ */
266
+ @include elementStyles(#4D7EA5, #4D7EA5, white);
267
+
268
+ /*
269
+ 3.3 Lists
270
+ */
271
+
272
+ ul, ol {
273
+ margin-left: 1em;
274
+ list-style-position: inside;
275
+ }
276
+
277
+ #toc ul {
278
+ margin-bottom: 0.25em;
279
+ }
280
+
281
+ #toc li {
282
+ list-style-type: none;
283
+ }
284
+
285
+ /*
286
+ 3.4 Rules
287
+ */
288
+
289
+ .rule {
290
+ @include rule(1px, #00427e)
291
+ }
292
+ /*
293
+ h2 p,.h2 p {
294
+ display: inline;
295
+ }
296
+ */
297
+
298
+ /*
299
+ 3.5 Bibliograhy
300
+ */
301
+
302
+ p.Biblio, p.NormRef {
303
+ margin-top: 1em;
304
+ margin-left: 2em;
305
+ text-indent: -2em;
306
+ }
307
+
308
+ /*
309
+ 3.6 Source Code + figures
310
+ */
311
+
312
+ pre {
313
+ @include monospaceBlockStyle()
314
+ }
315
+
316
+ .figure,
317
+ pre,
318
+ .pseudocode {
319
+ @include pseudocodeBlock(#F5F6F6, rgb(91, 94, 95));
320
+ font-size: $monospacefontsize;
321
+ border-left: solid 5px #B1B6B8;
322
+ padding: 1.2em 1.2em 1.2em 2.2em;
323
+ margin: 2em 0 2em -1em;
324
+ }
325
+
326
+ table div.figure {
327
+ padding: 0;
328
+ margin: 0;
329
+ }
330
+
331
+
332
+ @include admonitionBlock();
333
+ @include recommendationBlock();
334
+ @include listBlock();
335
+
336
+ .FigureTitle,
337
+ .SourceTitle {
338
+ @include blockTitle()
339
+ }
340
+
341
+ /*
342
+ 3.7 Notes
343
+ */
344
+
345
+ .Note {
346
+ background-color: #F5F6F6;
347
+ border-left: solid 5px #B1B6B8;
348
+ color: rgb(91, 94, 95);
349
+ padding: 0.5em 1em;
350
+ }
351
+
352
+ .Admonition {
353
+ background-color: #ffcccc;
354
+ border-left: solid 5px #B1B6B8;
355
+ color: rgb(91, 94, 95);
356
+ padding: 0.5em 1em;
357
+ }
358
+
359
+ .note_label {
360
+ font-weight: 700;
361
+ }
362
+
363
+ /*
364
+ 3.8 Examples
365
+ */
366
+
367
+ td.example,
368
+ td.example_label {
369
+ background-color: #F5F6F6;
370
+ color: rgb(91, 94, 95);
371
+ padding: 0;
372
+ }
373
+
374
+ td>p.example {
375
+ margin: 0;
376
+ border-left: solid 5px #B1B6B8;
377
+ padding: 1em;
378
+ }
379
+
380
+ td.example_label {
381
+ font-weight: 700;
382
+ font-size: $normalfontsize;
383
+ text-transform: uppercase;
384
+ text-align: center;
385
+ margin-top: 0;
386
+ }
387
+
388
+ .example {
389
+ @include exampleBlock(#F5F6F6, rgb(91, 94, 95));
390
+ color: rgb(91, 94, 95);
391
+
392
+ .example-title {
393
+ margin-top: 0;
394
+ font-size: $normalfontsize;
395
+ }
396
+
397
+ pre,
398
+ .pseudocode {
399
+ background: none;
400
+ }
401
+ }
402
+
403
+ /*
404
+ 3.9 Tables
405
+ */
406
+
407
+ table {
408
+ @include table(1px solid black);
409
+ }
410
+
411
+ table,
412
+ th,
413
+ td {
414
+ border: none !important;
415
+ font-size: 1em;
416
+ }
417
+
418
+ tr:nth-child(even) {
419
+ background-color: #FBF9F8;
420
+ }
421
+
422
+ thead {
423
+ background-color: #4D7EA5;
424
+ color: white;
425
+ border: none;
426
+ }
427
+
428
+ /*
429
+ 3.10 Footnotes
430
+ */
431
+
432
+ a.footnote-number {
433
+ vertical-align: super;
434
+ font-size: 0.8em;
435
+ }
436
+
437
+ .footnote {
438
+ font-size: $footnotefontsize;
439
+ }
440
+
441
+
442
+ /*
443
+ 3.11 Blockquotes
444
+ */
445
+
446
+ .Quote {
447
+ @include blockquoteBlock(#F5F6F6, true);
448
+ padding: 1.2em 1.2em 1.2em 2.2em;
449
+ margin: 2em 0 2em -1em;
450
+ border-left: solid 5px #B1B6B8;
451
+ }
452
+
453
+ /*
454
+ 3.12 Formulas
455
+ */
456
+
457
+ .formula, .Formula {
458
+ background-color: #F5F6F6;
459
+ border-left: solid 5px #B1B6B8;
460
+ color: rgb(91, 94, 95);
461
+ padding: 1.2em 1.2em 1.2em 2.2em;
462
+ margin: 2em 0 2em -1em;;
463
+ text-align: center;
464
+ }
465
+
466
+ /*
467
+ 3.13 Contact Info
468
+ */
469
+
470
+ .contact-info {
471
+ background-color: #f7f7f7;
472
+ padding: 2em;
473
+ margin-top: 5em;
474
+ width: auto;
475
+ margin-left: auto;
476
+ margin-right: auto;
477
+ text-align: left;
478
+ }
479
+
480
+ .contact-info p,
481
+ .contact-info a {
482
+ @include monospaceBlockStyle();
483
+ font-weight: 400;
484
+ }
485
+
486
+ .contact-info .name {
487
+ font-weight: 700;
488
+ font-size: 1.2em;
489
+ margin-bottom: 0;
490
+ }
491
+
492
+ .contact-info .address {
493
+ font-size: 1em;
494
+ line-height: 1.3em;
495
+ margin-top: 0;
496
+ }
497
+
498
+ /*
499
+ Keywords
500
+ */
501
+
502
+ span.keyword {
503
+ font-weight: 400;
504
+ }
505
+
506
+ p {
507
+ font-size: $normalfontsize;
508
+ line-height: 1.5;
509
+ margin-top: 1em;
510
+ margin-bottom: 1em;
511
+ }
512
+
513
+ /*
514
+ Paragraphs
515
+ */
516
+
517
+ p {
518
+ font-size: $normalfontsize;
519
+ line-height: 1.5;
520
+ margin-top: 1em;
521
+ margin-bottom: 1em;
522
+ }
523
+
524
+ /* Admonitions */
525
+
526
+ .Admonition, .admonition {
527
+ background-color: #ffb3b3;
528
+ /* color: #47430c;*/
529
+ padding: 0.5em;
530
+ margin: 1.5em 0 1.5em 0;
531
+ text-align: left;
532
+ }
533
+
534
+ .Admonition p, .admonition p {
535
+ margin: 0;
536
+ }
537
+
538
+
539
+ /*
540
+ 4.0 Page header
541
+ */
542
+
543
+ /*
544
+ 4.1 Top Logo
545
+ */
546
+
547
+ /*
548
+ .wrapper-top {
549
+ background-color: #0e1a85;
550
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAACXBIWXMAABYlAAAWJQFJUiTwAAADwUlEQVR4nO3YgQ2AMAwDwcAiWZ1NizrH30lIeIEq9nPOGSDqPgC7+93v/suy3Mmvhx+6VAAIcwFAmc4nyzYAIMgGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAECSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAIS5AKCs3oFk2QYAJNkAIMwFAGX1DiTLNgAgyQYAYS4AKKt3IFm2AQBJNgAIcwFAWb0DybINAEiyAUCYCwDK6h1Ilm0AQJINAMJcAFBW70CybAMAkmwAEOYCgLJ6B5JlGwCQZAOAMBcAlNU7kCzbAIAkGwCEuQCgrN6BZNkGACTZACDMBQBl9Q4kyzYAIMkGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAECSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAIS5AKCs3oFk2QYAJNkAIMwFAGX1DiTLNgAgyQYAYS4AKKt3IFm2AQBJNgAIcwFAWb0DybINAEiyAUCYCwDK6h1Ilm0AQJINAMJcAFBW70CybAMAkmwAEOYCgLJ6B5JlGwCQZAOAMBcAlNU7kCzbAIAkGwCEuQCgrN6BZNkGACTZACDMBQBl9Q4kyzYAIMkGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAECSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAFTNzA9ggAr9aahO8QAAAABJRU5ErkJggg==');
551
+ color: #ffffff;
552
+ padding: 2em 0;
553
+ }
554
+ */
555
+
556
+ .coverpage {
557
+ background: radial-gradient(#2D5D8E, #0D1E2B);
558
+ /*background-image: url("img/dots@2x.png");*/
559
+ color: #ffffff;
560
+ padding: 2em;
561
+ margin-left: 2em;
562
+ }
563
+
564
+ .doc-number {
565
+ font-size: 1em;
566
+ font-family: $bodyfont;
567
+ }
568
+
569
+ .coverpage-title {
570
+ padding-bottom: 0.5em;
571
+ font-family: $headerfont;
572
+ font-size: 1.5em;
573
+ font-weight: 900;
574
+ }
575
+
576
+ .title-section1 {
577
+ padding: 0 2em 0 3em;
578
+ }
579
+
580
+ .prefatory-section {
581
+ padding: 0 3em 0 3em;
582
+ }
583
+
584
+
585
+ .zzSTDTitle1, .MsoCommentText {
586
+ display: none;
587
+ }
588
+
589
+
590
+ .coverpage {
591
+ text-align: center;
592
+ }
593
+
594
+ .coverpage-logo {
595
+ margin-bottom: 1em;
596
+ }
597
+
598
+ .coverpage-logo span, .coverpage-tc-name span {
599
+ font-family: $bodyfont;
600
+ text-transform: uppercase;
601
+ font-weight: 300;
602
+ display: block;
603
+ }
604
+
605
+ .coverpage-tc-name {
606
+ font-size: 1.2em;
607
+ line-height: 1.2em;
608
+ margin: 0.25em 0;
609
+ }
610
+
611
+ .document-info {
612
+ padding: 2em;
613
+ text-align: center;
614
+ margin-left: 1em;
615
+ }
616
+
617
+
618
+ /*
619
+ 4.2 Document Identity
620
+ */
621
+
622
+ .coverpage-doc-identity {
623
+ width: 100%;
624
+ height: 50px;
625
+ margin: 2em 0;
626
+ }
627
+
628
+
629
+ .title-first {
630
+ font-size: 3em;
631
+ line-height: 1.5em;
632
+ font-weight: 900;
633
+ text-transform: uppercase;
634
+ text-decoration: underline solid #EE9C4F;
635
+ padding: 1em 0.5em;
636
+ }
637
+
638
+ .title-second {
639
+ font-size: 2em;
640
+ line-height: 2em;
641
+ font-weight: 300;
642
+ letter-spacing: 1px;
643
+ }
644
+
645
+ img.csa-logo {
646
+ height: 50px;
647
+ width: auto;
648
+ float: right;
649
+ margin-right: 2em;
650
+ }
651
+
652
+ .coverpage-title .title-second {
653
+ display: none;
654
+ }
655
+
656
+ .coverpage-stage-block {
657
+ font-family: $bodyfont;
658
+ font-weight: 700;
659
+ font-size: 1em;
660
+ margin: 1em 0em 1em 0em;
661
+ text-transform: uppercase;
662
+ }
663
+
664
+ .section-title {
665
+ background: linear-gradient(#A5A8AB, #B1B6B8);
666
+ padding: 4em 2em 3em 5.5em;
667
+ margin: 4em -3em 3em -5em;
668
+ border-bottom: 8px solid #EE9C4F;
669
+ }
670
+
671
+ .section-title .super-title {
672
+ font-size: 2em;
673
+ font-weight: 100;
674
+ line-height: 1em;
675
+ margin: 0;
676
+ color: white;
677
+ text-transform: uppercase;
678
+ }
679
+
680
+ .section-title h1, .section-title .h1 {
681
+ font-size: 2em;
682
+ font-weight: 800;
683
+ line-height: 1em;
684
+ margin-top: 0.5em;
685
+ margin-bottom: 0;
686
+ color: white;
687
+ text-transform: none;
688
+ }
689
+
690
+ h2,.h2 {
691
+ border-bottom: solid 1px #4D7EA5;
692
+ color: #4D7EA5;
693
+ }
694
+
695
+ h3, h4, h5, h6, .h3, .h4, .h5, .h6 {
696
+ color: #EE9C4F;
697
+ }
698
+
699
+ /*
700
+ 4.3 Draft Warning
701
+ */
702
+
703
+
704
+ .coverpage-warning {
705
+ border-top: solid 1px #f36f36;
706
+ border-bottom: solid 1px #f36f36;
707
+ margin: 1em 2em;
708
+ color: #00549f;
709
+ padding: 1em;
710
+ }
711
+
712
+ .coverpage-warning .title {
713
+ color: #f36f36;
714
+ font-family: $headerfont;
715
+ font-weight: 700;
716
+ text-transform: uppercase;
717
+ font-size: 1.2em;
718
+ }
719
+
720
+
721
+
722
+ /*
723
+ 4.4 Copyright
724
+ */
725
+
726
+ .copyright {
727
+ padding: 1em;
728
+ font-size: 0.8em;
729
+ text-align: left;
730
+ }
731
+
732
+
733
+ .copyright .name, .copyright .address {
734
+ color: #00549f;
735
+ }
736
+
737
+
738
+
739
+ /*
740
+ 5.0 Other styles
741
+ */
742
+
743
+
744
+
745
+ /*
746
+ To top button
747
+ */
748
+
749
+ #myBtn {
750
+ @include toTopBtn(white, #1f8ca0);
751
+ text-transform: uppercase;
752
+
753
+ a.anchorjs-link {
754
+ @include anchorLink(#4D7EA5)
755
+ }
756
+ }
757
+
758
+ nav h1:hover a::after {
759
+ display: none;
760
+ }
761
+
762
+ .document-stage-band p {
763
+ color: #EE9C4F!important;
764
+ }
765
+
766
+ .document-type-band p {
767
+ color: #4D7EA5!important;
768
+ }
769
+
770
+ .document-stage-band {
771
+ box-shadow: none;
772
+ }
773
+
774
+ @page {
775
+ margin: 1cm;
776
+ }
777
+
778
+ @media print {
779
+
780
+ .section-title, .document-info, nav {
781
+ page-break-before: always;
782
+ }
783
+
784
+ .coverpage {
785
+ height: 23cm;
786
+ }
787
+
788
+ .coverpage-doc-identity {
789
+ position: absolute;
790
+ bottom: 1cm;
791
+ }
792
+
793
+ #toggle, .document-stage-band,
794
+ .document-type-band {
795
+ display: none;
796
+ }
797
+
798
+ .container {
799
+ padding-left: 0;
800
+ }
801
+
802
+ #toc .toc-active a {
803
+ color: #4D7EA5;
804
+ }
805
+
806
+ #toc .toc-active, #toc li:hover {
807
+ background: white;
808
+ box-shadow: none !important;
809
+ }
810
+
811
+ #toc li:hover a {
812
+ color: black;
813
+ }
814
+
815
+
816
+ h1.toc-contents {
817
+ margin-top: 2em;
818
+ }
819
+
820
+ }