-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinput.css
More file actions
187 lines (158 loc) · 3.44 KB
/
input.css
File metadata and controls
187 lines (158 loc) · 3.44 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
@import "tailwindcss";
@plugin "@tailwindcss/typography";
@theme {
--color-brand-50: #ecfdf3;
--color-brand-100: #d1fadf;
--color-brand-200: #a7f3c7;
--color-brand-300: #6ee7b7;
--color-brand-400: #34d399;
--color-brand-500: #10b981;
--color-brand-600: #059669;
--color-brand-700: #047857;
--color-brand-800: #065f46;
--color-brand-900: #064e3b;
--font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
--font-display: "Manrope", ui-sans-serif, system-ui, sans-serif;
--shadow-glow: 0 20px 60px -25px rgba(16, 185, 129, 0.55);
}
#main h1,
#main h2,
#main h3,
#main h4 {
scroll-margin-top: 6rem;
}
#toc,
.toc,
#toc-container {
background: transparent;
border: none;
border-radius: 0;
padding: 0;
box-shadow: none;
}
#toc h2,
.toc h2,
#toc .toctitle,
.toc .toctitle {
border: none;
display: block;
font-size: 0.95rem;
font-weight: 800;
margin-bottom: 8px;
padding: 0;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #065f46;
}
#toc ul,
.toc ul {
list-style: none;
margin: 0;
padding: 0;
}
#toc ul ul,
.toc ul ul {
margin: 6px 0 0 14px;
}
#toc li {
margin: 4px 0;
}
#toc a {
color: #047857;
font-weight: 700;
text-decoration: none;
}
#toc a:hover {
color: #065f46;
}
table.folder-legend tr td:first-child {
text-align: center;
}
table.folder-legend tr td:nth-child(2) {
vertical-align: middle;
}
table.folder-legend tr td {
padding: 6px 10px;
}
img.folder-legend {
max-width: 16px;
max-height: 16px;
}
table.file-legend tr td {
padding: 6px 10px;
}
td.file-legend-same {
background-color: #0f172a;
color: #e2e8f0;
}
td.file-legend-different {
background-color: #d1fadf;
}
td.file-legend-missing-left {
background-color: #e0f2fe;
}
td.file-legend-missing-right {
background-color: #fef9c3;
}
td.file-legend-merged {
background-color: #fef3c7;
}
#main a[href^="https://"]::before,
#main a[href^="http://"]::before,
.link-https::before,
.link-external::before {
font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free";
padding-right: 0.35em;
font-weight: 900;
}
@layer components {
.finder-callout {
display: flex;
flex-direction: column;
gap: calc(var(--spacing) * 3);
padding: calc(var(--spacing) * 6) calc(var(--spacing) * 7);
border: 1px solid var(--color-brand-200);
background: linear-gradient(135deg, var(--color-brand-50), var(--color-white));
border-radius: var(--radius-2xl);
color: var(--color-slate-900);
}
.finder-callout__header {
display: flex;
align-items: center;
gap: calc(var(--spacing) * 2);
}
.finder-callout__icon {
display: grid;
place-items: center;
width: 2.25rem;
height: 2.25rem;
border-radius: 9999px;
background: var(--color-brand-600);
color: var(--color-white);
box-shadow: 0 12px 28px rgba(4, 120, 87, 0.25);
}
.finder-callout__title {
display: flex;
align-items: center;
min-height: 2.25rem;
margin: 0 !important;
font-size: var(--text-xl);
line-height: var(--text-xl--line-height);
font-weight: var(--font-weight-bold);
color: var(--color-brand-800);
}
.finder-callout p {
margin: 0 !important;
color: var(--color-slate-700);
}
.finder-callout a {
font-weight: var(--font-weight-semibold);
color: var(--color-brand-700);
text-decoration: underline;
text-decoration-thickness: 2px;
text-underline-offset: 0.2em;
}
.finder-callout a:hover {
color: var(--color-brand-800);
}
}