@invisibleloop/pulse 0.1.36 → 0.1.38
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/docs/public/docs.css +20 -4
- package/docs/public/pulse-ui.css +2442 -1389
- package/docs/src/lib/layout.js +6 -4
- package/docs/src/pages/actions.js +1 -1
- package/docs/src/pages/constraints.js +1 -1
- package/docs/src/pages/getting-started.js +2 -2
- package/docs/src/pages/home.js +2 -2
- package/docs/src/pages/meta.js +1 -1
- package/docs/src/pages/server-api.js +1 -1
- package/package.json +1 -1
- package/public/.pulse-ui-version +1 -1
- package/public/pulse-ui.css +1 -1
package/docs/public/docs.css
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
/* Pulse Documentation — Design System */
|
|
2
2
|
|
|
3
|
+
.skip-link {
|
|
4
|
+
position: absolute;
|
|
5
|
+
top: -100%;
|
|
6
|
+
left: 1rem;
|
|
7
|
+
padding: .5rem 1rem;
|
|
8
|
+
background: var(--accent);
|
|
9
|
+
color: var(--accent-text);
|
|
10
|
+
font-weight: 600;
|
|
11
|
+
border-radius: 0 0 .375rem .375rem;
|
|
12
|
+
text-decoration: none;
|
|
13
|
+
z-index: 9999;
|
|
14
|
+
}
|
|
15
|
+
.skip-link:focus {
|
|
16
|
+
top: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
3
19
|
*,
|
|
4
20
|
*::before,
|
|
5
21
|
*::after {
|
|
@@ -16,7 +32,7 @@
|
|
|
16
32
|
--border: #38383f;
|
|
17
33
|
--border-subtle: #1a1a20;
|
|
18
34
|
--text: #e2e2ea;
|
|
19
|
-
--muted:
|
|
35
|
+
--muted: ##3d3d38;
|
|
20
36
|
--muted-2: #7e7e92;
|
|
21
37
|
--accent: #c9b800;
|
|
22
38
|
--accent-text: #0a0a0a;
|
|
@@ -171,7 +187,7 @@ a:hover {
|
|
|
171
187
|
font-size: 0.95rem;
|
|
172
188
|
font-weight: 500;
|
|
173
189
|
color: #0a0a0a;
|
|
174
|
-
opacity: 0.
|
|
190
|
+
opacity: 0.7;
|
|
175
191
|
margin-bottom: 1rem;
|
|
176
192
|
letter-spacing: 0.01em;
|
|
177
193
|
}
|
|
@@ -189,7 +205,6 @@ a:hover {
|
|
|
189
205
|
padding: 0.3rem 0.85rem;
|
|
190
206
|
margin-bottom: 2rem;
|
|
191
207
|
letter-spacing: 0.06em;
|
|
192
|
-
text-transform: uppercase;
|
|
193
208
|
}
|
|
194
209
|
|
|
195
210
|
.hero h1 {
|
|
@@ -470,7 +485,6 @@ a:hover {
|
|
|
470
485
|
line-height: 1.65;
|
|
471
486
|
}
|
|
472
487
|
|
|
473
|
-
|
|
474
488
|
/* ─── FAQ page ───────────────────────────────────────────────────────────────── */
|
|
475
489
|
.faq-item {
|
|
476
490
|
padding: 2rem 0;
|
|
@@ -571,6 +585,7 @@ a:hover {
|
|
|
571
585
|
height: 2.5rem;
|
|
572
586
|
background: #f0e642;
|
|
573
587
|
flex-shrink: 0;
|
|
588
|
+
opacity: 0.3;
|
|
574
589
|
}
|
|
575
590
|
|
|
576
591
|
/* ─── How it works — black band ─────────────────────────────────────────────── */
|
|
@@ -653,6 +668,7 @@ a:hover {
|
|
|
653
668
|
background: #f0e642;
|
|
654
669
|
margin-top: 1.25rem;
|
|
655
670
|
flex-shrink: 0;
|
|
671
|
+
opacity: 0.3;
|
|
656
672
|
}
|
|
657
673
|
|
|
658
674
|
/* ─── AI-first section ───────────────────────────────────────────────────────── */
|