spec-up-t 1.1.24 → 1.1.26

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.
@@ -1,1129 +1,48 @@
1
- :root {
2
-
3
- --base-theme-color: 207, 71%;
4
- --themed-element-bk: hsl(var(--base-theme-color), 40%);
5
- --themed-element-text: #fff;
6
- --themed-element-border: 1px solid hsl(var(--base-theme-color), 26%);
7
- --themed-heading-text: hsl(var(--base-theme-color), 30%);
8
-
9
- --no-color: 255, 255, 255;
10
- --faint-color: 245, 245, 245;
11
- --dim-color: 225, 225, 225;
12
- --low-color: 200, 200, 200;
13
- --mid-color: 100, 100, 100;
14
- --high-color: 50, 50, 50;
15
- --full-color: 0, 0, 0;
16
- --active-color: #3aaaff;
17
- --visited-color: rgb(188, 129, 255);
18
- --green-status: rgb(0, 123, 9);
19
- --light-green-status: rgb(0, 194, 13);
20
-
21
-
22
- --page-bk: rgb(var(--no-color));
23
- --page-text: rgb(var(--full-color));
24
- --page-text-hover: rgb(var(--full-color));
25
-
26
- --element-bk: rgb(var(--no-color));
27
- --element-bk-hover: rgba(var(--low-color), 0.5);
28
- --element-bk-transparent: rgba(var(--dim-color), 0.92);
29
- --element-border: rgba(var(--high-color), 0.4);
30
- --element-border-focus: rgb(var(--full-color), 0.75);
31
- --element-border-radius: 3px;
32
- --element-shadow-low: 0 1px 3px 0px rgba(0, 0, 0, 0.25);
33
- --element-shadow-mid: 0 1px 3px 0px rgba(0, 0, 0, 0.35);
34
- --element-shadow-high: 0 1px 5px 0px rgba(0, 0, 0, 0.45);
35
-
36
- --code-bk: #1a1e23;
37
-
38
- --input-bk: rgba(var(--dim-color), 0.6);
39
- --input-border: rgba(var(--high-color), 0.4);
40
-
41
- /* --header-height: 3.5em; */
42
- --header-height: 48px;
43
- --header-bk: rgba(var(--low-color), 0.985);
44
- --header-text: rgb(var(--full-color));
45
- --header-border: rgba(var(--full-color), 0.1);
46
- --header-border-inverse: rgba(var(--no-color), 0.3);
47
-
48
- --text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
49
-
50
- --svg-size: 2vw;
51
-
52
- --font-size: 14px;
53
- }
54
-
55
- /* This CSS code targets any element that is the target of a fragment identifier (i.e., an element with an ID that matches the hash in the URL). It sets the scroll-margin property to ensure that the element is scrolled into view with a margin at the top. The margin is calculated as the value of the custom property --header-height divided by 0.3,
56
- with no margin on the right, bottom, or left. This is useful for ensuring that the target element is not obscured by a fixed header when scrolled into view. Keyword: anchor */
57
1
  *:target {
58
- scroll-margin: calc(var(--header-height) / 0.3) 0 0;
2
+ /* scroll-margin-top: 160px; */
3
+ scroll-margin-top: calc(50vh);
4
+ /* Matches sticky header height */
59
5
  }
60
6
 
61
7
  body:not([hashscroll]) *:target {
62
- animation: highlight 1.5s 0.25s ease;
63
- }
64
-
65
- body {
66
- margin: 0;
67
- padding: 0;
68
- font-family: Heebo, san-serif;
69
- line-height: 1.5em;
70
- widows: 2;
71
- orphans: 2;
72
- word-wrap: break-word;
73
- overflow-wrap: break-word;
74
- color: black;
75
- word-spacing: 1px;
76
- counter-reset: h2 toc1;
77
- }
78
-
79
- h1 {
80
- font-size: 2em;
81
- font-weight: bold;
82
- line-height: 1.2em;
83
- }
84
-
85
- h2 {
86
- margin: 1.5em 0 1em;
87
- }
88
-
89
- blockquote {
90
- position: relative;
91
- padding: 0;
92
- margin: 1.75em 0.75em;
93
- color: rgb(var(--mid-color));
94
- background: rgb(var(--faint-color));
95
- }
96
-
97
- blockquote:before,
98
- blockquote:after {
99
- content: "“";
100
- position: absolute;
101
- top: 0.065em;
102
- left: 0.065em;
103
- font-size: 3em;
104
- height: 0.34em;
105
- line-height: 100%;
106
- color: rgb(var(--low-color));
107
- }
108
-
109
- blockquote:after {
110
- content: "”";
111
- top: auto;
112
- left: auto;
113
- bottom: 0.065em;
114
- right: 0.065em;
115
- text-align: center;
116
- }
117
-
118
- blockquote>p {
119
- padding: 0.6em 1.8em 0.5em 1.8em;
120
- }
121
-
122
- strong strong {
123
- font-size: 0.9em;
124
- color: #b30032;
125
- font-weight: normal;
126
- text-transform: uppercase;
127
- }
128
-
129
- main article>ol,
130
- main article>ul {
131
- padding: 0 0 0 2em;
132
- }
133
-
134
- main article h1,
135
- main article h2,
136
- main article h3,
137
- main article h4,
138
- main article h5,
139
- main article h6 {
140
- color: var(--themed-heading-text);
141
- }
142
-
143
- main article h2,
144
- main article h3,
145
- main article h4 {
146
- display: flex;
147
- font-weight: 500;
148
- }
149
-
150
- main article h2 {
151
- counter-reset: h3 h4;
152
- }
153
-
154
- main article h3 {
155
- counter-reset: h4;
156
- }
157
-
158
- main article h2:after {
159
- counter-increment: h2;
160
- content: counter(h2) ".";
161
- padding: 0 0.4em 0 0.2em;
162
- order: -1;
163
- }
164
-
165
- main article h3:after {
166
- counter-increment: h3;
167
- content: counter(h2) "." counter(h3);
168
- padding: 0 0.45em 0 0.2em;
169
- order: -1;
170
- }
171
-
172
- main article h4:after {
173
- counter-increment: h4;
174
- content: counter(h2) "." counter(h3) "." counter(h4);
175
- padding: 0 0.5em 0 0.2em;
176
- order: -1;
177
- }
178
-
179
- h1 .toc-anchor {
180
- display: none;
181
- }
182
-
183
- .toc-anchor {
184
- margin: -0.1em 0 0;
185
- font-size: 0.875em;
186
- color: inherit;
187
- text-decoration: none;
188
- opacity: 0.35;
189
- order: -1;
190
- transition: opacity 0.3s ease;
191
- }
192
-
193
- .toc-anchor:hover {
194
- opacity: 1;
195
- }
196
-
197
- pre {
198
- overflow: auto;
199
- }
200
-
201
- code {
202
- padding: 0.085em 0.3em 0.1em;
203
- font-size: 1.075em;
204
- color: #c7001c;
205
- vertical-align: middle;
206
- background: #f0f0f0;
207
- border-radius: 4px;
208
- }
209
-
210
- pre code {
211
- background: unset;
212
- padding: unset;
213
- border-radius: unset;
214
- }
215
-
216
- h1 code,
217
- h2 code,
218
- h3 code,
219
- h4 code,
220
- h5 code,
221
- h6 code {
222
- font-size: 1.25em;
223
- margin: -0.11em 0.3em 0 0;
224
- border-radius: 3px;
225
- }
226
-
227
- ol,
228
- ul {
229
- margin: 0;
230
- padding: 0 0 0 1.2em;
231
- }
232
-
233
- /* START: Definition list for terms */
234
- dl.terms-and-definitions-list {
235
- margin: 0;
236
- padding: 0;
237
- }
238
-
239
- dl.terms-and-definitions-list>dt {
240
- font-weight: bold;
241
- margin: 0;
242
- background-color: #f0f0f0;
243
- border: 1px solid #ccc;
244
- padding: 10px;
245
- border-radius: 5px 5px 0 0;
246
- }
247
-
248
- dl.terms-and-definitions-list>dd {
249
- margin: 0;
250
- background-color: #f9f9f9;
251
- border: 1px solid #ccc;
252
- border-top: none;
253
- padding: 0.5em 2em;
254
- /* margin-left: 20px; */
255
- border-bottom: none;
256
- /* Remove bottom borders for all dd's by default */
257
- }
258
-
259
- dl.terms-and-definitions-list dd p {
260
- margin: 0;
8
+ animation: highlight-target 3.5s 0.25s ease;
261
9
  }
262
10
 
263
- /* Remove borders between consecutive <dd> elements */
264
- dl.terms-and-definitions-list dd+dd {
265
- border-bottom: none;
266
- }
267
-
268
- /* Add a margin between the last <dd> and the next <dt> */
269
- dl.terms-and-definitions-list dd+dt {
270
- margin-top: 2em;
271
- }
272
-
273
- dl.terms-and-definitions-list dd.last-dd {
274
- border-radius: 0 0 5px 5px;
275
- border-bottom: 1px solid #ccc;
276
- }
277
-
278
- /* END: Definition list for terms */
279
-
280
-
281
- main {
282
- box-sizing: border-box;
283
- float: right;
284
- width: 75%;
285
- min-width: calc(100% - 325px);
286
- max-width: calc(100% - 275px);
287
- padding: 0.5em 2em 1.5em 2em;
288
- background: #fff;
289
- box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
290
- }
291
-
292
- table {
293
- display: block;
294
- width: -webkit-fill-available;
295
- width: fit-content;
296
- max-width: 100%;
297
- margin: 1.5em 0 1.75em;
298
- border-spacing: 0;
299
- border-collapse: collapse;
300
- overflow-x: auto;
301
- word-wrap: normal;
302
- overflow-wrap: normal;
303
- hyphens: manual;
304
- }
305
-
306
- thead tr th {
307
- color: var(--themed-element-text);
308
- background: var(--themed-element-bk);
309
- border: var(--themed-element-border);
310
- text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
311
- }
312
-
313
- tr {
314
- border-top: 1px solid #cccccc;
315
- background-color: white;
316
- margin: 0;
317
- padding: 0;
318
- }
319
-
320
- tr:nth-child(2n) {
321
- background-color: #f0f0f0;
322
- }
323
-
324
- tr th {
325
- font-weight: normal;
326
- border: 1px solid #cccccc;
327
- text-align: left;
328
- margin: 0;
329
- padding: 6px 13px;
330
- }
331
-
332
- td,
333
- th {
334
- padding: 9px 13px;
335
- border: 1px solid #d8d8d8;
336
- }
337
-
338
- tr td {
339
- border: 1px solid #ccc;
340
- text-align: left;
341
- margin: 0;
342
- padding: 0.55em 0.75em 0.55em;
343
- }
344
-
345
- tr th :first-child,
346
- tr td :first-child {
347
- margin-top: 0;
348
- }
349
-
350
- tr th :last-child,
351
- tr td :last-child {
352
- margin-bottom: 0;
353
- }
354
-
355
- table pre[class*="language-"] {
356
- border: none;
357
- border-radius: 0;
358
- }
359
-
360
- table pre[class*="language-"]:before {
361
- display: none;
11
+ body:not([hashscroll]) dt:has(:target) {
12
+ animation: highlight-target-parent-dt 3.5s 0.25s ease;
362
13
  }
363
14
 
364
15
  svg[icon] {
365
16
  width: 1.25em;
366
17
  height: 1.25em;
367
18
  vertical-align: text-top;
368
- pointer-events: none;
369
- }
370
-
371
- article p>img {
372
- max-width: 100%;
373
- margin: 0 auto;
374
- }
375
-
376
- article li {
377
- margin-top: 0.4em;
378
- }
379
-
380
- /* Custom Elements */
381
-
382
- slide-panel>*:not(header):not(footer) {
383
- flex: 1;
384
- }
385
-
386
- /* Code Examples */
387
-
388
- :not(pre)>code[class*="language-"],
389
- pre[class*="language-"] {
390
- padding: 0.65em 0.8em 0.8em;
391
- background: var(--code-bk);
392
- }
393
-
394
- /* Tooltips */
395
-
396
- .tippy-box {
397
- box-shadow: var(--element-shadow-mid);
398
- }
399
-
400
- .tippy-box a {
401
- color: var(--active-color);
402
- }
403
-
404
- .tippy-box a:visited {
405
- color: var(--visited-color);
406
- }
407
-
408
- .tippy-content {
409
- padding: 0.55em 0.55em 0.5em;
410
- }
411
-
412
- .tippy-content header {
413
- margin: 0 0 0.4em;
414
- padding: 0.15em 0.3em 0.1em;
415
- border-radius: 2px;
416
- background: rgba(255, 255, 255, 0.1);
417
- text-shadow: 0 1px rgba(0, 0, 0, 0.9);
418
- }
419
-
420
- .tippy-content table,
421
- .tippy-content tbody,
422
- .tippy-content tr,
423
- .tippy-content td {
424
- margin: 0;
425
- padding: 0;
426
- border: none;
427
- border-spacing: 0;
428
- border-collapse: collapse;
429
- background: none !important;
430
- background-color: transparent !important;
431
- }
432
-
433
- .tippy-content table {
434
- margin: 0 0.3em;
435
- }
436
-
437
- .tippy-content td {
438
- font-size: 0.9em;
439
- padding: 0.2em 0 0;
440
- }
441
-
442
- .tippy-content td:first-child {
443
- padding-right: 0.5em;
444
- }
445
-
446
-
447
- /*******************/
448
-
449
- a[path-0$="github.com"]:before {
450
- content: "\f09b";
451
- color: var(--page-text);
452
- margin: 0 0.25em 0 0;
453
- font-family: 'FontAwesome';
454
- text-decoration: none;
455
- display: inline-block;
456
- vertical-align: bottom;
457
- }
458
-
459
- a[path-0$="github.com"][path-3="issues"][path-4],
460
- a[path-0$="github.com"][path-3="projects"],
461
- a[path-0$="github.com"][path-3="releases"],
462
- a[path-0$="github.com"][path-3="pull"] {
463
- text-decoration: none;
464
- }
465
-
466
- a[path-0$="github.com"][path-3="issues"][path-4] span,
467
- a[path-0$="github.com"][path-3="projects"] span,
468
- a[path-0$="github.com"][path-3="releases"] span,
469
- a[path-0$="github.com"][path-3="pull"] span {
470
- display: none;
471
- }
472
-
473
- a[path-0$="github.com"][path-3="issues"][path-4]:after {
474
- content: "Issue #" attr(path-4);
475
- }
476
-
477
- a[path-0$="github.com"][path-3="pull"]:after {
478
- content: "Pull Request #" attr(path-4);
479
- }
480
-
481
- a[path-0$="github.com"][path-3="releases"][path-5]:after {
482
- content: "Release " attr(path-5);
483
- }
484
-
485
- a[path-0$="github.com"][path-3="projects"]:after {
486
- content: "Project #" attr(path-4);
487
- }
488
-
489
- [issue-count]:after {
490
- content: "Issues (" attr(issue-count) ")";
491
- margin: 0 0 0 0.3em;
492
- padding: 0.1em 0 0;
493
- }
494
-
495
- [issue-count=""][animate] {
496
- display: none;
497
- opacity: 0;
498
- }
499
-
500
- [issue-count][animate]:not([issue-count=""]) {
501
- animation: display-show 1s;
502
- }
503
-
504
- [panel-toggle] {
505
- cursor: pointer;
506
- }
507
-
508
- .panel-header {
509
- display: flex;
510
- align-items: center;
511
- height: var(--header-height);
512
- }
513
-
514
- .panel-header>* {
515
- display: flex;
516
- height: 100%;
517
- padding: 0.1em 0.8em 0;
518
- align-items: center;
519
- }
520
-
521
-
522
- .slide-panel {
523
- width: calc(100% - 1em);
524
- max-width: 475px;
525
- transition: transform 0.35s ease;
526
- }
527
-
528
- .slide-panel[panel-open] {
529
- transform: translateX(0%);
530
- }
531
-
532
- .notice {
533
- margin: 1em 0;
534
- padding: 0.5em 0.9em 0.55em 0.65em;
535
- border-left: .5em solid;
536
- }
537
-
538
- .notice p {
539
- margin: 0.4em 0 0;
540
- }
541
-
542
- .note {
543
- background: #E9FBE9;
544
- border-color: #52E052;
545
- }
546
-
547
- .note .notice-link {
548
- display: block;
549
- color: #178217;
550
- }
551
-
552
- .issue {
553
- background: rgb(233, 240, 251);
554
- border-color: rgb(82, 127, 224);
555
- }
556
-
557
- .issue .notice-link:before {
558
- display: block;
559
- color: rgb(30, 76, 174);
560
- }
561
-
562
- .warning {
563
- background: #FBE9E9;
564
- border-color: #E05252;
565
- }
566
-
567
- .warning .notice-link {
568
- display: block;
569
- color: #AE1E1E;
570
- }
571
-
572
- .example {
573
- color: #cebe00;
574
- background: #1a1e23;
575
- border-left: 0.5em solid;
576
- }
577
-
578
- .example .notice-link {
579
- display: block;
580
- color: inherit;
581
- font-size: 1.1em;
582
- font-family: Heebo, san-serif;
583
- }
584
-
585
- .example pre[class*="language-"] {
586
- padding: 0;
587
- border-radius: 0;
588
- }
589
-
590
- .todo {
591
- background: #fbe4ff;
592
- border-color: #9700e2;
593
- }
594
-
595
- .todo .notice-link {
596
- display: block;
597
- color: #6d00a2;
598
- }
599
-
600
- .mermaid {
601
- display: flex;
602
- align-items: center;
603
- justify-content: center;
604
- margin: 1.5em 0 1.75em;
605
- }
606
-
607
- /* Spec References */
608
-
609
- .reference-list {
610
- margin: 0;
611
- padding: 0;
612
- list-style: none;
613
- }
614
-
615
- .reference-list dd a,
616
- .reference-status {
617
- font-style: italic;
618
- }
619
-
620
- .reference-status {
621
- color: var(--green-status);
622
- }
623
-
624
- .tippy-box .reference-status {
625
- color: var(--light-green-status);
626
- }
627
-
628
- /* Terminology References */
629
-
630
- pre,
631
- code[class*="language-"],
632
- pre[class*="language-"] {
633
- font-size: 0.9em;
634
- margin: 1em 0 1.5em;
635
- border-radius: 3px;
636
- }
637
-
638
- .example pre,
639
- .example code[class*="language-"],
640
- .example pre[class*="language-"] {
641
- margin: 0;
642
- }
643
-
644
- #svg {
645
- display: none;
646
- }
647
-
648
- #header {
649
- position: sticky;
650
- position: -webkit-sticky;
651
- padding: 0;
652
- top: 0;
653
- margin: -0.5em -2em 0em -2em;
654
- background: rgba(255, 255, 255, 0.9);
655
- border-bottom: 1px solid rgba(0, 0, 0, 0.175);
656
- box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.1);
657
- z-index: 2;
658
- }
659
-
660
- #logo {
661
- box-sizing: border-box;
662
- display: flex;
663
- align-items: center;
664
- height: 100%;
665
- padding: 0.5em;
666
- }
667
-
668
- #logo+span {
669
- margin-left: auto;
670
- }
671
-
672
- #logo img {
673
- width: 100px;
674
- }
675
-
676
- /* Small devices (landscape phones, 576px and up) */
677
- @media (min-width: 576px) {
678
- /* Keep this and use when more items are added to this header */
679
- /* .panel-header#header {
680
- flex-wrap: nowrap;
681
- height: var(--header-height);
682
- } */
683
-
684
- #logo {
685
- width: auto;
686
- }
687
- }
688
-
689
- #header #toc_toggle {
690
- display: none;
691
- padding: 0 1em;
692
- border-right: 1px solid rgba(0, 0, 0, 0.15);
693
- }
694
-
695
- #content {
696
- max-width: 800px;
697
- }
698
-
699
- #content h1:first-of-type {
700
- margin: 1em 0 0.5em;
701
- }
702
-
703
- #content h1:first-of-type .markdownIt-Anchor {
704
- display: none;
705
- }
706
-
707
- #repo_issues {
708
- width: calc(100% - 1.5em);
709
- max-width: 450px;
710
- border-left: 1px solid rgba(0, 0, 0, 0.15);
711
- }
712
-
713
- #repo_issues>header {
714
- background: #eee;
715
- border-bottom: 1px solid #ddd;
716
- }
717
-
718
- #repo_issues>header span:first-of-type {
719
- font-weight: bold;
720
- padding-top: 0.1em;
721
- }
722
-
723
- #repo_issues>header .repo-issue-toggle {
724
- margin-left: auto;
725
- color: inherit;
726
- font-weight: bold;
727
- text-decoration: none;
728
- }
729
-
730
- #repo_issue_list {
731
- list-style: none;
732
- margin: 0;
733
- padding: 0 1.25em 1.25em;
734
- font-size: 0.85em;
735
- overflow: auto;
736
- -ms-overflow-style: none;
737
- /* Internet Explorer 10+ */
738
- scrollbar-width: none;
739
- /* Firefox */
740
- }
741
-
742
- #repo_issue_list::-webkit-scrollbar {
743
- display: none;
744
- /* Safari and Chrome */
745
- }
746
-
747
- #repo_issue_list:empty:before {
748
- content: "No issues found";
749
- display: block;
750
- text-align: center;
751
- font-size: 1.1em;
752
- color: #aaa;
753
- margin: 1em 0 0;
754
- }
755
-
756
- .repo-issue detail-box {
757
- display: flex;
758
- flex-direction: column;
759
- padding: 1em 0;
760
- border-bottom: 1px solid #ddd;
761
- }
762
-
763
- .repo-issue detail-box>section {
764
- order: 1;
765
- }
766
-
767
- .repo-issue detail-box>section:empty+.repo-issue-title [detail-box-toggle] {
768
- display: none;
769
- }
770
-
771
- .repo-issue-title {
772
- display: flex;
773
- align-items: center;
774
- }
775
-
776
- .repo-issue-link {
777
- flex: 1;
778
- margin: 0 0 0 0.5em;
779
- }
780
-
781
- .repo-issue-number {
782
- height: 1em;
783
- margin: 0 0.4em 0 0;
784
- padding: 0.3em 0.25em 0;
785
- border-radius: 3px;
786
- font-weight: bold;
787
- background: #eee;
788
- border: 1px solid #ddd;
789
- text-align: center;
790
- line-height: 1em;
791
- }
792
-
793
- .repo-issue-number:before {
794
- content: "#";
795
- font-weight: normal;
796
- margin: 0 0.1em 0 0;
797
- }
798
-
799
- .repo-issue [detail-box-toggle] {
800
- margin: 0 0 0 1em;
801
- opacity: 0.35;
802
- transition: opacity 0.4s;
803
- }
804
-
805
- .repo-issue [detail-box-toggle]:hover,
806
- .repo-issue detail-box[open] [detail-box-toggle] {
807
- opacity: 1;
808
- }
809
-
810
- #toc {
811
- display: flex;
812
- flex-direction: column;
813
- width: 25%;
814
- max-width: 325px;
815
- min-width: 275px;
816
- background: #eceff1;
817
- }
818
-
819
- #toc header {
820
- color: var(--themed-element-text);
821
- background: var(--themed-element-bk);
822
- box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
823
- border: var(--themed-element-border);
824
- border-top: none;
825
- border-left: none;
826
- }
827
-
828
- #toc header [panel-toggle] {
829
- display: none;
830
- height: var(--header-height);
831
- line-height: var(--header-height);
832
- margin-left: auto;
833
- padding: 0 1em;
834
- color: inherit;
835
- font-weight: bold;
836
- text-decoration: none;
837
- }
838
-
839
- #toc_list {
840
- flex: 1;
841
- padding: 1em 0.8em;
842
- overflow: auto;
843
- }
844
-
845
- .toc {
846
- padding: 0 0 1.75em;
847
- font-size: 0.85em;
848
- }
849
-
850
- .toc,
851
- .toc ul {
852
- margin: 0;
853
- list-style: none;
854
19
  }
855
20
 
856
- .toc ul {
857
- padding: 0 0 0 1em;
858
- }
859
-
860
- .toc a {
861
- display: block;
862
- padding: 0.4em 0.3em 0.225em;
863
- text-decoration: none;
864
- border-radius: 3px;
865
- color: #333;
866
- }
867
-
868
- .toc a:before {
869
- color: #000;
870
- font-weight: bold;
871
- }
872
-
873
- .toc a:hover {
874
- text-shadow: 0px 1px 1px #fff;
875
- background: rgba(0, 0, 0, 0.1);
876
- }
877
-
878
- .toc>li a:before {
879
- counter-increment: toc1;
880
- content: counter(toc1) ".";
881
- padding: 0 0.4em 0 0.2em;
882
- }
883
-
884
- .toc>li>ul {
885
- counter-reset: toc2;
886
- }
887
-
888
- .toc>li>ul>li a:before {
889
- counter-increment: toc2;
890
- content: counter(toc1) "." counter(toc2);
891
- padding: 0 0.45em 0 0.2em;
892
- }
893
-
894
- .toc>li>ul ul {
895
- counter-reset: toc3;
896
- }
897
-
898
- .toc>li>ul ul li a:before {
899
- counter-increment: toc3;
900
- content: counter(toc1) "." counter(toc2) "." counter(toc3);
901
- padding: 0 0.5em 0 0.2em;
902
- }
903
-
904
- @media (min-width: 900px) {
905
-
906
- slide-panel {
907
- z-index: 2;
908
- }
909
-
910
- #slidepanels[open="sidebar"]:before {
911
- opacity: 0;
912
- transition: none;
913
- pointer-events: none;
914
- }
915
-
916
- #slidepanels:before {
917
- z-index: 1;
918
- }
919
-
920
- #toc {
921
- transition: none;
922
- transform: translate3d(0%, 0%, 0);
923
- box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15) inset;
924
- z-index: 0;
925
- }
926
- }
927
-
928
- @media (max-width: 900px) {
929
-
930
- main {
931
- width: 100%;
932
- min-width: auto;
933
- max-width: none;
934
- padding: 0.5em 1.25em 1.5em 1.25em;
935
- }
936
-
937
- #header {
938
- margin: -0.5em -1.25em 0em -1.25em;
939
- }
940
-
941
- #toc header [panel-toggle] {
942
- display: block;
943
- }
944
-
945
- #header #toc_toggle {
946
- display: flex;
947
- }
948
- }
949
-
950
- @media (max-width: 550px) {
951
-
952
- td {
953
- font-size: 0.8em;
954
- }
955
-
956
- }
957
-
958
- @keyframes display-show {
959
- 0% {
960
- display: none;
961
- opacity: 0;
962
- }
963
-
964
- 1% {
965
- display: block;
966
- }
967
-
968
- 100% {
969
- opacity: 1;
21
+ @keyframes highlight-target {
22
+ 50% {
23
+ background-color: yellow;
970
24
  }
971
25
  }
972
-
973
- @keyframes highlight {
26
+ @keyframes highlight-target-parent-dt {
974
27
  50% {
975
28
  background-color: yellow;
29
+ border: 1px solid rgb(0, 200, 255);
976
30
  }
977
31
  }
978
32
 
979
- /**
980
- * External Links
981
- https://christianoliff.com/blog/styling-external-links-with-an-icon-in-css/
982
- */
983
- article a[href^="http"]:not(.btn)::after,
984
- article a[href^="https://"]:not(.btn)::after {
985
- content: '';
986
- width: 12px;
987
- height: 12px;
988
- margin-left: 4px;
989
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
990
- background-position: center;
991
- background-repeat: no-repeat;
992
- background-size: contain;
993
- display: inline-block;
994
- }
995
-
996
- /**
997
- * End External Links
998
- */
999
-
1000
- .btn,
1001
- .no-xref-found-message {
1002
- font-variant: small-caps;
1003
- text-transform: uppercase;
1004
- }
1005
-
1006
- .no-xref-found-message {
1007
- background: #f8c481 !important;
1008
- color: #03365f !important;
1009
- margin: 0 0.5em;
1010
- padding: 0 0.8em;
1011
- border-radius: 0.25rem;
1012
- font-size: 0.8rem;
1013
- }
1014
-
1015
- .snapshots,
1016
- .powered-by {
1017
- /* padding: 1em 0.8em 0.5em; */
1018
- margin: 0;
1019
- padding: 0;
1020
- flex: none;
1021
- }
1022
-
1023
- .powered-by {
1024
- /* margin: 0;
1025
- padding: 0; */
1026
- text-align: center;
1027
- font-size: 0.7em;
1028
- }
1029
-
1030
-
1031
- .snapshots a {
1032
- display: block;
1033
- margin: 0.5em;
1034
- padding: 0.5em 0.8em;
1035
- border-radius: 0.25rem;
1036
- background: #A9DDE0;
1037
- color: #03365f;
1038
- text-decoration: none;
1039
- font-size: 1rem;
1040
- }
1041
-
1042
- /* Transclusions */
1043
-
1044
- .transcluded-xref-term {
1045
- background: #a9dde03b !important;
1046
- padding: 0.5em;
1047
- margin: 1em 0;
1048
- }
1049
-
1050
- .transclusion-heading {
1051
- font-size: 1.3em;
1052
- font-weight: bold;
1053
- margin: 1em 0 0.5em;
1054
- }
1055
-
1056
- dl img {
1057
- max-width: 15px;
1058
- vertical-align: middle;
1059
- }
1060
-
1061
-
1062
- dd table {
1063
- margin: 0;
1064
- font-size: 0.9em;
1065
- }
1066
-
1067
- dd table th {
33
+ #svg {
1068
34
  display: none;
1069
35
  }
1070
36
 
1071
- dd table td, dd table th {
1072
- padding: 0.2em;
1073
- }
1074
-
1075
-
1076
- /* End Transclusions */
1077
-
1078
-
1079
-
1080
- /* Loader styling */
1081
- .loader {
1082
- width: 20px;
1083
- height: 20px;
1084
- margin: auto;
1085
- display: block;
1086
- text-align: center;
1087
- border: 8px solid #ccc;
1088
- border-top-color: #3498db;
1089
- border-radius: 50%;
1090
- animation: spin 1s linear infinite;
1091
- }
1092
37
 
1093
- .loadertext {
1094
- text-align: center;
1095
- margin: 0.5em 0;
1096
- }
1097
-
1098
- /* Animation keyframes */
1099
- @keyframes spin {
1100
- 0% {
1101
- transform: rotate(0deg);
1102
- }
1103
-
1104
- 100% {
1105
- transform: rotate(360deg);
1106
- }
1107
- }
1108
-
1109
- /* End Loader styling */
1110
-
1111
- /* Search and Alphabet index */
1112
- #terminology-section-utility-container {
1113
- background: #ffffff84;
1114
- display: flex;
1115
- flex-wrap: wrap;
1116
- justify-content: center;
1117
- margin: 1em auto;
1118
- padding: 0;
1119
- width: 100%;
38
+ main * {
39
+ word-break: break-all;
40
+ /* Breaks at any character */
41
+ /* OR */
42
+ overflow-wrap: break-word;
43
+ /* Breaks only at allowed break points, more browser support */
1120
44
  }
1121
45
 
1122
- /* Small devices (landscape phones, 576px and up) */
1123
- @media (min-width: 576px) {
1124
- #terminology-section-utility-container {
1125
- position: sticky;
1126
- top: 3em;
1127
- }
1128
- }
1129
- /* End Search and Alphabet index */
46
+ dd td img {
47
+ max-width: 30px;
48
+ }