@bluedynamics/cdk8s-plone 0.1.4 → 0.1.6
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/.jsii +26 -7
- package/API.md +16 -0
- package/CLAUDE.md +352 -0
- package/README.md +55 -178
- package/documentation/Makefile +357 -0
- package/documentation/README.md +284 -0
- package/documentation/mx.ini +3 -0
- package/documentation/sources/_static/brand-theme.css +685 -0
- package/documentation/sources/_static/custom-icons.css +123 -0
- package/documentation/sources/_static/fonts/hack/Hack-Regular.woff2 +0 -0
- package/documentation/sources/_static/fonts/orbitron/Orbitron-Black.woff2 +11 -0
- package/documentation/sources/_static/fonts/orbitron/Orbitron-Bold.woff2 +11 -0
- package/documentation/sources/_static/fonts/orbitron/Orbitron-Regular.woff2 +0 -0
- package/documentation/sources/_static/fonts/rajdhani/Rajdhani-Bold.woff2 +11 -0
- package/documentation/sources/_static/fonts/rajdhani/Rajdhani-Medium.woff2 +11 -0
- package/documentation/sources/_static/fonts/rajdhani/Rajdhani-Regular.woff2 +11 -0
- package/documentation/sources/_static/fonts/rajdhani/Rajdhani-SemiBold.woff2 +11 -0
- package/documentation/sources/_static/kup6s-icon-explanation.svg +32 -0
- package/documentation/sources/_static/kup6s-icon-howto.svg +34 -0
- package/documentation/sources/_static/kup6s-icon-plone.svg +79 -0
- package/documentation/sources/_static/kup6s-icon-reference.svg +34 -0
- package/documentation/sources/_static/kup6s-icon-tutorials.svg +30 -0
- package/documentation/sources/_static/logo-fix.js +12 -0
- package/documentation/sources/conf.py +105 -0
- package/documentation/sources/explanation/architecture.md +311 -0
- package/documentation/sources/explanation/features.md +353 -0
- package/documentation/sources/explanation/index.md +51 -0
- package/documentation/sources/how-to/index.md +56 -0
- package/documentation/sources/how-to/setup-prerequisites.md +354 -0
- package/documentation/sources/index.md +108 -0
- package/documentation/sources/reference/api/.gitkeep +1 -0
- package/documentation/sources/reference/configuration-options.md +370 -0
- package/documentation/sources/reference/index.md +59 -0
- package/documentation/sources/tutorials/01-quick-start.md +157 -0
- package/documentation/sources/tutorials/index.md +48 -0
- package/lib/httpcache.d.ts +6 -0
- package/lib/httpcache.js +4 -2
- package/lib/plone.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,685 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* kup6s Brand Theme for Sphinx Documentation
|
|
3
|
+
* Cyberpunk-inspired design with cyan/magenta color scheme
|
|
4
|
+
* Brand Guidelines v1.0 - November 2025
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ==========================================================================
|
|
8
|
+
FONT DECLARATIONS
|
|
9
|
+
========================================================================== */
|
|
10
|
+
|
|
11
|
+
/* Rajdhani - Headings (weights: 400, 500, 600, 700) */
|
|
12
|
+
@font-face {
|
|
13
|
+
font-family: 'Rajdhani';
|
|
14
|
+
src: url('fonts/rajdhani/Rajdhani-Regular.woff2') format('woff2');
|
|
15
|
+
font-weight: 400;
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-display: swap;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@font-face {
|
|
21
|
+
font-family: 'Rajdhani';
|
|
22
|
+
src: url('fonts/rajdhani/Rajdhani-Medium.woff2') format('woff2');
|
|
23
|
+
font-weight: 500;
|
|
24
|
+
font-style: normal;
|
|
25
|
+
font-display: swap;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@font-face {
|
|
29
|
+
font-family: 'Rajdhani';
|
|
30
|
+
src: url('fonts/rajdhani/Rajdhani-SemiBold.woff2') format('woff2');
|
|
31
|
+
font-weight: 600;
|
|
32
|
+
font-style: normal;
|
|
33
|
+
font-display: swap;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@font-face {
|
|
37
|
+
font-family: 'Rajdhani';
|
|
38
|
+
src: url('fonts/rajdhani/Rajdhani-Bold.woff2') format('woff2');
|
|
39
|
+
font-weight: 700;
|
|
40
|
+
font-style: normal;
|
|
41
|
+
font-display: swap;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* Orbitron - Special emphasis (weights: 400, 700, 900) */
|
|
45
|
+
@font-face {
|
|
46
|
+
font-family: 'Orbitron';
|
|
47
|
+
src: url('fonts/orbitron/Orbitron-Regular.woff2') format('woff2');
|
|
48
|
+
font-weight: 400;
|
|
49
|
+
font-style: normal;
|
|
50
|
+
font-display: swap;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@font-face {
|
|
54
|
+
font-family: 'Orbitron';
|
|
55
|
+
src: url('fonts/orbitron/Orbitron-Bold.woff2') format('woff2');
|
|
56
|
+
font-weight: 700;
|
|
57
|
+
font-style: normal;
|
|
58
|
+
font-display: swap;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@font-face {
|
|
62
|
+
font-family: 'Orbitron';
|
|
63
|
+
src: url('fonts/orbitron/Orbitron-Black.woff2') format('woff2');
|
|
64
|
+
font-weight: 900;
|
|
65
|
+
font-style: normal;
|
|
66
|
+
font-display: swap;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/* Hack - Monospace body and code (weight: 400) */
|
|
70
|
+
@font-face {
|
|
71
|
+
font-family: 'Hack';
|
|
72
|
+
src: url('fonts/hack/Hack-Regular.woff2') format('woff2');
|
|
73
|
+
font-weight: 400;
|
|
74
|
+
font-style: normal;
|
|
75
|
+
font-display: swap;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/* ==========================================================================
|
|
79
|
+
SHIBUYA THEME VARIABLES - DARK MODE
|
|
80
|
+
========================================================================== */
|
|
81
|
+
|
|
82
|
+
html.dark {
|
|
83
|
+
/* Brand Colors */
|
|
84
|
+
--sy-c-text: #e0e0e0 !important; /* Primary text - light gray */
|
|
85
|
+
--sy-c-light: #a0a0a0 !important; /* Secondary text - dimmed gray */
|
|
86
|
+
--sy-c-bold: #00d4ff !important; /* Emphasized text - cyan */
|
|
87
|
+
--sy-c-heading: #00d4ff !important; /* Heading color - cyan */
|
|
88
|
+
--sy-c-link: #00d4ff !important; /* Link color - cyan */
|
|
89
|
+
--sy-c-link-hover: #ff00ff !important; /* Link hover - magenta */
|
|
90
|
+
--sy-c-background: #0a0e27 !important; /* Dark background */
|
|
91
|
+
--sy-c-border: rgba(0, 212, 255, 0.3) !important; /* Cyan border with transparency */
|
|
92
|
+
--sy-c-divider: rgba(0, 212, 255, 0.2) !important; /* Divider lines */
|
|
93
|
+
|
|
94
|
+
/* Brand Fonts - CRITICAL: Override theme defaults */
|
|
95
|
+
--sy-f-heading: 'Rajdhani', sans-serif !important; /* Headings */
|
|
96
|
+
--sy-f-text: 'Hack', monospace !important; /* Body text */
|
|
97
|
+
--sy-f-mono: 'Hack', monospace !important; /* Code blocks */
|
|
98
|
+
|
|
99
|
+
/* Accent Color Overrides (Cyan) */
|
|
100
|
+
--accent-9: #00d4ff; /* Primary accent */
|
|
101
|
+
--accent-a9: rgba(0, 212, 255, 0.9); /* Accent with alpha */
|
|
102
|
+
--accent-a3: rgba(0, 212, 255, 0.3); /* Subtle accent */
|
|
103
|
+
--accent-a2: rgba(0, 212, 255, 0.2); /* Very subtle accent */
|
|
104
|
+
|
|
105
|
+
/* Brand-specific colors for custom elements */
|
|
106
|
+
--brand-cyan: #00d4ff;
|
|
107
|
+
--brand-magenta: #ff00ff;
|
|
108
|
+
--brand-dark-bg: #0a0e27;
|
|
109
|
+
--brand-dark-card: #151a35;
|
|
110
|
+
--brand-text: #e0e0e0;
|
|
111
|
+
--brand-text-dim: #a0a0a0;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/* ==========================================================================
|
|
115
|
+
TYPOGRAPHY ENHANCEMENTS
|
|
116
|
+
========================================================================== */
|
|
117
|
+
|
|
118
|
+
/* H1 - Page titles */
|
|
119
|
+
h1, .sy-c h1 {
|
|
120
|
+
font-family: 'Rajdhani', sans-serif !important;
|
|
121
|
+
font-weight: 700 !important;
|
|
122
|
+
font-size: 3.5rem !important;
|
|
123
|
+
color: #00d4ff !important;
|
|
124
|
+
text-transform: uppercase !important;
|
|
125
|
+
letter-spacing: 2px !important;
|
|
126
|
+
margin-top: 0;
|
|
127
|
+
margin-bottom: 1.5rem;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/* H2 - Section headers */
|
|
131
|
+
h2, .sy-c h2 {
|
|
132
|
+
font-family: 'Rajdhani', sans-serif !important;
|
|
133
|
+
font-weight: 700 !important;
|
|
134
|
+
font-size: 2.2rem !important;
|
|
135
|
+
color: #00d4ff !important;
|
|
136
|
+
text-transform: uppercase !important;
|
|
137
|
+
letter-spacing: 1px !important;
|
|
138
|
+
margin-top: 3rem;
|
|
139
|
+
margin-bottom: 1.25rem;
|
|
140
|
+
border-bottom: 2px solid #00d4ff !important;
|
|
141
|
+
padding-bottom: 0.5rem;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* H3 - Subsection headers */
|
|
145
|
+
h3, .sy-c h3 {
|
|
146
|
+
font-family: 'Rajdhani', sans-serif !important;
|
|
147
|
+
font-weight: 600 !important;
|
|
148
|
+
font-size: 1.6rem !important;
|
|
149
|
+
color: #ff00ff !important;
|
|
150
|
+
text-transform: uppercase !important;
|
|
151
|
+
margin-top: 2.5rem;
|
|
152
|
+
margin-bottom: 1rem;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/* H4 - Minor headers */
|
|
156
|
+
h4, .sy-c h4 {
|
|
157
|
+
font-family: 'Rajdhani', sans-serif !important;
|
|
158
|
+
font-weight: 600 !important;
|
|
159
|
+
font-size: 1.2rem !important;
|
|
160
|
+
color: #00d4ff !important;
|
|
161
|
+
margin-top: 2rem;
|
|
162
|
+
margin-bottom: 0.75rem;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/* H5, H6 */
|
|
166
|
+
h5, h6, .sy-c h5, .sy-c h6 {
|
|
167
|
+
font-family: 'Rajdhani', sans-serif !important;
|
|
168
|
+
font-weight: 500 !important;
|
|
169
|
+
color: #e0e0e0 !important;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/* Body text */
|
|
173
|
+
p, li, body, .sy-c {
|
|
174
|
+
font-family: 'Hack', monospace !important;
|
|
175
|
+
font-size: 0.95rem;
|
|
176
|
+
line-height: 1.7;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/* Strong/Bold text - cyan accent */
|
|
180
|
+
strong, b {
|
|
181
|
+
color: var(--brand-cyan);
|
|
182
|
+
font-weight: 600;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
/* Emphasis */
|
|
186
|
+
em, i {
|
|
187
|
+
color: var(--brand-text);
|
|
188
|
+
font-style: italic;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/* ==========================================================================
|
|
192
|
+
CODE BLOCKS & INLINE CODE
|
|
193
|
+
========================================================================== */
|
|
194
|
+
|
|
195
|
+
/* Inline code */
|
|
196
|
+
code {
|
|
197
|
+
font-family: 'Hack', monospace;
|
|
198
|
+
background: var(--brand-dark-card);
|
|
199
|
+
color: var(--brand-cyan);
|
|
200
|
+
padding: 2px 6px;
|
|
201
|
+
border-radius: 3px;
|
|
202
|
+
font-size: 0.9rem;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
/* Code blocks */
|
|
206
|
+
pre {
|
|
207
|
+
font-family: 'Hack', monospace;
|
|
208
|
+
background: var(--brand-dark-card);
|
|
209
|
+
border-left: 4px solid var(--brand-magenta);
|
|
210
|
+
padding: 1.25rem;
|
|
211
|
+
overflow-x: auto;
|
|
212
|
+
font-size: 0.9rem;
|
|
213
|
+
line-height: 1.6;
|
|
214
|
+
border-radius: 4px;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
pre code {
|
|
218
|
+
background: transparent;
|
|
219
|
+
padding: 0;
|
|
220
|
+
color: var(--brand-text);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/* Literal blocks */
|
|
224
|
+
.literal-block-wrapper {
|
|
225
|
+
margin: 1.5rem 0;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.literal-block-wrapper .code-block-caption {
|
|
229
|
+
font-family: 'Rajdhani', sans-serif;
|
|
230
|
+
font-weight: 600;
|
|
231
|
+
color: var(--brand-cyan);
|
|
232
|
+
text-transform: uppercase;
|
|
233
|
+
font-size: 0.85rem;
|
|
234
|
+
margin-bottom: 0.5rem;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/* ==========================================================================
|
|
238
|
+
TABLES
|
|
239
|
+
========================================================================== */
|
|
240
|
+
|
|
241
|
+
table {
|
|
242
|
+
width: 100%;
|
|
243
|
+
border-collapse: collapse;
|
|
244
|
+
margin: 1.5rem 0;
|
|
245
|
+
font-size: 0.9rem;
|
|
246
|
+
background: var(--brand-dark-card);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
thead {
|
|
250
|
+
background: var(--brand-dark-card);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
th {
|
|
254
|
+
font-family: 'Rajdhani', sans-serif;
|
|
255
|
+
font-weight: 600;
|
|
256
|
+
color: var(--brand-cyan);
|
|
257
|
+
text-transform: uppercase;
|
|
258
|
+
padding: 0.75rem;
|
|
259
|
+
text-align: left;
|
|
260
|
+
border: 1px solid rgba(0, 212, 255, 0.3);
|
|
261
|
+
letter-spacing: 0.5px;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
td {
|
|
265
|
+
padding: 0.75rem;
|
|
266
|
+
border: 1px solid rgba(0, 212, 255, 0.2);
|
|
267
|
+
color: var(--brand-text);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
tbody tr:hover {
|
|
271
|
+
background: rgba(0, 212, 255, 0.05);
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
/* ==========================================================================
|
|
275
|
+
CARDS & PANELS (sphinx-design)
|
|
276
|
+
========================================================================== */
|
|
277
|
+
|
|
278
|
+
/* Cards with gradient top border */
|
|
279
|
+
.sd-card {
|
|
280
|
+
background: var(--brand-dark-card);
|
|
281
|
+
border: 1px solid rgba(0, 212, 255, 0.3);
|
|
282
|
+
position: relative;
|
|
283
|
+
padding: 1.25rem;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.sd-card::before {
|
|
287
|
+
content: '';
|
|
288
|
+
position: absolute;
|
|
289
|
+
top: 0;
|
|
290
|
+
left: 0;
|
|
291
|
+
right: 0;
|
|
292
|
+
height: 3px;
|
|
293
|
+
background: linear-gradient(90deg, var(--brand-cyan), var(--brand-magenta));
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.sd-card-title {
|
|
297
|
+
font-family: 'Rajdhani', sans-serif;
|
|
298
|
+
font-weight: 600;
|
|
299
|
+
color: var(--brand-cyan);
|
|
300
|
+
text-transform: uppercase;
|
|
301
|
+
font-size: 1.1rem;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.sd-card-text {
|
|
305
|
+
color: var(--brand-text);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
/* ==========================================================================
|
|
309
|
+
ADMONITIONS
|
|
310
|
+
========================================================================== */
|
|
311
|
+
|
|
312
|
+
.admonition {
|
|
313
|
+
background: var(--brand-dark-card);
|
|
314
|
+
border-left: 4px solid var(--brand-cyan);
|
|
315
|
+
padding: 1rem 1.25rem;
|
|
316
|
+
margin: 1.5rem 0;
|
|
317
|
+
border-radius: 4px;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.admonition-title {
|
|
321
|
+
font-family: 'Rajdhani', sans-serif;
|
|
322
|
+
font-weight: 600;
|
|
323
|
+
color: var(--brand-cyan);
|
|
324
|
+
text-transform: uppercase;
|
|
325
|
+
font-size: 1rem;
|
|
326
|
+
margin-bottom: 0.5rem;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.admonition.warning, .admonition.caution {
|
|
330
|
+
border-left-color: var(--brand-magenta);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.admonition.warning .admonition-title,
|
|
334
|
+
.admonition.caution .admonition-title {
|
|
335
|
+
color: var(--brand-magenta);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/* ==========================================================================
|
|
339
|
+
BUTTONS & BADGES
|
|
340
|
+
========================================================================== */
|
|
341
|
+
|
|
342
|
+
.btn, button, .sd-btn {
|
|
343
|
+
font-family: 'Rajdhani', sans-serif;
|
|
344
|
+
font-weight: 600;
|
|
345
|
+
text-transform: uppercase;
|
|
346
|
+
letter-spacing: 1px;
|
|
347
|
+
border: 2px solid var(--brand-cyan);
|
|
348
|
+
color: var(--brand-cyan);
|
|
349
|
+
background: transparent;
|
|
350
|
+
padding: 0.5rem 1rem;
|
|
351
|
+
transition: all 0.3s ease;
|
|
352
|
+
cursor: pointer;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.btn:hover, button:hover, .sd-btn:hover {
|
|
356
|
+
background: var(--brand-cyan);
|
|
357
|
+
color: var(--brand-dark-bg);
|
|
358
|
+
box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
/* Badges */
|
|
362
|
+
.badge {
|
|
363
|
+
display: inline-block;
|
|
364
|
+
padding: 0.25rem 0.75rem;
|
|
365
|
+
background: rgba(0, 212, 255, 0.1);
|
|
366
|
+
border: 1px solid var(--brand-cyan);
|
|
367
|
+
color: var(--brand-cyan);
|
|
368
|
+
font-size: 0.8rem;
|
|
369
|
+
font-weight: 600;
|
|
370
|
+
text-transform: uppercase;
|
|
371
|
+
letter-spacing: 0.5px;
|
|
372
|
+
border-radius: 3px;
|
|
373
|
+
margin-right: 0.5rem;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
/* ==========================================================================
|
|
377
|
+
CYBERPUNK DESIGN ELEMENTS
|
|
378
|
+
========================================================================== */
|
|
379
|
+
|
|
380
|
+
/* Glitch line decorators */
|
|
381
|
+
.divider, hr {
|
|
382
|
+
height: 1px;
|
|
383
|
+
background: linear-gradient(90deg, transparent, var(--brand-cyan), var(--brand-magenta), transparent);
|
|
384
|
+
border: none;
|
|
385
|
+
margin: 3rem 0;
|
|
386
|
+
opacity: 0.5;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
/* Section decorative elements */
|
|
390
|
+
.section {
|
|
391
|
+
position: relative;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
/* Corner brackets for major sections (optional - can be enabled per section) */
|
|
395
|
+
.corner-brackets {
|
|
396
|
+
position: relative;
|
|
397
|
+
padding: 2rem;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.corner-brackets::before,
|
|
401
|
+
.corner-brackets::after {
|
|
402
|
+
content: '';
|
|
403
|
+
position: absolute;
|
|
404
|
+
width: 20px;
|
|
405
|
+
height: 20px;
|
|
406
|
+
border: 2px solid var(--brand-cyan);
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.corner-brackets::before {
|
|
410
|
+
top: 0;
|
|
411
|
+
left: 0;
|
|
412
|
+
border-right: none;
|
|
413
|
+
border-bottom: none;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.corner-brackets::after {
|
|
417
|
+
bottom: 0;
|
|
418
|
+
right: 0;
|
|
419
|
+
border-left: none;
|
|
420
|
+
border-top: none;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
/* ==========================================================================
|
|
424
|
+
CUSTOM ICON STYLING (merged from custom-icons.css)
|
|
425
|
+
========================================================================== */
|
|
426
|
+
|
|
427
|
+
/* Eyebrow headings - context labels with icons above page titles */
|
|
428
|
+
.eyebrow {
|
|
429
|
+
font-family: 'Rajdhani', sans-serif;
|
|
430
|
+
font-size: 0.875rem;
|
|
431
|
+
font-weight: 600;
|
|
432
|
+
text-transform: uppercase;
|
|
433
|
+
letter-spacing: 0.05em;
|
|
434
|
+
color: var(--brand-cyan);
|
|
435
|
+
margin-bottom: 0.75rem;
|
|
436
|
+
margin-top: 0;
|
|
437
|
+
display: flex;
|
|
438
|
+
align-items: center;
|
|
439
|
+
gap: 0.5rem;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.eyebrow img {
|
|
443
|
+
width: 20px;
|
|
444
|
+
height: 20px;
|
|
445
|
+
display: inline-block;
|
|
446
|
+
vertical-align: middle;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
/* Page metadata grid - text left, icon right */
|
|
450
|
+
.page-metadata {
|
|
451
|
+
display: grid;
|
|
452
|
+
grid-template-columns: 1fr auto;
|
|
453
|
+
gap: 2rem;
|
|
454
|
+
align-items: center;
|
|
455
|
+
margin: 1.5rem 0;
|
|
456
|
+
padding: 1.25rem;
|
|
457
|
+
background: rgba(0, 212, 255, 0.05);
|
|
458
|
+
border-left: 3px solid var(--brand-cyan);
|
|
459
|
+
border-radius: 4px;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.metadata-content p {
|
|
463
|
+
margin: 0.35rem 0;
|
|
464
|
+
font-size: 0.95rem;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.metadata-content p:first-child {
|
|
468
|
+
margin-top: 0;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.metadata-content p:last-child {
|
|
472
|
+
margin-bottom: 0;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.metadata-icon img {
|
|
476
|
+
width: 96px;
|
|
477
|
+
height: 96px;
|
|
478
|
+
opacity: 0.9;
|
|
479
|
+
display: block;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
/* Link styling - make links visible in content area (not navigation) */
|
|
483
|
+
.sy-c article a:not(.sd-card-link),
|
|
484
|
+
.sy-c article li a,
|
|
485
|
+
.sy-c article ul a,
|
|
486
|
+
.sy-c article ol a {
|
|
487
|
+
color: var(--brand-cyan) !important;
|
|
488
|
+
text-decoration: underline;
|
|
489
|
+
text-decoration-color: rgba(0, 212, 255, 0.3);
|
|
490
|
+
text-underline-offset: 0.2em;
|
|
491
|
+
transition: all 0.2s ease;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.sy-c article a:not(.sd-card-link):hover,
|
|
495
|
+
.sy-c article li a:hover,
|
|
496
|
+
.sy-c article ul a:hover,
|
|
497
|
+
.sy-c article ol a:hover {
|
|
498
|
+
color: var(--brand-magenta) !important;
|
|
499
|
+
text-decoration-color: rgba(255, 0, 255, 0.6);
|
|
500
|
+
text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
/* Large centered section header icons */
|
|
504
|
+
.section-icon-large {
|
|
505
|
+
width: 128px !important;
|
|
506
|
+
height: 128px !important;
|
|
507
|
+
max-width: 128px !important;
|
|
508
|
+
display: block;
|
|
509
|
+
margin: 1rem auto 1rem auto !important;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
/* Medium centered section icons */
|
|
513
|
+
.section-icon-medium {
|
|
514
|
+
width: 96px !important;
|
|
515
|
+
height: 96px !important;
|
|
516
|
+
max-width: 96px !important;
|
|
517
|
+
display: block;
|
|
518
|
+
margin: 1.5rem auto 1rem auto !important;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
/* Small subsection icons (left-aligned) */
|
|
522
|
+
.section-icon-small {
|
|
523
|
+
width: 48px !important;
|
|
524
|
+
height: 48px !important;
|
|
525
|
+
max-width: 48px !important;
|
|
526
|
+
display: inline-block;
|
|
527
|
+
margin-right: 0.75rem;
|
|
528
|
+
vertical-align: middle;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
/* Icon container for better spacing */
|
|
532
|
+
.icon-header-wrapper {
|
|
533
|
+
text-align: center;
|
|
534
|
+
margin-bottom: 1rem;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.icon-header-wrapper img {
|
|
538
|
+
width: 120px;
|
|
539
|
+
height: 120px;
|
|
540
|
+
display: block;
|
|
541
|
+
margin: 0 auto;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
/* ==========================================================================
|
|
545
|
+
NAVIGATION ENHANCEMENTS
|
|
546
|
+
========================================================================== */
|
|
547
|
+
|
|
548
|
+
/* Sidebar navigation */
|
|
549
|
+
.sy-nav {
|
|
550
|
+
font-family: 'Rajdhani', sans-serif;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.sy-nav a {
|
|
554
|
+
transition: color 0.2s ease;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.sy-nav a:hover {
|
|
558
|
+
color: var(--brand-magenta) !important;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
/* Active nav item */
|
|
562
|
+
.sy-nav .current > a {
|
|
563
|
+
color: var(--brand-cyan) !important;
|
|
564
|
+
font-weight: 600;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
/* Ensure navigation items with children have space for the expand/collapse button */
|
|
568
|
+
/* The button is absolutely positioned at right: 0, so we need padding on the link */
|
|
569
|
+
.sy-nav li:has(button) > a,
|
|
570
|
+
.sy-nav li:has(ul) > a,
|
|
571
|
+
.globaltoc li:has(button) > a,
|
|
572
|
+
.globaltoc li:has(ul) > a,
|
|
573
|
+
.toctree-l1:has(button) > a,
|
|
574
|
+
.toctree-l1:has(ul) > a,
|
|
575
|
+
.toctree-l2:has(button) > a,
|
|
576
|
+
.toctree-l2:has(ul) > a,
|
|
577
|
+
.toctree-l3:has(button) > a,
|
|
578
|
+
.toctree-l3:has(ul) > a {
|
|
579
|
+
padding-right: 45px !important;
|
|
580
|
+
display: block !important;
|
|
581
|
+
overflow: hidden !important;
|
|
582
|
+
text-overflow: ellipsis !important;
|
|
583
|
+
white-space: nowrap !important;
|
|
584
|
+
max-width: 100% !important;
|
|
585
|
+
box-sizing: border-box !important;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
/* Style the expand/collapse buttons - remove cyan border frame */
|
|
589
|
+
/* Use multiple selectors with high specificity to override theme defaults */
|
|
590
|
+
button[aria-label*="Expand"],
|
|
591
|
+
button[aria-label*="Collapse"],
|
|
592
|
+
nav button[aria-label*="Expand"],
|
|
593
|
+
nav button[aria-label*="Collapse"],
|
|
594
|
+
aside button[aria-label*="Expand"],
|
|
595
|
+
aside button[aria-label*="Collapse"],
|
|
596
|
+
.sy-nav button[aria-label*="Expand"],
|
|
597
|
+
.sy-nav button[aria-label*="Collapse"] {
|
|
598
|
+
border: none !important;
|
|
599
|
+
border-width: 0 !important;
|
|
600
|
+
border-style: none !important;
|
|
601
|
+
background: transparent !important;
|
|
602
|
+
background-color: transparent !important;
|
|
603
|
+
padding: 0 !important;
|
|
604
|
+
width: 20px !important;
|
|
605
|
+
height: 20px !important;
|
|
606
|
+
min-width: 20px !important;
|
|
607
|
+
min-height: 20px !important;
|
|
608
|
+
color: var(--brand-cyan) !important;
|
|
609
|
+
transition: color 0.2s ease !important;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
button[aria-label*="Expand"]:hover,
|
|
613
|
+
button[aria-label*="Collapse"]:hover,
|
|
614
|
+
nav button[aria-label*="Expand"]:hover,
|
|
615
|
+
nav button[aria-label*="Collapse"]:hover,
|
|
616
|
+
aside button[aria-label*="Expand"]:hover,
|
|
617
|
+
aside button[aria-label*="Collapse"]:hover,
|
|
618
|
+
.sy-nav button[aria-label*="Expand"]:hover,
|
|
619
|
+
.sy-nav button[aria-label*="Collapse"]:hover {
|
|
620
|
+
color: var(--brand-magenta) !important;
|
|
621
|
+
background: transparent !important;
|
|
622
|
+
background-color: transparent !important;
|
|
623
|
+
border: none !important;
|
|
624
|
+
border-width: 0 !important;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
/* Make the chevron icon properly sized and colored */
|
|
628
|
+
button .i-lucide.chevron-right,
|
|
629
|
+
button .i-lucide.chevron-down,
|
|
630
|
+
.sy-nav button .i-lucide {
|
|
631
|
+
color: inherit !important;
|
|
632
|
+
width: 16px !important;
|
|
633
|
+
height: 16px !important;
|
|
634
|
+
display: block !important;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
/* ==========================================================================
|
|
638
|
+
RESPONSIVE ADJUSTMENTS
|
|
639
|
+
========================================================================== */
|
|
640
|
+
|
|
641
|
+
@media (max-width: 768px) {
|
|
642
|
+
h1, .sy-c h1 {
|
|
643
|
+
font-size: 2.2rem;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
h2, .sy-c h2 {
|
|
647
|
+
font-size: 1.8rem;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
h3, .sy-c h3 {
|
|
651
|
+
font-size: 1.4rem;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.page-metadata {
|
|
655
|
+
grid-template-columns: 1fr;
|
|
656
|
+
text-align: center;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.metadata-icon {
|
|
660
|
+
justify-self: center;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
/* Collapse sphinx-design grid to single column on mobile */
|
|
664
|
+
/* sphinx-design uses flexbox, not CSS Grid, so override child widths */
|
|
665
|
+
.sd-row-cols-1 > *,
|
|
666
|
+
.sd-row-cols-2 > *,
|
|
667
|
+
.sd-row-cols-3 > *,
|
|
668
|
+
.sd-row-cols-4 > *,
|
|
669
|
+
.sd-row-cols-5 > *,
|
|
670
|
+
.sd-row-cols-6 > *,
|
|
671
|
+
.sd-row-cols-xs-1 > *,
|
|
672
|
+
.sd-row-cols-xs-2 > *,
|
|
673
|
+
.sd-row-cols-xs-3 > *,
|
|
674
|
+
.sd-row-cols-xs-4 > *,
|
|
675
|
+
.sd-row-cols-sm-1 > *,
|
|
676
|
+
.sd-row-cols-sm-2 > *,
|
|
677
|
+
.sd-row-cols-sm-3 > *,
|
|
678
|
+
.sd-row-cols-sm-4 > *,
|
|
679
|
+
.sd-row-cols-md-1 > *,
|
|
680
|
+
.sd-row-cols-md-2 > *,
|
|
681
|
+
.sd-row-cols-md-3 > *,
|
|
682
|
+
.sd-row-cols-md-4 > * {
|
|
683
|
+
width: 100% !important;
|
|
684
|
+
}
|
|
685
|
+
}
|