asciidoctor-rsd 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,793 @@
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
+ dl, dt, dd, 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
+ border: 0;
26
+ font-size: 100%;
27
+ font-family: $bodyfont;
28
+ vertical-align: baseline;
29
+ }
30
+ /* HTML5 display-role reset for older browsers */
31
+ article, aside, details, figcaption, figure,
32
+ footer, header, hgroup, menu, nav, section {
33
+ display: block;
34
+ }
35
+ body {
36
+ line-height: 1;
37
+ }
38
+ /*
39
+ ol, ul {
40
+ list-style: none;
41
+ }
42
+ */
43
+ blockquote, q {
44
+ quotes: none;
45
+ }
46
+ blockquote:before, blockquote:after,
47
+ q:before, q:after {
48
+ content: '';
49
+ content: none;
50
+ }
51
+ table {
52
+ border-collapse: collapse;
53
+ border-spacing: 0;
54
+ }
55
+
56
+
57
+ /*
58
+ 1. HTML & Body
59
+ */
60
+
61
+ body {
62
+ margin: 0;
63
+ margin-left: auto;
64
+ margin-right: auto;
65
+ max-width: 100%;
66
+ color: #1d1d1d;
67
+ font-weight: 300;
68
+ font-size: 15px;
69
+ line-height: 1.4em;
70
+ background-color: #ffffff;
71
+ }
72
+
73
+ main {margin: 0 3em 0 6em;}
74
+
75
+ #toc{
76
+ font-family: $bodyfont;
77
+ font-weight: 400;
78
+ }
79
+
80
+ /*
81
+ 2. Responsive navigation layout
82
+ */
83
+
84
+
85
+ @media (min-width: 768px) {
86
+ nav {
87
+ position: fixed;
88
+ top: 0;
89
+ bottom: 0;
90
+ left: 0;
91
+ width: 323px;
92
+ font-size: 0.9em;
93
+ overflow: auto;
94
+ padding: 0 0 0 45px;
95
+ margin-right: 30px;
96
+ background-color:#f7f7f7;
97
+ }
98
+
99
+ #toggle {
100
+ position: fixed;
101
+ height: 100%;
102
+ width: 30px;
103
+ background-color:#1d1d1d;
104
+ color: white!important;
105
+ cursor: pointer;
106
+ z-index: 100;
107
+ }
108
+
109
+ #toggle span {
110
+ text-align: center;
111
+ width: 100%;
112
+ position: absolute;
113
+ top: 50%;
114
+ transform: translate(0, -50%);
115
+
116
+ }
117
+
118
+
119
+ .container {
120
+ padding-left: 360px;
121
+ }
122
+
123
+ .rule.toc {
124
+ display: none;
125
+ }
126
+
127
+ h1.toc-contents {
128
+ margin-top: 1em;
129
+ }
130
+
131
+ ul#toc-list {
132
+ padding:0;
133
+ margin:0;
134
+ }
135
+ }
136
+
137
+ @media (max-width: 768px) {
138
+ #toc {
139
+ padding: 0 1.5em 0 1.5em;
140
+ overflow: visible;
141
+ }
142
+ }
143
+
144
+
145
+
146
+ #toc ul {
147
+ margin: 0;
148
+ padding: 0;
149
+ list-style: none;
150
+ }
151
+
152
+ #toc li {
153
+ padding: 5px 10px;
154
+ }
155
+
156
+ #toc a {
157
+ color: #485094;
158
+ text-decoration: none;
159
+ display: block;
160
+ }
161
+
162
+ #toc a:hover {
163
+ color: white;
164
+ }
165
+
166
+ #toc .h2 {
167
+ padding-left: 30px;
168
+ }
169
+
170
+ #toc .h3 {
171
+ padding-left: 50px;
172
+ }
173
+
174
+ #toc .toc-active a {
175
+ color: white;
176
+ }
177
+
178
+ #toc .toc-active, #toc li:hover {
179
+ background: #1d1d1d;
180
+ box-shadow: inset -5px 0px 10px -5px #1d1d1d!important;
181
+
182
+ }
183
+
184
+ #toc li:hover a {
185
+ color: white;
186
+ }
187
+
188
+ /*
189
+ Document types + stages
190
+ */
191
+
192
+ .document-type-band {
193
+ left:0;
194
+ top:180px;
195
+ height: 100%;
196
+ position: fixed;
197
+ display: block;
198
+ z-index: 99;
199
+ /*box-shadow: -5px 0px 10px #1d1d1d*/
200
+
201
+ }
202
+
203
+ .document-stage-band {
204
+ left:0;
205
+ top:0;
206
+ height: 100%;
207
+ position: fixed;
208
+ display: block;
209
+ z-index: 98;
210
+ box-shadow: -5px 0px 10px #1d1d1d
211
+ }
212
+
213
+ .document-type {
214
+ position: relative;
215
+ width: 25px;
216
+ }
217
+
218
+ .document-stage {
219
+ position: relative;
220
+ width: 25px;
221
+ }
222
+
223
+ p.document-type, p.document-stage {
224
+ color: white;
225
+ text-transform: uppercase;
226
+ font-size: 0.9em;
227
+ font-weight: 400;
228
+ letter-spacing: 0.05em;
229
+ margin:0;
230
+ margin-left: 6px;
231
+ writing-mode:tb-rl;
232
+ -webkit-transform:rotate(180deg);
233
+ -moz-transform:rotate(180deg);
234
+ -o-transform: rotate(180deg);
235
+ white-space:nowrap;
236
+ display:block;
237
+ bottom:0;
238
+ }
239
+
240
+ p.document-type {
241
+ font-weight: 400;
242
+ height: 210px;
243
+ }
244
+
245
+ #governance-band p.document-type {
246
+ font-weight: 400;
247
+ height: 230px!important;
248
+ }
249
+
250
+ p.document-stage {
251
+ font-weight: 300;
252
+ height:160px;
253
+ }
254
+
255
+ #standard-band {
256
+ background-color: #0ac442;
257
+ }
258
+
259
+ #standard {
260
+ border-bottom: solid 3px #0ac442;
261
+ }
262
+
263
+ #governance {
264
+ border-bottom: solid 3px #750697;
265
+ }
266
+
267
+ #governance-band {
268
+ background-color: #750697;
269
+ }
270
+
271
+ #guide {
272
+ border-bottom: solid 3px #48a0e7;
273
+ }
274
+
275
+ #guide-band {
276
+ background-color: #48a0e7;
277
+ }
278
+
279
+ .coverpage-maturity {
280
+ font-family: $bodyfont;
281
+ font-weight: 400;
282
+ font-size: 1em;
283
+ margin: 0 0 2em 0;
284
+ text-transform: uppercase;
285
+ }
286
+
287
+ #proposal {
288
+ border-bottom: solid 3px #00BFFF;
289
+ }
290
+
291
+ #proposal-band {
292
+ background-color: #00BFFF;
293
+ }
294
+
295
+ #working-draft {
296
+ border-bottom: solid 3px #fda706;
297
+ }
298
+
299
+ #working-draft-band {
300
+ background-color: #fda706;
301
+ }
302
+
303
+ #committee-draft {
304
+ border-bottom: solid 3px #fd06fd;
305
+ }
306
+
307
+ #committee-draft-band {
308
+ background-color: #fd06fd;
309
+ }
310
+
311
+ #draft-standard {
312
+ border-bottom: solid 3px #fdf906;
313
+ }
314
+
315
+ #draft-standard-band {
316
+ background-color: #fdf906;
317
+ }
318
+
319
+ #final-draft {
320
+ border-bottom: solid 3px #7e0d13;
321
+ }
322
+
323
+ #final-draft-band {
324
+ background-color: #7e0d13;
325
+ }
326
+
327
+ #published {
328
+ border-bottom: solid 3px #0ac442;
329
+ }
330
+
331
+ #published-band {
332
+ background-color: #0ac442;
333
+ }
334
+
335
+ #withdrawn {
336
+ border-bottom: solid 3px #a0a0a0;
337
+ }
338
+
339
+ #withdrawn-band {
340
+ background-color: #a0a0a0;
341
+ }
342
+
343
+ /*
344
+ 3. TYPOGRAPHY
345
+ */
346
+
347
+ /*
348
+ 3.1 Titles
349
+ */
350
+
351
+ h1,h2,h3,h4,h5,h6 {
352
+ font-family: $headerfont;
353
+ color: #0e1a85;
354
+ font-weight: 600;
355
+ margin-top: 2em;
356
+ margin-bottom: 0.3em;
357
+ }
358
+
359
+ h1 {
360
+ font-size: 1.4em;
361
+ text-transform: uppercase;
362
+ margin-top: 2em;
363
+ }
364
+
365
+ h1#content {
366
+ margin-top: 2em;
367
+ }
368
+
369
+ h2 {font-size: 1.3em; }
370
+
371
+ h3 {font-size: 1.1em;}
372
+
373
+ span[id^="toc"]:after {
374
+ float: left;
375
+ padding-right: 4px;
376
+ margin-left: -20px;
377
+ font-family: "Font Awesome 5 Free";
378
+ font-weight: 900;
379
+ font-size: 0.8em;
380
+ color: #cfcfcf;
381
+ content: "\f0c1";
382
+ }
383
+
384
+
385
+
386
+ p.TermNum, p.Terms, p.AltTerms {
387
+ color: #485094;
388
+ font-weight: 400;
389
+ }
390
+
391
+ p.TermNum {
392
+ font-size: 0.9em;
393
+ line-height: 1em;
394
+ margin: 0;
395
+ margin-top: 2em;
396
+ }
397
+
398
+ p.Terms {
399
+ font-size: 1.1em;
400
+ line-height: 1.7em;
401
+ margin: 0;
402
+ }
403
+
404
+ p.AltTerms {
405
+ font-style: italic;
406
+ margin: 0;
407
+ }
408
+
409
+ /*
410
+ 3.2 Links
411
+ */
412
+
413
+ a, a:visited{
414
+ text-decoration: none;
415
+ color: #485094;
416
+ }
417
+
418
+ a:hover {
419
+ color: white;
420
+ background: #1d1d1d;
421
+ box-shadow: 3px 0 0 #1d1d1d, -3px 0 0 #1d1d1d;
422
+ /* padding: 2px 0 2px 0; */
423
+ }
424
+
425
+ ::selection {
426
+ background: #1d1d1d; /* WebKit/Blink Browsers */
427
+ color: white;
428
+ }
429
+ ::-moz-selection {
430
+ background: #1d1d1d; /* Gecko Browsers */
431
+ color: white;
432
+ }
433
+
434
+ .contact-info a:hover {
435
+ color: #485094;
436
+ text-decoration: underline;
437
+ background: none;
438
+ box-shadow: 0 0 0 0;
439
+ }
440
+
441
+
442
+
443
+ /*
444
+ 3.3 Lists
445
+ */
446
+
447
+ ul {margin-left: 0.5em;}
448
+
449
+ #toc-list ul {margin-bottom: 0.25em;}
450
+
451
+ #toc-list li {list-style-type: none;}
452
+
453
+ /*
454
+ 3.4 Rules
455
+ */
456
+
457
+ .rule {
458
+ width: 100%;
459
+ height: 1px;
460
+ background-color: #0e1a85;
461
+ margin: 2em 0;
462
+ }
463
+
464
+ /*
465
+ 3.5 Bibliograhy
466
+ */
467
+
468
+ p.Biblio {
469
+ margin-top: 1em;
470
+ margin-left: 2em;
471
+ }
472
+
473
+ /*
474
+ 3.6 Source Code + figures
475
+ */
476
+
477
+ .figure, .Sourcecode {
478
+ font-family: $monospacefont;
479
+ background-color: #f7f7f7;
480
+ font-size: 0.8em;
481
+ line-height: 1.6em;
482
+ padding: 1.5em;
483
+ margin: 2em 0 1em 0;
484
+ overflow: auto;
485
+ }
486
+
487
+ .FigureTitle {
488
+ font-weight: 700;
489
+ font-size: 1em;
490
+ text-align: center;
491
+ }
492
+
493
+ /*
494
+ 3.7 Notes
495
+ */
496
+
497
+ .Note {
498
+ background-color: #fff495;
499
+ color: #47430c;
500
+ padding: 1.2em;
501
+ margin: 2em 0 1em 0;
502
+ }
503
+
504
+ /*
505
+ 3.8 Examples
506
+ */
507
+
508
+ .example {
509
+ background-color: #e1eef1;
510
+ padding: 1.2em;
511
+ margin: 2em 0 1em 0;
512
+ }
513
+
514
+ .example .example-title {
515
+ font-weight: 700;
516
+ text-transform: uppercase;
517
+ text-align: center;
518
+ margin-top:0;
519
+ }
520
+
521
+ /*
522
+ 3.9 Tables
523
+ */
524
+
525
+ table {
526
+ border-collapse: collapse;
527
+ width: 100%;
528
+ font-weight: 300;
529
+ margin: 1em 0 2em 0;
530
+ margin-left: auto;
531
+ margin-right: auto;
532
+ padding-right: 2em;
533
+ }
534
+
535
+ table, th, td {
536
+ border: 1px solid black;
537
+ font-size: 0.95em;
538
+ }
539
+
540
+ td, th {
541
+ padding: 1em;
542
+ }
543
+
544
+ td.header {
545
+ font-weight: 400;
546
+ }
547
+
548
+ p.TableTitle {
549
+ text-align: center;
550
+ margin-top: 2.5em;
551
+ font-weight: 400;
552
+ }
553
+
554
+ /*
555
+ 3.10 Footnotes
556
+ */
557
+
558
+ a.footnote-number {
559
+ vertical-align: super;
560
+ font-size: 0.8em;
561
+ }
562
+
563
+ .footnote {
564
+ font-size: 0.9em;
565
+ }
566
+
567
+
568
+ /*
569
+ 3.11 Blockquotes
570
+ */
571
+
572
+ .Quote {
573
+ background-color: #f7f7f7;
574
+ font-style: italic;
575
+ width: 80%;
576
+ padding: 1.5em;
577
+ margin-top: 2em;
578
+ margin-left: auto;
579
+ margin-right: auto;
580
+ }
581
+
582
+
583
+ /*
584
+ 3.12 Formulas
585
+ */
586
+
587
+ .formula {
588
+ background-color: #f7f7f7;
589
+ padding: 1.5em;
590
+ margin-top: 2em;
591
+ text-align: center;
592
+ }
593
+
594
+ /*
595
+ 3.13 Contact Info
596
+ */
597
+
598
+ .contact-info {
599
+ background-color: #f7f7f7;
600
+ padding: 2em;
601
+ margin-top: 5em;
602
+ width: auto;
603
+ margin-left: auto;
604
+ margin-right: auto;
605
+ text-align: left;
606
+ }
607
+
608
+ .contact-info p, .contact-info a {
609
+ font-family: $monospacefont;
610
+ font-weight: 400;
611
+ }
612
+
613
+ .contact-info .name {
614
+ font-weight: 700;
615
+ font-size: 1.2em;
616
+ margin-bottom:0;
617
+ }
618
+
619
+ .contact-info .address {
620
+ font-size: 1em;
621
+ line-height: 1.3em;
622
+ margin-top:0;
623
+ }
624
+
625
+ /*
626
+ Keywords
627
+ */
628
+
629
+ span.keyword {
630
+ font-weight: 600;
631
+ }
632
+
633
+ /*
634
+ Paragraphs
635
+ */
636
+
637
+ p {
638
+ margin-top: 1em;
639
+ margin-bottom: 1em;
640
+ }
641
+
642
+ /*
643
+ 4.0 Page header
644
+ */
645
+
646
+ /*
647
+ 4.1 Top Logo
648
+ */
649
+
650
+ .wrapper-top {
651
+ background-color:#0e1a85;
652
+ /* background-image: url("img/dots@2x.png"); */
653
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAACXBIWXMAABYlAAAWJQFJUiTwAAADwUlEQVR4nO3YgQ2AMAwDwcAiWZ1NizrH30lIeIEq9nPOGSDqPgC7+93v/suy3Mmvhx+6VAAIcwFAmc4nyzYAIMgGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAERSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAIS5AKCs3oFk2QYAJNkAIMwFAGX1DiTLNgAgyQYAYS4AKKt3IFm2AQBJNgAIcwFAWb0DybINAEiyAUCYCwDK6h1Ilm0AQJINAMJcAFBW70CybAMAkmwAEOYCgLJ6B5JlGwCQZAOAMBcAlNU7kCzbAIAkGwCEuQCgrN6BZNkGACTZACDMBQBl9Q4kyzYAIMkGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAERSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAIS5AKCs3oFk2QYAJNkAIMwFAGX1DiTLNgAgyQYAYS4AKKt3IFm2AQBJNgAIcwFAWb0DybINAEiyAUCYCwDK6h1Ilm0AQJINAMJcAFBW70CybAMAkmwAEOYCgLJ6B5JlGwCQZAOAMBcAlNU7kCzbAIAkGwCEuQCgrN6BZNkGACTZACDMBQBl9Q4kyzYAIMkGAGEuACirdyBZtgEASTYACHMBQFm9A8myDQBIsgFAmAsAyuodSJZtAERSDQDCXABQVu9AsmwDAJJsABDmAoCyegeSZRsAkGQDgDAXAJTVO5As2wCAJBsAhLkAoKzegWTZBgAk2QAgzAUAZfUOJMs2ACDJBgBhLgAoq3cgWbYBAEk2AAhzAUBZvQPJsg0ASLIBQJgLAMrqHUiWbQBAkg0AwlwAUFbvQLJsAwCSbAAQ5gKAsnoHkmUbAJBkA4AwFwCU1TuQLNsAgCQbAFTNzA9ggAr9aahO8QAAAABJRU5ErkJggg==');
654
+ color: #ffffff;
655
+ padding: 2em 0;
656
+ }
657
+
658
+ .doc-number {
659
+ font-size: 0.5em;
660
+ font-family: $bodyfont;
661
+ }
662
+
663
+ .coverpage-title {
664
+ padding-bottom: 0.5em;
665
+ font-family: $headerfont;
666
+ font-size: 1.5em;
667
+ font-weight: 900;
668
+ }
669
+
670
+ .WordSection11 {
671
+ padding: 0 2em 0 3em;
672
+ }
673
+
674
+ .WordSection2 {
675
+ padding: 0 3em 0 6em;
676
+ }
677
+
678
+
679
+ .zzSTDTitle1, .MsoCommentText {
680
+ display: none;
681
+ }
682
+
683
+
684
+ .coverpage {
685
+ text-align: center;
686
+ }
687
+
688
+ .coverpage-logo span, .coverpage-tc-name span {
689
+ font-family: $bodyfont;
690
+ text-transform: uppercase;
691
+ font-weight: 600;
692
+ }
693
+
694
+ .coverpage-tc-name {
695
+ font-size: 1.2em;
696
+ line-height: 1.2em;
697
+ margin: 0.25em 0;
698
+ }
699
+
700
+ /*
701
+ 4.2 Document Identity
702
+ */
703
+
704
+ .coverpage-doc-identity {
705
+ font-size: 2em;
706
+ line-height: 2em;
707
+ }
708
+
709
+
710
+ .coverpage-title .title-second {
711
+ display: none;
712
+ }
713
+
714
+ .coverpage-stage-block {
715
+ font-family: $bodyfont;
716
+ font-weight: 700;
717
+ font-size: 1.25em;
718
+ margin: 2em 0em 2em 0em;
719
+ text-transform: uppercase;
720
+ }
721
+
722
+
723
+
724
+
725
+ /*
726
+ 4.3 Draft Warning
727
+ */
728
+
729
+
730
+ .coverpage-warning {
731
+ border-top: solid 1px #f36f36;
732
+ border-bottom: solid 1px #f36f36;
733
+ margin: 1em 2em;
734
+ color: #485094;
735
+ padding: 1em;
736
+ }
737
+
738
+ .coverpage-warning .title {
739
+ color: #f36f36;
740
+ font-family: $headerfont;
741
+ font-weight: 700;
742
+ text-transform: uppercase;
743
+ font-size: 1.2em;
744
+ }
745
+
746
+
747
+
748
+ /*
749
+ 4.4 Copyright
750
+ */
751
+
752
+ .copyright {
753
+ padding: 1em;
754
+ font-size: 0.8em;
755
+ text-align: left;
756
+ }
757
+
758
+
759
+ .copyright .name, .copyright .address {color: #485094;}
760
+
761
+
762
+
763
+ /*
764
+ 5.0 Other styles
765
+ */
766
+
767
+
768
+
769
+ /*
770
+ To top button
771
+ */
772
+
773
+ #myBtn {
774
+ font-family: $monospacefont;
775
+ display: none;
776
+ position: fixed;
777
+ bottom: 20px;
778
+ right: 30px;
779
+ z-index: 99;
780
+ font-size: 12px;
781
+ border: none;
782
+ outline: none;
783
+ background-color: #1d1d1d;
784
+ opacity: 0.15;
785
+ color: white;
786
+ cursor: pointer;
787
+ padding: 10px 15px 10px 15px;
788
+ border-radius: 4px;
789
+ }
790
+
791
+ #myBtn:hover {
792
+ opacity: 1;
793
+ }