@hpcc-js/markdown-it-plugins 1.5.7 → 1.5.10
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.
- package/LICENSE +43 -43
- package/README.md +47 -47
- package/dist/assets/hpcc-systems-dark.svg +78 -78
- package/dist/assets/hpcc-systems.svg +68 -68
- package/dist/ecl-lang.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/dist/loader.node.js.map +1 -1
- package/package.json +4 -4
- package/src/__package__.ts +3 -3
- package/src/ecl-lang/ecl-configuration.json +163 -163
- package/src/ecl-lang/ecl.tmLanguage.json +347 -347
- package/src/ecl-lang/index.ts +12 -12
- package/src/fence.ts +59 -59
- package/src/index.ts +47 -47
- package/src/loader.ts +154 -154
- package/src/render.ts +63 -63
- package/src/template-literal.ts +113 -113
- package/src/util.ts +81 -81
- package/src/vitepress/RenderComponent.vue +32 -32
- package/src/vitepress/card.css +43 -43
- package/src/vitepress/global.css +284 -284
- package/src/vitepress/grid.css +82 -82
- package/src/vitepress/inspector.css +193 -193
- package/src/vitepress/layout.css +684 -684
- package/src/vitepress/note.css +80 -80
- package/src/vitepress/plot.css +6 -6
- package/src/vitepress/style.css +113 -113
- package/src/vitepress/styles.ts +8 -8
package/src/vitepress/global.css
CHANGED
|
@@ -1,285 +1,285 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--monospace: Menlo, Consolas, monospace;
|
|
3
|
-
--monospace-font: 14px/1.5 var(--monospace);
|
|
4
|
-
--serif: "Source Serif 4", "Iowan Old Style", "Apple Garamond", "Palatino Linotype", "Times New Roman", "Droid Serif",
|
|
5
|
-
Times, serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
6
|
-
--sans-serif: -apple-system, BlinkMacSystemFont, "avenir next", avenir, helvetica, "helvetica neue", ubuntu, roboto,
|
|
7
|
-
noto, "segoe ui", arial, sans-serif;
|
|
8
|
-
--theme-blue: #4269d0;
|
|
9
|
-
--theme-green: #3ca951;
|
|
10
|
-
--theme-red: #ff725c;
|
|
11
|
-
--theme-yellow: #efb118;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
:root {
|
|
15
|
-
--monospace: Menlo, Consolas, monospace;
|
|
16
|
-
--monospace-font: 14px/1.5 var(--monospace);
|
|
17
|
-
--serif: "Source Serif 4", "Iowan Old Style", "Apple Garamond", "Palatino Linotype", "Times New Roman", "Droid Serif",
|
|
18
|
-
Times, serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
19
|
-
--sans-serif: -apple-system, BlinkMacSystemFont, "avenir next", avenir, helvetica, "helvetica neue", ubuntu, roboto,
|
|
20
|
-
noto, "segoe ui", arial, sans-serif;
|
|
21
|
-
--theme-blue: #4269d0;
|
|
22
|
-
--theme-green: #3ca951;
|
|
23
|
-
--theme-red: #ff725c;
|
|
24
|
-
--theme-yellow: #efb118;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.VPDoc div.grid {
|
|
28
|
-
color: var(--theme-foreground-muted);
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.VPDoc div.grid h1,
|
|
32
|
-
.VPDoc div.grid h2,
|
|
33
|
-
.VPDoc div.grid h3,
|
|
34
|
-
.VPDoc div.grid h4,
|
|
35
|
-
.VPDoc div.grid h5,
|
|
36
|
-
.VPDoc div.grid h6 {
|
|
37
|
-
border: none;
|
|
38
|
-
padding-top: 0px;
|
|
39
|
-
color: var(--theme-foreground-muted);
|
|
40
|
-
font-weight: 700;
|
|
41
|
-
line-height: 1.15;
|
|
42
|
-
margin-top: 0;
|
|
43
|
-
margin-bottom: 0.25rem;
|
|
44
|
-
text-wrap: balance;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.VPDoc div.grid h2+p,
|
|
48
|
-
.VPDoc div.grid h3+p,
|
|
49
|
-
.VPDoc div.grid h4+p,
|
|
50
|
-
.VPDoc div.grid h2+table,
|
|
51
|
-
.VPDoc div.grid h3+table,
|
|
52
|
-
.VPDoc div.grid h4+table {
|
|
53
|
-
margin-top: 0;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.VPDoc div.grid h1+h2 {
|
|
57
|
-
color: var(--theme-foreground);
|
|
58
|
-
font-size: 20px;
|
|
59
|
-
font-style: italic;
|
|
60
|
-
font-weight: normal;
|
|
61
|
-
margin-bottom: 1rem;
|
|
62
|
-
/* see h2 ~ p */
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.VPDoc div.grid a[href] {
|
|
66
|
-
text-decoration: none;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.VPDoc div.grid a[href]:hover,
|
|
70
|
-
.VPDoc div.grid a[href]:focus {
|
|
71
|
-
text-decoration: underline;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.VPDoc div.grid h1 code,
|
|
75
|
-
.VPDoc div.grid h2 code,
|
|
76
|
-
.VPDoc div.grid h3 code,
|
|
77
|
-
.VPDoc div.grid h4 code,
|
|
78
|
-
.VPDoc div.grid h5 code,
|
|
79
|
-
.VPDoc div.grid h6 code {
|
|
80
|
-
font-size: 90%;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.VPDoc div.grid pre {
|
|
84
|
-
line-height: 1.5;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.VPDoc div.grid pre,
|
|
88
|
-
.VPDoc div.grid code,
|
|
89
|
-
.VPDoc div.grid tt {
|
|
90
|
-
font-family: var(--monospace);
|
|
91
|
-
font-size: 14px;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.VPDoc div.grid img {
|
|
95
|
-
max-width: 100%;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.VPDoc div.grid p,
|
|
99
|
-
.VPDoc div.grid table,
|
|
100
|
-
.VPDoc div.grid figure,
|
|
101
|
-
.VPDoc div.grid figcaption,
|
|
102
|
-
.VPDoc div.grid h1,
|
|
103
|
-
.VPDoc div.grid h2,
|
|
104
|
-
.VPDoc div.grid h3,
|
|
105
|
-
.VPDoc div.grid h4,
|
|
106
|
-
.VPDoc div.grid h5,
|
|
107
|
-
.VPDoc div.grid h6,
|
|
108
|
-
.VPDoc div.grid .katex-display {
|
|
109
|
-
max-width: 640px;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.VPDoc div.grid blockquote,
|
|
113
|
-
.VPDoc div.grid ol,
|
|
114
|
-
.VPDoc div.grid ul {
|
|
115
|
-
max-width: 600px;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.VPDoc div.grid blockquote {
|
|
119
|
-
margin: 1rem 1.5rem;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.VPDoc div.grid ul ol {
|
|
123
|
-
padding-left: 28px;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.VPDoc div.grid hr {
|
|
127
|
-
height: 1px;
|
|
128
|
-
margin: 1rem 0;
|
|
129
|
-
padding: 1rem 0;
|
|
130
|
-
border: none;
|
|
131
|
-
background: no-repeat center/100% 1px linear-gradient(to right, var(--theme-foreground-faintest), var(--theme-foreground-faintest));
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.VPDoc div.grid pre {
|
|
135
|
-
background-color: var(--theme-background-alt);
|
|
136
|
-
border-radius: 4px;
|
|
137
|
-
margin: 1rem -1rem;
|
|
138
|
-
max-width: 960px;
|
|
139
|
-
min-height: 1.5em;
|
|
140
|
-
padding: 0.5rem 1rem;
|
|
141
|
-
overflow-x: auto;
|
|
142
|
-
box-sizing: border-box;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.VPDoc div.grid input:not([type]),
|
|
146
|
-
.VPDoc div.grid input[type="email"],
|
|
147
|
-
.VPDoc div.grid input[type="number"],
|
|
148
|
-
.VPDoc div.grid input[type="password"],
|
|
149
|
-
.VPDoc div.grid input[type="range"],
|
|
150
|
-
.VPDoc div.grid input[type="search"],
|
|
151
|
-
.VPDoc div.grid input[type="tel"],
|
|
152
|
-
.VPDoc div.grid input[type="text"],
|
|
153
|
-
.VPDoc div.grid input[type="url"] {
|
|
154
|
-
width: 240px;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.VPDoc div.grid input,
|
|
158
|
-
.VPDoc div.grid canvas,
|
|
159
|
-
.VPDoc div.grid button {
|
|
160
|
-
vertical-align: middle;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.VPDoc div.grid button,
|
|
164
|
-
.VPDoc div.grid input,
|
|
165
|
-
.VPDoc div.grid textarea {
|
|
166
|
-
accent-color: var(--theme-blue);
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.VPDoc div.grid table {
|
|
170
|
-
width: 100%;
|
|
171
|
-
border-collapse: collapse;
|
|
172
|
-
font: 13px/1.2 var(--sans-serif);
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.VPDoc div.grid table pre,
|
|
176
|
-
.VPDoc div.grid table code,
|
|
177
|
-
.VPDoc div.grid table tt {
|
|
178
|
-
font-size: inherit;
|
|
179
|
-
line-height: inherit;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.VPDoc div.grid th>pre:only-child,
|
|
183
|
-
.VPDoc div.grid td>pre:only-child {
|
|
184
|
-
margin: 0;
|
|
185
|
-
padding: 0;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
.VPDoc div.grid th {
|
|
189
|
-
color: var(--theme-foreground);
|
|
190
|
-
text-align: left;
|
|
191
|
-
vertical-align: bottom;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.VPDoc div.grid td {
|
|
195
|
-
color: var(--theme-foreground-alt);
|
|
196
|
-
vertical-align: top;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.VPDoc div.grid th,
|
|
200
|
-
.VPDoc div.grid td {
|
|
201
|
-
padding: 3px 6.5px 3px 0;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.VPDoc div.grid th:last-child,
|
|
205
|
-
.VPDoc div.grid td:last-child {
|
|
206
|
-
padding-right: 0;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
.VPDoc div.grid tr:not(:last-child) {
|
|
210
|
-
border-bottom: solid 1px var(--theme-foreground-faintest);
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.VPDoc div.grid thead tr {
|
|
214
|
-
border-bottom: solid 1px var(--theme-foreground-fainter);
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.VPDoc div.grid figure,
|
|
218
|
-
.VPDoc div.grid table {
|
|
219
|
-
margin: 1rem 0;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
.VPDoc div.grid figure img {
|
|
223
|
-
max-width: 100%;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.VPDoc div.grid figure>h2,
|
|
227
|
-
.VPDoc div.grid figure>h3 {
|
|
228
|
-
font-family: var(--sans-serif);
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.VPDoc div.grid figure>h2 {
|
|
232
|
-
font-size: 20px;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.VPDoc div.grid figure>h3 {
|
|
236
|
-
font-size: 16px;
|
|
237
|
-
font-weight: normal;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.VPDoc div.grid figcaption {
|
|
241
|
-
font: small var(--sans-serif);
|
|
242
|
-
color: var(--theme-foreground-muted);
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
.VPDoc div.grid a[href].observablehq-header-anchor {
|
|
246
|
-
color: inherit;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
:root {
|
|
250
|
-
--font-big: 700 32px/1 var(--sans-serif);
|
|
251
|
-
--font-small: 14px var(--sans-serif);
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.VPDoc div.grid .big {
|
|
255
|
-
font: var(--font-big);
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
.VPDoc div.grid .small {
|
|
259
|
-
font: var(--font-small);
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.VPDoc div.grid .red {
|
|
263
|
-
color: var(--theme-red);
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.VPDoc div.grid .yellow {
|
|
267
|
-
color: var(--theme-yellow);
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
.VPDoc div.grid .green {
|
|
271
|
-
color: var(--theme-green);
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
.VPDoc div.grid .blue {
|
|
275
|
-
color: var(--theme-blue);
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
.VPDoc div.grid .muted {
|
|
279
|
-
color: var(--theme-foreground-faint);
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
.VPDoc div.grid .observablehq--draft>h1:first-of-type::after {
|
|
283
|
-
content: " [DRAFT]";
|
|
284
|
-
color: var(--theme-foreground-faint);
|
|
1
|
+
:root {
|
|
2
|
+
--monospace: Menlo, Consolas, monospace;
|
|
3
|
+
--monospace-font: 14px/1.5 var(--monospace);
|
|
4
|
+
--serif: "Source Serif 4", "Iowan Old Style", "Apple Garamond", "Palatino Linotype", "Times New Roman", "Droid Serif",
|
|
5
|
+
Times, serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
6
|
+
--sans-serif: -apple-system, BlinkMacSystemFont, "avenir next", avenir, helvetica, "helvetica neue", ubuntu, roboto,
|
|
7
|
+
noto, "segoe ui", arial, sans-serif;
|
|
8
|
+
--theme-blue: #4269d0;
|
|
9
|
+
--theme-green: #3ca951;
|
|
10
|
+
--theme-red: #ff725c;
|
|
11
|
+
--theme-yellow: #efb118;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
:root {
|
|
15
|
+
--monospace: Menlo, Consolas, monospace;
|
|
16
|
+
--monospace-font: 14px/1.5 var(--monospace);
|
|
17
|
+
--serif: "Source Serif 4", "Iowan Old Style", "Apple Garamond", "Palatino Linotype", "Times New Roman", "Droid Serif",
|
|
18
|
+
Times, serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
19
|
+
--sans-serif: -apple-system, BlinkMacSystemFont, "avenir next", avenir, helvetica, "helvetica neue", ubuntu, roboto,
|
|
20
|
+
noto, "segoe ui", arial, sans-serif;
|
|
21
|
+
--theme-blue: #4269d0;
|
|
22
|
+
--theme-green: #3ca951;
|
|
23
|
+
--theme-red: #ff725c;
|
|
24
|
+
--theme-yellow: #efb118;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.VPDoc div.grid {
|
|
28
|
+
color: var(--theme-foreground-muted);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.VPDoc div.grid h1,
|
|
32
|
+
.VPDoc div.grid h2,
|
|
33
|
+
.VPDoc div.grid h3,
|
|
34
|
+
.VPDoc div.grid h4,
|
|
35
|
+
.VPDoc div.grid h5,
|
|
36
|
+
.VPDoc div.grid h6 {
|
|
37
|
+
border: none;
|
|
38
|
+
padding-top: 0px;
|
|
39
|
+
color: var(--theme-foreground-muted);
|
|
40
|
+
font-weight: 700;
|
|
41
|
+
line-height: 1.15;
|
|
42
|
+
margin-top: 0;
|
|
43
|
+
margin-bottom: 0.25rem;
|
|
44
|
+
text-wrap: balance;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.VPDoc div.grid h2+p,
|
|
48
|
+
.VPDoc div.grid h3+p,
|
|
49
|
+
.VPDoc div.grid h4+p,
|
|
50
|
+
.VPDoc div.grid h2+table,
|
|
51
|
+
.VPDoc div.grid h3+table,
|
|
52
|
+
.VPDoc div.grid h4+table {
|
|
53
|
+
margin-top: 0;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.VPDoc div.grid h1+h2 {
|
|
57
|
+
color: var(--theme-foreground);
|
|
58
|
+
font-size: 20px;
|
|
59
|
+
font-style: italic;
|
|
60
|
+
font-weight: normal;
|
|
61
|
+
margin-bottom: 1rem;
|
|
62
|
+
/* see h2 ~ p */
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.VPDoc div.grid a[href] {
|
|
66
|
+
text-decoration: none;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.VPDoc div.grid a[href]:hover,
|
|
70
|
+
.VPDoc div.grid a[href]:focus {
|
|
71
|
+
text-decoration: underline;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.VPDoc div.grid h1 code,
|
|
75
|
+
.VPDoc div.grid h2 code,
|
|
76
|
+
.VPDoc div.grid h3 code,
|
|
77
|
+
.VPDoc div.grid h4 code,
|
|
78
|
+
.VPDoc div.grid h5 code,
|
|
79
|
+
.VPDoc div.grid h6 code {
|
|
80
|
+
font-size: 90%;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.VPDoc div.grid pre {
|
|
84
|
+
line-height: 1.5;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.VPDoc div.grid pre,
|
|
88
|
+
.VPDoc div.grid code,
|
|
89
|
+
.VPDoc div.grid tt {
|
|
90
|
+
font-family: var(--monospace);
|
|
91
|
+
font-size: 14px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.VPDoc div.grid img {
|
|
95
|
+
max-width: 100%;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.VPDoc div.grid p,
|
|
99
|
+
.VPDoc div.grid table,
|
|
100
|
+
.VPDoc div.grid figure,
|
|
101
|
+
.VPDoc div.grid figcaption,
|
|
102
|
+
.VPDoc div.grid h1,
|
|
103
|
+
.VPDoc div.grid h2,
|
|
104
|
+
.VPDoc div.grid h3,
|
|
105
|
+
.VPDoc div.grid h4,
|
|
106
|
+
.VPDoc div.grid h5,
|
|
107
|
+
.VPDoc div.grid h6,
|
|
108
|
+
.VPDoc div.grid .katex-display {
|
|
109
|
+
max-width: 640px;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.VPDoc div.grid blockquote,
|
|
113
|
+
.VPDoc div.grid ol,
|
|
114
|
+
.VPDoc div.grid ul {
|
|
115
|
+
max-width: 600px;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.VPDoc div.grid blockquote {
|
|
119
|
+
margin: 1rem 1.5rem;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.VPDoc div.grid ul ol {
|
|
123
|
+
padding-left: 28px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.VPDoc div.grid hr {
|
|
127
|
+
height: 1px;
|
|
128
|
+
margin: 1rem 0;
|
|
129
|
+
padding: 1rem 0;
|
|
130
|
+
border: none;
|
|
131
|
+
background: no-repeat center/100% 1px linear-gradient(to right, var(--theme-foreground-faintest), var(--theme-foreground-faintest));
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.VPDoc div.grid pre {
|
|
135
|
+
background-color: var(--theme-background-alt);
|
|
136
|
+
border-radius: 4px;
|
|
137
|
+
margin: 1rem -1rem;
|
|
138
|
+
max-width: 960px;
|
|
139
|
+
min-height: 1.5em;
|
|
140
|
+
padding: 0.5rem 1rem;
|
|
141
|
+
overflow-x: auto;
|
|
142
|
+
box-sizing: border-box;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.VPDoc div.grid input:not([type]),
|
|
146
|
+
.VPDoc div.grid input[type="email"],
|
|
147
|
+
.VPDoc div.grid input[type="number"],
|
|
148
|
+
.VPDoc div.grid input[type="password"],
|
|
149
|
+
.VPDoc div.grid input[type="range"],
|
|
150
|
+
.VPDoc div.grid input[type="search"],
|
|
151
|
+
.VPDoc div.grid input[type="tel"],
|
|
152
|
+
.VPDoc div.grid input[type="text"],
|
|
153
|
+
.VPDoc div.grid input[type="url"] {
|
|
154
|
+
width: 240px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.VPDoc div.grid input,
|
|
158
|
+
.VPDoc div.grid canvas,
|
|
159
|
+
.VPDoc div.grid button {
|
|
160
|
+
vertical-align: middle;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.VPDoc div.grid button,
|
|
164
|
+
.VPDoc div.grid input,
|
|
165
|
+
.VPDoc div.grid textarea {
|
|
166
|
+
accent-color: var(--theme-blue);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.VPDoc div.grid table {
|
|
170
|
+
width: 100%;
|
|
171
|
+
border-collapse: collapse;
|
|
172
|
+
font: 13px/1.2 var(--sans-serif);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.VPDoc div.grid table pre,
|
|
176
|
+
.VPDoc div.grid table code,
|
|
177
|
+
.VPDoc div.grid table tt {
|
|
178
|
+
font-size: inherit;
|
|
179
|
+
line-height: inherit;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.VPDoc div.grid th>pre:only-child,
|
|
183
|
+
.VPDoc div.grid td>pre:only-child {
|
|
184
|
+
margin: 0;
|
|
185
|
+
padding: 0;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.VPDoc div.grid th {
|
|
189
|
+
color: var(--theme-foreground);
|
|
190
|
+
text-align: left;
|
|
191
|
+
vertical-align: bottom;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.VPDoc div.grid td {
|
|
195
|
+
color: var(--theme-foreground-alt);
|
|
196
|
+
vertical-align: top;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.VPDoc div.grid th,
|
|
200
|
+
.VPDoc div.grid td {
|
|
201
|
+
padding: 3px 6.5px 3px 0;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.VPDoc div.grid th:last-child,
|
|
205
|
+
.VPDoc div.grid td:last-child {
|
|
206
|
+
padding-right: 0;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.VPDoc div.grid tr:not(:last-child) {
|
|
210
|
+
border-bottom: solid 1px var(--theme-foreground-faintest);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.VPDoc div.grid thead tr {
|
|
214
|
+
border-bottom: solid 1px var(--theme-foreground-fainter);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.VPDoc div.grid figure,
|
|
218
|
+
.VPDoc div.grid table {
|
|
219
|
+
margin: 1rem 0;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.VPDoc div.grid figure img {
|
|
223
|
+
max-width: 100%;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.VPDoc div.grid figure>h2,
|
|
227
|
+
.VPDoc div.grid figure>h3 {
|
|
228
|
+
font-family: var(--sans-serif);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.VPDoc div.grid figure>h2 {
|
|
232
|
+
font-size: 20px;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.VPDoc div.grid figure>h3 {
|
|
236
|
+
font-size: 16px;
|
|
237
|
+
font-weight: normal;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.VPDoc div.grid figcaption {
|
|
241
|
+
font: small var(--sans-serif);
|
|
242
|
+
color: var(--theme-foreground-muted);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.VPDoc div.grid a[href].observablehq-header-anchor {
|
|
246
|
+
color: inherit;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
:root {
|
|
250
|
+
--font-big: 700 32px/1 var(--sans-serif);
|
|
251
|
+
--font-small: 14px var(--sans-serif);
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.VPDoc div.grid .big {
|
|
255
|
+
font: var(--font-big);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.VPDoc div.grid .small {
|
|
259
|
+
font: var(--font-small);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.VPDoc div.grid .red {
|
|
263
|
+
color: var(--theme-red);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.VPDoc div.grid .yellow {
|
|
267
|
+
color: var(--theme-yellow);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.VPDoc div.grid .green {
|
|
271
|
+
color: var(--theme-green);
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.VPDoc div.grid .blue {
|
|
275
|
+
color: var(--theme-blue);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.VPDoc div.grid .muted {
|
|
279
|
+
color: var(--theme-foreground-faint);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.VPDoc div.grid .observablehq--draft>h1:first-of-type::after {
|
|
283
|
+
content: " [DRAFT]";
|
|
284
|
+
color: var(--theme-foreground-faint);
|
|
285
285
|
}
|