-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathextra.css
More file actions
96 lines (80 loc) · 2.14 KB
/
Copy pathextra.css
File metadata and controls
96 lines (80 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
.md-typeset .grid.cards.maintainers li {
display: grid;
grid-template-columns: auto 1fr;
column-gap: 1rem;
row-gap: 0.35rem;
align-items: start;
text-align: left;
}
.md-typeset .grid.cards.maintainers li > p:first-child {
grid-column: 1 / -1;
grid-row: 1;
margin: 0;
}
.md-typeset .grid.cards.maintainers li > hr {
grid-column: 1 / -1;
grid-row: 2;
margin: 0;
width: 100%;
}
.md-typeset .grid.cards.maintainers li > hr + p {
grid-column: 1;
grid-row: 3;
margin: 0;
justify-self: start;
}
.md-typeset .grid.cards.maintainers li > hr + p img {
width: 4rem;
height: 4rem;
border-radius: 50%;
display: block;
}
.md-typeset .grid.cards.maintainers li > hr + p ~ p {
grid-column: 2;
margin: 0;
text-align: left;
justify-self: start;
}
.md-typeset .grid.cards.maintainers li > hr + p ~ p:nth-child(4) {
grid-row: 3;
}
.md-typeset .grid.cards.maintainers li > hr + p ~ p:nth-child(5) {
grid-row: 4;
}
.md-typeset .grid.cards.maintainers li > hr + p ~ p:nth-child(6) {
grid-row: 5;
}
.md-typeset .admonition.example > .admonition-title {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
}
.md-typeset .admonition.example > .admonition-title .example-source-link {
margin-left: auto;
font-weight: normal;
}
.md-typeset #adr-index {
display: flow-root;
}
/* termynal.css leaves `.termy` without margins, so a terminal window sits flush
against the next one; mkdocs-typer2 only spaces its own stacked blocks. */
.md-typeset .termy {
margin-bottom: 1.25em;
}
/* ADR comparison column tints — match mkdocs-material admonition hues at 10%. */
:root,
[data-md-color-scheme="slate"] {
--adr-col-included-bg: color-mix(in srgb, #00c853 10%, transparent);
--adr-col-undecided-bg: color-mix(in srgb, #ff9100 10%, transparent);
--adr-col-rejected-bg: color-mix(in srgb, #ff1744 10%, transparent);
}
.md-typeset :is(th, td).adr-col-included {
background-color: var(--adr-col-included-bg);
}
.md-typeset :is(th, td).adr-col-undecided {
background-color: var(--adr-col-undecided-bg);
}
.md-typeset :is(th, td).adr-col-rejected {
background-color: var(--adr-col-rejected-bg);
}