ardo 1.2.2 → 2.0.0
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/README.md +29 -47
- package/dist/{CopyButton-BkACwxQM.d.ts → Features-C_06EvGb.d.ts} +212 -10
- package/dist/{chunk-SZVJKB3V.js → chunk-G5L4ZUTS.js} +40 -40
- package/dist/chunk-G5L4ZUTS.js.map +1 -0
- package/dist/{chunk-VMA2OXSY.js → chunk-LUOUBO3L.js} +587 -669
- package/dist/chunk-LUOUBO3L.js.map +1 -0
- package/dist/{chunk-3U63LMDZ.js → chunk-N5CEHG2F.js} +3 -3
- package/dist/{chunk-3U63LMDZ.js.map → chunk-N5CEHG2F.js.map} +1 -1
- package/dist/chunk-OTUACKCQ.js +896 -0
- package/dist/chunk-OTUACKCQ.js.map +1 -0
- package/dist/chunk-UWAVET45.js +311 -0
- package/dist/chunk-UWAVET45.js.map +1 -0
- package/dist/chunk-ZXPAEM3M.js +854 -0
- package/dist/chunk-ZXPAEM3M.js.map +1 -0
- package/dist/config/index.d.ts +2 -2
- package/dist/config/index.js +1 -1
- package/dist/icons/index.d.ts +1 -0
- package/dist/icons/index.js +3 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +34 -26
- package/dist/mdx/provider.d.ts +9 -0
- package/dist/mdx/provider.js +114 -0
- package/dist/mdx/provider.js.map +1 -0
- package/dist/runtime/index.d.ts +1 -1
- package/dist/typedoc/index.d.ts +25 -0
- package/dist/typedoc/index.js +2 -2
- package/dist/{types-C22M-Kor.d.ts → types-DchPWkJl.d.ts} +1 -1
- package/dist/ui/index.d.ts +116 -0
- package/dist/{theme → ui}/index.js +26 -12
- package/dist/ui/styles.css +2198 -0
- package/dist/vite/index.d.ts +13 -23
- package/dist/vite/index.js +5 -5
- package/package.json +23 -11
- package/dist/chunk-2JBVPO6S.js +0 -1144
- package/dist/chunk-2JBVPO6S.js.map +0 -1
- package/dist/chunk-SZVJKB3V.js.map +0 -1
- package/dist/chunk-VMA2OXSY.js.map +0 -1
- package/dist/chunk-YN6PP526.js +0 -441
- package/dist/chunk-YN6PP526.js.map +0 -1
- package/dist/theme/index.d.ts +0 -70
- package/dist/theme/styles.css +0 -1454
- /package/dist/{theme → ui}/index.js.map +0 -0
|
@@ -0,0 +1,2198 @@
|
|
|
1
|
+
/* Ardo Theme Styles - Clean & Refined */
|
|
2
|
+
|
|
3
|
+
/* CSS Variables */
|
|
4
|
+
:root {
|
|
5
|
+
/* ========================================
|
|
6
|
+
Base Colors (OKLCH for better color math)
|
|
7
|
+
======================================== */
|
|
8
|
+
|
|
9
|
+
/* Brand - Teal/Green from logo - used sparingly for accents */
|
|
10
|
+
--ardo-brand-h: 170;
|
|
11
|
+
--ardo-brand-c: 0.12;
|
|
12
|
+
--ardo-brand-l: 0.45;
|
|
13
|
+
|
|
14
|
+
/* Semantic Colors (hue values) */
|
|
15
|
+
--ardo-hue-success: 155;
|
|
16
|
+
--ardo-hue-warning: 45;
|
|
17
|
+
--ardo-hue-danger: 25;
|
|
18
|
+
--ardo-hue-info: 220;
|
|
19
|
+
--ardo-hue-note: 270;
|
|
20
|
+
|
|
21
|
+
/* ========================================
|
|
22
|
+
Derived Brand Colors
|
|
23
|
+
======================================== */
|
|
24
|
+
--ardo-c-brand: oklch(var(--ardo-brand-l) var(--ardo-brand-c) var(--ardo-brand-h));
|
|
25
|
+
--ardo-c-brand-light: oklch(
|
|
26
|
+
calc(var(--ardo-brand-l) + 0.12) var(--ardo-brand-c) var(--ardo-brand-h)
|
|
27
|
+
);
|
|
28
|
+
--ardo-c-brand-dark: oklch(
|
|
29
|
+
calc(var(--ardo-brand-l) - 0.08) calc(var(--ardo-brand-c) + 0.02) var(--ardo-brand-h)
|
|
30
|
+
);
|
|
31
|
+
--ardo-c-brand-subtle: oklch(0.96 0.02 var(--ardo-brand-h));
|
|
32
|
+
--ardo-c-brand-gradient: linear-gradient(
|
|
33
|
+
135deg,
|
|
34
|
+
oklch(var(--ardo-brand-l) var(--ardo-brand-c) var(--ardo-brand-h)) 0%,
|
|
35
|
+
oklch(
|
|
36
|
+
calc(var(--ardo-brand-l) + 0.08) calc(var(--ardo-brand-c) - 0.02)
|
|
37
|
+
calc(var(--ardo-brand-h) + 15)
|
|
38
|
+
)
|
|
39
|
+
100%
|
|
40
|
+
);
|
|
41
|
+
|
|
42
|
+
/* ========================================
|
|
43
|
+
Neutral Background Colors (no green tint)
|
|
44
|
+
======================================== */
|
|
45
|
+
--ardo-c-bg: #ffffff;
|
|
46
|
+
--ardo-c-bg-soft: #f8f9fa;
|
|
47
|
+
--ardo-c-bg-mute: #f1f3f5;
|
|
48
|
+
--ardo-c-bg-alt: #e9ecef;
|
|
49
|
+
|
|
50
|
+
/* Sidebar - subtle warm gray */
|
|
51
|
+
--ardo-sidebar-bg: #f8f9fa;
|
|
52
|
+
--ardo-sidebar-border: #e9ecef;
|
|
53
|
+
|
|
54
|
+
/* Code block styling - warm cream tone */
|
|
55
|
+
--ardo-code-bg: #fdfcfb;
|
|
56
|
+
--ardo-code-border: #f0ebe4;
|
|
57
|
+
--ardo-code-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
|
|
58
|
+
|
|
59
|
+
/* ========================================
|
|
60
|
+
Text Colors (neutral)
|
|
61
|
+
======================================== */
|
|
62
|
+
--ardo-c-text: #1a1a2e;
|
|
63
|
+
--ardo-c-text-light: #495057;
|
|
64
|
+
--ardo-c-text-lighter: #868e96;
|
|
65
|
+
|
|
66
|
+
/* Border Colors */
|
|
67
|
+
--ardo-c-border: #dee2e6;
|
|
68
|
+
--ardo-c-border-light: #e9ecef;
|
|
69
|
+
--ardo-c-divider: var(--ardo-c-border);
|
|
70
|
+
|
|
71
|
+
/* ========================================
|
|
72
|
+
Container Colors (using hue variables)
|
|
73
|
+
======================================== */
|
|
74
|
+
--ardo-c-tip: oklch(0.5 0.15 var(--ardo-hue-success));
|
|
75
|
+
--ardo-c-tip-bg: oklch(0.97 0.025 var(--ardo-hue-success));
|
|
76
|
+
--ardo-c-tip-border: oklch(0.85 0.08 var(--ardo-hue-success));
|
|
77
|
+
|
|
78
|
+
--ardo-c-warning: oklch(0.55 0.16 var(--ardo-hue-warning));
|
|
79
|
+
--ardo-c-warning-bg: oklch(0.98 0.03 var(--ardo-hue-warning));
|
|
80
|
+
--ardo-c-warning-border: oklch(0.88 0.1 var(--ardo-hue-warning));
|
|
81
|
+
|
|
82
|
+
--ardo-c-danger: oklch(0.5 0.18 var(--ardo-hue-danger));
|
|
83
|
+
--ardo-c-danger-bg: oklch(0.97 0.02 var(--ardo-hue-danger));
|
|
84
|
+
--ardo-c-danger-border: oklch(0.85 0.1 var(--ardo-hue-danger));
|
|
85
|
+
|
|
86
|
+
--ardo-c-info: oklch(0.5 0.14 var(--ardo-hue-info));
|
|
87
|
+
--ardo-c-info-bg: oklch(0.97 0.02 var(--ardo-hue-info));
|
|
88
|
+
--ardo-c-info-border: oklch(0.85 0.08 var(--ardo-hue-info));
|
|
89
|
+
|
|
90
|
+
--ardo-c-note: oklch(0.5 0.14 var(--ardo-hue-note));
|
|
91
|
+
--ardo-c-note-bg: oklch(0.97 0.02 var(--ardo-hue-note));
|
|
92
|
+
--ardo-c-note-border: oklch(0.88 0.08 var(--ardo-hue-note));
|
|
93
|
+
|
|
94
|
+
/* ========================================
|
|
95
|
+
Layout
|
|
96
|
+
======================================== */
|
|
97
|
+
--ardo-sidebar-width: 280px;
|
|
98
|
+
--ardo-toc-width: 240px;
|
|
99
|
+
--ardo-content-max-width: 1100px;
|
|
100
|
+
--ardo-header-height: 72px;
|
|
101
|
+
|
|
102
|
+
/* Transitions */
|
|
103
|
+
--ardo-transition-fast: 0.15s ease;
|
|
104
|
+
--ardo-transition: 0.2s ease;
|
|
105
|
+
--ardo-transition-slow: 0.3s ease;
|
|
106
|
+
|
|
107
|
+
/* ========================================
|
|
108
|
+
Typography (System Font Stacks)
|
|
109
|
+
======================================== */
|
|
110
|
+
--ardo-font-family:
|
|
111
|
+
system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
|
|
112
|
+
sans-serif;
|
|
113
|
+
--ardo-font-mono:
|
|
114
|
+
ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
|
|
115
|
+
|
|
116
|
+
/* Radius */
|
|
117
|
+
--ardo-radius: 8px;
|
|
118
|
+
--ardo-radius-sm: 4px;
|
|
119
|
+
--ardo-radius-lg: 12px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/* Dark mode */
|
|
123
|
+
.dark {
|
|
124
|
+
--ardo-brand-l: 0.65;
|
|
125
|
+
--ardo-brand-c: 0.14;
|
|
126
|
+
|
|
127
|
+
--ardo-c-brand-subtle: oklch(0.2 0.04 var(--ardo-brand-h));
|
|
128
|
+
|
|
129
|
+
/* Dark backgrounds - cool slate */
|
|
130
|
+
--ardo-c-bg: #0f172a;
|
|
131
|
+
--ardo-c-bg-soft: #1e293b;
|
|
132
|
+
--ardo-c-bg-mute: #334155;
|
|
133
|
+
--ardo-c-bg-alt: #475569;
|
|
134
|
+
|
|
135
|
+
--ardo-sidebar-bg: #1e293b;
|
|
136
|
+
--ardo-sidebar-border: #334155;
|
|
137
|
+
|
|
138
|
+
--ardo-code-bg: #1c1917;
|
|
139
|
+
--ardo-code-border: #292524;
|
|
140
|
+
--ardo-code-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
|
|
141
|
+
|
|
142
|
+
/* Light text on dark */
|
|
143
|
+
--ardo-c-text: #f1f5f9;
|
|
144
|
+
--ardo-c-text-light: #94a3b8;
|
|
145
|
+
--ardo-c-text-lighter: #64748b;
|
|
146
|
+
|
|
147
|
+
--ardo-c-border: #334155;
|
|
148
|
+
--ardo-c-border-light: #475569;
|
|
149
|
+
--ardo-c-divider: var(--ardo-c-border);
|
|
150
|
+
|
|
151
|
+
/* Dark container backgrounds */
|
|
152
|
+
--ardo-c-tip-bg: oklch(0.2 0.04 var(--ardo-hue-success));
|
|
153
|
+
--ardo-c-tip-border: oklch(0.35 0.1 var(--ardo-hue-success));
|
|
154
|
+
|
|
155
|
+
--ardo-c-warning-bg: oklch(0.22 0.05 var(--ardo-hue-warning));
|
|
156
|
+
--ardo-c-warning-border: oklch(0.4 0.12 var(--ardo-hue-warning));
|
|
157
|
+
|
|
158
|
+
--ardo-c-danger-bg: oklch(0.2 0.04 var(--ardo-hue-danger));
|
|
159
|
+
--ardo-c-danger-border: oklch(0.35 0.1 var(--ardo-hue-danger));
|
|
160
|
+
|
|
161
|
+
--ardo-c-info-bg: oklch(0.2 0.04 var(--ardo-hue-info));
|
|
162
|
+
--ardo-c-info-border: oklch(0.35 0.08 var(--ardo-hue-info));
|
|
163
|
+
|
|
164
|
+
--ardo-c-note-bg: oklch(0.2 0.04 var(--ardo-hue-note));
|
|
165
|
+
--ardo-c-note-border: oklch(0.35 0.08 var(--ardo-hue-note));
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
/* Base */
|
|
169
|
+
* {
|
|
170
|
+
box-sizing: border-box;
|
|
171
|
+
margin: 0;
|
|
172
|
+
padding: 0;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
html {
|
|
176
|
+
scroll-behavior: smooth;
|
|
177
|
+
scroll-padding-top: calc(var(--ardo-header-height) + 24px);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
body {
|
|
181
|
+
font-family: var(--ardo-font-family);
|
|
182
|
+
font-size: 16px;
|
|
183
|
+
line-height: 1.7;
|
|
184
|
+
color: var(--ardo-c-text);
|
|
185
|
+
background: var(--ardo-c-bg);
|
|
186
|
+
-webkit-font-smoothing: antialiased;
|
|
187
|
+
-moz-osx-font-smoothing: grayscale;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/* Selection */
|
|
191
|
+
::selection {
|
|
192
|
+
background: oklch(var(--ardo-brand-l) var(--ardo-brand-c) var(--ardo-brand-h) / 0.2);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
/* Layout */
|
|
196
|
+
.ardo-layout {
|
|
197
|
+
min-height: 100vh;
|
|
198
|
+
display: flex;
|
|
199
|
+
flex-direction: column;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.ardo-layout-container {
|
|
203
|
+
display: flex;
|
|
204
|
+
flex: 1;
|
|
205
|
+
padding-top: var(--ardo-header-height);
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.ardo-main {
|
|
209
|
+
flex: 1;
|
|
210
|
+
min-width: 0;
|
|
211
|
+
padding: 40px 32px;
|
|
212
|
+
margin-left: var(--ardo-sidebar-width);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
/* No sidebar margin and no padding on home page */
|
|
216
|
+
.ardo-home .ardo-main {
|
|
217
|
+
margin-left: 0;
|
|
218
|
+
padding: 0;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/* ========================================
|
|
222
|
+
Header - Prominent & Clean
|
|
223
|
+
======================================== */
|
|
224
|
+
.ardo-header {
|
|
225
|
+
position: fixed;
|
|
226
|
+
top: 0;
|
|
227
|
+
left: 0;
|
|
228
|
+
right: 0;
|
|
229
|
+
height: var(--ardo-header-height);
|
|
230
|
+
background: var(--ardo-c-bg);
|
|
231
|
+
border-bottom: 1px solid var(--ardo-c-border);
|
|
232
|
+
z-index: 100;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.dark .ardo-header {
|
|
236
|
+
background: var(--ardo-c-bg);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.ardo-header-container {
|
|
240
|
+
display: flex;
|
|
241
|
+
align-items: center;
|
|
242
|
+
justify-content: space-between;
|
|
243
|
+
height: 100%;
|
|
244
|
+
padding: 0 32px 0 20px; /* Left padding matches sidebar padding for alignment */
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.ardo-header-left {
|
|
248
|
+
display: flex;
|
|
249
|
+
align-items: center;
|
|
250
|
+
gap: 24px;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.ardo-logo-link {
|
|
254
|
+
display: flex;
|
|
255
|
+
align-items: center;
|
|
256
|
+
gap: 10px;
|
|
257
|
+
text-decoration: none;
|
|
258
|
+
color: var(--ardo-c-text);
|
|
259
|
+
transition: opacity var(--ardo-transition-fast);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.ardo-logo-link:hover {
|
|
263
|
+
opacity: 0.8;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.ardo-logo {
|
|
267
|
+
height: 36px;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.ardo-site-title {
|
|
271
|
+
font-size: 20px;
|
|
272
|
+
font-weight: 700;
|
|
273
|
+
letter-spacing: -0.02em;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/* Nav - with underline indicator */
|
|
277
|
+
.ardo-nav {
|
|
278
|
+
display: flex;
|
|
279
|
+
align-items: center;
|
|
280
|
+
gap: 8px;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.ardo-nav-link {
|
|
284
|
+
position: relative;
|
|
285
|
+
color: var(--ardo-c-text-light);
|
|
286
|
+
text-decoration: none;
|
|
287
|
+
font-size: 14px;
|
|
288
|
+
font-weight: 500;
|
|
289
|
+
padding: 8px 14px;
|
|
290
|
+
border-radius: var(--ardo-radius-sm);
|
|
291
|
+
transition: all var(--ardo-transition-fast);
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.ardo-nav-link::after {
|
|
295
|
+
content: "";
|
|
296
|
+
position: absolute;
|
|
297
|
+
bottom: 0;
|
|
298
|
+
left: 50%;
|
|
299
|
+
transform: translateX(-50%);
|
|
300
|
+
width: 0;
|
|
301
|
+
height: 2px;
|
|
302
|
+
background: var(--ardo-c-brand);
|
|
303
|
+
border-radius: 1px;
|
|
304
|
+
transition: width var(--ardo-transition);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.ardo-nav-link:hover {
|
|
308
|
+
color: var(--ardo-c-text);
|
|
309
|
+
background: var(--ardo-c-bg-soft);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.ardo-nav-link.active {
|
|
313
|
+
color: var(--ardo-c-brand);
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.ardo-nav-link.active::after {
|
|
317
|
+
width: calc(100% - 28px);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.ardo-header-right {
|
|
321
|
+
display: flex;
|
|
322
|
+
align-items: center;
|
|
323
|
+
gap: 12px;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.ardo-social-link {
|
|
327
|
+
display: flex;
|
|
328
|
+
align-items: center;
|
|
329
|
+
justify-content: center;
|
|
330
|
+
width: 40px;
|
|
331
|
+
height: 40px;
|
|
332
|
+
color: var(--ardo-c-text-light);
|
|
333
|
+
border-radius: var(--ardo-radius);
|
|
334
|
+
transition: all var(--ardo-transition-fast);
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.ardo-social-link:hover {
|
|
338
|
+
color: var(--ardo-c-text);
|
|
339
|
+
background: var(--ardo-c-bg-soft);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
/* Mobile menu */
|
|
343
|
+
.ardo-mobile-menu-button {
|
|
344
|
+
display: none;
|
|
345
|
+
background: none;
|
|
346
|
+
border: none;
|
|
347
|
+
cursor: pointer;
|
|
348
|
+
padding: 8px;
|
|
349
|
+
border-radius: var(--ardo-radius-sm);
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.ardo-mobile-menu-button:hover {
|
|
353
|
+
background: var(--ardo-c-bg-soft);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.ardo-hamburger {
|
|
357
|
+
display: flex;
|
|
358
|
+
flex-direction: column;
|
|
359
|
+
gap: 5px;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.ardo-hamburger span {
|
|
363
|
+
display: block;
|
|
364
|
+
width: 20px;
|
|
365
|
+
height: 2px;
|
|
366
|
+
background: var(--ardo-c-text);
|
|
367
|
+
border-radius: 1px;
|
|
368
|
+
transition: all var(--ardo-transition-fast);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
@media (max-width: 768px) {
|
|
372
|
+
.ardo-mobile-menu-button {
|
|
373
|
+
display: block;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.ardo-nav {
|
|
377
|
+
display: none;
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
/* ========================================
|
|
382
|
+
Sidebar - Clean with subtle interactions
|
|
383
|
+
======================================== */
|
|
384
|
+
.ardo-sidebar {
|
|
385
|
+
position: fixed;
|
|
386
|
+
top: var(--ardo-header-height);
|
|
387
|
+
left: 0;
|
|
388
|
+
width: var(--ardo-sidebar-width);
|
|
389
|
+
height: calc(100vh - var(--ardo-header-height));
|
|
390
|
+
padding: 24px 20px;
|
|
391
|
+
overflow-y: auto;
|
|
392
|
+
border-right: 1px solid var(--ardo-c-border);
|
|
393
|
+
background: var(--ardo-sidebar-bg);
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.ardo-sidebar-list {
|
|
397
|
+
list-style: none;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.ardo-sidebar-list-0 > .ardo-sidebar-item {
|
|
401
|
+
margin-bottom: 20px;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.ardo-sidebar-list-1 {
|
|
405
|
+
margin-left: 12px;
|
|
406
|
+
margin-top: 6px;
|
|
407
|
+
padding-left: 12px;
|
|
408
|
+
border-left: 1px solid var(--ardo-c-border-light);
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.ardo-sidebar-item-header {
|
|
412
|
+
display: flex;
|
|
413
|
+
align-items: center;
|
|
414
|
+
justify-content: space-between;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.ardo-sidebar-link,
|
|
418
|
+
.ardo-sidebar-text {
|
|
419
|
+
display: block;
|
|
420
|
+
padding: 6px 10px;
|
|
421
|
+
margin: 2px 0;
|
|
422
|
+
color: var(--ardo-c-text-light);
|
|
423
|
+
text-decoration: none;
|
|
424
|
+
font-size: 14px;
|
|
425
|
+
border-radius: var(--ardo-radius-sm);
|
|
426
|
+
transition: all var(--ardo-transition-fast);
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.ardo-sidebar-link:hover {
|
|
430
|
+
color: var(--ardo-c-text);
|
|
431
|
+
background: var(--ardo-c-bg-mute);
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.ardo-sidebar-link.active {
|
|
435
|
+
color: var(--ardo-c-brand);
|
|
436
|
+
background: var(--ardo-c-brand-subtle);
|
|
437
|
+
font-weight: 500;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.ardo-sidebar-text {
|
|
441
|
+
cursor: pointer;
|
|
442
|
+
font-weight: 600;
|
|
443
|
+
font-size: 12px;
|
|
444
|
+
text-transform: uppercase;
|
|
445
|
+
letter-spacing: 0.05em;
|
|
446
|
+
color: var(--ardo-c-text-lighter);
|
|
447
|
+
padding: 6px 10px;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.ardo-sidebar-text:hover {
|
|
451
|
+
color: var(--ardo-c-text);
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.ardo-sidebar-collapse {
|
|
455
|
+
background: none;
|
|
456
|
+
border: none;
|
|
457
|
+
cursor: pointer;
|
|
458
|
+
padding: 6px;
|
|
459
|
+
color: var(--ardo-c-text-lighter);
|
|
460
|
+
border-radius: var(--ardo-radius-sm);
|
|
461
|
+
transition: all var(--ardo-transition-fast);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.ardo-sidebar-collapse:hover {
|
|
465
|
+
background: var(--ardo-c-bg-mute);
|
|
466
|
+
color: var(--ardo-c-text);
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.ardo-sidebar-collapse.collapsed {
|
|
470
|
+
transform: rotate(-90deg);
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
@media (max-width: 1024px) {
|
|
474
|
+
.ardo-header-container {
|
|
475
|
+
padding: 0 20px; /* Symmetric padding on mobile (no sidebar to align with) */
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.ardo-sidebar {
|
|
479
|
+
display: none;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.ardo-main {
|
|
483
|
+
margin-left: 0;
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
/* ========================================
|
|
488
|
+
TOC - Table of Contents
|
|
489
|
+
======================================== */
|
|
490
|
+
.ardo-toc {
|
|
491
|
+
position: fixed;
|
|
492
|
+
top: var(--ardo-header-height);
|
|
493
|
+
right: 0;
|
|
494
|
+
width: var(--ardo-toc-width);
|
|
495
|
+
height: calc(100vh - var(--ardo-header-height));
|
|
496
|
+
padding: 24px 20px;
|
|
497
|
+
overflow-y: auto;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.ardo-toc-title {
|
|
501
|
+
font-size: 11px;
|
|
502
|
+
font-weight: 600;
|
|
503
|
+
text-transform: uppercase;
|
|
504
|
+
letter-spacing: 0.08em;
|
|
505
|
+
color: var(--ardo-c-text-lighter);
|
|
506
|
+
margin-bottom: 16px;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.ardo-toc-list {
|
|
510
|
+
list-style: none;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.ardo-toc-link {
|
|
514
|
+
display: block;
|
|
515
|
+
padding: 5px 0;
|
|
516
|
+
padding-left: 14px;
|
|
517
|
+
color: var(--ardo-c-text-lighter);
|
|
518
|
+
text-decoration: none;
|
|
519
|
+
font-size: 13px;
|
|
520
|
+
border-left: 2px solid transparent;
|
|
521
|
+
margin-left: -14px;
|
|
522
|
+
transition: all var(--ardo-transition-fast);
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.ardo-toc-link:hover {
|
|
526
|
+
color: var(--ardo-c-text);
|
|
527
|
+
border-left-color: var(--ardo-c-border);
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.ardo-toc-link.active {
|
|
531
|
+
color: var(--ardo-c-brand);
|
|
532
|
+
border-left-color: var(--ardo-c-brand);
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.ardo-toc-link-3 {
|
|
536
|
+
padding-left: 26px;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.ardo-toc-link-4 {
|
|
540
|
+
padding-left: 38px;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
@media (max-width: 1280px) {
|
|
544
|
+
.ardo-toc {
|
|
545
|
+
display: none;
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
/* ========================================
|
|
550
|
+
Content Area
|
|
551
|
+
======================================== */
|
|
552
|
+
.ardo-doc-page {
|
|
553
|
+
display: flex;
|
|
554
|
+
max-width: calc(var(--ardo-content-max-width) + var(--ardo-toc-width));
|
|
555
|
+
margin: 0 auto;
|
|
556
|
+
padding-left: var(--ardo-sidebar-width);
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.ardo-content-container {
|
|
560
|
+
flex: 1;
|
|
561
|
+
max-width: var(--ardo-content-max-width);
|
|
562
|
+
padding: 0 24px;
|
|
563
|
+
padding-right: calc(var(--ardo-toc-width) + 24px);
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
@media (max-width: 1280px) {
|
|
567
|
+
.ardo-content-container {
|
|
568
|
+
padding-right: 24px;
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.ardo-content-header {
|
|
573
|
+
margin-bottom: 40px;
|
|
574
|
+
padding-bottom: 24px;
|
|
575
|
+
border-bottom: 1px solid var(--ardo-c-border);
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.ardo-content-title {
|
|
579
|
+
font-size: 36px;
|
|
580
|
+
font-weight: 700;
|
|
581
|
+
line-height: 1.2;
|
|
582
|
+
letter-spacing: -0.02em;
|
|
583
|
+
margin-bottom: 12px;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.ardo-content-description {
|
|
587
|
+
font-size: 18px;
|
|
588
|
+
color: var(--ardo-c-text-light);
|
|
589
|
+
line-height: 1.6;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.ardo-content-body {
|
|
593
|
+
line-height: 1.75;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
/* ========================================
|
|
597
|
+
Typography in Content
|
|
598
|
+
======================================== */
|
|
599
|
+
.ardo-content h1,
|
|
600
|
+
.ardo-content h2,
|
|
601
|
+
.ardo-content h3,
|
|
602
|
+
.ardo-content h4,
|
|
603
|
+
.ardo-content h5,
|
|
604
|
+
.ardo-content h6 {
|
|
605
|
+
font-weight: 600;
|
|
606
|
+
line-height: 1.3;
|
|
607
|
+
margin-top: 40px;
|
|
608
|
+
margin-bottom: 16px;
|
|
609
|
+
letter-spacing: -0.01em;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.ardo-content h1 {
|
|
613
|
+
font-size: 32px;
|
|
614
|
+
}
|
|
615
|
+
.ardo-content h2 {
|
|
616
|
+
font-size: 24px;
|
|
617
|
+
padding-bottom: 10px;
|
|
618
|
+
border-bottom: 1px solid var(--ardo-c-border);
|
|
619
|
+
}
|
|
620
|
+
.ardo-content h3 {
|
|
621
|
+
font-size: 20px;
|
|
622
|
+
}
|
|
623
|
+
.ardo-content h4 {
|
|
624
|
+
font-size: 17px;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.ardo-content p {
|
|
628
|
+
margin-bottom: 16px;
|
|
629
|
+
max-width: 70ch;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.ardo-content a {
|
|
633
|
+
color: var(--ardo-c-brand);
|
|
634
|
+
text-decoration: none;
|
|
635
|
+
border-bottom: 1px solid transparent;
|
|
636
|
+
transition: border-color var(--ardo-transition-fast);
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.ardo-content a:hover {
|
|
640
|
+
border-bottom-color: var(--ardo-c-brand);
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.ardo-content ul,
|
|
644
|
+
.ardo-content ol {
|
|
645
|
+
margin-bottom: 16px;
|
|
646
|
+
padding-left: 24px;
|
|
647
|
+
max-width: 70ch;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.ardo-content li {
|
|
651
|
+
margin-bottom: 8px;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.ardo-content li::marker {
|
|
655
|
+
color: var(--ardo-c-text-lighter);
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.ardo-content blockquote {
|
|
659
|
+
margin: 20px 0;
|
|
660
|
+
padding: 16px 20px;
|
|
661
|
+
border-left: 3px solid var(--ardo-c-brand);
|
|
662
|
+
background: var(--ardo-c-bg-soft);
|
|
663
|
+
border-radius: 0 var(--ardo-radius) var(--ardo-radius) 0;
|
|
664
|
+
font-style: italic;
|
|
665
|
+
color: var(--ardo-c-text-light);
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.ardo-content hr {
|
|
669
|
+
margin: 40px 0;
|
|
670
|
+
border: none;
|
|
671
|
+
border-top: 1px solid var(--ardo-c-border);
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.ardo-content table {
|
|
675
|
+
width: 100%;
|
|
676
|
+
margin: 20px 0;
|
|
677
|
+
border-collapse: collapse;
|
|
678
|
+
font-size: 14px;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.ardo-content th,
|
|
682
|
+
.ardo-content td {
|
|
683
|
+
padding: 12px 16px;
|
|
684
|
+
border: 1px solid var(--ardo-c-border);
|
|
685
|
+
text-align: left;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.ardo-content th {
|
|
689
|
+
background: var(--ardo-c-bg-soft);
|
|
690
|
+
font-weight: 600;
|
|
691
|
+
font-size: 13px;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.ardo-content img {
|
|
695
|
+
max-width: 100%;
|
|
696
|
+
border-radius: var(--ardo-radius);
|
|
697
|
+
border: 1px solid var(--ardo-c-border);
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
/* Inline code */
|
|
701
|
+
.ardo-content code {
|
|
702
|
+
font-family: var(--ardo-font-mono);
|
|
703
|
+
font-size: 0.875em;
|
|
704
|
+
padding: 3px 6px;
|
|
705
|
+
background: var(--ardo-c-bg-mute);
|
|
706
|
+
border-radius: var(--ardo-radius-sm);
|
|
707
|
+
border: 1px solid var(--ardo-c-border-light);
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.ardo-content pre code {
|
|
711
|
+
padding: 0;
|
|
712
|
+
background: none;
|
|
713
|
+
border: none;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
/* ========================================
|
|
717
|
+
Code Blocks - Warm & Distinct
|
|
718
|
+
======================================== */
|
|
719
|
+
.ardo-code-block {
|
|
720
|
+
margin: 20px 0;
|
|
721
|
+
margin-left: -16px;
|
|
722
|
+
border-radius: var(--ardo-radius);
|
|
723
|
+
overflow: hidden;
|
|
724
|
+
background: var(--ardo-code-bg);
|
|
725
|
+
border: 1px solid var(--ardo-code-border);
|
|
726
|
+
box-shadow: var(--ardo-code-shadow);
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
/* Shiki syntax highlighting - dual theme support */
|
|
730
|
+
.shiki {
|
|
731
|
+
background: transparent !important;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.shiki span {
|
|
735
|
+
color: var(--shiki-light);
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.dark .shiki span {
|
|
739
|
+
color: var(--shiki-dark);
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.ardo-code-title {
|
|
743
|
+
padding: 10px 16px;
|
|
744
|
+
background: var(--ardo-code-border);
|
|
745
|
+
font-size: 13px;
|
|
746
|
+
font-weight: 500;
|
|
747
|
+
font-family: var(--ardo-font-mono);
|
|
748
|
+
color: var(--ardo-c-text-light);
|
|
749
|
+
border-bottom: 1px solid var(--ardo-code-border);
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.ardo-code-wrapper {
|
|
753
|
+
position: relative;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.ardo-code-wrapper pre {
|
|
757
|
+
margin: 0;
|
|
758
|
+
padding: 16px;
|
|
759
|
+
overflow-x: auto;
|
|
760
|
+
font-family: var(--ardo-font-mono);
|
|
761
|
+
font-size: 14px;
|
|
762
|
+
line-height: 1.65;
|
|
763
|
+
color: var(--ardo-c-text);
|
|
764
|
+
background: transparent !important;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.dark .ardo-code-wrapper pre {
|
|
768
|
+
color: #e2e8f0;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.ardo-code-line {
|
|
772
|
+
display: block;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.ardo-code-line.highlighted {
|
|
776
|
+
background: rgba(99, 179, 237, 0.12);
|
|
777
|
+
margin: 0 -16px;
|
|
778
|
+
padding: 0 16px;
|
|
779
|
+
border-left: 3px solid var(--ardo-c-brand);
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.ardo-line-number {
|
|
783
|
+
display: inline-block;
|
|
784
|
+
width: 32px;
|
|
785
|
+
color: var(--ardo-c-text-lighter);
|
|
786
|
+
text-align: right;
|
|
787
|
+
margin-right: 16px;
|
|
788
|
+
user-select: none;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.dark .ardo-line-number {
|
|
792
|
+
color: #475569;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.ardo-copy-button {
|
|
796
|
+
position: absolute;
|
|
797
|
+
top: 10px;
|
|
798
|
+
right: 10px;
|
|
799
|
+
display: flex;
|
|
800
|
+
align-items: center;
|
|
801
|
+
gap: 6px;
|
|
802
|
+
padding: 6px 10px;
|
|
803
|
+
background: var(--ardo-c-bg);
|
|
804
|
+
border: 1px solid var(--ardo-c-border);
|
|
805
|
+
border-radius: var(--ardo-radius-sm);
|
|
806
|
+
cursor: pointer;
|
|
807
|
+
font-size: 12px;
|
|
808
|
+
font-family: var(--ardo-font-family);
|
|
809
|
+
color: var(--ardo-c-text-light);
|
|
810
|
+
opacity: 0;
|
|
811
|
+
transition: all var(--ardo-transition-fast);
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.ardo-code-wrapper:hover .ardo-copy-button {
|
|
815
|
+
opacity: 1;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.ardo-copy-button:hover {
|
|
819
|
+
background: var(--ardo-c-bg-soft);
|
|
820
|
+
border-color: var(--ardo-c-brand);
|
|
821
|
+
color: var(--ardo-c-brand);
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
/* Code groups */
|
|
825
|
+
.ardo-code-group {
|
|
826
|
+
margin: 20px 0;
|
|
827
|
+
margin-left: -16px;
|
|
828
|
+
border-radius: var(--ardo-radius);
|
|
829
|
+
overflow: hidden;
|
|
830
|
+
background: var(--ardo-code-bg);
|
|
831
|
+
border: 1px solid var(--ardo-code-border);
|
|
832
|
+
box-shadow: var(--ardo-code-shadow);
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.ardo-code-group-tabs {
|
|
836
|
+
display: flex;
|
|
837
|
+
background: var(--ardo-code-border);
|
|
838
|
+
border-bottom: 1px solid var(--ardo-code-border);
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.ardo-code-group-tab {
|
|
842
|
+
padding: 10px 16px;
|
|
843
|
+
background: none;
|
|
844
|
+
border: none;
|
|
845
|
+
cursor: pointer;
|
|
846
|
+
font-size: 13px;
|
|
847
|
+
font-family: var(--ardo-font-mono);
|
|
848
|
+
color: var(--ardo-c-text-light);
|
|
849
|
+
border-bottom: 2px solid transparent;
|
|
850
|
+
margin-bottom: -1px;
|
|
851
|
+
transition: all var(--ardo-transition-fast);
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.ardo-code-group-tab:hover {
|
|
855
|
+
color: var(--ardo-c-text);
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
.ardo-code-group-tab.active {
|
|
859
|
+
color: var(--ardo-c-brand);
|
|
860
|
+
border-bottom-color: var(--ardo-c-brand);
|
|
861
|
+
background: var(--ardo-code-bg);
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
.ardo-code-group-panel {
|
|
865
|
+
display: none;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.ardo-code-group-panel.active {
|
|
869
|
+
display: block;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
/* ========================================
|
|
873
|
+
Containers - Clear Visual Distinction
|
|
874
|
+
======================================== */
|
|
875
|
+
.ardo-container {
|
|
876
|
+
margin: 20px 0;
|
|
877
|
+
padding: 16px 20px;
|
|
878
|
+
border-radius: var(--ardo-radius);
|
|
879
|
+
border: 1px solid;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
.ardo-container-tip {
|
|
883
|
+
background: var(--ardo-c-tip-bg);
|
|
884
|
+
border-color: var(--ardo-c-tip-border);
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.ardo-container-warning {
|
|
888
|
+
background: var(--ardo-c-warning-bg);
|
|
889
|
+
border-color: var(--ardo-c-warning-border);
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.ardo-container-danger {
|
|
893
|
+
background: var(--ardo-c-danger-bg);
|
|
894
|
+
border-color: var(--ardo-c-danger-border);
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.ardo-container-info {
|
|
898
|
+
background: var(--ardo-c-info-bg);
|
|
899
|
+
border-color: var(--ardo-c-info-border);
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.ardo-container-note {
|
|
903
|
+
background: var(--ardo-c-note-bg);
|
|
904
|
+
border-color: var(--ardo-c-note-border);
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.ardo-container-title {
|
|
908
|
+
display: flex;
|
|
909
|
+
align-items: center;
|
|
910
|
+
gap: 8px;
|
|
911
|
+
font-weight: 600;
|
|
912
|
+
font-size: 14px;
|
|
913
|
+
margin-bottom: 8px;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.ardo-container-tip .ardo-container-title {
|
|
917
|
+
color: var(--ardo-c-tip);
|
|
918
|
+
}
|
|
919
|
+
.ardo-container-warning .ardo-container-title {
|
|
920
|
+
color: var(--ardo-c-warning);
|
|
921
|
+
}
|
|
922
|
+
.ardo-container-danger .ardo-container-title {
|
|
923
|
+
color: var(--ardo-c-danger);
|
|
924
|
+
}
|
|
925
|
+
.ardo-container-info .ardo-container-title {
|
|
926
|
+
color: var(--ardo-c-info);
|
|
927
|
+
}
|
|
928
|
+
.ardo-container-note .ardo-container-title {
|
|
929
|
+
color: var(--ardo-c-note);
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.ardo-container-content {
|
|
933
|
+
font-size: 14px;
|
|
934
|
+
line-height: 1.6;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.ardo-container-content p:last-child {
|
|
938
|
+
margin-bottom: 0;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
/* Details */
|
|
942
|
+
.ardo-details {
|
|
943
|
+
margin: 20px 0;
|
|
944
|
+
border: 1px solid var(--ardo-c-border);
|
|
945
|
+
border-radius: var(--ardo-radius);
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.ardo-details-summary {
|
|
949
|
+
padding: 14px 16px;
|
|
950
|
+
cursor: pointer;
|
|
951
|
+
font-weight: 500;
|
|
952
|
+
background: var(--ardo-c-bg-soft);
|
|
953
|
+
transition: background var(--ardo-transition-fast);
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.ardo-details-summary:hover {
|
|
957
|
+
background: var(--ardo-c-bg-mute);
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.ardo-details[open] .ardo-details-summary {
|
|
961
|
+
border-bottom: 1px solid var(--ardo-c-border);
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.ardo-details > *:not(summary) {
|
|
965
|
+
padding: 16px;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
/* ========================================
|
|
969
|
+
Footer Area
|
|
970
|
+
======================================== */
|
|
971
|
+
.ardo-content-footer {
|
|
972
|
+
margin-top: 60px;
|
|
973
|
+
padding-top: 24px;
|
|
974
|
+
border-top: 1px solid var(--ardo-c-border);
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
.ardo-content-meta {
|
|
978
|
+
display: flex;
|
|
979
|
+
justify-content: space-between;
|
|
980
|
+
align-items: center;
|
|
981
|
+
margin-bottom: 24px;
|
|
982
|
+
font-size: 14px;
|
|
983
|
+
color: var(--ardo-c-text-lighter);
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
.ardo-edit-link {
|
|
987
|
+
color: var(--ardo-c-brand);
|
|
988
|
+
text-decoration: none;
|
|
989
|
+
font-weight: 500;
|
|
990
|
+
transition: opacity var(--ardo-transition-fast);
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.ardo-edit-link:hover {
|
|
994
|
+
opacity: 0.8;
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
.ardo-prev-next {
|
|
998
|
+
display: grid;
|
|
999
|
+
grid-template-columns: 1fr 1fr;
|
|
1000
|
+
gap: 16px;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.ardo-prev-link,
|
|
1004
|
+
.ardo-next-link {
|
|
1005
|
+
display: flex;
|
|
1006
|
+
flex-direction: column;
|
|
1007
|
+
padding: 16px 20px;
|
|
1008
|
+
border: 1px solid var(--ardo-c-border);
|
|
1009
|
+
border-radius: var(--ardo-radius);
|
|
1010
|
+
text-decoration: none;
|
|
1011
|
+
transition: all var(--ardo-transition-fast);
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
.ardo-prev-link:hover,
|
|
1015
|
+
.ardo-next-link:hover {
|
|
1016
|
+
border-color: var(--ardo-c-brand);
|
|
1017
|
+
background: var(--ardo-c-brand-subtle);
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.ardo-next-link {
|
|
1021
|
+
text-align: right;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.ardo-prev-next-label {
|
|
1025
|
+
font-size: 12px;
|
|
1026
|
+
font-weight: 500;
|
|
1027
|
+
color: var(--ardo-c-text-lighter);
|
|
1028
|
+
text-transform: uppercase;
|
|
1029
|
+
letter-spacing: 0.05em;
|
|
1030
|
+
margin-bottom: 4px;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.ardo-prev-next-title {
|
|
1034
|
+
font-weight: 600;
|
|
1035
|
+
color: var(--ardo-c-brand);
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
/* Page footer */
|
|
1039
|
+
.ardo-footer {
|
|
1040
|
+
padding: 32px 24px;
|
|
1041
|
+
text-align: center;
|
|
1042
|
+
border-top: 1px solid var(--ardo-c-border);
|
|
1043
|
+
background: var(--ardo-c-bg-soft);
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
.ardo-footer-message,
|
|
1047
|
+
.ardo-footer-copyright {
|
|
1048
|
+
font-size: 14px;
|
|
1049
|
+
color: var(--ardo-c-text-lighter);
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
/* ========================================
|
|
1053
|
+
Search
|
|
1054
|
+
======================================== */
|
|
1055
|
+
.ardo-search-button {
|
|
1056
|
+
display: flex;
|
|
1057
|
+
align-items: center;
|
|
1058
|
+
gap: 8px;
|
|
1059
|
+
padding: 8px 14px;
|
|
1060
|
+
background: var(--ardo-c-bg-soft);
|
|
1061
|
+
border: 1px solid var(--ardo-c-border);
|
|
1062
|
+
border-radius: var(--ardo-radius);
|
|
1063
|
+
cursor: pointer;
|
|
1064
|
+
color: var(--ardo-c-text-lighter);
|
|
1065
|
+
font-size: 14px;
|
|
1066
|
+
transition: all var(--ardo-transition-fast);
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.ardo-search-button:hover {
|
|
1070
|
+
border-color: var(--ardo-c-brand);
|
|
1071
|
+
color: var(--ardo-c-text-light);
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
.ardo-search-button-text {
|
|
1075
|
+
display: none;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
@media (min-width: 768px) {
|
|
1079
|
+
.ardo-search-button-text {
|
|
1080
|
+
display: inline;
|
|
1081
|
+
}
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
.ardo-search-kbd {
|
|
1085
|
+
display: none;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
@media (min-width: 768px) {
|
|
1089
|
+
.ardo-search-kbd {
|
|
1090
|
+
display: flex;
|
|
1091
|
+
gap: 3px;
|
|
1092
|
+
}
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.ardo-search-kbd kbd {
|
|
1096
|
+
padding: 2px 6px;
|
|
1097
|
+
background: var(--ardo-c-bg);
|
|
1098
|
+
border: 1px solid var(--ardo-c-border);
|
|
1099
|
+
border-radius: 4px;
|
|
1100
|
+
font-size: 11px;
|
|
1101
|
+
font-family: var(--ardo-font-family);
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.ardo-search-modal {
|
|
1105
|
+
position: fixed;
|
|
1106
|
+
inset: 0;
|
|
1107
|
+
background: rgba(0, 0, 0, 0.5);
|
|
1108
|
+
display: flex;
|
|
1109
|
+
align-items: flex-start;
|
|
1110
|
+
justify-content: center;
|
|
1111
|
+
padding-top: 100px;
|
|
1112
|
+
z-index: 200;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.ardo-search-dialog {
|
|
1116
|
+
width: 100%;
|
|
1117
|
+
max-width: 560px;
|
|
1118
|
+
background: var(--ardo-c-bg);
|
|
1119
|
+
border-radius: var(--ardo-radius-lg);
|
|
1120
|
+
border: 1px solid var(--ardo-c-border);
|
|
1121
|
+
overflow: hidden;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.ardo-search-input-wrapper {
|
|
1125
|
+
display: flex;
|
|
1126
|
+
align-items: center;
|
|
1127
|
+
gap: 12px;
|
|
1128
|
+
padding: 16px 20px;
|
|
1129
|
+
border-bottom: 1px solid var(--ardo-c-border);
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.ardo-search-input {
|
|
1133
|
+
flex: 1;
|
|
1134
|
+
border: none;
|
|
1135
|
+
outline: none;
|
|
1136
|
+
font-size: 16px;
|
|
1137
|
+
background: none;
|
|
1138
|
+
color: var(--ardo-c-text);
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
.ardo-search-clear {
|
|
1142
|
+
background: none;
|
|
1143
|
+
border: none;
|
|
1144
|
+
cursor: pointer;
|
|
1145
|
+
font-size: 18px;
|
|
1146
|
+
color: var(--ardo-c-text-lighter);
|
|
1147
|
+
padding: 4px;
|
|
1148
|
+
border-radius: var(--ardo-radius-sm);
|
|
1149
|
+
transition: all var(--ardo-transition-fast);
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
.ardo-search-clear:hover {
|
|
1153
|
+
background: var(--ardo-c-bg-soft);
|
|
1154
|
+
color: var(--ardo-c-text);
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.ardo-search-results {
|
|
1158
|
+
list-style: none;
|
|
1159
|
+
max-height: 400px;
|
|
1160
|
+
overflow-y: auto;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
.ardo-search-result {
|
|
1164
|
+
display: block;
|
|
1165
|
+
padding: 12px 20px;
|
|
1166
|
+
text-decoration: none;
|
|
1167
|
+
color: var(--ardo-c-text);
|
|
1168
|
+
border-bottom: 1px solid var(--ardo-c-border-light);
|
|
1169
|
+
transition: background var(--ardo-transition-fast);
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.ardo-search-result:last-child {
|
|
1173
|
+
border-bottom: none;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.ardo-search-result:hover,
|
|
1177
|
+
.ardo-search-result.selected {
|
|
1178
|
+
background: var(--ardo-c-bg-soft);
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
.ardo-search-result-title {
|
|
1182
|
+
display: block;
|
|
1183
|
+
font-weight: 500;
|
|
1184
|
+
margin-bottom: 2px;
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
.ardo-search-result-section {
|
|
1188
|
+
display: block;
|
|
1189
|
+
font-size: 13px;
|
|
1190
|
+
color: var(--ardo-c-text-lighter);
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
.ardo-search-no-results {
|
|
1194
|
+
padding: 32px 20px;
|
|
1195
|
+
text-align: center;
|
|
1196
|
+
color: var(--ardo-c-text-lighter);
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.ardo-search-footer {
|
|
1200
|
+
display: flex;
|
|
1201
|
+
justify-content: center;
|
|
1202
|
+
gap: 24px;
|
|
1203
|
+
padding: 12px 20px;
|
|
1204
|
+
background: var(--ardo-c-bg-soft);
|
|
1205
|
+
border-top: 1px solid var(--ardo-c-border);
|
|
1206
|
+
font-size: 12px;
|
|
1207
|
+
color: var(--ardo-c-text-lighter);
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
.ardo-search-footer kbd {
|
|
1211
|
+
padding: 2px 6px;
|
|
1212
|
+
background: var(--ardo-c-bg);
|
|
1213
|
+
border: 1px solid var(--ardo-c-border);
|
|
1214
|
+
border-radius: 4px;
|
|
1215
|
+
margin-right: 4px;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
/* Theme toggle */
|
|
1219
|
+
.ardo-theme-toggle {
|
|
1220
|
+
display: flex;
|
|
1221
|
+
align-items: center;
|
|
1222
|
+
justify-content: center;
|
|
1223
|
+
width: 40px;
|
|
1224
|
+
height: 40px;
|
|
1225
|
+
background: none;
|
|
1226
|
+
border: none;
|
|
1227
|
+
cursor: pointer;
|
|
1228
|
+
color: var(--ardo-c-text-light);
|
|
1229
|
+
border-radius: var(--ardo-radius);
|
|
1230
|
+
transition: all var(--ardo-transition-fast);
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
.ardo-theme-toggle:hover {
|
|
1234
|
+
background: var(--ardo-c-bg-soft);
|
|
1235
|
+
color: var(--ardo-c-text);
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
/* Tabs */
|
|
1239
|
+
.ardo-tabs {
|
|
1240
|
+
margin: 20px 0;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
.ardo-tab-list {
|
|
1244
|
+
display: flex;
|
|
1245
|
+
border-bottom: 1px solid var(--ardo-c-border);
|
|
1246
|
+
gap: 4px;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.ardo-tab {
|
|
1250
|
+
padding: 10px 18px;
|
|
1251
|
+
background: none;
|
|
1252
|
+
border: none;
|
|
1253
|
+
cursor: pointer;
|
|
1254
|
+
font-size: 14px;
|
|
1255
|
+
font-weight: 500;
|
|
1256
|
+
color: var(--ardo-c-text-light);
|
|
1257
|
+
border-bottom: 2px solid transparent;
|
|
1258
|
+
margin-bottom: -1px;
|
|
1259
|
+
transition: all var(--ardo-transition-fast);
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
.ardo-tab:hover {
|
|
1263
|
+
color: var(--ardo-c-text);
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.ardo-tab.active {
|
|
1267
|
+
color: var(--ardo-c-brand);
|
|
1268
|
+
border-bottom-color: var(--ardo-c-brand);
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
.ardo-tab-panel {
|
|
1272
|
+
padding: 20px 0;
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
/* ========================================
|
|
1276
|
+
Hero Section - Home Page
|
|
1277
|
+
======================================== */
|
|
1278
|
+
.ardo-home {
|
|
1279
|
+
min-height: 100vh;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
.ardo-home-main {
|
|
1283
|
+
padding-top: var(--ardo-header-height);
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.ardo-hero {
|
|
1287
|
+
padding: 100px 24px 80px;
|
|
1288
|
+
text-align: center;
|
|
1289
|
+
position: relative;
|
|
1290
|
+
overflow: hidden;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
/* Subtle gradient background */
|
|
1294
|
+
.ardo-hero::before {
|
|
1295
|
+
content: "";
|
|
1296
|
+
position: absolute;
|
|
1297
|
+
top: 0;
|
|
1298
|
+
left: 0;
|
|
1299
|
+
right: 0;
|
|
1300
|
+
bottom: 0;
|
|
1301
|
+
background:
|
|
1302
|
+
radial-gradient(
|
|
1303
|
+
ellipse 80% 50% at 50% -20%,
|
|
1304
|
+
oklch(var(--ardo-brand-l) var(--ardo-brand-c) var(--ardo-brand-h) / 0.08) 0%,
|
|
1305
|
+
transparent 70%
|
|
1306
|
+
),
|
|
1307
|
+
linear-gradient(180deg, var(--ardo-c-bg) 0%, var(--ardo-c-bg-soft) 100%);
|
|
1308
|
+
pointer-events: none;
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
.dark .ardo-hero::before {
|
|
1312
|
+
background:
|
|
1313
|
+
radial-gradient(
|
|
1314
|
+
ellipse 80% 50% at 50% -20%,
|
|
1315
|
+
oklch(var(--ardo-brand-l) var(--ardo-brand-c) var(--ardo-brand-h) / 0.15) 0%,
|
|
1316
|
+
transparent 70%
|
|
1317
|
+
),
|
|
1318
|
+
linear-gradient(180deg, var(--ardo-c-bg) 0%, var(--ardo-c-bg-soft) 100%);
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.ardo-hero-container {
|
|
1322
|
+
max-width: 800px;
|
|
1323
|
+
margin: 0 auto;
|
|
1324
|
+
position: relative;
|
|
1325
|
+
z-index: 1;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
.ardo-hero-image img {
|
|
1329
|
+
max-width: 180px;
|
|
1330
|
+
margin-bottom: 40px;
|
|
1331
|
+
filter: drop-shadow(
|
|
1332
|
+
0 4px 20px oklch(var(--ardo-brand-l) var(--ardo-brand-c) var(--ardo-brand-h) / 0.15)
|
|
1333
|
+
);
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.ardo-hero-name {
|
|
1337
|
+
font-size: 64px;
|
|
1338
|
+
font-weight: 800;
|
|
1339
|
+
background: var(--ardo-c-brand-gradient);
|
|
1340
|
+
-webkit-background-clip: text;
|
|
1341
|
+
-webkit-text-fill-color: transparent;
|
|
1342
|
+
background-clip: text;
|
|
1343
|
+
letter-spacing: -0.03em;
|
|
1344
|
+
line-height: 1.1;
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
.ardo-hero-text {
|
|
1348
|
+
font-size: 48px;
|
|
1349
|
+
font-weight: 700;
|
|
1350
|
+
margin-top: 8px;
|
|
1351
|
+
letter-spacing: -0.02em;
|
|
1352
|
+
line-height: 1.15;
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
.ardo-hero-tagline {
|
|
1356
|
+
font-size: 18px;
|
|
1357
|
+
color: var(--ardo-c-text-light);
|
|
1358
|
+
margin-top: 24px;
|
|
1359
|
+
max-width: 560px;
|
|
1360
|
+
margin-left: auto;
|
|
1361
|
+
margin-right: auto;
|
|
1362
|
+
line-height: 1.65;
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.ardo-hero-actions {
|
|
1366
|
+
display: flex;
|
|
1367
|
+
justify-content: center;
|
|
1368
|
+
gap: 16px;
|
|
1369
|
+
margin-top: 40px;
|
|
1370
|
+
flex-wrap: wrap;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.ardo-hero-action {
|
|
1374
|
+
display: inline-flex;
|
|
1375
|
+
align-items: center;
|
|
1376
|
+
gap: 8px;
|
|
1377
|
+
padding: 14px 28px;
|
|
1378
|
+
font-size: 15px;
|
|
1379
|
+
font-weight: 600;
|
|
1380
|
+
text-decoration: none;
|
|
1381
|
+
border-radius: var(--ardo-radius);
|
|
1382
|
+
transition: all var(--ardo-transition);
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
.ardo-hero-action-brand {
|
|
1386
|
+
background: var(--ardo-c-brand);
|
|
1387
|
+
color: white;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
.ardo-hero-action-brand:hover {
|
|
1391
|
+
background: var(--ardo-c-brand-dark);
|
|
1392
|
+
transform: translateY(-1px);
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
.ardo-hero-action-alt {
|
|
1396
|
+
background: var(--ardo-c-bg);
|
|
1397
|
+
color: var(--ardo-c-text);
|
|
1398
|
+
border: 1px solid var(--ardo-c-border);
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.ardo-hero-action-alt:hover {
|
|
1402
|
+
border-color: var(--ardo-c-brand);
|
|
1403
|
+
color: var(--ardo-c-brand);
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
/* ========================================
|
|
1407
|
+
Features Section
|
|
1408
|
+
======================================== */
|
|
1409
|
+
.ardo-features {
|
|
1410
|
+
padding: 80px 24px;
|
|
1411
|
+
background: var(--ardo-c-bg-soft);
|
|
1412
|
+
border-top: 1px solid var(--ardo-c-border);
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
.ardo-features-container {
|
|
1416
|
+
display: grid;
|
|
1417
|
+
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
1418
|
+
gap: 20px;
|
|
1419
|
+
max-width: 1100px;
|
|
1420
|
+
margin: 0 auto;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
.ardo-feature {
|
|
1424
|
+
padding: 28px;
|
|
1425
|
+
background: var(--ardo-c-bg);
|
|
1426
|
+
border-radius: var(--ardo-radius-lg);
|
|
1427
|
+
border: 1px solid var(--ardo-c-border);
|
|
1428
|
+
transition: all var(--ardo-transition);
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
.ardo-feature:hover {
|
|
1432
|
+
border-color: var(--ardo-c-brand);
|
|
1433
|
+
transform: translateY(-2px);
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
.ardo-feature-icon {
|
|
1437
|
+
display: flex;
|
|
1438
|
+
align-items: center;
|
|
1439
|
+
justify-content: center;
|
|
1440
|
+
width: 48px;
|
|
1441
|
+
height: 48px;
|
|
1442
|
+
margin-bottom: 16px;
|
|
1443
|
+
background: var(--ardo-c-brand-subtle);
|
|
1444
|
+
border-radius: var(--ardo-radius);
|
|
1445
|
+
color: var(--ardo-c-brand);
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.ardo-feature-title {
|
|
1449
|
+
font-size: 17px;
|
|
1450
|
+
font-weight: 600;
|
|
1451
|
+
margin-bottom: 10px;
|
|
1452
|
+
letter-spacing: -0.01em;
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
.ardo-feature-details {
|
|
1456
|
+
font-size: 14px;
|
|
1457
|
+
color: var(--ardo-c-text-light);
|
|
1458
|
+
line-height: 1.6;
|
|
1459
|
+
margin-bottom: 12px;
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
.ardo-feature-link {
|
|
1463
|
+
font-size: 14px;
|
|
1464
|
+
font-weight: 500;
|
|
1465
|
+
color: var(--ardo-c-brand);
|
|
1466
|
+
text-decoration: none;
|
|
1467
|
+
display: inline-flex;
|
|
1468
|
+
align-items: center;
|
|
1469
|
+
gap: 4px;
|
|
1470
|
+
transition: gap var(--ardo-transition-fast);
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.ardo-feature-link:hover {
|
|
1474
|
+
gap: 8px;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.ardo-feature-link::after {
|
|
1478
|
+
content: "\2192";
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
/* Features title and subtitle */
|
|
1482
|
+
.ardo-features-header {
|
|
1483
|
+
text-align: center;
|
|
1484
|
+
margin-bottom: 48px;
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
.ardo-features-title {
|
|
1488
|
+
font-size: 36px;
|
|
1489
|
+
font-weight: 700;
|
|
1490
|
+
letter-spacing: -0.02em;
|
|
1491
|
+
margin-bottom: 12px;
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
.ardo-features-subtitle {
|
|
1495
|
+
font-size: 18px;
|
|
1496
|
+
color: var(--ardo-c-text-light);
|
|
1497
|
+
max-width: 560px;
|
|
1498
|
+
margin: 0 auto;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
/* ========================================
|
|
1502
|
+
Home Page Sections
|
|
1503
|
+
======================================== */
|
|
1504
|
+
.ardo-home-section {
|
|
1505
|
+
padding: 80px 24px;
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
.ardo-home-section-alt {
|
|
1509
|
+
background: var(--ardo-c-bg-soft);
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
.ardo-home-section-container {
|
|
1513
|
+
max-width: 1100px;
|
|
1514
|
+
margin: 0 auto;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.ardo-home-section-title {
|
|
1518
|
+
font-size: 36px;
|
|
1519
|
+
font-weight: 700;
|
|
1520
|
+
text-align: center;
|
|
1521
|
+
letter-spacing: -0.02em;
|
|
1522
|
+
margin-bottom: 12px;
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.ardo-home-section-subtitle {
|
|
1526
|
+
font-size: 18px;
|
|
1527
|
+
color: var(--ardo-c-text-light);
|
|
1528
|
+
text-align: center;
|
|
1529
|
+
max-width: 560px;
|
|
1530
|
+
margin: 0 auto 48px;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
/* ========================================
|
|
1534
|
+
Terminal Section
|
|
1535
|
+
======================================== */
|
|
1536
|
+
.ardo-home-terminal {
|
|
1537
|
+
max-width: 600px;
|
|
1538
|
+
margin: 0 auto;
|
|
1539
|
+
border-radius: var(--ardo-radius-lg);
|
|
1540
|
+
overflow: hidden;
|
|
1541
|
+
background: #1e1e1e;
|
|
1542
|
+
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
.dark .ardo-home-terminal {
|
|
1546
|
+
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
.ardo-home-terminal-header {
|
|
1550
|
+
display: flex;
|
|
1551
|
+
gap: 8px;
|
|
1552
|
+
padding: 14px 16px;
|
|
1553
|
+
background: #323232;
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
.ardo-home-terminal-dot {
|
|
1557
|
+
width: 12px;
|
|
1558
|
+
height: 12px;
|
|
1559
|
+
border-radius: 50%;
|
|
1560
|
+
background: #ff5f56;
|
|
1561
|
+
}
|
|
1562
|
+
|
|
1563
|
+
.ardo-home-terminal-dot:nth-child(2) {
|
|
1564
|
+
background: #ffbd2e;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
.ardo-home-terminal-dot:nth-child(3) {
|
|
1568
|
+
background: #27ca40;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
.ardo-home-terminal-body {
|
|
1572
|
+
padding: 20px 24px;
|
|
1573
|
+
font-family: var(--ardo-font-mono);
|
|
1574
|
+
font-size: 14px;
|
|
1575
|
+
line-height: 1.8;
|
|
1576
|
+
color: #e0e0e0;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
.ardo-home-terminal-prompt {
|
|
1580
|
+
color: #27ca40;
|
|
1581
|
+
margin-right: 8px;
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
.ardo-home-terminal-success {
|
|
1585
|
+
color: #27ca40;
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
.ardo-home-terminal-link {
|
|
1589
|
+
color: #61afef;
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
/* ========================================
|
|
1593
|
+
Code Example Section
|
|
1594
|
+
======================================== */
|
|
1595
|
+
.ardo-home-code-example {
|
|
1596
|
+
max-width: 700px;
|
|
1597
|
+
margin: 0 auto;
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
.ardo-home-code-block {
|
|
1601
|
+
border-radius: var(--ardo-radius-lg);
|
|
1602
|
+
overflow: hidden;
|
|
1603
|
+
background: var(--ardo-code-bg);
|
|
1604
|
+
border: 1px solid var(--ardo-code-border);
|
|
1605
|
+
box-shadow: var(--ardo-code-shadow);
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
.ardo-home-code-header {
|
|
1609
|
+
padding: 12px 16px;
|
|
1610
|
+
background: var(--ardo-code-border);
|
|
1611
|
+
font-size: 13px;
|
|
1612
|
+
font-weight: 500;
|
|
1613
|
+
font-family: var(--ardo-font-mono);
|
|
1614
|
+
color: var(--ardo-c-text-light);
|
|
1615
|
+
border-bottom: 1px solid var(--ardo-code-border);
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
.ardo-home-code-content {
|
|
1619
|
+
padding: 20px 24px;
|
|
1620
|
+
margin: 0;
|
|
1621
|
+
overflow-x: auto;
|
|
1622
|
+
font-family: var(--ardo-font-mono);
|
|
1623
|
+
font-size: 14px;
|
|
1624
|
+
line-height: 1.7;
|
|
1625
|
+
color: var(--ardo-c-text);
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
.dark .ardo-home-code-content {
|
|
1629
|
+
color: #e2e8f0;
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
/* ========================================
|
|
1633
|
+
Comparison Table Section
|
|
1634
|
+
======================================== */
|
|
1635
|
+
.ardo-home-comparison {
|
|
1636
|
+
overflow-x: auto;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
.ardo-home-comparison-table {
|
|
1640
|
+
width: 100%;
|
|
1641
|
+
border-collapse: collapse;
|
|
1642
|
+
font-size: 14px;
|
|
1643
|
+
min-width: 600px;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
.ardo-home-comparison-table th,
|
|
1647
|
+
.ardo-home-comparison-table td {
|
|
1648
|
+
padding: 14px 18px;
|
|
1649
|
+
text-align: center;
|
|
1650
|
+
border: 1px solid var(--ardo-c-border);
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.ardo-home-comparison-table th {
|
|
1654
|
+
background: var(--ardo-c-bg-soft);
|
|
1655
|
+
font-weight: 600;
|
|
1656
|
+
font-size: 15px;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
.ardo-home-comparison-table td:first-child {
|
|
1660
|
+
text-align: left;
|
|
1661
|
+
font-weight: 500;
|
|
1662
|
+
background: var(--ardo-c-bg-soft);
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
.ardo-home-comparison-highlight {
|
|
1666
|
+
background: var(--ardo-c-brand-subtle) !important;
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
.ardo-home-comparison-table th.ardo-home-comparison-highlight {
|
|
1670
|
+
color: var(--ardo-c-brand);
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
.ardo-home-check {
|
|
1674
|
+
color: var(--ardo-c-tip);
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.ardo-home-x {
|
|
1678
|
+
color: var(--ardo-c-text-lighter);
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
.ardo-home-comparison-cta {
|
|
1682
|
+
text-align: center;
|
|
1683
|
+
margin-top: 24px;
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
.ardo-home-link {
|
|
1687
|
+
display: inline-flex;
|
|
1688
|
+
align-items: center;
|
|
1689
|
+
gap: 6px;
|
|
1690
|
+
color: var(--ardo-c-brand);
|
|
1691
|
+
font-weight: 500;
|
|
1692
|
+
text-decoration: none;
|
|
1693
|
+
transition: gap var(--ardo-transition-fast);
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
.ardo-home-link:hover {
|
|
1697
|
+
gap: 10px;
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
/* ========================================
|
|
1701
|
+
Tech Stack Grid
|
|
1702
|
+
======================================== */
|
|
1703
|
+
.ardo-home-tech-grid {
|
|
1704
|
+
display: grid;
|
|
1705
|
+
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
|
|
1706
|
+
gap: 20px;
|
|
1707
|
+
max-width: 800px;
|
|
1708
|
+
margin: 0 auto;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
.ardo-home-tech-item {
|
|
1712
|
+
display: flex;
|
|
1713
|
+
flex-direction: column;
|
|
1714
|
+
align-items: center;
|
|
1715
|
+
gap: 12px;
|
|
1716
|
+
padding: 24px 16px;
|
|
1717
|
+
background: var(--ardo-c-bg);
|
|
1718
|
+
border-radius: var(--ardo-radius-lg);
|
|
1719
|
+
border: 1px solid var(--ardo-c-border);
|
|
1720
|
+
transition: all var(--ardo-transition);
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
.ardo-home-tech-item:hover {
|
|
1724
|
+
border-color: var(--ardo-c-brand);
|
|
1725
|
+
transform: translateY(-2px);
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
.ardo-home-tech-icon {
|
|
1729
|
+
display: flex;
|
|
1730
|
+
align-items: center;
|
|
1731
|
+
justify-content: center;
|
|
1732
|
+
width: 56px;
|
|
1733
|
+
height: 56px;
|
|
1734
|
+
background: var(--ardo-c-brand-subtle);
|
|
1735
|
+
border-radius: var(--ardo-radius);
|
|
1736
|
+
color: var(--ardo-c-brand);
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
.ardo-home-tech-item span {
|
|
1740
|
+
font-weight: 600;
|
|
1741
|
+
font-size: 14px;
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
/* ========================================
|
|
1745
|
+
CTA Section
|
|
1746
|
+
======================================== */
|
|
1747
|
+
.ardo-home-cta-section {
|
|
1748
|
+
background: linear-gradient(180deg, var(--ardo-c-bg) 0%, var(--ardo-c-brand-subtle) 100%);
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
.dark .ardo-home-cta-section {
|
|
1752
|
+
background: linear-gradient(
|
|
1753
|
+
180deg,
|
|
1754
|
+
var(--ardo-c-bg) 0%,
|
|
1755
|
+
oklch(0.18 0.04 var(--ardo-brand-h)) 100%
|
|
1756
|
+
);
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
.ardo-home-cta-buttons {
|
|
1760
|
+
display: flex;
|
|
1761
|
+
justify-content: center;
|
|
1762
|
+
gap: 16px;
|
|
1763
|
+
flex-wrap: wrap;
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
.ardo-home-cta-primary,
|
|
1767
|
+
.ardo-home-cta-secondary {
|
|
1768
|
+
display: inline-flex;
|
|
1769
|
+
align-items: center;
|
|
1770
|
+
gap: 10px;
|
|
1771
|
+
padding: 16px 32px;
|
|
1772
|
+
font-size: 16px;
|
|
1773
|
+
font-weight: 600;
|
|
1774
|
+
text-decoration: none;
|
|
1775
|
+
border-radius: var(--ardo-radius);
|
|
1776
|
+
transition: all var(--ardo-transition);
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1779
|
+
.ardo-home-cta-primary {
|
|
1780
|
+
background: var(--ardo-c-brand);
|
|
1781
|
+
color: white;
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
.ardo-home-cta-primary:hover {
|
|
1785
|
+
background: var(--ardo-c-brand-dark);
|
|
1786
|
+
transform: translateY(-2px);
|
|
1787
|
+
box-shadow: 0 8px 24px oklch(var(--ardo-brand-l) var(--ardo-brand-c) var(--ardo-brand-h) / 0.3);
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
.ardo-home-cta-secondary {
|
|
1791
|
+
background: var(--ardo-c-bg);
|
|
1792
|
+
color: var(--ardo-c-text);
|
|
1793
|
+
border: 1px solid var(--ardo-c-border);
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
.ardo-home-cta-secondary:hover {
|
|
1797
|
+
border-color: var(--ardo-c-brand);
|
|
1798
|
+
color: var(--ardo-c-brand);
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
/* Responsive */
|
|
1802
|
+
@media (max-width: 1024px) {
|
|
1803
|
+
.ardo-doc-page {
|
|
1804
|
+
padding-left: 0;
|
|
1805
|
+
}
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
@media (max-width: 768px) {
|
|
1809
|
+
.ardo-hero {
|
|
1810
|
+
padding: 60px 20px;
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
.ardo-hero-name {
|
|
1814
|
+
font-size: 40px;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
.ardo-hero-text {
|
|
1818
|
+
font-size: 28px;
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
.ardo-hero-tagline {
|
|
1822
|
+
font-size: 16px;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
.ardo-features {
|
|
1826
|
+
padding: 48px 16px;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
.ardo-home-section {
|
|
1830
|
+
padding: 48px 16px;
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
.ardo-home-section-title {
|
|
1834
|
+
font-size: 28px;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
.ardo-home-section-subtitle {
|
|
1838
|
+
font-size: 16px;
|
|
1839
|
+
margin-bottom: 32px;
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
.ardo-features-title {
|
|
1843
|
+
font-size: 28px;
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
.ardo-features-subtitle {
|
|
1847
|
+
font-size: 16px;
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1850
|
+
.ardo-home-terminal-body {
|
|
1851
|
+
font-size: 12px;
|
|
1852
|
+
padding: 16px;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.ardo-home-tech-grid {
|
|
1856
|
+
grid-template-columns: repeat(2, 1fr);
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.ardo-home-cta-primary,
|
|
1860
|
+
.ardo-home-cta-secondary {
|
|
1861
|
+
width: 100%;
|
|
1862
|
+
justify-content: center;
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
/* ================================
|
|
1867
|
+
API Documentation Styles
|
|
1868
|
+
================================ */
|
|
1869
|
+
|
|
1870
|
+
/* API Item */
|
|
1871
|
+
.ardo-api-item {
|
|
1872
|
+
margin: 28px 0;
|
|
1873
|
+
padding-bottom: 28px;
|
|
1874
|
+
border-bottom: 1px solid var(--ardo-c-border);
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
.ardo-api-item:last-child {
|
|
1878
|
+
border-bottom: none;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
.ardo-api-item-title {
|
|
1882
|
+
display: flex;
|
|
1883
|
+
align-items: center;
|
|
1884
|
+
gap: 12px;
|
|
1885
|
+
margin-bottom: 12px;
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
.ardo-api-item-name {
|
|
1889
|
+
font-family: var(--ardo-font-mono);
|
|
1890
|
+
font-weight: 600;
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
.ardo-api-anchor {
|
|
1894
|
+
color: var(--ardo-c-text-lighter);
|
|
1895
|
+
text-decoration: none;
|
|
1896
|
+
opacity: 0;
|
|
1897
|
+
transition: opacity var(--ardo-transition-fast);
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
.ardo-api-item-title:hover .ardo-api-anchor {
|
|
1901
|
+
opacity: 1;
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
.ardo-api-item-description {
|
|
1905
|
+
color: var(--ardo-c-text-light);
|
|
1906
|
+
margin-bottom: 16px;
|
|
1907
|
+
line-height: 1.6;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
/* API Badges */
|
|
1911
|
+
.ardo-api-badge {
|
|
1912
|
+
display: inline-flex;
|
|
1913
|
+
padding: 3px 10px;
|
|
1914
|
+
font-size: 11px;
|
|
1915
|
+
font-weight: 600;
|
|
1916
|
+
text-transform: uppercase;
|
|
1917
|
+
letter-spacing: 0.05em;
|
|
1918
|
+
border-radius: var(--ardo-radius-sm);
|
|
1919
|
+
border: 1px solid;
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
.ardo-api-badge-class {
|
|
1923
|
+
background: #eff6ff;
|
|
1924
|
+
border-color: #bfdbfe;
|
|
1925
|
+
color: #1e40af;
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
.dark .ardo-api-badge-class {
|
|
1929
|
+
background: #1e3a8a;
|
|
1930
|
+
border-color: #3b82f6;
|
|
1931
|
+
color: #93c5fd;
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
.ardo-api-badge-interface {
|
|
1935
|
+
background: #ecfdf5;
|
|
1936
|
+
border-color: #a7f3d0;
|
|
1937
|
+
color: #065f46;
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
.dark .ardo-api-badge-interface {
|
|
1941
|
+
background: #064e3b;
|
|
1942
|
+
border-color: #10b981;
|
|
1943
|
+
color: #6ee7b7;
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
.ardo-api-badge-type {
|
|
1947
|
+
background: #fffbeb;
|
|
1948
|
+
border-color: #fde68a;
|
|
1949
|
+
color: #92400e;
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
.dark .ardo-api-badge-type {
|
|
1953
|
+
background: #78350f;
|
|
1954
|
+
border-color: #f59e0b;
|
|
1955
|
+
color: #fcd34d;
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
.ardo-api-badge-enum {
|
|
1959
|
+
background: #f5f3ff;
|
|
1960
|
+
border-color: #ddd6fe;
|
|
1961
|
+
color: #5b21b6;
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
.dark .ardo-api-badge-enum {
|
|
1965
|
+
background: #4c1d95;
|
|
1966
|
+
border-color: #8b5cf6;
|
|
1967
|
+
color: #c4b5fd;
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
.ardo-api-badge-function {
|
|
1971
|
+
background: #fdf2f8;
|
|
1972
|
+
border-color: #fbcfe8;
|
|
1973
|
+
color: #9d174d;
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
.dark .ardo-api-badge-function {
|
|
1977
|
+
background: #831843;
|
|
1978
|
+
border-color: #ec4899;
|
|
1979
|
+
color: #f9a8d4;
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
.ardo-api-badge-method {
|
|
1983
|
+
background: #f0f9ff;
|
|
1984
|
+
border-color: #bae6fd;
|
|
1985
|
+
color: #0369a1;
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
.dark .ardo-api-badge-method {
|
|
1989
|
+
background: #0c4a6e;
|
|
1990
|
+
border-color: #0ea5e9;
|
|
1991
|
+
color: #7dd3fc;
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
.ardo-api-badge-property {
|
|
1995
|
+
background: #faf5ff;
|
|
1996
|
+
border-color: #e9d5ff;
|
|
1997
|
+
color: #7c3aed;
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
.dark .ardo-api-badge-property {
|
|
2001
|
+
background: #581c87;
|
|
2002
|
+
border-color: #a855f7;
|
|
2003
|
+
color: #c4b5fd;
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
/* API Signature */
|
|
2007
|
+
.ardo-api-signature {
|
|
2008
|
+
margin: 16px 0;
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
.ardo-api-signature-code {
|
|
2012
|
+
padding: 16px;
|
|
2013
|
+
background: var(--ardo-c-bg-soft);
|
|
2014
|
+
border: 1px solid var(--ardo-c-border);
|
|
2015
|
+
border-radius: var(--ardo-radius);
|
|
2016
|
+
overflow-x: auto;
|
|
2017
|
+
font-family: var(--ardo-font-mono);
|
|
2018
|
+
font-size: 14px;
|
|
2019
|
+
line-height: 1.5;
|
|
2020
|
+
}
|
|
2021
|
+
|
|
2022
|
+
.ardo-api-keyword {
|
|
2023
|
+
color: #cf222e;
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
.dark .ardo-api-keyword {
|
|
2027
|
+
color: #ff7b72;
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
.ardo-api-function-name {
|
|
2031
|
+
color: #8250df;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
.dark .ardo-api-function-name {
|
|
2035
|
+
color: #d2a8ff;
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
.ardo-api-type-params {
|
|
2039
|
+
color: #0550ae;
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
.dark .ardo-api-type-params {
|
|
2043
|
+
color: #79c0ff;
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
.ardo-api-params {
|
|
2047
|
+
color: var(--ardo-c-text);
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
.ardo-api-return-type {
|
|
2051
|
+
color: #0550ae;
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
.dark .ardo-api-return-type {
|
|
2055
|
+
color: #79c0ff;
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
/* API Section Titles */
|
|
2059
|
+
.ardo-api-section-title {
|
|
2060
|
+
font-size: 13px;
|
|
2061
|
+
font-weight: 600;
|
|
2062
|
+
text-transform: uppercase;
|
|
2063
|
+
letter-spacing: 0.05em;
|
|
2064
|
+
color: var(--ardo-c-text-lighter);
|
|
2065
|
+
margin-top: 24px;
|
|
2066
|
+
margin-bottom: 12px;
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
/* API Tables */
|
|
2070
|
+
.ardo-api-table {
|
|
2071
|
+
width: 100%;
|
|
2072
|
+
margin: 12px 0;
|
|
2073
|
+
border-collapse: collapse;
|
|
2074
|
+
font-size: 14px;
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
.ardo-api-table th,
|
|
2078
|
+
.ardo-api-table td {
|
|
2079
|
+
padding: 12px 14px;
|
|
2080
|
+
border: 1px solid var(--ardo-c-border);
|
|
2081
|
+
text-align: left;
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
.ardo-api-table th {
|
|
2085
|
+
background: var(--ardo-c-bg-soft);
|
|
2086
|
+
font-weight: 600;
|
|
2087
|
+
font-size: 12px;
|
|
2088
|
+
text-transform: uppercase;
|
|
2089
|
+
letter-spacing: 0.05em;
|
|
2090
|
+
color: var(--ardo-c-text-lighter);
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
.ardo-api-table code {
|
|
2094
|
+
font-size: 13px;
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
.ardo-api-optional {
|
|
2098
|
+
font-size: 11px;
|
|
2099
|
+
color: var(--ardo-c-text-lighter);
|
|
2100
|
+
margin-left: 6px;
|
|
2101
|
+
}
|
|
2102
|
+
|
|
2103
|
+
.ardo-api-default {
|
|
2104
|
+
display: block;
|
|
2105
|
+
margin-top: 4px;
|
|
2106
|
+
font-size: 12px;
|
|
2107
|
+
color: var(--ardo-c-text-lighter);
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
/* API Returns */
|
|
2111
|
+
.ardo-api-returns {
|
|
2112
|
+
margin: 16px 0;
|
|
2113
|
+
}
|
|
2114
|
+
|
|
2115
|
+
.ardo-api-returns code {
|
|
2116
|
+
font-size: 14px;
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
/* API Examples */
|
|
2120
|
+
.ardo-api-examples {
|
|
2121
|
+
margin: 16px 0;
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
.ardo-api-example {
|
|
2125
|
+
margin: 8px 0;
|
|
2126
|
+
padding: 16px;
|
|
2127
|
+
background: var(--ardo-c-bg-soft);
|
|
2128
|
+
border: 1px solid var(--ardo-c-border);
|
|
2129
|
+
border-radius: var(--ardo-radius);
|
|
2130
|
+
overflow-x: auto;
|
|
2131
|
+
font-family: var(--ardo-font-mono);
|
|
2132
|
+
font-size: 14px;
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
/* API Source Link */
|
|
2136
|
+
.ardo-api-source {
|
|
2137
|
+
margin-top: 16px;
|
|
2138
|
+
font-size: 12px;
|
|
2139
|
+
color: var(--ardo-c-text-lighter);
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
.ardo-api-source a {
|
|
2143
|
+
color: var(--ardo-c-brand);
|
|
2144
|
+
text-decoration: none;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
.ardo-api-source a:hover {
|
|
2148
|
+
text-decoration: underline;
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
/* API Hierarchy */
|
|
2152
|
+
.ardo-api-hierarchy {
|
|
2153
|
+
margin: 16px 0;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
.ardo-api-hierarchy-list {
|
|
2157
|
+
list-style: none;
|
|
2158
|
+
padding: 0;
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
.ardo-api-hierarchy-list li {
|
|
2162
|
+
display: flex;
|
|
2163
|
+
align-items: center;
|
|
2164
|
+
gap: 8px;
|
|
2165
|
+
margin-bottom: 6px;
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2168
|
+
.ardo-api-hierarchy-label {
|
|
2169
|
+
font-size: 12px;
|
|
2170
|
+
color: var(--ardo-c-text-lighter);
|
|
2171
|
+
min-width: 100px;
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
/* API Children (nested items) */
|
|
2175
|
+
.ardo-api-children {
|
|
2176
|
+
margin-top: 24px;
|
|
2177
|
+
padding-left: 20px;
|
|
2178
|
+
border-left: 2px solid var(--ardo-c-border);
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
/* API Parameters */
|
|
2182
|
+
.ardo-api-parameters {
|
|
2183
|
+
margin: 16px 0;
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
/* ========================================
|
|
2187
|
+
Focus States - Accessibility
|
|
2188
|
+
======================================== */
|
|
2189
|
+
:focus-visible {
|
|
2190
|
+
outline: 2px solid var(--ardo-c-brand);
|
|
2191
|
+
outline-offset: 2px;
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2194
|
+
button:focus-visible,
|
|
2195
|
+
a:focus-visible {
|
|
2196
|
+
outline: 2px solid var(--ardo-c-brand);
|
|
2197
|
+
outline-offset: 2px;
|
|
2198
|
+
}
|