@arclux/arc-ui-html 1.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.
Files changed (138) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +57 -0
  3. package/css/animated-number.css +12 -0
  4. package/css/app-shell.css +52 -0
  5. package/css/arc-ui.css +3045 -0
  6. package/css/aspect-ratio.css +23 -0
  7. package/css/auth-shell.css +98 -0
  8. package/css/avatar-group.css +49 -0
  9. package/css/avatar.css +53 -0
  10. package/css/badge.css +76 -0
  11. package/css/button.css +94 -0
  12. package/css/callout.css +84 -0
  13. package/css/card.css +50 -0
  14. package/css/code-block.css +86 -0
  15. package/css/color-swatch.css +47 -0
  16. package/css/container.css +15 -0
  17. package/css/dashboard-grid.css +21 -0
  18. package/css/divider.css +128 -0
  19. package/css/empty-state.css +43 -0
  20. package/css/feature-card.css +102 -0
  21. package/css/footer.css +60 -0
  22. package/css/form.css +454 -0
  23. package/css/highlight.css +13 -0
  24. package/css/icon-button.css +118 -0
  25. package/css/icon.css +36 -0
  26. package/css/kbd.css +21 -0
  27. package/css/link.css +74 -0
  28. package/css/markdown.css +133 -0
  29. package/css/meter.css +59 -0
  30. package/css/page-header.css +55 -0
  31. package/css/page-layout.css +65 -0
  32. package/css/progress.css +96 -0
  33. package/css/scroll-area.css +70 -0
  34. package/css/section.css +27 -0
  35. package/css/settings-layout.css +55 -0
  36. package/css/skeleton.css +44 -0
  37. package/css/spinner.css +46 -0
  38. package/css/stack.css +38 -0
  39. package/css/stat.css +42 -0
  40. package/css/status-bar.css +50 -0
  41. package/css/stepper.css +134 -0
  42. package/css/table.css +85 -0
  43. package/css/text.css +77 -0
  44. package/css/timeline.css +117 -0
  45. package/css/toolbar.css +54 -0
  46. package/css/tooltip.css +107 -0
  47. package/css/top-bar.css +158 -0
  48. package/css/value-card.css +60 -0
  49. package/examples/animated-number.html +8 -0
  50. package/examples/animated-number.inline.html +8 -0
  51. package/examples/app-shell.html +20 -0
  52. package/examples/app-shell.inline.html +31 -0
  53. package/examples/aspect-ratio.html +12 -0
  54. package/examples/aspect-ratio.inline.html +12 -0
  55. package/examples/auth-shell.html +20 -0
  56. package/examples/auth-shell.inline.html +28 -0
  57. package/examples/avatar-group.html +8 -0
  58. package/examples/avatar-group.inline.html +8 -0
  59. package/examples/avatar.html +7 -0
  60. package/examples/avatar.inline.html +11 -0
  61. package/examples/badge.html +5 -0
  62. package/examples/badge.inline.html +10 -0
  63. package/examples/button.html +5 -0
  64. package/examples/button.inline.html +21 -0
  65. package/examples/callout.html +12 -0
  66. package/examples/callout.inline.html +12 -0
  67. package/examples/card.html +5 -0
  68. package/examples/card.inline.html +13 -0
  69. package/examples/code-block.html +18 -0
  70. package/examples/code-block.inline.html +22 -0
  71. package/examples/color-swatch.html +12 -0
  72. package/examples/color-swatch.inline.html +16 -0
  73. package/examples/container.html +5 -0
  74. package/examples/container.inline.html +5 -0
  75. package/examples/dashboard-grid.html +7 -0
  76. package/examples/dashboard-grid.inline.html +10 -0
  77. package/examples/divider.html +5 -0
  78. package/examples/divider.inline.html +10 -0
  79. package/examples/empty-state.html +14 -0
  80. package/examples/empty-state.inline.html +14 -0
  81. package/examples/feature-card.html +12 -0
  82. package/examples/feature-card.inline.html +25 -0
  83. package/examples/footer.html +18 -0
  84. package/examples/footer.inline.html +18 -0
  85. package/examples/form.html +86 -0
  86. package/examples/highlight.html +5 -0
  87. package/examples/highlight.inline.html +5 -0
  88. package/examples/icon-button.html +5 -0
  89. package/examples/icon-button.inline.html +22 -0
  90. package/examples/icon.html +12 -0
  91. package/examples/icon.inline.html +12 -0
  92. package/examples/kbd.html +5 -0
  93. package/examples/kbd.inline.html +5 -0
  94. package/examples/link.html +13 -0
  95. package/examples/link.inline.html +23 -0
  96. package/examples/markdown.html +6 -0
  97. package/examples/markdown.inline.html +16 -0
  98. package/examples/meter.html +20 -0
  99. package/examples/meter.inline.html +29 -0
  100. package/examples/page-header.html +22 -0
  101. package/examples/page-header.inline.html +22 -0
  102. package/examples/page-layout.html +15 -0
  103. package/examples/page-layout.inline.html +21 -0
  104. package/examples/progress.html +20 -0
  105. package/examples/progress.inline.html +27 -0
  106. package/examples/scroll-area.html +12 -0
  107. package/examples/scroll-area.inline.html +22 -0
  108. package/examples/section.html +8 -0
  109. package/examples/section.inline.html +13 -0
  110. package/examples/settings-layout.html +12 -0
  111. package/examples/settings-layout.inline.html +22 -0
  112. package/examples/skeleton.html +10 -0
  113. package/examples/skeleton.inline.html +15 -0
  114. package/examples/spinner.html +9 -0
  115. package/examples/spinner.inline.html +9 -0
  116. package/examples/stack.html +5 -0
  117. package/examples/stack.inline.html +5 -0
  118. package/examples/stat.html +9 -0
  119. package/examples/stat.inline.html +10 -0
  120. package/examples/status-bar.html +15 -0
  121. package/examples/status-bar.inline.html +15 -0
  122. package/examples/stepper.html +18 -0
  123. package/examples/stepper.inline.html +18 -0
  124. package/examples/table.html +7 -0
  125. package/examples/table.inline.html +7 -0
  126. package/examples/text.html +5 -0
  127. package/examples/text.inline.html +5 -0
  128. package/examples/timeline.html +10 -0
  129. package/examples/timeline.inline.html +10 -0
  130. package/examples/toolbar.html +15 -0
  131. package/examples/toolbar.inline.html +15 -0
  132. package/examples/tooltip.html +19 -0
  133. package/examples/tooltip.inline.html +19 -0
  134. package/examples/top-bar.html +23 -0
  135. package/examples/top-bar.inline.html +29 -0
  136. package/examples/value-card.html +11 -0
  137. package/examples/value-card.inline.html +15 -0
  138. package/package.json +31 -0
@@ -0,0 +1,46 @@
1
+ /* Auto-generated by @arclux/prism — do not edit manually */
2
+
3
+ /* arc-spinner */
4
+ .arc-spinner { display: inline-flex; }
5
+
6
+ @keyframes spin {
7
+ to { transform: rotate(360deg); }
8
+ }
9
+
10
+ .arc-spinner .spinner {
11
+ border-radius: var(--radius-full);
12
+ border-style: solid;
13
+ border-color: var(--accent-primary);
14
+ border-top-color: transparent;
15
+ animation: spin 0.75s linear infinite;
16
+ box-sizing: border-box;
17
+ }
18
+
19
+ .arc-spinner[data-size="sm"] .spinner { width: 16px; height: 16px; border-width: 2px; }
20
+ .arc-spinner[data-size="md"] .spinner { width: 24px; height: 24px; border-width: 2.5px; }
21
+ .arc-spinner[data-size="lg"] .spinner { width: 40px; height: 40px; border-width: 3px; }
22
+
23
+ .arc-spinner[data-variant="primary"] .spinner {
24
+ border-color: var(--accent-primary);
25
+ border-top-color: transparent;
26
+ }
27
+
28
+ .arc-spinner[data-variant="secondary"] .spinner {
29
+ border-color: var(--accent-secondary);
30
+ border-top-color: transparent;
31
+ }
32
+
33
+ .arc-spinner[data-variant="white"] .spinner {
34
+ border-color: var(--text-primary);
35
+ border-top-color: transparent;
36
+ }
37
+
38
+ @media (prefers-reduced-motion: reduce) {
39
+ .arc-spinner *,
40
+ .arc-spinner *::before,
41
+ .arc-spinner *::after {
42
+ animation-duration: 0.01ms !important;
43
+ animation-iteration-count: 1 !important;
44
+ transition-duration: 0.01ms !important;
45
+ }
46
+ }
package/css/stack.css ADDED
@@ -0,0 +1,38 @@
1
+ /* Auto-generated by @arclux/prism — do not edit manually */
2
+
3
+ /* arc-stack */
4
+ .arc-stack {
5
+ display: flex;
6
+ flex-direction: column;
7
+ gap: var(--space-md);
8
+ align-items: stretch;
9
+ justify-content: flex-start;
10
+ }
11
+
12
+ /* Direction */
13
+ .arc-stack[data-direction="horizontal"] { flex-direction: row; }
14
+ .arc-stack[data-direction="vertical"] { flex-direction: column; }
15
+
16
+ /* Gap */
17
+ .arc-stack[data-gap="xs"] { gap: var(--space-xs); }
18
+ .arc-stack[data-gap="sm"] { gap: var(--space-sm); }
19
+ .arc-stack[data-gap="md"] { gap: var(--space-md); }
20
+ .arc-stack[data-gap="lg"] { gap: var(--space-lg); }
21
+ .arc-stack[data-gap="xl"] { gap: var(--space-xl); }
22
+ .arc-stack[data-gap="2xl"] { gap: var(--space-2xl); }
23
+
24
+ /* Align */
25
+ .arc-stack[data-align="start"] { align-items: flex-start; }
26
+ .arc-stack[data-align="center"] { align-items: center; }
27
+ .arc-stack[data-align="end"] { align-items: flex-end; }
28
+ .arc-stack[data-align="stretch"] { align-items: stretch; }
29
+
30
+ /* Justify */
31
+ .arc-stack[data-justify="start"] { justify-content: flex-start; }
32
+ .arc-stack[data-justify="center"] { justify-content: center; }
33
+ .arc-stack[data-justify="end"] { justify-content: flex-end; }
34
+ .arc-stack[data-justify="between"] { justify-content: space-between; }
35
+ .arc-stack[data-justify="around"] { justify-content: space-around; }
36
+
37
+ /* Wrap */
38
+ .arc-stack[wrap] { flex-wrap: wrap; }
package/css/stat.css ADDED
@@ -0,0 +1,42 @@
1
+ /* Auto-generated by @arclux/prism — do not edit manually */
2
+
3
+ /* arc-stat */
4
+ .arc-stat { display: block; }
5
+
6
+ .arc-stat .stat {
7
+ display: flex;
8
+ flex-direction: column;
9
+ align-items: center;
10
+ gap: var(--space-sm);
11
+ text-align: center;
12
+ padding: var(--space-lg) var(--space-md);
13
+ }
14
+
15
+ .arc-stat .stat__value {
16
+ font-size: clamp(32px, 4.5vw, 48px);
17
+ font-weight: 200;
18
+ letter-spacing: -1px;
19
+ line-height: 1;
20
+ background: var(--gradient-accent-text);
21
+ -webkit-background-clip: text;
22
+ -webkit-text-fill-color: transparent;
23
+ background-clip: text;
24
+ filter: drop-shadow(0 0 16px rgba(var(--accent-primary-rgb),0.3))
25
+ drop-shadow(0 0 40px rgba(var(--accent-secondary-rgb),0.12));
26
+ }
27
+
28
+ .arc-stat .stat__rule {
29
+ width: 24px;
30
+ height: 1px;
31
+ background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
32
+ opacity: 0.4;
33
+ }
34
+
35
+ .arc-stat .stat__label {
36
+ font-family: var(--font-accent);
37
+ font-weight: 600;
38
+ font-size: var(--label-inline-size);
39
+ letter-spacing: var(--label-inline-spacing);
40
+ text-transform: uppercase;
41
+ color: var(--text-muted);
42
+ }
@@ -0,0 +1,50 @@
1
+ /* Auto-generated by @arclux/prism — do not edit manually */
2
+
3
+ /* arc-status-bar */
4
+ .arc-status-bar {
5
+ display: block;
6
+ font-family: var(--font-mono);
7
+ font-size: var(--text-sm);
8
+ color: var(--text-muted);
9
+ }
10
+
11
+ .arc-status-bar([position='fixed']) {
12
+ position: fixed;
13
+ bottom: 0;
14
+ left: 0;
15
+ right: 0;
16
+ z-index: 100;
17
+ }
18
+
19
+ .arc-status-bar .status-bar {
20
+ display: flex;
21
+ align-items: center;
22
+ height: 28px;
23
+ padding: 0 var(--space-sm);
24
+ background: var(--bg-deep);
25
+ border-top: 1px solid var(--border-subtle);
26
+ gap: var(--space-sm);
27
+ }
28
+
29
+ .arc-status-bar .status-bar__left {
30
+ display: flex;
31
+ align-items: center;
32
+ gap: var(--space-sm);
33
+ flex-shrink: 0;
34
+ }
35
+
36
+ .arc-status-bar .status-bar__center {
37
+ display: flex;
38
+ align-items: center;
39
+ gap: var(--space-sm);
40
+ flex: 1;
41
+ justify-content: center;
42
+ }
43
+
44
+ .arc-status-bar .status-bar__right {
45
+ display: flex;
46
+ align-items: center;
47
+ gap: var(--space-sm);
48
+ flex-shrink: 0;
49
+ margin-left: auto;
50
+ }
@@ -0,0 +1,134 @@
1
+ /* Auto-generated by @arclux/prism — do not edit manually */
2
+
3
+ /* arc-stepper */
4
+ .arc-stepper { display: block; }
5
+
6
+ .arc-stepper .stepper {
7
+ display: flex;
8
+ align-items: flex-start;
9
+ gap: var(--space-xs);
10
+ }
11
+
12
+ .arc-stepper .step {
13
+ display: flex;
14
+ flex-direction: column;
15
+ align-items: center;
16
+ flex: 1;
17
+ position: relative;
18
+ padding: 0 var(--space-sm);
19
+ }
20
+
21
+ .arc-stepper .step__header {
22
+ display: flex;
23
+ align-items: center;
24
+ width: 100%;
25
+ position: relative;
26
+ }
27
+
28
+ .arc-stepper .step__circle {
29
+ width: 36px;
30
+ height: 36px;
31
+ border-radius: var(--radius-full);
32
+ display: flex;
33
+ align-items: center;
34
+ justify-content: center;
35
+ font-family: var(--font-accent);
36
+ font-size: var(--text-sm);
37
+ font-weight: 700;
38
+ letter-spacing: 1px;
39
+ flex-shrink: 0;
40
+ position: relative;
41
+ z-index: 1;
42
+ transition: background var(--transition-base),
43
+ color var(--transition-base),
44
+ border-color var(--transition-base),
45
+ box-shadow var(--transition-base);
46
+ margin: 0 auto;
47
+ box-sizing: border-box;
48
+ }
49
+
50
+ /* Upcoming (default) */
51
+ .arc-stepper .step__circle {
52
+ background: var(--bg-elevated);
53
+ color: var(--text-ghost);
54
+ border: 1px solid var(--border-default);
55
+ }
56
+
57
+ /* Active */
58
+ .arc-stepper .step--active .step__circle {
59
+ background: transparent;
60
+ color: var(--accent-primary);
61
+ border: 2px solid var(--accent-primary);
62
+ box-shadow: 0 0 12px rgba(var(--accent-primary-rgb), 0.25);
63
+ }
64
+
65
+ /* Completed */
66
+ .arc-stepper .step--completed .step__circle {
67
+ background: var(--accent-primary);
68
+ color: var(--text-primary);
69
+ border: 2px solid var(--accent-primary);
70
+ }
71
+
72
+ .arc-stepper .step__line {
73
+ position: absolute;
74
+ top: 50%;
75
+ height: 1px;
76
+ background: var(--border-default);
77
+ transform: translateY(-50%);
78
+ }
79
+
80
+ .arc-stepper .step__line--left {
81
+ left: calc(-1 * var(--space-xs) - var(--space-sm));
82
+ right: calc(50% + 20px);
83
+ }
84
+
85
+ .arc-stepper .step__line--right {
86
+ left: calc(50% + 20px);
87
+ right: calc(-1 * var(--space-xs) - var(--space-sm));
88
+ }
89
+
90
+ .arc-stepper .step--completed .step__line--left,
91
+ .arc-stepper .step--active .step__line--left {
92
+ background: var(--accent-primary);
93
+ }
94
+
95
+ .arc-stepper .step--completed .step__line--right {
96
+ background: var(--accent-primary);
97
+ }
98
+
99
+ .arc-stepper .step__label {
100
+ margin-top: var(--space-md);
101
+ font-family: var(--font-accent);
102
+ font-size: var(--text-xs);
103
+ font-weight: 600;
104
+ letter-spacing: 2px;
105
+ text-transform: uppercase;
106
+ color: var(--text-muted);
107
+ text-align: center;
108
+ transition: color var(--transition-base);
109
+ }
110
+
111
+ .arc-stepper .step--active .step__label {
112
+ color: var(--text-primary);
113
+ }
114
+
115
+ .arc-stepper .step--completed .step__label {
116
+ color: var(--text-secondary);
117
+ }
118
+
119
+ .arc-stepper .step__check {
120
+ font-size: var(--text-sm);
121
+ line-height: 1;
122
+ }
123
+
124
+ .arc-stepper .stepper__slot-host { display: none; }
125
+
126
+ @media (prefers-reduced-motion: reduce) {
127
+ .arc-stepper *,
128
+ .arc-stepper *::before,
129
+ .arc-stepper *::after {
130
+ animation-duration: 0.01ms !important;
131
+ animation-iteration-count: 1 !important;
132
+ transition-duration: 0.01ms !important;
133
+ }
134
+ }
package/css/table.css ADDED
@@ -0,0 +1,85 @@
1
+ /* Auto-generated by @arclux/prism — do not edit manually */
2
+
3
+ /* arc-table */
4
+ .arc-table {
5
+ display: block;
6
+ font-family: var(--font-body);
7
+ font-size: var(--body-size);
8
+ }
9
+
10
+ .arc-table .table-wrap {
11
+ overflow-x: auto;
12
+ border: 1px solid var(--border-subtle);
13
+ border-radius: var(--radius-md);
14
+ }
15
+
16
+ table {
17
+ width: 100%;
18
+ border-collapse: collapse;
19
+ font-size: var(--text-sm);
20
+ color: var(--text-primary);
21
+ }
22
+
23
+ thead {
24
+ background: var(--bg-elevated);
25
+ }
26
+
27
+ th {
28
+ text-align: left;
29
+ padding: var(--space-sm) var(--space-md);
30
+ font-family: var(--font-accent);
31
+ font-weight: 600;
32
+ font-size: var(--text-xs);
33
+ letter-spacing: 2px;
34
+ text-transform: uppercase;
35
+ color: var(--text-ghost);
36
+ border-bottom: 1px solid var(--border-default);
37
+ white-space: nowrap;
38
+ }
39
+
40
+ .arc-table[compact] th {
41
+ padding: var(--space-xs) var(--space-sm);
42
+ }
43
+
44
+ td {
45
+ padding: var(--space-sm) var(--space-md);
46
+ border-bottom: 1px solid var(--border-subtle);
47
+ color: var(--text-secondary);
48
+ line-height: 1.5;
49
+ font-size: var(--text-sm);
50
+ }
51
+
52
+ .arc-table[compact] td {
53
+ padding: var(--space-xs) var(--space-sm);
54
+ font-size: var(--text-sm);
55
+ }
56
+
57
+ tr:last-child td {
58
+ border-bottom: none;
59
+ }
60
+
61
+ .arc-table[striped] tbody tr:nth-child(odd) {
62
+ background: var(--bg-surface);
63
+ }
64
+
65
+ .arc-table[striped] tbody tr:nth-child(even) {
66
+ background: var(--bg-card);
67
+ }
68
+
69
+ tbody tr {
70
+ transition: background var(--transition-fast);
71
+ }
72
+
73
+ tbody tr:hover {
74
+ background: var(--bg-hover);
75
+ }
76
+
77
+ @media (prefers-reduced-motion: reduce) {
78
+ .arc-table *,
79
+ .arc-table *::before,
80
+ .arc-table *::after {
81
+ animation-duration: 0.01ms !important;
82
+ animation-iteration-count: 1 !important;
83
+ transition-duration: 0.01ms !important;
84
+ }
85
+ }
package/css/text.css ADDED
@@ -0,0 +1,77 @@
1
+ /* Auto-generated by @arclux/prism — do not edit manually */
2
+
3
+ /* arc-text */
4
+ .arc-text { display: block; }
5
+ .arc-text[data-variant="accent"],
6
+ .arc-text[data-variant="code"] { display: inline; }
7
+
8
+ .arc-text .text--display {
9
+ font-size: var(--display-xl-size);
10
+ font-weight: var(--display-xl-weight);
11
+ letter-spacing: var(--display-xl-spacing);
12
+ line-height: 1.2;
13
+ padding-bottom: 0.1em;
14
+ background: var(--gradient-display-text);
15
+ -webkit-background-clip: text;
16
+ -webkit-text-fill-color: transparent;
17
+ background-clip: text;
18
+ }
19
+
20
+ .arc-text .text--heading {
21
+ font-size: var(--heading-size);
22
+ font-weight: var(--heading-weight);
23
+ color: var(--text-primary);
24
+ line-height: 1.4;
25
+ text-wrap: balance;
26
+ margin-bottom: var(--space-md);
27
+ }
28
+
29
+ .arc-text .text--body {
30
+ color: var(--text-secondary);
31
+ font-family: var(--font-body);
32
+ font-size: var(--body-size);
33
+ font-weight: var(--body-weight);
34
+ line-height: var(--body-lh);
35
+ text-wrap: balance;
36
+ }
37
+
38
+ .arc-text .text--muted { color: var(--text-muted); }
39
+ .arc-text .text--ghost { color: var(--text-ghost); }
40
+
41
+ .arc-text .text--accent {
42
+ font-family: var(--font-accent);
43
+ font-weight: var(--ui-accent-weight);
44
+ font-size: var(--ui-accent-size);
45
+ letter-spacing: var(--ui-accent-spacing);
46
+ background: var(--gradient-accent-text);
47
+ -webkit-background-clip: text;
48
+ -webkit-text-fill-color: transparent;
49
+ background-clip: text;
50
+ filter: drop-shadow(0 0 12px var(--accent-primary-glow));
51
+ }
52
+
53
+ .arc-text .text--label {
54
+ font-family: var(--font-accent);
55
+ font-weight: var(--section-title-weight);
56
+ font-size: var(--section-title-size);
57
+ letter-spacing: var(--section-title-spacing);
58
+ text-transform: uppercase;
59
+ color: var(--text-muted);
60
+ }
61
+
62
+ .arc-text .text--wordmark {
63
+ font-weight: var(--wordmark-weight);
64
+ font-size: var(--wordmark-size);
65
+ letter-spacing: var(--wordmark-spacing);
66
+ text-transform: uppercase;
67
+ color: var(--text-primary);
68
+ text-shadow: 0 0 30px var(--accent-primary-glow);
69
+ }
70
+
71
+ .arc-text .text--code {
72
+ font-family: var(--font-mono);
73
+ font-size: var(--code-size);
74
+ line-height: var(--code-lh);
75
+ color: var(--accent-secondary);
76
+ text-shadow: 0 0 14px rgba(var(--accent-secondary-rgb),0.3);
77
+ }
@@ -0,0 +1,117 @@
1
+ /* Auto-generated by @arclux/prism — do not edit manually */
2
+
3
+ /* arc-timeline */
4
+ .arc-timeline { display: block; }
5
+
6
+ .arc-timeline .timeline {
7
+ display: flex;
8
+ flex-direction: column;
9
+ gap: 0;
10
+ padding: 0;
11
+ margin: 0;
12
+ list-style: none;
13
+ }
14
+
15
+ .arc-timeline .timeline__item {
16
+ display: flex;
17
+ gap: var(--space-lg);
18
+ position: relative;
19
+ padding-bottom: var(--space-xl);
20
+ }
21
+
22
+ .arc-timeline .timeline__item:last-child { padding-bottom: 0; }
23
+
24
+ .arc-timeline .timeline__marker {
25
+ display: flex;
26
+ flex-direction: column;
27
+ align-items: center;
28
+ flex-shrink: 0;
29
+ width: 24px;
30
+ position: relative;
31
+ }
32
+
33
+ .arc-timeline .timeline__dot {
34
+ width: 12px;
35
+ height: 12px;
36
+ border-radius: var(--radius-full);
37
+ background: var(--accent-primary);
38
+ border: 2px solid var(--bg-deep);
39
+ box-shadow:
40
+ 0 0 0 1px rgba(var(--accent-primary-rgb), 0.3),
41
+ 0 0 8px rgba(var(--accent-primary-rgb), 0.25);
42
+ flex-shrink: 0;
43
+ z-index: 1;
44
+ position: relative;
45
+ transition: box-shadow var(--transition-fast), transform var(--transition-fast);
46
+ }
47
+
48
+ .arc-timeline .timeline__item:hover .timeline__dot {
49
+ box-shadow:
50
+ 0 0 0 2px rgba(var(--accent-primary-rgb), 0.4),
51
+ 0 0 14px rgba(var(--accent-primary-rgb), 0.4);
52
+ transform: scale(1.2);
53
+ }
54
+
55
+ .arc-timeline .timeline__line {
56
+ position: absolute;
57
+ top: 16px;
58
+ bottom: calc(-1 * var(--space-xl));
59
+ left: 50%;
60
+ width: 1px;
61
+ transform: translateX(-50%);
62
+ background: linear-gradient(180deg, rgba(var(--accent-primary-rgb), 0.4), var(--border-default) 40%);
63
+ }
64
+
65
+ .arc-timeline .timeline__item:last-child .timeline__line { display: none; }
66
+
67
+ .arc-timeline .timeline__content {
68
+ flex: 1;
69
+ min-width: 0;
70
+ padding-top: 0;
71
+ }
72
+
73
+ .arc-timeline .timeline__title {
74
+ margin: 0;
75
+ font-family: var(--font-accent);
76
+ font-size: var(--text-xs);
77
+ font-weight: 600;
78
+ letter-spacing: 1.5px;
79
+ text-transform: uppercase;
80
+ color: var(--text-primary);
81
+ line-height: 1.4;
82
+ transition: color var(--transition-fast);
83
+ }
84
+
85
+ .arc-timeline .timeline__item:hover .timeline__title {
86
+ color: var(--accent-primary);
87
+ }
88
+
89
+ .arc-timeline .timeline__desc {
90
+ margin: var(--space-sm) 0 0;
91
+ font-family: var(--font-body);
92
+ font-size: var(--text-sm);
93
+ line-height: 1.6;
94
+ color: var(--text-muted);
95
+ }
96
+
97
+ .arc-timeline .timeline__date {
98
+ margin: var(--space-sm) 0 0;
99
+ font-family: var(--font-accent);
100
+ font-size: var(--text-xs);
101
+ font-weight: 600;
102
+ letter-spacing: 2px;
103
+ text-transform: uppercase;
104
+ color: var(--text-ghost);
105
+ }
106
+
107
+ .arc-timeline .timeline__slot-host { display: none; }
108
+
109
+ @media (prefers-reduced-motion: reduce) {
110
+ .arc-timeline *,
111
+ .arc-timeline *::before,
112
+ .arc-timeline *::after {
113
+ animation-duration: 0.01ms !important;
114
+ animation-iteration-count: 1 !important;
115
+ transition-duration: 0.01ms !important;
116
+ }
117
+ }
@@ -0,0 +1,54 @@
1
+ /* Auto-generated by @arclux/prism — do not edit manually */
2
+
3
+ /* arc-toolbar */
4
+ .arc-toolbar {
5
+ display: block;
6
+ font-family: var(--font-body);
7
+ }
8
+
9
+ .arc-toolbar[sticky] {
10
+ position: sticky;
11
+ top: 0;
12
+ z-index: 50;
13
+ }
14
+
15
+ .arc-toolbar .toolbar {
16
+ display: flex;
17
+ align-items: center;
18
+ height: 48px;
19
+ padding: 0 var(--space-md);
20
+ background: var(--bg-card);
21
+ gap: var(--space-sm);
22
+ }
23
+
24
+ .arc-toolbar([size='sm']) .toolbar {
25
+ height: 36px;
26
+ padding: 0 var(--space-sm);
27
+ }
28
+
29
+ .arc-toolbar[border] .toolbar {
30
+ border-bottom: 1px solid var(--border-subtle);
31
+ }
32
+
33
+ .arc-toolbar .toolbar__start {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: var(--space-sm);
37
+ flex-shrink: 0;
38
+ }
39
+
40
+ .arc-toolbar .toolbar__center {
41
+ display: flex;
42
+ align-items: center;
43
+ gap: var(--space-sm);
44
+ flex: 1;
45
+ justify-content: center;
46
+ }
47
+
48
+ .arc-toolbar .toolbar__end {
49
+ display: flex;
50
+ align-items: center;
51
+ gap: var(--space-sm);
52
+ flex-shrink: 0;
53
+ margin-left: auto;
54
+ }