@mrintel/villain-ui 0.3.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +3490 -1296
- package/dist/components/buttons/Button.svelte +27 -33
- package/dist/components/buttons/Button.svelte.d.ts +4 -1
- package/dist/components/buttons/ButtonGroup.svelte +17 -30
- package/dist/components/buttons/FloatingActionButton.svelte +20 -44
- package/dist/components/buttons/FloatingActionButton.svelte.d.ts +2 -1
- package/dist/components/buttons/IconButton.svelte +23 -53
- package/dist/components/buttons/IconButton.svelte.d.ts +2 -1
- package/dist/components/buttons/LinkButton.svelte +24 -37
- package/dist/components/buttons/LinkButton.svelte.d.ts +4 -1
- package/dist/components/buttons/buttonClasses.d.ts +5 -0
- package/dist/components/buttons/buttonClasses.js +8 -3
- package/dist/components/cards/Card.svelte +54 -46
- package/dist/components/cards/Card.svelte.d.ts +9 -2
- package/dist/components/cards/Container.svelte +17 -33
- package/dist/components/cards/Divider.svelte +36 -52
- package/dist/components/cards/Divider.svelte.d.ts +2 -0
- package/dist/components/cards/Grid.svelte +55 -44
- package/dist/components/cards/Panel.svelte +18 -32
- package/dist/components/cards/Panel.svelte.d.ts +2 -1
- package/dist/components/cards/SectionHeader.svelte +24 -38
- package/dist/components/cards/SectionHeader.svelte.d.ts +1 -0
- package/dist/components/data/Avatar.svelte +48 -67
- package/dist/components/data/Badge.svelte +45 -32
- package/dist/components/data/Badge.svelte.d.ts +7 -1
- package/dist/components/data/CalendarGrid.svelte +433 -0
- package/dist/components/data/CalendarGrid.svelte.d.ts +25 -0
- package/dist/components/data/CalendarGrid.types.d.ts +7 -0
- package/dist/components/data/CalendarGrid.types.js +1 -0
- package/dist/components/data/CodeBlock.svelte +119 -121
- package/dist/components/data/CodeBlock.svelte.d.ts +8 -0
- package/dist/components/data/List.svelte +87 -64
- package/dist/components/data/List.svelte.d.ts +7 -0
- package/dist/components/data/Pagination.svelte +121 -123
- package/dist/components/data/Pagination.svelte.d.ts +5 -0
- package/dist/components/data/Sparkline.svelte +117 -0
- package/dist/components/data/Sparkline.svelte.d.ts +43 -0
- package/dist/components/data/Stat.svelte +92 -103
- package/dist/components/data/Table.svelte +443 -76
- package/dist/components/data/Table.svelte.d.ts +23 -2
- package/dist/components/data/Table.types.d.ts +14 -0
- package/dist/components/data/Table.types.js +1 -0
- package/dist/components/data/Tag.svelte +51 -53
- package/dist/components/data/Tag.svelte.d.ts +5 -1
- package/dist/components/data/index.d.ts +4 -0
- package/dist/components/data/index.js +2 -0
- package/dist/components/forms/Checkbox.svelte +39 -51
- package/dist/components/forms/Checkbox.svelte.d.ts +3 -1
- package/dist/components/forms/DatePicker.svelte +61 -0
- package/dist/components/forms/DatePicker.svelte.d.ts +15 -0
- package/dist/components/forms/DateTimePicker.svelte +63 -0
- package/dist/components/forms/DateTimePicker.svelte.d.ts +16 -0
- package/dist/components/forms/FileUpload.svelte +136 -164
- package/dist/components/forms/FileUpload.svelte.d.ts +1 -0
- package/dist/components/forms/Input.svelte +284 -57
- package/dist/components/forms/Input.svelte.d.ts +10 -3
- package/dist/components/forms/InputGroup.svelte +7 -7
- package/dist/components/forms/RadioGroup.svelte +77 -87
- package/dist/components/forms/RadioGroup.svelte.d.ts +3 -1
- package/dist/components/forms/RangeSlider.svelte +90 -116
- package/dist/components/forms/Select.svelte +106 -71
- package/dist/components/forms/Select.svelte.d.ts +3 -1
- package/dist/components/forms/Step.svelte +25 -0
- package/dist/components/forms/Step.svelte.d.ts +12 -0
- package/dist/components/forms/StepContext.d.ts +3 -0
- package/dist/components/forms/StepContext.js +5 -0
- package/dist/components/forms/Stepper.types.d.ts +37 -0
- package/dist/components/forms/Stepper.types.js +1 -0
- package/dist/components/forms/StepperForm.svelte +183 -0
- package/dist/components/forms/StepperForm.svelte.d.ts +17 -0
- package/dist/components/forms/Switch.svelte +44 -56
- package/dist/components/forms/Switch.svelte.d.ts +3 -1
- package/dist/components/forms/Textarea.svelte +52 -57
- package/dist/components/forms/Textarea.svelte.d.ts +3 -1
- package/dist/components/forms/TimePicker.svelte +63 -0
- package/dist/components/forms/TimePicker.svelte.d.ts +16 -0
- package/dist/components/forms/formClasses.d.ts +3 -0
- package/dist/components/forms/formClasses.js +3 -0
- package/dist/components/forms/index.d.ts +6 -0
- package/dist/components/forms/index.js +5 -0
- package/dist/components/navigation/Breadcrumbs.svelte +56 -59
- package/dist/components/navigation/Breadcrumbs.svelte.d.ts +1 -0
- package/dist/components/navigation/ContextMenu.svelte +133 -83
- package/dist/components/navigation/ContextMenu.svelte.d.ts +8 -1
- package/dist/components/navigation/DropdownMenu.svelte +139 -80
- package/dist/components/navigation/DropdownMenu.svelte.d.ts +8 -1
- package/dist/components/navigation/Menu.svelte +72 -48
- package/dist/components/navigation/Navbar.svelte +111 -32
- package/dist/components/navigation/Navbar.svelte.d.ts +6 -0
- package/dist/components/navigation/Sidebar.svelte +236 -35
- package/dist/components/navigation/Sidebar.svelte.d.ts +2 -0
- package/dist/components/navigation/Stepper.svelte +204 -0
- package/dist/components/navigation/Stepper.svelte.d.ts +34 -0
- package/dist/components/navigation/Tabs.svelte +86 -54
- package/dist/components/navigation/Tabs.svelte.d.ts +5 -1
- package/dist/components/navigation/index.d.ts +1 -0
- package/dist/components/navigation/index.js +1 -0
- package/dist/components/overlays/Alert.svelte +81 -99
- package/dist/components/overlays/Alert.svelte.d.ts +5 -1
- package/dist/components/overlays/CommandPalette.svelte +182 -217
- package/dist/components/overlays/Drawer.svelte +158 -167
- package/dist/components/overlays/Drawer.svelte.d.ts +3 -1
- package/dist/components/overlays/Dropdown.svelte +62 -30
- package/dist/components/overlays/Dropdown.svelte.d.ts +2 -0
- package/dist/components/overlays/Modal.svelte +125 -130
- package/dist/components/overlays/Modal.svelte.d.ts +3 -1
- package/dist/components/overlays/Popover.svelte +106 -131
- package/dist/components/overlays/ProgressBar.svelte +29 -45
- package/dist/components/overlays/SkeletonLoader.svelte +66 -82
- package/dist/components/overlays/Spinner.svelte +33 -43
- package/dist/components/overlays/Toast.svelte +111 -140
- package/dist/components/overlays/Toast.svelte.d.ts +3 -0
- package/dist/components/overlays/Tooltip.svelte +94 -115
- package/dist/components/overlays/Tooltip.svelte.d.ts +3 -1
- package/dist/components/typography/Code.svelte +10 -14
- package/dist/components/typography/Heading.svelte +15 -22
- package/dist/components/typography/Heading.svelte.d.ts +1 -0
- package/dist/components/typography/Text.svelte +21 -24
- package/dist/components/typography/Text.svelte.d.ts +2 -1
- package/dist/components/utilities/Accordion.svelte +54 -67
- package/dist/components/utilities/Accordion.svelte.d.ts +4 -1
- package/dist/components/utilities/Carousel.svelte +124 -152
- package/dist/components/utilities/Collapse.svelte +46 -60
- package/dist/components/utilities/Hero.svelte +42 -0
- package/dist/components/utilities/Hero.svelte.d.ts +10 -0
- package/dist/components/utilities/Portal.svelte +47 -72
- package/dist/components/utilities/ScrollArea.svelte +33 -41
- package/dist/components/utilities/SystemConsole.svelte +310 -0
- package/dist/components/utilities/SystemConsole.svelte.d.ts +20 -0
- package/dist/components/utilities/SystemInterface.svelte +726 -0
- package/dist/components/utilities/SystemInterface.svelte.d.ts +19 -0
- package/dist/components/utilities/index.d.ts +4 -0
- package/dist/components/utilities/index.js +3 -0
- package/dist/components/utilities/utilities.types.d.ts +46 -0
- package/dist/components/utilities/utilities.types.js +4 -0
- package/dist/index.d.ts +57 -5
- package/dist/index.js +5 -5
- package/dist/theme.css +2889 -218
- package/package.json +83 -76
package/dist/theme.css
CHANGED
|
@@ -1,218 +1,2889 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
@theme
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
1
|
+
/*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties;
|
|
3
|
+
@layer theme, base, components, utilities;
|
|
4
|
+
@layer theme {
|
|
5
|
+
:root, :host {
|
|
6
|
+
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
7
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
8
|
+
--font-mono: 'JetBrains Mono', monospace;
|
|
9
|
+
--color-red-400: oklch(70.4% 0.191 22.216);
|
|
10
|
+
--color-red-500: oklch(63.7% 0.237 25.331);
|
|
11
|
+
--color-neutral-400: oklch(70.8% 0 0);
|
|
12
|
+
--color-white: #fff;
|
|
13
|
+
--spacing: 0.25rem;
|
|
14
|
+
--breakpoint-sm: 40rem;
|
|
15
|
+
--breakpoint-md: 48rem;
|
|
16
|
+
--breakpoint-lg: 64rem;
|
|
17
|
+
--breakpoint-xl: 80rem;
|
|
18
|
+
--container-sm: 24rem;
|
|
19
|
+
--container-md: 28rem;
|
|
20
|
+
--container-3xl: 48rem;
|
|
21
|
+
--text-xs: 0.75rem;
|
|
22
|
+
--text-xs--line-height: 1rem;
|
|
23
|
+
--text-sm: 0.875rem;
|
|
24
|
+
--text-sm--line-height: 1.25rem;
|
|
25
|
+
--text-base: 1rem;
|
|
26
|
+
--text-base--line-height: 1.5rem;
|
|
27
|
+
--text-lg: 1.125rem;
|
|
28
|
+
--text-lg--line-height: 1.75rem;
|
|
29
|
+
--text-xl: 1.25rem;
|
|
30
|
+
--text-xl--line-height: 1.75rem;
|
|
31
|
+
--text-2xl: 1.5rem;
|
|
32
|
+
--text-2xl--line-height: 2rem;
|
|
33
|
+
--text-4xl: 2.25rem;
|
|
34
|
+
--text-5xl: 3rem;
|
|
35
|
+
--text-5xl--line-height: 1;
|
|
36
|
+
--text-9xl: 8rem;
|
|
37
|
+
--font-weight-medium: 500;
|
|
38
|
+
--font-weight-semibold: 600;
|
|
39
|
+
--font-weight-bold: 700;
|
|
40
|
+
--tracking-wide: 0.025em;
|
|
41
|
+
--tracking-wider: 0.05em;
|
|
42
|
+
--radius-sm: 6px;
|
|
43
|
+
--radius-md: 10px;
|
|
44
|
+
--radius-lg: 14px;
|
|
45
|
+
--radius-xl: 18px;
|
|
46
|
+
--radius-2xl: 24px;
|
|
47
|
+
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
48
|
+
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
49
|
+
--animate-spin: spin 1s linear infinite;
|
|
50
|
+
--blur-md: 12px;
|
|
51
|
+
--default-transition-duration: 150ms;
|
|
52
|
+
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
53
|
+
--default-font-family: var(--font-sans);
|
|
54
|
+
--default-mono-font-family: var(--font-mono);
|
|
55
|
+
--color-base-0: #0a0a0a;
|
|
56
|
+
--color-base-1: #121212;
|
|
57
|
+
--color-base-2: #1a1a1a;
|
|
58
|
+
--color-base-3: #242424;
|
|
59
|
+
--color-accent: #6b21a8;
|
|
60
|
+
--color-accent-soft: #8b5cf6;
|
|
61
|
+
--color-accent-dark: #581c87;
|
|
62
|
+
--color-secondary: #3b82f6;
|
|
63
|
+
--color-crimson: #ef4444;
|
|
64
|
+
--color-text: #e0e0e0;
|
|
65
|
+
--color-text-soft: #a3a3a3;
|
|
66
|
+
--color-text-muted: #737373;
|
|
67
|
+
--color-success: #10b981;
|
|
68
|
+
--color-warning: #f59e0b;
|
|
69
|
+
--color-error: #ef4444;
|
|
70
|
+
--color-info: #0891b2;
|
|
71
|
+
--color-surface: var(--color-base-1);
|
|
72
|
+
--color-panel: var(--color-base-2);
|
|
73
|
+
--color-overlay: color-mix(in srgb, black 75%, transparent);
|
|
74
|
+
--color-border: color-mix(in srgb, white 15%, transparent);
|
|
75
|
+
--color-border-strong: color-mix(in srgb, white 20%, transparent);
|
|
76
|
+
--color-border-glow: color-mix(
|
|
77
|
+
in srgb,
|
|
78
|
+
#6b21a8 30%,
|
|
79
|
+
transparent
|
|
80
|
+
);
|
|
81
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
82
|
+
--color-border-glow: color-mix(
|
|
83
|
+
in srgb,
|
|
84
|
+
var(--color-accent) 30%,
|
|
85
|
+
transparent
|
|
86
|
+
);
|
|
87
|
+
}
|
|
88
|
+
--color-accent-overlay-5: color-mix(
|
|
89
|
+
in srgb,
|
|
90
|
+
#6b21a8 5%,
|
|
91
|
+
transparent
|
|
92
|
+
);
|
|
93
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
94
|
+
--color-accent-overlay-5: color-mix(
|
|
95
|
+
in srgb,
|
|
96
|
+
var(--color-accent) 5%,
|
|
97
|
+
transparent
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
--color-accent-overlay-10: color-mix(
|
|
101
|
+
in srgb,
|
|
102
|
+
#6b21a8 10%,
|
|
103
|
+
transparent
|
|
104
|
+
);
|
|
105
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
106
|
+
--color-accent-overlay-10: color-mix(
|
|
107
|
+
in srgb,
|
|
108
|
+
var(--color-accent) 10%,
|
|
109
|
+
transparent
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
--color-accent-overlay-15: color-mix(
|
|
113
|
+
in srgb,
|
|
114
|
+
#6b21a8 15%,
|
|
115
|
+
transparent
|
|
116
|
+
);
|
|
117
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
118
|
+
--color-accent-overlay-15: color-mix(
|
|
119
|
+
in srgb,
|
|
120
|
+
var(--color-accent) 15%,
|
|
121
|
+
transparent
|
|
122
|
+
);
|
|
123
|
+
}
|
|
124
|
+
--color-accent-overlay-20: color-mix(
|
|
125
|
+
in srgb,
|
|
126
|
+
#6b21a8 20%,
|
|
127
|
+
transparent
|
|
128
|
+
);
|
|
129
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
130
|
+
--color-accent-overlay-20: color-mix(
|
|
131
|
+
in srgb,
|
|
132
|
+
var(--color-accent) 20%,
|
|
133
|
+
transparent
|
|
134
|
+
);
|
|
135
|
+
}
|
|
136
|
+
--color-accent-overlay-30: color-mix(
|
|
137
|
+
in srgb,
|
|
138
|
+
#6b21a8 30%,
|
|
139
|
+
transparent
|
|
140
|
+
);
|
|
141
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
142
|
+
--color-accent-overlay-30: color-mix(
|
|
143
|
+
in srgb,
|
|
144
|
+
var(--color-accent) 30%,
|
|
145
|
+
transparent
|
|
146
|
+
);
|
|
147
|
+
}
|
|
148
|
+
--color-accent-overlay-50: color-mix(
|
|
149
|
+
in srgb,
|
|
150
|
+
#6b21a8 50%,
|
|
151
|
+
transparent
|
|
152
|
+
);
|
|
153
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
154
|
+
--color-accent-overlay-50: color-mix(
|
|
155
|
+
in srgb,
|
|
156
|
+
var(--color-accent) 50%,
|
|
157
|
+
transparent
|
|
158
|
+
);
|
|
159
|
+
}
|
|
160
|
+
--color-accent-overlay-70: color-mix(
|
|
161
|
+
in srgb,
|
|
162
|
+
#6b21a8 70%,
|
|
163
|
+
transparent
|
|
164
|
+
);
|
|
165
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
166
|
+
--color-accent-overlay-70: color-mix(
|
|
167
|
+
in srgb,
|
|
168
|
+
var(--color-accent) 70%,
|
|
169
|
+
transparent
|
|
170
|
+
);
|
|
171
|
+
}
|
|
172
|
+
--color-secondary-overlay-10: color-mix(
|
|
173
|
+
in srgb,
|
|
174
|
+
#3b82f6 10%,
|
|
175
|
+
transparent
|
|
176
|
+
);
|
|
177
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
178
|
+
--color-secondary-overlay-10: color-mix(
|
|
179
|
+
in srgb,
|
|
180
|
+
var(--color-secondary) 10%,
|
|
181
|
+
transparent
|
|
182
|
+
);
|
|
183
|
+
}
|
|
184
|
+
--color-secondary-overlay-20: color-mix(
|
|
185
|
+
in srgb,
|
|
186
|
+
#3b82f6 20%,
|
|
187
|
+
transparent
|
|
188
|
+
);
|
|
189
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
190
|
+
--color-secondary-overlay-20: color-mix(
|
|
191
|
+
in srgb,
|
|
192
|
+
var(--color-secondary) 20%,
|
|
193
|
+
transparent
|
|
194
|
+
);
|
|
195
|
+
}
|
|
196
|
+
--color-neutral-overlay-2: color-mix(in srgb, white 2%, transparent);
|
|
197
|
+
--color-shadow-overlay-20: color-mix(in srgb, black 20%, transparent);
|
|
198
|
+
--color-success-overlay-15: color-mix(
|
|
199
|
+
in srgb,
|
|
200
|
+
#10b981 15%,
|
|
201
|
+
transparent
|
|
202
|
+
);
|
|
203
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
204
|
+
--color-success-overlay-15: color-mix(
|
|
205
|
+
in srgb,
|
|
206
|
+
var(--color-success) 15%,
|
|
207
|
+
transparent
|
|
208
|
+
);
|
|
209
|
+
}
|
|
210
|
+
--color-success-overlay-30: color-mix(
|
|
211
|
+
in srgb,
|
|
212
|
+
#10b981 30%,
|
|
213
|
+
transparent
|
|
214
|
+
);
|
|
215
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
216
|
+
--color-success-overlay-30: color-mix(
|
|
217
|
+
in srgb,
|
|
218
|
+
var(--color-success) 30%,
|
|
219
|
+
transparent
|
|
220
|
+
);
|
|
221
|
+
}
|
|
222
|
+
--color-warning-overlay-15: color-mix(
|
|
223
|
+
in srgb,
|
|
224
|
+
#f59e0b 15%,
|
|
225
|
+
transparent
|
|
226
|
+
);
|
|
227
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
228
|
+
--color-warning-overlay-15: color-mix(
|
|
229
|
+
in srgb,
|
|
230
|
+
var(--color-warning) 15%,
|
|
231
|
+
transparent
|
|
232
|
+
);
|
|
233
|
+
}
|
|
234
|
+
--color-warning-overlay-30: color-mix(
|
|
235
|
+
in srgb,
|
|
236
|
+
#f59e0b 30%,
|
|
237
|
+
transparent
|
|
238
|
+
);
|
|
239
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
240
|
+
--color-warning-overlay-30: color-mix(
|
|
241
|
+
in srgb,
|
|
242
|
+
var(--color-warning) 30%,
|
|
243
|
+
transparent
|
|
244
|
+
);
|
|
245
|
+
}
|
|
246
|
+
--color-error-overlay-10: color-mix(
|
|
247
|
+
in srgb,
|
|
248
|
+
#ef4444 10%,
|
|
249
|
+
transparent
|
|
250
|
+
);
|
|
251
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
252
|
+
--color-error-overlay-10: color-mix(
|
|
253
|
+
in srgb,
|
|
254
|
+
var(--color-error) 10%,
|
|
255
|
+
transparent
|
|
256
|
+
);
|
|
257
|
+
}
|
|
258
|
+
--color-error-overlay-15: color-mix(
|
|
259
|
+
in srgb,
|
|
260
|
+
#ef4444 15%,
|
|
261
|
+
transparent
|
|
262
|
+
);
|
|
263
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
264
|
+
--color-error-overlay-15: color-mix(
|
|
265
|
+
in srgb,
|
|
266
|
+
var(--color-error) 15%,
|
|
267
|
+
transparent
|
|
268
|
+
);
|
|
269
|
+
}
|
|
270
|
+
--color-error-overlay-30: color-mix(
|
|
271
|
+
in srgb,
|
|
272
|
+
#ef4444 30%,
|
|
273
|
+
transparent
|
|
274
|
+
);
|
|
275
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
276
|
+
--color-error-overlay-30: color-mix(
|
|
277
|
+
in srgb,
|
|
278
|
+
var(--color-error) 30%,
|
|
279
|
+
transparent
|
|
280
|
+
);
|
|
281
|
+
}
|
|
282
|
+
--color-info-overlay-10: color-mix(
|
|
283
|
+
in srgb,
|
|
284
|
+
#0891b2 10%,
|
|
285
|
+
transparent
|
|
286
|
+
);
|
|
287
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
288
|
+
--color-info-overlay-10: color-mix(
|
|
289
|
+
in srgb,
|
|
290
|
+
var(--color-info) 10%,
|
|
291
|
+
transparent
|
|
292
|
+
);
|
|
293
|
+
}
|
|
294
|
+
--color-info-overlay-20: color-mix(
|
|
295
|
+
in srgb,
|
|
296
|
+
#0891b2 20%,
|
|
297
|
+
transparent
|
|
298
|
+
);
|
|
299
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
300
|
+
--color-info-overlay-20: color-mix(
|
|
301
|
+
in srgb,
|
|
302
|
+
var(--color-info) 20%,
|
|
303
|
+
transparent
|
|
304
|
+
);
|
|
305
|
+
}
|
|
306
|
+
--shadow-accent-glow: 0 0 20px
|
|
307
|
+
color-mix(in srgb, #6b21a8 50%, transparent),
|
|
308
|
+
0 0 40px color-mix(in srgb, #6b21a8 30%, transparent),
|
|
309
|
+
0 0 60px color-mix(in srgb, #6b21a8 15%, transparent);
|
|
310
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
311
|
+
--shadow-accent-glow: 0 0 20px
|
|
312
|
+
color-mix(in srgb, var(--color-accent) 50%, transparent),
|
|
313
|
+
0 0 40px color-mix(in srgb, var(--color-accent) 30%, transparent),
|
|
314
|
+
0 0 60px color-mix(in srgb, var(--color-accent) 15%, transparent);
|
|
315
|
+
}
|
|
316
|
+
--shadow-error-glow: 0 0 20px
|
|
317
|
+
color-mix(in srgb, #ef4444 30%, transparent);
|
|
318
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
319
|
+
--shadow-error-glow: 0 0 20px
|
|
320
|
+
color-mix(in srgb, var(--color-error) 30%, transparent);
|
|
321
|
+
}
|
|
322
|
+
--shadow-deep: 0 10px 40px color-mix(in srgb, black 60%, transparent);
|
|
323
|
+
--shadow-text-glow: 0 0 20px
|
|
324
|
+
color-mix(in srgb, #6b21a8 60%, transparent),
|
|
325
|
+
0 0 40px color-mix(in srgb, #6b21a8 40%, transparent);
|
|
326
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
327
|
+
--shadow-text-glow: 0 0 20px
|
|
328
|
+
color-mix(in srgb, var(--color-accent) 60%, transparent),
|
|
329
|
+
0 0 40px color-mix(in srgb, var(--color-accent) 40%, transparent);
|
|
330
|
+
}
|
|
331
|
+
--glass-panel-background: color-mix(in srgb, white 5%, transparent);
|
|
332
|
+
--glass-panel-blur: 12px;
|
|
333
|
+
--radius-none: 0px;
|
|
334
|
+
--radius-pill: 999px;
|
|
335
|
+
--font-heading: 'Inter', sans-serif;
|
|
336
|
+
--font-body: 'Inter', sans-serif;
|
|
337
|
+
--text-h1-size: 3.5rem;
|
|
338
|
+
--text-h1-line-height: 1.2;
|
|
339
|
+
--text-h1-weight: 700;
|
|
340
|
+
--text-h1-letter-spacing: -0.02em;
|
|
341
|
+
--text-h2-size: 2.5rem;
|
|
342
|
+
--text-h2-line-height: 1.25;
|
|
343
|
+
--text-h2-weight: 600;
|
|
344
|
+
--text-h2-letter-spacing: -0.015em;
|
|
345
|
+
--text-h3-size: 2rem;
|
|
346
|
+
--text-h3-line-height: 1.3;
|
|
347
|
+
--text-h3-weight: 600;
|
|
348
|
+
--text-h3-letter-spacing: -0.01em;
|
|
349
|
+
--text-h4-size: 1.5rem;
|
|
350
|
+
--text-h4-line-height: 1.35;
|
|
351
|
+
--text-h4-weight: 600;
|
|
352
|
+
--text-h4-letter-spacing: -0.01em;
|
|
353
|
+
--text-h5-size: 1.25rem;
|
|
354
|
+
--text-h5-line-height: 1.4;
|
|
355
|
+
--text-h5-weight: 500;
|
|
356
|
+
--text-h5-letter-spacing: -0.005em;
|
|
357
|
+
--text-h6-size: 1rem;
|
|
358
|
+
--text-h6-line-height: 1.5;
|
|
359
|
+
--text-h6-weight: 500;
|
|
360
|
+
--text-h6-letter-spacing: 0;
|
|
361
|
+
--text-body-size: 1rem;
|
|
362
|
+
--text-body-line-height: 1.6;
|
|
363
|
+
--text-body-weight: 400;
|
|
364
|
+
--text-body-letter-spacing: 0.01em;
|
|
365
|
+
--text-caption-size: 0.875rem;
|
|
366
|
+
--text-caption-line-height: 1.5;
|
|
367
|
+
--text-caption-weight: 400;
|
|
368
|
+
--text-caption-letter-spacing: 0.015em;
|
|
369
|
+
--z-0: 0;
|
|
370
|
+
--z-10: 10;
|
|
371
|
+
--z-20: 20;
|
|
372
|
+
--z-30: 30;
|
|
373
|
+
--z-40: 40;
|
|
374
|
+
--z-50: 50;
|
|
375
|
+
--duration-75: 75ms;
|
|
376
|
+
--duration-200: 200ms;
|
|
377
|
+
--duration-300: 300ms;
|
|
378
|
+
--duration-1000: 1000ms;
|
|
379
|
+
--opacity-0: 0;
|
|
380
|
+
--opacity-40: 0.4;
|
|
381
|
+
--opacity-50: 0.5;
|
|
382
|
+
--opacity-60: 0.6;
|
|
383
|
+
--opacity-70: 0.7;
|
|
384
|
+
--opacity-100: 1;
|
|
385
|
+
--ease-luxe: cubic-bezier(0.23, 1, 0.32, 1);
|
|
386
|
+
--ease-sharp: cubic-bezier(0.4, 0.1, 0.2, 1);
|
|
387
|
+
--spacing-18: 4.5rem;
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
@layer base {
|
|
391
|
+
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
392
|
+
box-sizing: border-box;
|
|
393
|
+
margin: 0;
|
|
394
|
+
padding: 0;
|
|
395
|
+
border: 0 solid;
|
|
396
|
+
}
|
|
397
|
+
html, :host {
|
|
398
|
+
line-height: 1.5;
|
|
399
|
+
-webkit-text-size-adjust: 100%;
|
|
400
|
+
tab-size: 4;
|
|
401
|
+
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
402
|
+
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
403
|
+
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
404
|
+
-webkit-tap-highlight-color: transparent;
|
|
405
|
+
}
|
|
406
|
+
hr {
|
|
407
|
+
height: 0;
|
|
408
|
+
color: inherit;
|
|
409
|
+
border-top-width: 1px;
|
|
410
|
+
}
|
|
411
|
+
abbr:where([title]) {
|
|
412
|
+
-webkit-text-decoration: underline dotted;
|
|
413
|
+
text-decoration: underline dotted;
|
|
414
|
+
}
|
|
415
|
+
h1, h2, h3, h4, h5, h6 {
|
|
416
|
+
font-size: inherit;
|
|
417
|
+
font-weight: inherit;
|
|
418
|
+
}
|
|
419
|
+
a {
|
|
420
|
+
color: inherit;
|
|
421
|
+
-webkit-text-decoration: inherit;
|
|
422
|
+
text-decoration: inherit;
|
|
423
|
+
}
|
|
424
|
+
b, strong {
|
|
425
|
+
font-weight: bolder;
|
|
426
|
+
}
|
|
427
|
+
code, kbd, samp, pre {
|
|
428
|
+
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
429
|
+
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
430
|
+
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
431
|
+
font-size: 1em;
|
|
432
|
+
}
|
|
433
|
+
small {
|
|
434
|
+
font-size: 80%;
|
|
435
|
+
}
|
|
436
|
+
sub, sup {
|
|
437
|
+
font-size: 75%;
|
|
438
|
+
line-height: 0;
|
|
439
|
+
position: relative;
|
|
440
|
+
vertical-align: baseline;
|
|
441
|
+
}
|
|
442
|
+
sub {
|
|
443
|
+
bottom: -0.25em;
|
|
444
|
+
}
|
|
445
|
+
sup {
|
|
446
|
+
top: -0.5em;
|
|
447
|
+
}
|
|
448
|
+
table {
|
|
449
|
+
text-indent: 0;
|
|
450
|
+
border-color: inherit;
|
|
451
|
+
border-collapse: collapse;
|
|
452
|
+
}
|
|
453
|
+
:-moz-focusring {
|
|
454
|
+
outline: auto;
|
|
455
|
+
}
|
|
456
|
+
progress {
|
|
457
|
+
vertical-align: baseline;
|
|
458
|
+
}
|
|
459
|
+
summary {
|
|
460
|
+
display: list-item;
|
|
461
|
+
}
|
|
462
|
+
ol, ul, menu {
|
|
463
|
+
list-style: none;
|
|
464
|
+
}
|
|
465
|
+
img, svg, video, canvas, audio, iframe, embed, object {
|
|
466
|
+
display: block;
|
|
467
|
+
vertical-align: middle;
|
|
468
|
+
}
|
|
469
|
+
img, video {
|
|
470
|
+
max-width: 100%;
|
|
471
|
+
height: auto;
|
|
472
|
+
}
|
|
473
|
+
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
474
|
+
font: inherit;
|
|
475
|
+
font-feature-settings: inherit;
|
|
476
|
+
font-variation-settings: inherit;
|
|
477
|
+
letter-spacing: inherit;
|
|
478
|
+
color: inherit;
|
|
479
|
+
border-radius: 0;
|
|
480
|
+
background-color: transparent;
|
|
481
|
+
opacity: 1;
|
|
482
|
+
}
|
|
483
|
+
:where(select:is([multiple], [size])) optgroup {
|
|
484
|
+
font-weight: bolder;
|
|
485
|
+
}
|
|
486
|
+
:where(select:is([multiple], [size])) optgroup option {
|
|
487
|
+
padding-inline-start: 20px;
|
|
488
|
+
}
|
|
489
|
+
::file-selector-button {
|
|
490
|
+
margin-inline-end: 4px;
|
|
491
|
+
}
|
|
492
|
+
::placeholder {
|
|
493
|
+
opacity: 1;
|
|
494
|
+
}
|
|
495
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
496
|
+
::placeholder {
|
|
497
|
+
color: currentcolor;
|
|
498
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
499
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
textarea {
|
|
504
|
+
resize: vertical;
|
|
505
|
+
}
|
|
506
|
+
::-webkit-search-decoration {
|
|
507
|
+
-webkit-appearance: none;
|
|
508
|
+
}
|
|
509
|
+
::-webkit-date-and-time-value {
|
|
510
|
+
min-height: 1lh;
|
|
511
|
+
text-align: inherit;
|
|
512
|
+
}
|
|
513
|
+
::-webkit-datetime-edit {
|
|
514
|
+
display: inline-flex;
|
|
515
|
+
}
|
|
516
|
+
::-webkit-datetime-edit-fields-wrapper {
|
|
517
|
+
padding: 0;
|
|
518
|
+
}
|
|
519
|
+
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
520
|
+
padding-block: 0;
|
|
521
|
+
}
|
|
522
|
+
::-webkit-calendar-picker-indicator {
|
|
523
|
+
line-height: 1;
|
|
524
|
+
}
|
|
525
|
+
:-moz-ui-invalid {
|
|
526
|
+
box-shadow: none;
|
|
527
|
+
}
|
|
528
|
+
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
|
|
529
|
+
appearance: button;
|
|
530
|
+
}
|
|
531
|
+
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
532
|
+
height: auto;
|
|
533
|
+
}
|
|
534
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
535
|
+
display: none !important;
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
@layer utilities {
|
|
539
|
+
.pointer-events-none {
|
|
540
|
+
pointer-events: none;
|
|
541
|
+
}
|
|
542
|
+
.collapse {
|
|
543
|
+
visibility: collapse;
|
|
544
|
+
}
|
|
545
|
+
.invisible {
|
|
546
|
+
visibility: hidden;
|
|
547
|
+
}
|
|
548
|
+
.visible {
|
|
549
|
+
visibility: visible;
|
|
550
|
+
}
|
|
551
|
+
.sr-only {
|
|
552
|
+
position: absolute;
|
|
553
|
+
width: 1px;
|
|
554
|
+
height: 1px;
|
|
555
|
+
padding: 0;
|
|
556
|
+
margin: -1px;
|
|
557
|
+
overflow: hidden;
|
|
558
|
+
clip-path: inset(50%);
|
|
559
|
+
white-space: nowrap;
|
|
560
|
+
border-width: 0;
|
|
561
|
+
}
|
|
562
|
+
.absolute {
|
|
563
|
+
position: absolute;
|
|
564
|
+
}
|
|
565
|
+
.fixed {
|
|
566
|
+
position: fixed;
|
|
567
|
+
}
|
|
568
|
+
.relative {
|
|
569
|
+
position: relative;
|
|
570
|
+
}
|
|
571
|
+
.static {
|
|
572
|
+
position: static;
|
|
573
|
+
}
|
|
574
|
+
.sticky {
|
|
575
|
+
position: sticky;
|
|
576
|
+
}
|
|
577
|
+
.inset-0 {
|
|
578
|
+
inset: calc(var(--spacing) * 0);
|
|
579
|
+
}
|
|
580
|
+
.top-0 {
|
|
581
|
+
top: calc(var(--spacing) * 0);
|
|
582
|
+
}
|
|
583
|
+
.top-1\/2 {
|
|
584
|
+
top: calc(1/2 * 100%);
|
|
585
|
+
}
|
|
586
|
+
.top-4 {
|
|
587
|
+
top: calc(var(--spacing) * 4);
|
|
588
|
+
}
|
|
589
|
+
.top-6 {
|
|
590
|
+
top: calc(var(--spacing) * 6);
|
|
591
|
+
}
|
|
592
|
+
.top-full {
|
|
593
|
+
top: 100%;
|
|
594
|
+
}
|
|
595
|
+
.right-0 {
|
|
596
|
+
right: calc(var(--spacing) * 0);
|
|
597
|
+
}
|
|
598
|
+
.right-2 {
|
|
599
|
+
right: calc(var(--spacing) * 2);
|
|
600
|
+
}
|
|
601
|
+
.right-4 {
|
|
602
|
+
right: calc(var(--spacing) * 4);
|
|
603
|
+
}
|
|
604
|
+
.right-6 {
|
|
605
|
+
right: calc(var(--spacing) * 6);
|
|
606
|
+
}
|
|
607
|
+
.right-full {
|
|
608
|
+
right: 100%;
|
|
609
|
+
}
|
|
610
|
+
.bottom-0 {
|
|
611
|
+
bottom: calc(var(--spacing) * 0);
|
|
612
|
+
}
|
|
613
|
+
.bottom-4 {
|
|
614
|
+
bottom: calc(var(--spacing) * 4);
|
|
615
|
+
}
|
|
616
|
+
.bottom-6 {
|
|
617
|
+
bottom: calc(var(--spacing) * 6);
|
|
618
|
+
}
|
|
619
|
+
.bottom-full {
|
|
620
|
+
bottom: 100%;
|
|
621
|
+
}
|
|
622
|
+
.left-0 {
|
|
623
|
+
left: calc(var(--spacing) * 0);
|
|
624
|
+
}
|
|
625
|
+
.left-1\/2 {
|
|
626
|
+
left: calc(1/2 * 100%);
|
|
627
|
+
}
|
|
628
|
+
.left-2 {
|
|
629
|
+
left: calc(var(--spacing) * 2);
|
|
630
|
+
}
|
|
631
|
+
.left-4 {
|
|
632
|
+
left: calc(var(--spacing) * 4);
|
|
633
|
+
}
|
|
634
|
+
.left-6 {
|
|
635
|
+
left: calc(var(--spacing) * 6);
|
|
636
|
+
}
|
|
637
|
+
.left-full {
|
|
638
|
+
left: 100%;
|
|
639
|
+
}
|
|
640
|
+
.z-10 {
|
|
641
|
+
z-index: 10;
|
|
642
|
+
}
|
|
643
|
+
.z-40 {
|
|
644
|
+
z-index: 40;
|
|
645
|
+
}
|
|
646
|
+
.z-50 {
|
|
647
|
+
z-index: 50;
|
|
648
|
+
}
|
|
649
|
+
.z-\[100\] {
|
|
650
|
+
z-index: 100;
|
|
651
|
+
}
|
|
652
|
+
.z-\[9999\] {
|
|
653
|
+
z-index: 9999;
|
|
654
|
+
}
|
|
655
|
+
.z-\[var\(--z-40\)\] {
|
|
656
|
+
z-index: var(--z-40);
|
|
657
|
+
}
|
|
658
|
+
.z-\[var\(--z-50\)\] {
|
|
659
|
+
z-index: var(--z-50);
|
|
660
|
+
}
|
|
661
|
+
.container {
|
|
662
|
+
width: 100%;
|
|
663
|
+
@media (width >= 40rem) {
|
|
664
|
+
max-width: 40rem;
|
|
665
|
+
}
|
|
666
|
+
@media (width >= 48rem) {
|
|
667
|
+
max-width: 48rem;
|
|
668
|
+
}
|
|
669
|
+
@media (width >= 64rem) {
|
|
670
|
+
max-width: 64rem;
|
|
671
|
+
}
|
|
672
|
+
@media (width >= 80rem) {
|
|
673
|
+
max-width: 80rem;
|
|
674
|
+
}
|
|
675
|
+
@media (width >= 96rem) {
|
|
676
|
+
max-width: 96rem;
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
.mx-0 {
|
|
680
|
+
margin-inline: calc(var(--spacing) * 0);
|
|
681
|
+
}
|
|
682
|
+
.mx-2 {
|
|
683
|
+
margin-inline: calc(var(--spacing) * 2);
|
|
684
|
+
}
|
|
685
|
+
.mx-4 {
|
|
686
|
+
margin-inline: calc(var(--spacing) * 4);
|
|
687
|
+
}
|
|
688
|
+
.mx-6 {
|
|
689
|
+
margin-inline: calc(var(--spacing) * 6);
|
|
690
|
+
}
|
|
691
|
+
.mx-auto {
|
|
692
|
+
margin-inline: auto;
|
|
693
|
+
}
|
|
694
|
+
.my-0 {
|
|
695
|
+
margin-block: calc(var(--spacing) * 0);
|
|
696
|
+
}
|
|
697
|
+
.my-2 {
|
|
698
|
+
margin-block: calc(var(--spacing) * 2);
|
|
699
|
+
}
|
|
700
|
+
.my-4 {
|
|
701
|
+
margin-block: calc(var(--spacing) * 4);
|
|
702
|
+
}
|
|
703
|
+
.my-6 {
|
|
704
|
+
margin-block: calc(var(--spacing) * 6);
|
|
705
|
+
}
|
|
706
|
+
.-mt-3 {
|
|
707
|
+
margin-top: calc(var(--spacing) * -3);
|
|
708
|
+
}
|
|
709
|
+
.mt-1 {
|
|
710
|
+
margin-top: calc(var(--spacing) * 1);
|
|
711
|
+
}
|
|
712
|
+
.mt-1\.5 {
|
|
713
|
+
margin-top: calc(var(--spacing) * 1.5);
|
|
714
|
+
}
|
|
715
|
+
.mt-2 {
|
|
716
|
+
margin-top: calc(var(--spacing) * 2);
|
|
717
|
+
}
|
|
718
|
+
.mt-3 {
|
|
719
|
+
margin-top: calc(var(--spacing) * 3);
|
|
720
|
+
}
|
|
721
|
+
.mt-4 {
|
|
722
|
+
margin-top: calc(var(--spacing) * 4);
|
|
723
|
+
}
|
|
724
|
+
.mr-2 {
|
|
725
|
+
margin-right: calc(var(--spacing) * 2);
|
|
726
|
+
}
|
|
727
|
+
.mr-4 {
|
|
728
|
+
margin-right: calc(var(--spacing) * 4);
|
|
729
|
+
}
|
|
730
|
+
.mb-1 {
|
|
731
|
+
margin-bottom: calc(var(--spacing) * 1);
|
|
732
|
+
}
|
|
733
|
+
.mb-2 {
|
|
734
|
+
margin-bottom: calc(var(--spacing) * 2);
|
|
735
|
+
}
|
|
736
|
+
.mb-3 {
|
|
737
|
+
margin-bottom: calc(var(--spacing) * 3);
|
|
738
|
+
}
|
|
739
|
+
.mb-4 {
|
|
740
|
+
margin-bottom: calc(var(--spacing) * 4);
|
|
741
|
+
}
|
|
742
|
+
.mb-8 {
|
|
743
|
+
margin-bottom: calc(var(--spacing) * 8);
|
|
744
|
+
}
|
|
745
|
+
.ml-1 {
|
|
746
|
+
margin-left: calc(var(--spacing) * 1);
|
|
747
|
+
}
|
|
748
|
+
.ml-2 {
|
|
749
|
+
margin-left: calc(var(--spacing) * 2);
|
|
750
|
+
}
|
|
751
|
+
.ml-4 {
|
|
752
|
+
margin-left: calc(var(--spacing) * 4);
|
|
753
|
+
}
|
|
754
|
+
.ml-14 {
|
|
755
|
+
margin-left: calc(var(--spacing) * 14);
|
|
756
|
+
}
|
|
757
|
+
.ml-16 {
|
|
758
|
+
margin-left: calc(var(--spacing) * 16);
|
|
759
|
+
}
|
|
760
|
+
.ml-20 {
|
|
761
|
+
margin-left: calc(var(--spacing) * 20);
|
|
762
|
+
}
|
|
763
|
+
.ml-56 {
|
|
764
|
+
margin-left: calc(var(--spacing) * 56);
|
|
765
|
+
}
|
|
766
|
+
.ml-64 {
|
|
767
|
+
margin-left: calc(var(--spacing) * 64);
|
|
768
|
+
}
|
|
769
|
+
.ml-80 {
|
|
770
|
+
margin-left: calc(var(--spacing) * 80);
|
|
771
|
+
}
|
|
772
|
+
.block {
|
|
773
|
+
display: block;
|
|
774
|
+
}
|
|
775
|
+
.contents {
|
|
776
|
+
display: contents;
|
|
777
|
+
}
|
|
778
|
+
.flex {
|
|
779
|
+
display: flex;
|
|
780
|
+
}
|
|
781
|
+
.grid {
|
|
782
|
+
display: grid;
|
|
783
|
+
}
|
|
784
|
+
.hidden {
|
|
785
|
+
display: none;
|
|
786
|
+
}
|
|
787
|
+
.inline {
|
|
788
|
+
display: inline;
|
|
789
|
+
}
|
|
790
|
+
.inline-block {
|
|
791
|
+
display: inline-block;
|
|
792
|
+
}
|
|
793
|
+
.inline-flex {
|
|
794
|
+
display: inline-flex;
|
|
795
|
+
}
|
|
796
|
+
.table {
|
|
797
|
+
display: table;
|
|
798
|
+
}
|
|
799
|
+
.h-0\.5 {
|
|
800
|
+
height: calc(var(--spacing) * 0.5);
|
|
801
|
+
}
|
|
802
|
+
.h-2 {
|
|
803
|
+
height: calc(var(--spacing) * 2);
|
|
804
|
+
}
|
|
805
|
+
.h-3 {
|
|
806
|
+
height: calc(var(--spacing) * 3);
|
|
807
|
+
}
|
|
808
|
+
.h-4 {
|
|
809
|
+
height: calc(var(--spacing) * 4);
|
|
810
|
+
}
|
|
811
|
+
.h-5 {
|
|
812
|
+
height: calc(var(--spacing) * 5);
|
|
813
|
+
}
|
|
814
|
+
.h-6 {
|
|
815
|
+
height: calc(var(--spacing) * 6);
|
|
816
|
+
}
|
|
817
|
+
.h-7 {
|
|
818
|
+
height: calc(var(--spacing) * 7);
|
|
819
|
+
}
|
|
820
|
+
.h-8 {
|
|
821
|
+
height: calc(var(--spacing) * 8);
|
|
822
|
+
}
|
|
823
|
+
.h-10 {
|
|
824
|
+
height: calc(var(--spacing) * 10);
|
|
825
|
+
}
|
|
826
|
+
.h-12 {
|
|
827
|
+
height: calc(var(--spacing) * 12);
|
|
828
|
+
}
|
|
829
|
+
.h-14 {
|
|
830
|
+
height: calc(var(--spacing) * 14);
|
|
831
|
+
}
|
|
832
|
+
.h-16 {
|
|
833
|
+
height: calc(var(--spacing) * 16);
|
|
834
|
+
}
|
|
835
|
+
.h-18 {
|
|
836
|
+
height: var(--spacing-18);
|
|
837
|
+
}
|
|
838
|
+
.h-24 {
|
|
839
|
+
height: calc(var(--spacing) * 24);
|
|
840
|
+
}
|
|
841
|
+
.h-full {
|
|
842
|
+
height: 100%;
|
|
843
|
+
}
|
|
844
|
+
.max-h-\[20rem\] {
|
|
845
|
+
max-height: 20rem;
|
|
846
|
+
}
|
|
847
|
+
.max-h-\[28rem\] {
|
|
848
|
+
max-height: 28rem;
|
|
849
|
+
}
|
|
850
|
+
.max-h-\[36rem\] {
|
|
851
|
+
max-height: 36rem;
|
|
852
|
+
}
|
|
853
|
+
.max-h-\[70vh\] {
|
|
854
|
+
max-height: 70vh;
|
|
855
|
+
}
|
|
856
|
+
.max-h-\[90vh\] {
|
|
857
|
+
max-height: 90vh;
|
|
858
|
+
}
|
|
859
|
+
.max-h-\[400px\] {
|
|
860
|
+
max-height: 400px;
|
|
861
|
+
}
|
|
862
|
+
.min-h-8 {
|
|
863
|
+
min-height: calc(var(--spacing) * 8);
|
|
864
|
+
}
|
|
865
|
+
.min-h-\[100px\] {
|
|
866
|
+
min-height: 100px;
|
|
867
|
+
}
|
|
868
|
+
.w-0\.5 {
|
|
869
|
+
width: calc(var(--spacing) * 0.5);
|
|
870
|
+
}
|
|
871
|
+
.w-2 {
|
|
872
|
+
width: calc(var(--spacing) * 2);
|
|
873
|
+
}
|
|
874
|
+
.w-3 {
|
|
875
|
+
width: calc(var(--spacing) * 3);
|
|
876
|
+
}
|
|
877
|
+
.w-4 {
|
|
878
|
+
width: calc(var(--spacing) * 4);
|
|
879
|
+
}
|
|
880
|
+
.w-5 {
|
|
881
|
+
width: calc(var(--spacing) * 5);
|
|
882
|
+
}
|
|
883
|
+
.w-6 {
|
|
884
|
+
width: calc(var(--spacing) * 6);
|
|
885
|
+
}
|
|
886
|
+
.w-8 {
|
|
887
|
+
width: calc(var(--spacing) * 8);
|
|
888
|
+
}
|
|
889
|
+
.w-10 {
|
|
890
|
+
width: calc(var(--spacing) * 10);
|
|
891
|
+
}
|
|
892
|
+
.w-12 {
|
|
893
|
+
width: calc(var(--spacing) * 12);
|
|
894
|
+
}
|
|
895
|
+
.w-14 {
|
|
896
|
+
width: calc(var(--spacing) * 14);
|
|
897
|
+
}
|
|
898
|
+
.w-16 {
|
|
899
|
+
width: calc(var(--spacing) * 16);
|
|
900
|
+
}
|
|
901
|
+
.w-18 {
|
|
902
|
+
width: var(--spacing-18);
|
|
903
|
+
}
|
|
904
|
+
.w-20 {
|
|
905
|
+
width: calc(var(--spacing) * 20);
|
|
906
|
+
}
|
|
907
|
+
.w-24 {
|
|
908
|
+
width: calc(var(--spacing) * 24);
|
|
909
|
+
}
|
|
910
|
+
.w-56 {
|
|
911
|
+
width: calc(var(--spacing) * 56);
|
|
912
|
+
}
|
|
913
|
+
.w-64 {
|
|
914
|
+
width: calc(var(--spacing) * 64);
|
|
915
|
+
}
|
|
916
|
+
.w-80 {
|
|
917
|
+
width: calc(var(--spacing) * 80);
|
|
918
|
+
}
|
|
919
|
+
.w-full {
|
|
920
|
+
width: 100%;
|
|
921
|
+
}
|
|
922
|
+
.max-w-3xl {
|
|
923
|
+
max-width: var(--container-3xl);
|
|
924
|
+
}
|
|
925
|
+
.max-w-\[20rem\] {
|
|
926
|
+
max-width: 20rem;
|
|
927
|
+
}
|
|
928
|
+
.max-w-\[28rem\] {
|
|
929
|
+
max-width: 28rem;
|
|
930
|
+
}
|
|
931
|
+
.max-w-\[36rem\] {
|
|
932
|
+
max-width: 36rem;
|
|
933
|
+
}
|
|
934
|
+
.max-w-\[48rem\] {
|
|
935
|
+
max-width: 48rem;
|
|
936
|
+
}
|
|
937
|
+
.max-w-\[64rem\] {
|
|
938
|
+
max-width: 64rem;
|
|
939
|
+
}
|
|
940
|
+
.max-w-full {
|
|
941
|
+
max-width: 100%;
|
|
942
|
+
}
|
|
943
|
+
.max-w-md {
|
|
944
|
+
max-width: var(--container-md);
|
|
945
|
+
}
|
|
946
|
+
.max-w-screen-lg {
|
|
947
|
+
max-width: var(--breakpoint-lg);
|
|
948
|
+
}
|
|
949
|
+
.max-w-screen-md {
|
|
950
|
+
max-width: var(--breakpoint-md);
|
|
951
|
+
}
|
|
952
|
+
.max-w-screen-sm {
|
|
953
|
+
max-width: var(--breakpoint-sm);
|
|
954
|
+
}
|
|
955
|
+
.max-w-screen-xl {
|
|
956
|
+
max-width: var(--breakpoint-xl);
|
|
957
|
+
}
|
|
958
|
+
.max-w-sm {
|
|
959
|
+
max-width: var(--container-sm);
|
|
960
|
+
}
|
|
961
|
+
.min-w-0 {
|
|
962
|
+
min-width: calc(var(--spacing) * 0);
|
|
963
|
+
}
|
|
964
|
+
.min-w-\[12rem\] {
|
|
965
|
+
min-width: 12rem;
|
|
966
|
+
}
|
|
967
|
+
.min-w-\[20rem\] {
|
|
968
|
+
min-width: 20rem;
|
|
969
|
+
}
|
|
970
|
+
.min-w-\[180px\] {
|
|
971
|
+
min-width: 180px;
|
|
972
|
+
}
|
|
973
|
+
.min-w-\[200px\] {
|
|
974
|
+
min-width: 200px;
|
|
975
|
+
}
|
|
976
|
+
.min-w-full {
|
|
977
|
+
min-width: 100%;
|
|
978
|
+
}
|
|
979
|
+
.flex-1 {
|
|
980
|
+
flex: 1;
|
|
981
|
+
}
|
|
982
|
+
.flex-shrink {
|
|
983
|
+
flex-shrink: 1;
|
|
984
|
+
}
|
|
985
|
+
.flex-shrink-0 {
|
|
986
|
+
flex-shrink: 0;
|
|
987
|
+
}
|
|
988
|
+
.shrink-0 {
|
|
989
|
+
flex-shrink: 0;
|
|
990
|
+
}
|
|
991
|
+
.border-collapse {
|
|
992
|
+
border-collapse: collapse;
|
|
993
|
+
}
|
|
994
|
+
.-translate-x-1\/2 {
|
|
995
|
+
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
996
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
997
|
+
}
|
|
998
|
+
.-translate-y-1\/2 {
|
|
999
|
+
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
1000
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1001
|
+
}
|
|
1002
|
+
.rotate-180 {
|
|
1003
|
+
rotate: 180deg;
|
|
1004
|
+
}
|
|
1005
|
+
.transform {
|
|
1006
|
+
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
1007
|
+
}
|
|
1008
|
+
.animate-\[fade-in_0\.2s_var\(--ease-luxe\)\] {
|
|
1009
|
+
animation: fade-in 0.2s var(--ease-luxe);
|
|
1010
|
+
}
|
|
1011
|
+
.animate-\[fade-in_0\.2s_var\(--ease-sharp\)\] {
|
|
1012
|
+
animation: fade-in 0.2s var(--ease-sharp);
|
|
1013
|
+
}
|
|
1014
|
+
.animate-\[fade-in_0\.3s_var\(--ease-luxe\)\] {
|
|
1015
|
+
animation: fade-in 0.3s var(--ease-luxe);
|
|
1016
|
+
}
|
|
1017
|
+
.animate-\[fade-in_0\.15s_var\(--ease-luxe\)\] {
|
|
1018
|
+
animation: fade-in 0.15s var(--ease-luxe);
|
|
1019
|
+
}
|
|
1020
|
+
.animate-\[fade-out_0\.2s_var\(--ease-sharp\)\] {
|
|
1021
|
+
animation: fade-out 0.2s var(--ease-sharp);
|
|
1022
|
+
}
|
|
1023
|
+
.animate-\[fade-up_0\.2s_var\(--ease-luxe\)\] {
|
|
1024
|
+
animation: fade-up 0.2s var(--ease-luxe);
|
|
1025
|
+
}
|
|
1026
|
+
.animate-\[fade-up_0\.3s_var\(--ease-luxe\)\] {
|
|
1027
|
+
animation: fade-up 0.3s var(--ease-luxe);
|
|
1028
|
+
}
|
|
1029
|
+
.animate-\[glow-pulse_3s_ease-in-out_infinite\] {
|
|
1030
|
+
animation: glow-pulse 3s ease-in-out infinite;
|
|
1031
|
+
}
|
|
1032
|
+
.animate-\[slide-in-bottom_0\.3s_var\(--ease-luxe\)\] {
|
|
1033
|
+
animation: slide-in-bottom 0.3s var(--ease-luxe);
|
|
1034
|
+
}
|
|
1035
|
+
.animate-\[slide-in-left_0\.3s_var\(--ease-luxe\)\] {
|
|
1036
|
+
animation: slide-in-left 0.3s var(--ease-luxe);
|
|
1037
|
+
}
|
|
1038
|
+
.animate-\[slide-in-right_0\.3s_var\(--ease-luxe\)\] {
|
|
1039
|
+
animation: slide-in-right 0.3s var(--ease-luxe);
|
|
1040
|
+
}
|
|
1041
|
+
.animate-\[slide-in-top_0\.3s_var\(--ease-luxe\)\] {
|
|
1042
|
+
animation: slide-in-top 0.3s var(--ease-luxe);
|
|
1043
|
+
}
|
|
1044
|
+
.animate-spin {
|
|
1045
|
+
animation: var(--animate-spin);
|
|
1046
|
+
}
|
|
1047
|
+
.cursor-not-allowed {
|
|
1048
|
+
cursor: not-allowed;
|
|
1049
|
+
}
|
|
1050
|
+
.cursor-pointer {
|
|
1051
|
+
cursor: pointer;
|
|
1052
|
+
}
|
|
1053
|
+
.resize-y {
|
|
1054
|
+
resize: vertical;
|
|
1055
|
+
}
|
|
1056
|
+
.list-disc {
|
|
1057
|
+
list-style-type: disc;
|
|
1058
|
+
}
|
|
1059
|
+
.list-none {
|
|
1060
|
+
list-style-type: none;
|
|
1061
|
+
}
|
|
1062
|
+
.appearance-none {
|
|
1063
|
+
appearance: none;
|
|
1064
|
+
}
|
|
1065
|
+
.grid-cols-1 {
|
|
1066
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1067
|
+
}
|
|
1068
|
+
.grid-cols-2 {
|
|
1069
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1070
|
+
}
|
|
1071
|
+
.grid-cols-3 {
|
|
1072
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1073
|
+
}
|
|
1074
|
+
.grid-cols-4 {
|
|
1075
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1076
|
+
}
|
|
1077
|
+
.grid-cols-6 {
|
|
1078
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
1079
|
+
}
|
|
1080
|
+
.grid-cols-12 {
|
|
1081
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
1082
|
+
}
|
|
1083
|
+
.flex-col {
|
|
1084
|
+
flex-direction: column;
|
|
1085
|
+
}
|
|
1086
|
+
.flex-row {
|
|
1087
|
+
flex-direction: row;
|
|
1088
|
+
}
|
|
1089
|
+
.flex-wrap {
|
|
1090
|
+
flex-wrap: wrap;
|
|
1091
|
+
}
|
|
1092
|
+
.items-center {
|
|
1093
|
+
align-items: center;
|
|
1094
|
+
}
|
|
1095
|
+
.items-start {
|
|
1096
|
+
align-items: flex-start;
|
|
1097
|
+
}
|
|
1098
|
+
.items-stretch {
|
|
1099
|
+
align-items: stretch;
|
|
1100
|
+
}
|
|
1101
|
+
.justify-between {
|
|
1102
|
+
justify-content: space-between;
|
|
1103
|
+
}
|
|
1104
|
+
.justify-center {
|
|
1105
|
+
justify-content: center;
|
|
1106
|
+
}
|
|
1107
|
+
.justify-end {
|
|
1108
|
+
justify-content: flex-end;
|
|
1109
|
+
}
|
|
1110
|
+
.gap-0 {
|
|
1111
|
+
gap: calc(var(--spacing) * 0);
|
|
1112
|
+
}
|
|
1113
|
+
.gap-1 {
|
|
1114
|
+
gap: calc(var(--spacing) * 1);
|
|
1115
|
+
}
|
|
1116
|
+
.gap-1\.5 {
|
|
1117
|
+
gap: calc(var(--spacing) * 1.5);
|
|
1118
|
+
}
|
|
1119
|
+
.gap-2 {
|
|
1120
|
+
gap: calc(var(--spacing) * 2);
|
|
1121
|
+
}
|
|
1122
|
+
.gap-3 {
|
|
1123
|
+
gap: calc(var(--spacing) * 3);
|
|
1124
|
+
}
|
|
1125
|
+
.gap-4 {
|
|
1126
|
+
gap: calc(var(--spacing) * 4);
|
|
1127
|
+
}
|
|
1128
|
+
.gap-6 {
|
|
1129
|
+
gap: calc(var(--spacing) * 6);
|
|
1130
|
+
}
|
|
1131
|
+
.gap-8 {
|
|
1132
|
+
gap: calc(var(--spacing) * 8);
|
|
1133
|
+
}
|
|
1134
|
+
.space-y-1 {
|
|
1135
|
+
:where(& > :not(:last-child)) {
|
|
1136
|
+
--tw-space-y-reverse: 0;
|
|
1137
|
+
margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
|
|
1138
|
+
margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
|
|
1139
|
+
}
|
|
1140
|
+
}
|
|
1141
|
+
.space-y-2 {
|
|
1142
|
+
:where(& > :not(:last-child)) {
|
|
1143
|
+
--tw-space-y-reverse: 0;
|
|
1144
|
+
margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
|
|
1145
|
+
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
1146
|
+
}
|
|
1147
|
+
}
|
|
1148
|
+
.space-y-3 {
|
|
1149
|
+
:where(& > :not(:last-child)) {
|
|
1150
|
+
--tw-space-y-reverse: 0;
|
|
1151
|
+
margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
|
|
1152
|
+
margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
.space-y-4 {
|
|
1156
|
+
:where(& > :not(:last-child)) {
|
|
1157
|
+
--tw-space-y-reverse: 0;
|
|
1158
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
1159
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
1160
|
+
}
|
|
1161
|
+
}
|
|
1162
|
+
.self-stretch {
|
|
1163
|
+
align-self: stretch;
|
|
1164
|
+
}
|
|
1165
|
+
.overflow-hidden {
|
|
1166
|
+
overflow: hidden;
|
|
1167
|
+
}
|
|
1168
|
+
.overflow-x-auto {
|
|
1169
|
+
overflow-x: auto;
|
|
1170
|
+
}
|
|
1171
|
+
.overflow-x-hidden {
|
|
1172
|
+
overflow-x: hidden;
|
|
1173
|
+
}
|
|
1174
|
+
.overflow-y-auto {
|
|
1175
|
+
overflow-y: auto;
|
|
1176
|
+
}
|
|
1177
|
+
.rounded {
|
|
1178
|
+
border-radius: 0.25rem;
|
|
1179
|
+
}
|
|
1180
|
+
.rounded-\[var\(--radius-lg\)\] {
|
|
1181
|
+
border-radius: var(--radius-lg);
|
|
1182
|
+
}
|
|
1183
|
+
.rounded-\[var\(--radius-md\)\] {
|
|
1184
|
+
border-radius: var(--radius-md);
|
|
1185
|
+
}
|
|
1186
|
+
.rounded-\[var\(--radius-pill\)\] {
|
|
1187
|
+
border-radius: var(--radius-pill);
|
|
1188
|
+
}
|
|
1189
|
+
.rounded-\[var\(--radius-sm\)\] {
|
|
1190
|
+
border-radius: var(--radius-sm);
|
|
1191
|
+
}
|
|
1192
|
+
.rounded-\[var\(--radius-xl\)\] {
|
|
1193
|
+
border-radius: var(--radius-xl);
|
|
1194
|
+
}
|
|
1195
|
+
.rounded-full {
|
|
1196
|
+
border-radius: calc(infinity * 1px);
|
|
1197
|
+
}
|
|
1198
|
+
.rounded-lg {
|
|
1199
|
+
border-radius: var(--radius-lg);
|
|
1200
|
+
}
|
|
1201
|
+
.rounded-md {
|
|
1202
|
+
border-radius: var(--radius-md);
|
|
1203
|
+
}
|
|
1204
|
+
.rounded-pill {
|
|
1205
|
+
border-radius: var(--radius-pill);
|
|
1206
|
+
}
|
|
1207
|
+
.rounded-sm {
|
|
1208
|
+
border-radius: var(--radius-sm);
|
|
1209
|
+
}
|
|
1210
|
+
.rounded-xl {
|
|
1211
|
+
border-radius: var(--radius-xl);
|
|
1212
|
+
}
|
|
1213
|
+
.border {
|
|
1214
|
+
border-style: var(--tw-border-style);
|
|
1215
|
+
border-width: 1px;
|
|
1216
|
+
}
|
|
1217
|
+
.border-2 {
|
|
1218
|
+
border-style: var(--tw-border-style);
|
|
1219
|
+
border-width: 2px;
|
|
1220
|
+
}
|
|
1221
|
+
.border-4 {
|
|
1222
|
+
border-style: var(--tw-border-style);
|
|
1223
|
+
border-width: 4px;
|
|
1224
|
+
}
|
|
1225
|
+
.border-t {
|
|
1226
|
+
border-top-style: var(--tw-border-style);
|
|
1227
|
+
border-top-width: 1px;
|
|
1228
|
+
}
|
|
1229
|
+
.border-t-\[1px\] {
|
|
1230
|
+
border-top-style: var(--tw-border-style);
|
|
1231
|
+
border-top-width: 1px;
|
|
1232
|
+
}
|
|
1233
|
+
.border-t-\[2px\] {
|
|
1234
|
+
border-top-style: var(--tw-border-style);
|
|
1235
|
+
border-top-width: 2px;
|
|
1236
|
+
}
|
|
1237
|
+
.border-r {
|
|
1238
|
+
border-right-style: var(--tw-border-style);
|
|
1239
|
+
border-right-width: 1px;
|
|
1240
|
+
}
|
|
1241
|
+
.border-b {
|
|
1242
|
+
border-bottom-style: var(--tw-border-style);
|
|
1243
|
+
border-bottom-width: 1px;
|
|
1244
|
+
}
|
|
1245
|
+
.border-l-4 {
|
|
1246
|
+
border-left-style: var(--tw-border-style);
|
|
1247
|
+
border-left-width: 4px;
|
|
1248
|
+
}
|
|
1249
|
+
.border-l-\[1px\] {
|
|
1250
|
+
border-left-style: var(--tw-border-style);
|
|
1251
|
+
border-left-width: 1px;
|
|
1252
|
+
}
|
|
1253
|
+
.border-l-\[2px\] {
|
|
1254
|
+
border-left-style: var(--tw-border-style);
|
|
1255
|
+
border-left-width: 2px;
|
|
1256
|
+
}
|
|
1257
|
+
.border-none {
|
|
1258
|
+
--tw-border-style: none;
|
|
1259
|
+
border-style: none;
|
|
1260
|
+
}
|
|
1261
|
+
.border-\[var\(--color-accent\)\] {
|
|
1262
|
+
border-color: var(--color-accent);
|
|
1263
|
+
}
|
|
1264
|
+
.border-\[var\(--color-base-3\)\] {
|
|
1265
|
+
border-color: var(--color-base-3);
|
|
1266
|
+
}
|
|
1267
|
+
.border-\[var\(--color-border\)\] {
|
|
1268
|
+
border-color: var(--color-border);
|
|
1269
|
+
}
|
|
1270
|
+
.border-\[var\(--color-border-glow\)\] {
|
|
1271
|
+
border-color: var(--color-border-glow);
|
|
1272
|
+
}
|
|
1273
|
+
.border-\[var\(--color-border-strong\)\] {
|
|
1274
|
+
border-color: var(--color-border-strong);
|
|
1275
|
+
}
|
|
1276
|
+
.border-\[var\(--color-error\)\] {
|
|
1277
|
+
border-color: var(--color-error);
|
|
1278
|
+
}
|
|
1279
|
+
.border-\[var\(--color-info\)\] {
|
|
1280
|
+
border-color: var(--color-info);
|
|
1281
|
+
}
|
|
1282
|
+
.border-\[var\(--color-success\)\] {
|
|
1283
|
+
border-color: var(--color-success);
|
|
1284
|
+
}
|
|
1285
|
+
.border-\[var\(--color-warning\)\] {
|
|
1286
|
+
border-color: var(--color-warning);
|
|
1287
|
+
}
|
|
1288
|
+
.border-accent {
|
|
1289
|
+
border-color: var(--color-accent);
|
|
1290
|
+
}
|
|
1291
|
+
.border-border {
|
|
1292
|
+
border-color: var(--color-border);
|
|
1293
|
+
}
|
|
1294
|
+
.border-border-strong {
|
|
1295
|
+
border-color: var(--color-border-strong);
|
|
1296
|
+
}
|
|
1297
|
+
.border-error {
|
|
1298
|
+
border-color: var(--color-error);
|
|
1299
|
+
}
|
|
1300
|
+
.border-success {
|
|
1301
|
+
border-color: var(--color-success);
|
|
1302
|
+
}
|
|
1303
|
+
.border-warning {
|
|
1304
|
+
border-color: var(--color-warning);
|
|
1305
|
+
}
|
|
1306
|
+
.border-t-\[var\(--color-accent\)\] {
|
|
1307
|
+
border-top-color: var(--color-accent);
|
|
1308
|
+
}
|
|
1309
|
+
.border-l-\[rgba\(96\,165\,250\,0\.3\)\] {
|
|
1310
|
+
border-left-color: rgba(96,165,250,0.3);
|
|
1311
|
+
}
|
|
1312
|
+
.border-l-\[rgba\(251\,191\,36\,0\.3\)\] {
|
|
1313
|
+
border-left-color: rgba(251,191,36,0.3);
|
|
1314
|
+
}
|
|
1315
|
+
.border-l-\[var\(--color-accent-overlay-30\)\] {
|
|
1316
|
+
border-left-color: var(--color-accent-overlay-30);
|
|
1317
|
+
}
|
|
1318
|
+
.border-l-\[var\(--color-accent-overlay-50\)\] {
|
|
1319
|
+
border-left-color: var(--color-accent-overlay-50);
|
|
1320
|
+
}
|
|
1321
|
+
.border-l-\[var\(--color-error-overlay-50\)\] {
|
|
1322
|
+
border-left-color: var(--color-error-overlay-50);
|
|
1323
|
+
}
|
|
1324
|
+
.bg-\[var\(--color-accent\)\] {
|
|
1325
|
+
background-color: var(--color-accent);
|
|
1326
|
+
}
|
|
1327
|
+
.bg-\[var\(--color-accent-overlay-5\)\] {
|
|
1328
|
+
background-color: var(--color-accent-overlay-5);
|
|
1329
|
+
}
|
|
1330
|
+
.bg-\[var\(--color-accent-overlay-20\)\] {
|
|
1331
|
+
background-color: var(--color-accent-overlay-20);
|
|
1332
|
+
}
|
|
1333
|
+
.bg-\[var\(--color-accent-primary\)\] {
|
|
1334
|
+
background-color: var(--color-accent-primary);
|
|
1335
|
+
}
|
|
1336
|
+
.bg-\[var\(--color-base-1\)\] {
|
|
1337
|
+
background-color: var(--color-base-1);
|
|
1338
|
+
}
|
|
1339
|
+
.bg-\[var\(--color-base-2\)\] {
|
|
1340
|
+
background-color: var(--color-base-2);
|
|
1341
|
+
}
|
|
1342
|
+
.bg-\[var\(--color-base-3\)\] {
|
|
1343
|
+
background-color: var(--color-base-3);
|
|
1344
|
+
}
|
|
1345
|
+
.bg-\[var\(--color-error\)\] {
|
|
1346
|
+
background-color: var(--color-error);
|
|
1347
|
+
}
|
|
1348
|
+
.bg-\[var\(--color-error-overlay-15\)\] {
|
|
1349
|
+
background-color: var(--color-error-overlay-15);
|
|
1350
|
+
}
|
|
1351
|
+
.bg-\[var\(--color-info-overlay-10\)\] {
|
|
1352
|
+
background-color: var(--color-info-overlay-10);
|
|
1353
|
+
}
|
|
1354
|
+
.bg-\[var\(--color-secondary-overlay-10\)\] {
|
|
1355
|
+
background-color: var(--color-secondary-overlay-10);
|
|
1356
|
+
}
|
|
1357
|
+
.bg-\[var\(--color-success-overlay-15\)\] {
|
|
1358
|
+
background-color: var(--color-success-overlay-15);
|
|
1359
|
+
}
|
|
1360
|
+
.bg-\[var\(--color-warning-overlay-15\)\] {
|
|
1361
|
+
background-color: var(--color-warning-overlay-15);
|
|
1362
|
+
}
|
|
1363
|
+
.bg-accent {
|
|
1364
|
+
background-color: var(--color-accent);
|
|
1365
|
+
}
|
|
1366
|
+
.bg-accent-overlay-10 {
|
|
1367
|
+
background-color: var(--color-accent-overlay-10);
|
|
1368
|
+
}
|
|
1369
|
+
.bg-base-2 {
|
|
1370
|
+
background-color: var(--color-base-2);
|
|
1371
|
+
}
|
|
1372
|
+
.bg-base-3 {
|
|
1373
|
+
background-color: var(--color-base-3);
|
|
1374
|
+
}
|
|
1375
|
+
.bg-overlay {
|
|
1376
|
+
background-color: var(--color-overlay);
|
|
1377
|
+
}
|
|
1378
|
+
.bg-surface {
|
|
1379
|
+
background-color: var(--color-surface);
|
|
1380
|
+
}
|
|
1381
|
+
.bg-text-muted {
|
|
1382
|
+
background-color: var(--color-text-muted);
|
|
1383
|
+
}
|
|
1384
|
+
.bg-transparent {
|
|
1385
|
+
background-color: transparent;
|
|
1386
|
+
}
|
|
1387
|
+
.bg-\[length\:16px\] {
|
|
1388
|
+
background-size: 16px;
|
|
1389
|
+
}
|
|
1390
|
+
.bg-\[right_1rem_center\] {
|
|
1391
|
+
background-position: right 1rem center;
|
|
1392
|
+
}
|
|
1393
|
+
.bg-no-repeat {
|
|
1394
|
+
background-repeat: no-repeat;
|
|
1395
|
+
}
|
|
1396
|
+
.object-cover {
|
|
1397
|
+
object-fit: cover;
|
|
1398
|
+
}
|
|
1399
|
+
.p-0 {
|
|
1400
|
+
padding: calc(var(--spacing) * 0);
|
|
1401
|
+
}
|
|
1402
|
+
.p-1 {
|
|
1403
|
+
padding: calc(var(--spacing) * 1);
|
|
1404
|
+
}
|
|
1405
|
+
.p-2 {
|
|
1406
|
+
padding: calc(var(--spacing) * 2);
|
|
1407
|
+
}
|
|
1408
|
+
.p-3 {
|
|
1409
|
+
padding: calc(var(--spacing) * 3);
|
|
1410
|
+
}
|
|
1411
|
+
.p-4 {
|
|
1412
|
+
padding: calc(var(--spacing) * 4);
|
|
1413
|
+
}
|
|
1414
|
+
.p-5 {
|
|
1415
|
+
padding: calc(var(--spacing) * 5);
|
|
1416
|
+
}
|
|
1417
|
+
.p-6 {
|
|
1418
|
+
padding: calc(var(--spacing) * 6);
|
|
1419
|
+
}
|
|
1420
|
+
.p-8 {
|
|
1421
|
+
padding: calc(var(--spacing) * 8);
|
|
1422
|
+
}
|
|
1423
|
+
.p-10 {
|
|
1424
|
+
padding: calc(var(--spacing) * 10);
|
|
1425
|
+
}
|
|
1426
|
+
.px-2 {
|
|
1427
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
1428
|
+
}
|
|
1429
|
+
.px-3 {
|
|
1430
|
+
padding-inline: calc(var(--spacing) * 3);
|
|
1431
|
+
}
|
|
1432
|
+
.px-4 {
|
|
1433
|
+
padding-inline: calc(var(--spacing) * 4);
|
|
1434
|
+
}
|
|
1435
|
+
.px-5 {
|
|
1436
|
+
padding-inline: calc(var(--spacing) * 5);
|
|
1437
|
+
}
|
|
1438
|
+
.px-6 {
|
|
1439
|
+
padding-inline: calc(var(--spacing) * 6);
|
|
1440
|
+
}
|
|
1441
|
+
.py-0\.5 {
|
|
1442
|
+
padding-block: calc(var(--spacing) * 0.5);
|
|
1443
|
+
}
|
|
1444
|
+
.py-1 {
|
|
1445
|
+
padding-block: calc(var(--spacing) * 1);
|
|
1446
|
+
}
|
|
1447
|
+
.py-1\.5 {
|
|
1448
|
+
padding-block: calc(var(--spacing) * 1.5);
|
|
1449
|
+
}
|
|
1450
|
+
.py-2 {
|
|
1451
|
+
padding-block: calc(var(--spacing) * 2);
|
|
1452
|
+
}
|
|
1453
|
+
.py-2\.5 {
|
|
1454
|
+
padding-block: calc(var(--spacing) * 2.5);
|
|
1455
|
+
}
|
|
1456
|
+
.py-3 {
|
|
1457
|
+
padding-block: calc(var(--spacing) * 3);
|
|
1458
|
+
}
|
|
1459
|
+
.py-3\.5 {
|
|
1460
|
+
padding-block: calc(var(--spacing) * 3.5);
|
|
1461
|
+
}
|
|
1462
|
+
.py-8 {
|
|
1463
|
+
padding-block: calc(var(--spacing) * 8);
|
|
1464
|
+
}
|
|
1465
|
+
.pt-3 {
|
|
1466
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1467
|
+
}
|
|
1468
|
+
.pt-\[20vh\] {
|
|
1469
|
+
padding-top: 20vh;
|
|
1470
|
+
}
|
|
1471
|
+
.pr-4 {
|
|
1472
|
+
padding-right: calc(var(--spacing) * 4);
|
|
1473
|
+
}
|
|
1474
|
+
.pr-12 {
|
|
1475
|
+
padding-right: calc(var(--spacing) * 12);
|
|
1476
|
+
}
|
|
1477
|
+
.pb-3 {
|
|
1478
|
+
padding-bottom: calc(var(--spacing) * 3);
|
|
1479
|
+
}
|
|
1480
|
+
.pb-8 {
|
|
1481
|
+
padding-bottom: calc(var(--spacing) * 8);
|
|
1482
|
+
}
|
|
1483
|
+
.pl-4 {
|
|
1484
|
+
padding-left: calc(var(--spacing) * 4);
|
|
1485
|
+
}
|
|
1486
|
+
.pl-6 {
|
|
1487
|
+
padding-left: calc(var(--spacing) * 6);
|
|
1488
|
+
}
|
|
1489
|
+
.pl-12 {
|
|
1490
|
+
padding-left: calc(var(--spacing) * 12);
|
|
1491
|
+
}
|
|
1492
|
+
.text-center {
|
|
1493
|
+
text-align: center;
|
|
1494
|
+
}
|
|
1495
|
+
.text-left {
|
|
1496
|
+
text-align: left;
|
|
1497
|
+
}
|
|
1498
|
+
.font-body {
|
|
1499
|
+
font-family: var(--font-body);
|
|
1500
|
+
}
|
|
1501
|
+
.text-5xl {
|
|
1502
|
+
font-size: var(--text-5xl);
|
|
1503
|
+
line-height: var(--tw-leading, var(--text-5xl--line-height));
|
|
1504
|
+
}
|
|
1505
|
+
.text-base {
|
|
1506
|
+
font-size: var(--text-base);
|
|
1507
|
+
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
1508
|
+
}
|
|
1509
|
+
.text-lg {
|
|
1510
|
+
font-size: var(--text-lg);
|
|
1511
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
1512
|
+
}
|
|
1513
|
+
.text-sm {
|
|
1514
|
+
font-size: var(--text-sm);
|
|
1515
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
1516
|
+
}
|
|
1517
|
+
.text-xl {
|
|
1518
|
+
font-size: var(--text-xl);
|
|
1519
|
+
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
1520
|
+
}
|
|
1521
|
+
.text-xs {
|
|
1522
|
+
font-size: var(--text-xs);
|
|
1523
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
1524
|
+
}
|
|
1525
|
+
.text-\[0\.6rem\] {
|
|
1526
|
+
font-size: 0.6rem;
|
|
1527
|
+
}
|
|
1528
|
+
.text-\[0\.7rem\] {
|
|
1529
|
+
font-size: 0.7rem;
|
|
1530
|
+
}
|
|
1531
|
+
.text-\[0\.65rem\] {
|
|
1532
|
+
font-size: 0.65rem;
|
|
1533
|
+
}
|
|
1534
|
+
.text-\[0\.75rem\] {
|
|
1535
|
+
font-size: 0.75rem;
|
|
1536
|
+
}
|
|
1537
|
+
.text-\[length\:var\(--text-body-size\)\] {
|
|
1538
|
+
font-size: var(--text-body-size);
|
|
1539
|
+
}
|
|
1540
|
+
.font-\[var\(--font-body\)\] {
|
|
1541
|
+
--tw-font-weight: var(--font-body);
|
|
1542
|
+
font-weight: var(--font-body);
|
|
1543
|
+
}
|
|
1544
|
+
.font-\[var\(--font-heading\)\] {
|
|
1545
|
+
--tw-font-weight: var(--font-heading);
|
|
1546
|
+
font-weight: var(--font-heading);
|
|
1547
|
+
}
|
|
1548
|
+
.font-bold {
|
|
1549
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
1550
|
+
font-weight: var(--font-weight-bold);
|
|
1551
|
+
}
|
|
1552
|
+
.font-medium {
|
|
1553
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
1554
|
+
font-weight: var(--font-weight-medium);
|
|
1555
|
+
}
|
|
1556
|
+
.font-semibold {
|
|
1557
|
+
--tw-font-weight: var(--font-weight-semibold);
|
|
1558
|
+
font-weight: var(--font-weight-semibold);
|
|
1559
|
+
}
|
|
1560
|
+
.tracking-wide {
|
|
1561
|
+
--tw-tracking: var(--tracking-wide);
|
|
1562
|
+
letter-spacing: var(--tracking-wide);
|
|
1563
|
+
}
|
|
1564
|
+
.tracking-wider {
|
|
1565
|
+
--tw-tracking: var(--tracking-wider);
|
|
1566
|
+
letter-spacing: var(--tracking-wider);
|
|
1567
|
+
}
|
|
1568
|
+
.whitespace-nowrap {
|
|
1569
|
+
white-space: nowrap;
|
|
1570
|
+
}
|
|
1571
|
+
.text-\[\#60a5fa\] {
|
|
1572
|
+
color: #60a5fa;
|
|
1573
|
+
}
|
|
1574
|
+
.text-\[var\(--color-accent\)\] {
|
|
1575
|
+
color: var(--color-accent);
|
|
1576
|
+
}
|
|
1577
|
+
.text-\[var\(--color-accent-primary\)\] {
|
|
1578
|
+
color: var(--color-accent-primary);
|
|
1579
|
+
}
|
|
1580
|
+
.text-\[var\(--color-accent-soft\)\] {
|
|
1581
|
+
color: var(--color-accent-soft);
|
|
1582
|
+
}
|
|
1583
|
+
.text-\[var\(--color-error\)\] {
|
|
1584
|
+
color: var(--color-error);
|
|
1585
|
+
}
|
|
1586
|
+
.text-\[var\(--color-info\)\] {
|
|
1587
|
+
color: var(--color-info);
|
|
1588
|
+
}
|
|
1589
|
+
.text-\[var\(--color-success\)\] {
|
|
1590
|
+
color: var(--color-success);
|
|
1591
|
+
}
|
|
1592
|
+
.text-\[var\(--color-text\)\] {
|
|
1593
|
+
color: var(--color-text);
|
|
1594
|
+
}
|
|
1595
|
+
.text-\[var\(--color-text-muted\)\] {
|
|
1596
|
+
color: var(--color-text-muted);
|
|
1597
|
+
}
|
|
1598
|
+
.text-\[var\(--color-text-secondary\)\] {
|
|
1599
|
+
color: var(--color-text-secondary);
|
|
1600
|
+
}
|
|
1601
|
+
.text-\[var\(--color-text-soft\)\] {
|
|
1602
|
+
color: var(--color-text-soft);
|
|
1603
|
+
}
|
|
1604
|
+
.text-\[var\(--color-text-tertiary\)\] {
|
|
1605
|
+
color: var(--color-text-tertiary);
|
|
1606
|
+
}
|
|
1607
|
+
.text-\[var\(--color-warning\)\] {
|
|
1608
|
+
color: var(--color-warning);
|
|
1609
|
+
}
|
|
1610
|
+
.text-\[var\(--text-xs\)\] {
|
|
1611
|
+
color: var(--text-xs);
|
|
1612
|
+
}
|
|
1613
|
+
.text-accent {
|
|
1614
|
+
color: var(--color-accent);
|
|
1615
|
+
}
|
|
1616
|
+
.text-accent-soft {
|
|
1617
|
+
color: var(--color-accent-soft);
|
|
1618
|
+
}
|
|
1619
|
+
.text-error {
|
|
1620
|
+
color: var(--color-error);
|
|
1621
|
+
}
|
|
1622
|
+
.text-neutral-400 {
|
|
1623
|
+
color: var(--color-neutral-400);
|
|
1624
|
+
}
|
|
1625
|
+
.text-red-500 {
|
|
1626
|
+
color: var(--color-red-500);
|
|
1627
|
+
}
|
|
1628
|
+
.text-success {
|
|
1629
|
+
color: var(--color-success);
|
|
1630
|
+
}
|
|
1631
|
+
.text-text {
|
|
1632
|
+
color: var(--color-text);
|
|
1633
|
+
}
|
|
1634
|
+
.text-text-muted {
|
|
1635
|
+
color: var(--color-text-muted);
|
|
1636
|
+
}
|
|
1637
|
+
.text-text-soft {
|
|
1638
|
+
color: var(--color-text-soft);
|
|
1639
|
+
}
|
|
1640
|
+
.text-warning {
|
|
1641
|
+
color: var(--color-warning);
|
|
1642
|
+
}
|
|
1643
|
+
.text-white {
|
|
1644
|
+
color: var(--color-white);
|
|
1645
|
+
}
|
|
1646
|
+
.lowercase {
|
|
1647
|
+
text-transform: lowercase;
|
|
1648
|
+
}
|
|
1649
|
+
.uppercase {
|
|
1650
|
+
text-transform: uppercase;
|
|
1651
|
+
}
|
|
1652
|
+
.no-underline {
|
|
1653
|
+
text-decoration-line: none;
|
|
1654
|
+
}
|
|
1655
|
+
.underline {
|
|
1656
|
+
text-decoration-line: underline;
|
|
1657
|
+
}
|
|
1658
|
+
.accent-surface {
|
|
1659
|
+
accent-color: var(--color-surface);
|
|
1660
|
+
}
|
|
1661
|
+
.opacity-0 {
|
|
1662
|
+
opacity: var(--opacity-0);
|
|
1663
|
+
}
|
|
1664
|
+
.opacity-50 {
|
|
1665
|
+
opacity: var(--opacity-50);
|
|
1666
|
+
}
|
|
1667
|
+
.opacity-60 {
|
|
1668
|
+
opacity: var(--opacity-60);
|
|
1669
|
+
}
|
|
1670
|
+
.opacity-70 {
|
|
1671
|
+
opacity: var(--opacity-70);
|
|
1672
|
+
}
|
|
1673
|
+
.opacity-100 {
|
|
1674
|
+
opacity: var(--opacity-100);
|
|
1675
|
+
}
|
|
1676
|
+
.shadow {
|
|
1677
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1678
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1679
|
+
}
|
|
1680
|
+
.shadow-\[0_0_0_4px_rgba\(139\,92\,246\,0\.3\)\] {
|
|
1681
|
+
--tw-shadow: 0 0 0 4px var(--tw-shadow-color, rgba(139,92,246,0.3));
|
|
1682
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1683
|
+
}
|
|
1684
|
+
.shadow-\[0_0_12px_var\(--color-info-overlay-20\)\] {
|
|
1685
|
+
--tw-shadow: 0 0 12px var(--tw-shadow-color, var(--color-info-overlay-20));
|
|
1686
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1687
|
+
}
|
|
1688
|
+
.shadow-\[0_0_12px_var\(--color-secondary-overlay-20\)\] {
|
|
1689
|
+
--tw-shadow: 0 0 12px var(--tw-shadow-color, var(--color-secondary-overlay-20));
|
|
1690
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1691
|
+
}
|
|
1692
|
+
.shadow-\[var\(--shadow-deep\)\] {
|
|
1693
|
+
--tw-shadow: var(--shadow-deep);
|
|
1694
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1695
|
+
}
|
|
1696
|
+
.shadow-deep {
|
|
1697
|
+
--tw-shadow: 0 10px 40px var(--tw-shadow-color, color-mix(in srgb, black 60%, transparent));
|
|
1698
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1699
|
+
}
|
|
1700
|
+
.shadow-xl {
|
|
1701
|
+
--tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1702
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1703
|
+
}
|
|
1704
|
+
.ring-2 {
|
|
1705
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1706
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1707
|
+
}
|
|
1708
|
+
.ring-accent {
|
|
1709
|
+
--tw-ring-color: var(--color-accent);
|
|
1710
|
+
}
|
|
1711
|
+
.ring-offset-2 {
|
|
1712
|
+
--tw-ring-offset-width: 2px;
|
|
1713
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1714
|
+
}
|
|
1715
|
+
.ring-offset-base-0 {
|
|
1716
|
+
--tw-ring-offset-color: var(--color-base-0);
|
|
1717
|
+
}
|
|
1718
|
+
.outline {
|
|
1719
|
+
outline-style: var(--tw-outline-style);
|
|
1720
|
+
outline-width: 1px;
|
|
1721
|
+
}
|
|
1722
|
+
.blur {
|
|
1723
|
+
--tw-blur: blur(8px);
|
|
1724
|
+
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
1725
|
+
}
|
|
1726
|
+
.filter {
|
|
1727
|
+
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
1728
|
+
}
|
|
1729
|
+
.backdrop-blur-md {
|
|
1730
|
+
--tw-backdrop-blur: blur(var(--blur-md));
|
|
1731
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1732
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1733
|
+
}
|
|
1734
|
+
.backdrop-filter {
|
|
1735
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1736
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1737
|
+
}
|
|
1738
|
+
.transition {
|
|
1739
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
1740
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1741
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1742
|
+
}
|
|
1743
|
+
.transition-\[max-height\] {
|
|
1744
|
+
transition-property: max-height;
|
|
1745
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1746
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1747
|
+
}
|
|
1748
|
+
.transition-all {
|
|
1749
|
+
transition-property: all;
|
|
1750
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1751
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1752
|
+
}
|
|
1753
|
+
.transition-colors {
|
|
1754
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1755
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1756
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1757
|
+
}
|
|
1758
|
+
.transition-opacity {
|
|
1759
|
+
transition-property: opacity;
|
|
1760
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1761
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1762
|
+
}
|
|
1763
|
+
.transition-transform {
|
|
1764
|
+
transition-property: transform, translate, scale, rotate;
|
|
1765
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1766
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1767
|
+
}
|
|
1768
|
+
.duration-200 {
|
|
1769
|
+
--tw-duration: 200ms;
|
|
1770
|
+
transition-duration: 200ms;
|
|
1771
|
+
}
|
|
1772
|
+
.duration-300 {
|
|
1773
|
+
--tw-duration: 300ms;
|
|
1774
|
+
transition-duration: 300ms;
|
|
1775
|
+
}
|
|
1776
|
+
.duration-500 {
|
|
1777
|
+
--tw-duration: 500ms;
|
|
1778
|
+
transition-duration: 500ms;
|
|
1779
|
+
}
|
|
1780
|
+
.duration-\[var\(--duration-300\)\] {
|
|
1781
|
+
--tw-duration: var(--duration-300);
|
|
1782
|
+
transition-duration: var(--duration-300);
|
|
1783
|
+
}
|
|
1784
|
+
.ease-\[var\(--ease-luxe\)\] {
|
|
1785
|
+
--tw-ease: var(--ease-luxe);
|
|
1786
|
+
transition-timing-function: var(--ease-luxe);
|
|
1787
|
+
}
|
|
1788
|
+
.ease-\[var\(--ease-sharp\)\] {
|
|
1789
|
+
--tw-ease: var(--ease-sharp);
|
|
1790
|
+
transition-timing-function: var(--ease-sharp);
|
|
1791
|
+
}
|
|
1792
|
+
.ease-in-out {
|
|
1793
|
+
--tw-ease: var(--ease-in-out);
|
|
1794
|
+
transition-timing-function: var(--ease-in-out);
|
|
1795
|
+
}
|
|
1796
|
+
.ease-luxe {
|
|
1797
|
+
--tw-ease: var(--ease-luxe);
|
|
1798
|
+
transition-timing-function: var(--ease-luxe);
|
|
1799
|
+
}
|
|
1800
|
+
.ease-out {
|
|
1801
|
+
--tw-ease: var(--ease-out);
|
|
1802
|
+
transition-timing-function: var(--ease-out);
|
|
1803
|
+
}
|
|
1804
|
+
.outline-none {
|
|
1805
|
+
--tw-outline-style: none;
|
|
1806
|
+
outline-style: none;
|
|
1807
|
+
}
|
|
1808
|
+
.select-none {
|
|
1809
|
+
-webkit-user-select: none;
|
|
1810
|
+
user-select: none;
|
|
1811
|
+
}
|
|
1812
|
+
.placeholder\:text-text-muted {
|
|
1813
|
+
&::placeholder {
|
|
1814
|
+
color: var(--color-text-muted);
|
|
1815
|
+
}
|
|
1816
|
+
}
|
|
1817
|
+
.checked\:border-\[var\(--color-accent\)\] {
|
|
1818
|
+
&:checked {
|
|
1819
|
+
border-color: var(--color-accent);
|
|
1820
|
+
}
|
|
1821
|
+
}
|
|
1822
|
+
.checked\:border-accent {
|
|
1823
|
+
&:checked {
|
|
1824
|
+
border-color: var(--color-accent);
|
|
1825
|
+
}
|
|
1826
|
+
}
|
|
1827
|
+
.checked\:bg-accent {
|
|
1828
|
+
&:checked {
|
|
1829
|
+
background-color: var(--color-accent);
|
|
1830
|
+
}
|
|
1831
|
+
}
|
|
1832
|
+
.hover\:scale-105 {
|
|
1833
|
+
&:hover {
|
|
1834
|
+
@media (hover: hover) {
|
|
1835
|
+
--tw-scale-x: 105%;
|
|
1836
|
+
--tw-scale-y: 105%;
|
|
1837
|
+
--tw-scale-z: 105%;
|
|
1838
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
1839
|
+
}
|
|
1840
|
+
}
|
|
1841
|
+
}
|
|
1842
|
+
.hover\:scale-110 {
|
|
1843
|
+
&:hover {
|
|
1844
|
+
@media (hover: hover) {
|
|
1845
|
+
--tw-scale-x: 110%;
|
|
1846
|
+
--tw-scale-y: 110%;
|
|
1847
|
+
--tw-scale-z: 110%;
|
|
1848
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
1849
|
+
}
|
|
1850
|
+
}
|
|
1851
|
+
}
|
|
1852
|
+
.hover\:scale-\[1\.02\] {
|
|
1853
|
+
&:hover {
|
|
1854
|
+
@media (hover: hover) {
|
|
1855
|
+
scale: 1.02;
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1858
|
+
}
|
|
1859
|
+
.hover\:border-\[var\(--color-accent\)\] {
|
|
1860
|
+
&:hover {
|
|
1861
|
+
@media (hover: hover) {
|
|
1862
|
+
border-color: var(--color-accent);
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1865
|
+
}
|
|
1866
|
+
.hover\:bg-\[var\(--color-accent-overlay-30\)\] {
|
|
1867
|
+
&:hover {
|
|
1868
|
+
@media (hover: hover) {
|
|
1869
|
+
background-color: var(--color-accent-overlay-30);
|
|
1870
|
+
}
|
|
1871
|
+
}
|
|
1872
|
+
}
|
|
1873
|
+
.hover\:bg-\[var\(--color-base-2\)\] {
|
|
1874
|
+
&:hover {
|
|
1875
|
+
@media (hover: hover) {
|
|
1876
|
+
background-color: var(--color-base-2);
|
|
1877
|
+
}
|
|
1878
|
+
}
|
|
1879
|
+
}
|
|
1880
|
+
.hover\:bg-\[var\(--color-base-3\)\] {
|
|
1881
|
+
&:hover {
|
|
1882
|
+
@media (hover: hover) {
|
|
1883
|
+
background-color: var(--color-base-3);
|
|
1884
|
+
}
|
|
1885
|
+
}
|
|
1886
|
+
}
|
|
1887
|
+
.hover\:bg-\[var\(--color-error-overlay-30\)\] {
|
|
1888
|
+
&:hover {
|
|
1889
|
+
@media (hover: hover) {
|
|
1890
|
+
background-color: var(--color-error-overlay-30);
|
|
1891
|
+
}
|
|
1892
|
+
}
|
|
1893
|
+
}
|
|
1894
|
+
.hover\:bg-\[var\(--color-secondary-overlay-10\)\] {
|
|
1895
|
+
&:hover {
|
|
1896
|
+
@media (hover: hover) {
|
|
1897
|
+
background-color: var(--color-secondary-overlay-10);
|
|
1898
|
+
}
|
|
1899
|
+
}
|
|
1900
|
+
}
|
|
1901
|
+
.hover\:bg-\[var\(--color-secondary-overlay-20\)\] {
|
|
1902
|
+
&:hover {
|
|
1903
|
+
@media (hover: hover) {
|
|
1904
|
+
background-color: var(--color-secondary-overlay-20);
|
|
1905
|
+
}
|
|
1906
|
+
}
|
|
1907
|
+
}
|
|
1908
|
+
.hover\:bg-\[var\(--color-success-overlay-30\)\] {
|
|
1909
|
+
&:hover {
|
|
1910
|
+
@media (hover: hover) {
|
|
1911
|
+
background-color: var(--color-success-overlay-30);
|
|
1912
|
+
}
|
|
1913
|
+
}
|
|
1914
|
+
}
|
|
1915
|
+
.hover\:bg-\[var\(--color-warning-overlay-30\)\] {
|
|
1916
|
+
&:hover {
|
|
1917
|
+
@media (hover: hover) {
|
|
1918
|
+
background-color: var(--color-warning-overlay-30);
|
|
1919
|
+
}
|
|
1920
|
+
}
|
|
1921
|
+
}
|
|
1922
|
+
.hover\:bg-base-3 {
|
|
1923
|
+
&:hover {
|
|
1924
|
+
@media (hover: hover) {
|
|
1925
|
+
background-color: var(--color-base-3);
|
|
1926
|
+
}
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
.hover\:text-\[var\(--color-accent\)\] {
|
|
1930
|
+
&:hover {
|
|
1931
|
+
@media (hover: hover) {
|
|
1932
|
+
color: var(--color-accent);
|
|
1933
|
+
}
|
|
1934
|
+
}
|
|
1935
|
+
}
|
|
1936
|
+
.hover\:text-\[var\(--color-text\)\] {
|
|
1937
|
+
&:hover {
|
|
1938
|
+
@media (hover: hover) {
|
|
1939
|
+
color: var(--color-text);
|
|
1940
|
+
}
|
|
1941
|
+
}
|
|
1942
|
+
}
|
|
1943
|
+
.hover\:text-red-400 {
|
|
1944
|
+
&:hover {
|
|
1945
|
+
@media (hover: hover) {
|
|
1946
|
+
color: var(--color-red-400);
|
|
1947
|
+
}
|
|
1948
|
+
}
|
|
1949
|
+
}
|
|
1950
|
+
.hover\:text-text {
|
|
1951
|
+
&:hover {
|
|
1952
|
+
@media (hover: hover) {
|
|
1953
|
+
color: var(--color-text);
|
|
1954
|
+
}
|
|
1955
|
+
}
|
|
1956
|
+
}
|
|
1957
|
+
.hover\:underline {
|
|
1958
|
+
&:hover {
|
|
1959
|
+
@media (hover: hover) {
|
|
1960
|
+
text-decoration-line: underline;
|
|
1961
|
+
}
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1964
|
+
.hover\:opacity-100 {
|
|
1965
|
+
&:hover {
|
|
1966
|
+
@media (hover: hover) {
|
|
1967
|
+
opacity: var(--opacity-100);
|
|
1968
|
+
}
|
|
1969
|
+
}
|
|
1970
|
+
}
|
|
1971
|
+
.hover\:shadow-\[0_0_12px_var\(--color-accent-overlay-30\)\] {
|
|
1972
|
+
&:hover {
|
|
1973
|
+
@media (hover: hover) {
|
|
1974
|
+
--tw-shadow: 0 0 12px var(--tw-shadow-color, var(--color-accent-overlay-30));
|
|
1975
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1976
|
+
}
|
|
1977
|
+
}
|
|
1978
|
+
}
|
|
1979
|
+
.hover\:shadow-\[var\(--shadow-accent-glow\)\] {
|
|
1980
|
+
&:hover {
|
|
1981
|
+
@media (hover: hover) {
|
|
1982
|
+
--tw-shadow: var(--shadow-accent-glow);
|
|
1983
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1984
|
+
}
|
|
1985
|
+
}
|
|
1986
|
+
}
|
|
1987
|
+
.focus\:border-accent {
|
|
1988
|
+
&:focus {
|
|
1989
|
+
border-color: var(--color-accent);
|
|
1990
|
+
}
|
|
1991
|
+
}
|
|
1992
|
+
.focus\:ring-2 {
|
|
1993
|
+
&:focus {
|
|
1994
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1995
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1996
|
+
}
|
|
1997
|
+
}
|
|
1998
|
+
.focus\:ring-\[var\(--color-accent\)\] {
|
|
1999
|
+
&:focus {
|
|
2000
|
+
--tw-ring-color: var(--color-accent);
|
|
2001
|
+
}
|
|
2002
|
+
}
|
|
2003
|
+
.focus\:ring-accent {
|
|
2004
|
+
&:focus {
|
|
2005
|
+
--tw-ring-color: var(--color-accent);
|
|
2006
|
+
}
|
|
2007
|
+
}
|
|
2008
|
+
.focus\:ring-offset-2 {
|
|
2009
|
+
&:focus {
|
|
2010
|
+
--tw-ring-offset-width: 2px;
|
|
2011
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2012
|
+
}
|
|
2013
|
+
}
|
|
2014
|
+
.focus\:ring-offset-\[var\(--color-base-1\)\] {
|
|
2015
|
+
&:focus {
|
|
2016
|
+
--tw-ring-offset-color: var(--color-base-1);
|
|
2017
|
+
}
|
|
2018
|
+
}
|
|
2019
|
+
.focus\:ring-offset-base-1 {
|
|
2020
|
+
&:focus {
|
|
2021
|
+
--tw-ring-offset-color: var(--color-base-1);
|
|
2022
|
+
}
|
|
2023
|
+
}
|
|
2024
|
+
.focus\:outline-none {
|
|
2025
|
+
&:focus {
|
|
2026
|
+
--tw-outline-style: none;
|
|
2027
|
+
outline-style: none;
|
|
2028
|
+
}
|
|
2029
|
+
}
|
|
2030
|
+
.disabled\:cursor-not-allowed {
|
|
2031
|
+
&:disabled {
|
|
2032
|
+
cursor: not-allowed;
|
|
2033
|
+
}
|
|
2034
|
+
}
|
|
2035
|
+
.disabled\:opacity-40 {
|
|
2036
|
+
&:disabled {
|
|
2037
|
+
opacity: var(--opacity-40);
|
|
2038
|
+
}
|
|
2039
|
+
}
|
|
2040
|
+
.disabled\:hover\:border-\[var\(--color-border\)\] {
|
|
2041
|
+
&:disabled {
|
|
2042
|
+
&:hover {
|
|
2043
|
+
@media (hover: hover) {
|
|
2044
|
+
border-color: var(--color-border);
|
|
2045
|
+
}
|
|
2046
|
+
}
|
|
2047
|
+
}
|
|
2048
|
+
}
|
|
2049
|
+
.disabled\:hover\:bg-transparent {
|
|
2050
|
+
&:disabled {
|
|
2051
|
+
&:hover {
|
|
2052
|
+
@media (hover: hover) {
|
|
2053
|
+
background-color: transparent;
|
|
2054
|
+
}
|
|
2055
|
+
}
|
|
2056
|
+
}
|
|
2057
|
+
}
|
|
2058
|
+
.md\:ml-64 {
|
|
2059
|
+
@media (width >= 48rem) {
|
|
2060
|
+
margin-left: calc(var(--spacing) * 64);
|
|
2061
|
+
}
|
|
2062
|
+
}
|
|
2063
|
+
.md\:block {
|
|
2064
|
+
@media (width >= 48rem) {
|
|
2065
|
+
display: block;
|
|
2066
|
+
}
|
|
2067
|
+
}
|
|
2068
|
+
.md\:grid-cols-2 {
|
|
2069
|
+
@media (width >= 48rem) {
|
|
2070
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2071
|
+
}
|
|
2072
|
+
}
|
|
2073
|
+
.md\:px-6 {
|
|
2074
|
+
@media (width >= 48rem) {
|
|
2075
|
+
padding-inline: calc(var(--spacing) * 6);
|
|
2076
|
+
}
|
|
2077
|
+
}
|
|
2078
|
+
.md\:py-12 {
|
|
2079
|
+
@media (width >= 48rem) {
|
|
2080
|
+
padding-block: calc(var(--spacing) * 12);
|
|
2081
|
+
}
|
|
2082
|
+
}
|
|
2083
|
+
.lg\:grid-cols-1 {
|
|
2084
|
+
@media (width >= 64rem) {
|
|
2085
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2086
|
+
}
|
|
2087
|
+
}
|
|
2088
|
+
.lg\:grid-cols-2 {
|
|
2089
|
+
@media (width >= 64rem) {
|
|
2090
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2091
|
+
}
|
|
2092
|
+
}
|
|
2093
|
+
.lg\:grid-cols-3 {
|
|
2094
|
+
@media (width >= 64rem) {
|
|
2095
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2096
|
+
}
|
|
2097
|
+
}
|
|
2098
|
+
.lg\:grid-cols-4 {
|
|
2099
|
+
@media (width >= 64rem) {
|
|
2100
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2101
|
+
}
|
|
2102
|
+
}
|
|
2103
|
+
.lg\:grid-cols-6 {
|
|
2104
|
+
@media (width >= 64rem) {
|
|
2105
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
2106
|
+
}
|
|
2107
|
+
}
|
|
2108
|
+
.lg\:grid-cols-12 {
|
|
2109
|
+
@media (width >= 64rem) {
|
|
2110
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2113
|
+
.lg\:px-8 {
|
|
2114
|
+
@media (width >= 64rem) {
|
|
2115
|
+
padding-inline: calc(var(--spacing) * 8);
|
|
2116
|
+
}
|
|
2117
|
+
}
|
|
2118
|
+
.lg\:py-16 {
|
|
2119
|
+
@media (width >= 64rem) {
|
|
2120
|
+
padding-block: calc(var(--spacing) * 16);
|
|
2121
|
+
}
|
|
2122
|
+
}
|
|
2123
|
+
.\[\&\>\*\:first-child\]\:rounded-r-none {
|
|
2124
|
+
&>*:first-child {
|
|
2125
|
+
border-top-right-radius: var(--radius-none);
|
|
2126
|
+
border-bottom-right-radius: var(--radius-none);
|
|
2127
|
+
}
|
|
2128
|
+
}
|
|
2129
|
+
.\[\&\>\*\:first-child\]\:rounded-b-none {
|
|
2130
|
+
&>*:first-child {
|
|
2131
|
+
border-bottom-right-radius: var(--radius-none);
|
|
2132
|
+
border-bottom-left-radius: var(--radius-none);
|
|
2133
|
+
}
|
|
2134
|
+
}
|
|
2135
|
+
.\[\&\>\*\:last-child\]\:rounded-t-none {
|
|
2136
|
+
&>*:last-child {
|
|
2137
|
+
border-top-left-radius: var(--radius-none);
|
|
2138
|
+
border-top-right-radius: var(--radius-none);
|
|
2139
|
+
}
|
|
2140
|
+
}
|
|
2141
|
+
.\[\&\>\*\:last-child\]\:rounded-l-none {
|
|
2142
|
+
&>*:last-child {
|
|
2143
|
+
border-top-left-radius: var(--radius-none);
|
|
2144
|
+
border-bottom-left-radius: var(--radius-none);
|
|
2145
|
+
}
|
|
2146
|
+
}
|
|
2147
|
+
.\[\&\>\*\:not\(\:first-child\)\]\:mt-\[-1px\] {
|
|
2148
|
+
&>*:not(:first-child) {
|
|
2149
|
+
margin-top: -1px;
|
|
2150
|
+
}
|
|
2151
|
+
}
|
|
2152
|
+
.\[\&\>\*\:not\(\:first-child\)\]\:ml-\[-1px\] {
|
|
2153
|
+
&>*:not(:first-child) {
|
|
2154
|
+
margin-left: -1px;
|
|
2155
|
+
}
|
|
2156
|
+
}
|
|
2157
|
+
.\[\&\>\*\:not\(\:first-child\)\:not\(\:last-child\)\]\:rounded-none {
|
|
2158
|
+
&>*:not(:first-child):not(:last-child) {
|
|
2159
|
+
border-radius: var(--radius-none);
|
|
2160
|
+
}
|
|
2161
|
+
}
|
|
2162
|
+
}
|
|
2163
|
+
* {
|
|
2164
|
+
box-sizing: border-box;
|
|
2165
|
+
}
|
|
2166
|
+
* {
|
|
2167
|
+
scrollbar-width: thin;
|
|
2168
|
+
scrollbar-color: var(--color-accent-overlay-30) var(--color-base-2);
|
|
2169
|
+
}
|
|
2170
|
+
::-webkit-scrollbar {
|
|
2171
|
+
width: 10px;
|
|
2172
|
+
height: 10px;
|
|
2173
|
+
}
|
|
2174
|
+
::-webkit-scrollbar-track {
|
|
2175
|
+
background: var(--color-base-2);
|
|
2176
|
+
border-radius: var(--radius-sm);
|
|
2177
|
+
}
|
|
2178
|
+
::-webkit-scrollbar-thumb {
|
|
2179
|
+
background: var(--color-accent-overlay-30);
|
|
2180
|
+
border-radius: var(--radius-sm);
|
|
2181
|
+
border: 2px solid var(--color-base-2);
|
|
2182
|
+
transition: background 0.2s var(--ease-luxe);
|
|
2183
|
+
}
|
|
2184
|
+
::-webkit-scrollbar-thumb:hover {
|
|
2185
|
+
background: var(--color-accent-overlay-50);
|
|
2186
|
+
}
|
|
2187
|
+
::-webkit-scrollbar-thumb:active {
|
|
2188
|
+
background: var(--color-accent);
|
|
2189
|
+
}
|
|
2190
|
+
html {
|
|
2191
|
+
font-family: var(--font-body);
|
|
2192
|
+
-webkit-font-smoothing: antialiased;
|
|
2193
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2194
|
+
}
|
|
2195
|
+
body {
|
|
2196
|
+
margin: 0;
|
|
2197
|
+
padding: 0;
|
|
2198
|
+
background-color: var(--color-base-0);
|
|
2199
|
+
color: var(--color-text);
|
|
2200
|
+
font-family: var(--font-body);
|
|
2201
|
+
font-size: var(--text-body-size);
|
|
2202
|
+
line-height: var(--text-body-line-height);
|
|
2203
|
+
font-weight: var(--text-body-weight);
|
|
2204
|
+
letter-spacing: var(--text-body-letter-spacing);
|
|
2205
|
+
}
|
|
2206
|
+
h1,
|
|
2207
|
+
h2,
|
|
2208
|
+
h3,
|
|
2209
|
+
h4,
|
|
2210
|
+
h5,
|
|
2211
|
+
h6 {
|
|
2212
|
+
font-family: var(--font-heading);
|
|
2213
|
+
margin: 0;
|
|
2214
|
+
padding: 0;
|
|
2215
|
+
}
|
|
2216
|
+
h1 {
|
|
2217
|
+
font-size: var(--text-h1-size);
|
|
2218
|
+
line-height: var(--text-h1-line-height);
|
|
2219
|
+
font-weight: var(--text-h1-weight);
|
|
2220
|
+
letter-spacing: var(--text-h1-letter-spacing);
|
|
2221
|
+
}
|
|
2222
|
+
h2 {
|
|
2223
|
+
font-size: var(--text-h2-size);
|
|
2224
|
+
line-height: var(--text-h2-line-height);
|
|
2225
|
+
font-weight: var(--text-h2-weight);
|
|
2226
|
+
letter-spacing: var(--text-h2-letter-spacing);
|
|
2227
|
+
}
|
|
2228
|
+
h3 {
|
|
2229
|
+
font-size: var(--text-h3-size);
|
|
2230
|
+
line-height: var(--text-h3-line-height);
|
|
2231
|
+
font-weight: var(--text-h3-weight);
|
|
2232
|
+
letter-spacing: var(--text-h3-letter-spacing);
|
|
2233
|
+
}
|
|
2234
|
+
h4 {
|
|
2235
|
+
font-size: var(--text-h4-size);
|
|
2236
|
+
line-height: var(--text-h4-line-height);
|
|
2237
|
+
font-weight: var(--text-h4-weight);
|
|
2238
|
+
letter-spacing: var(--text-h4-letter-spacing);
|
|
2239
|
+
}
|
|
2240
|
+
h5 {
|
|
2241
|
+
font-size: var(--text-h5-size);
|
|
2242
|
+
line-height: var(--text-h5-line-height);
|
|
2243
|
+
font-weight: var(--text-h5-weight);
|
|
2244
|
+
letter-spacing: var(--text-h5-letter-spacing);
|
|
2245
|
+
}
|
|
2246
|
+
h6 {
|
|
2247
|
+
font-size: var(--text-h6-size);
|
|
2248
|
+
line-height: var(--text-h6-line-height);
|
|
2249
|
+
font-weight: var(--text-h6-weight);
|
|
2250
|
+
letter-spacing: var(--text-h6-letter-spacing);
|
|
2251
|
+
}
|
|
2252
|
+
p {
|
|
2253
|
+
margin: 0;
|
|
2254
|
+
padding: 0;
|
|
2255
|
+
}
|
|
2256
|
+
code,
|
|
2257
|
+
pre {
|
|
2258
|
+
font-family: var(--font-mono);
|
|
2259
|
+
}
|
|
2260
|
+
select:focus {
|
|
2261
|
+
box-shadow: 0 0 0 2px var(--color-accent-overlay-20),
|
|
2262
|
+
var(--shadow-accent-glow);
|
|
2263
|
+
border-color: var(--color-accent);
|
|
2264
|
+
}
|
|
2265
|
+
input:focus {
|
|
2266
|
+
box-shadow: 0 0 0 2px var(--color-accent-overlay-20),
|
|
2267
|
+
var(--shadow-accent-glow);
|
|
2268
|
+
border-color: var(--color-accent);
|
|
2269
|
+
}
|
|
2270
|
+
textarea:focus {
|
|
2271
|
+
box-shadow: 0 0 0 2px var(--color-accent-overlay-20),
|
|
2272
|
+
var(--shadow-accent-glow);
|
|
2273
|
+
border-color: var(--color-accent);
|
|
2274
|
+
}
|
|
2275
|
+
.glass-panel {
|
|
2276
|
+
backdrop-filter: blur(var(--glass-panel-blur));
|
|
2277
|
+
background: var(--glass-panel-background);
|
|
2278
|
+
border: 1px solid var(--color-border);
|
|
2279
|
+
box-shadow: var(--shadow-deep);
|
|
2280
|
+
}
|
|
2281
|
+
.panel-base {
|
|
2282
|
+
background: linear-gradient(
|
|
2283
|
+
180deg,
|
|
2284
|
+
var(--color-base-1),
|
|
2285
|
+
var(--color-base-0)
|
|
2286
|
+
);
|
|
2287
|
+
border: 1px solid var(--color-border);
|
|
2288
|
+
box-shadow: none;
|
|
2289
|
+
}
|
|
2290
|
+
.panel-raised {
|
|
2291
|
+
background: linear-gradient(
|
|
2292
|
+
180deg,
|
|
2293
|
+
var(--color-base-2),
|
|
2294
|
+
var(--color-base-1)
|
|
2295
|
+
);
|
|
2296
|
+
border: 1px solid var(--color-border);
|
|
2297
|
+
box-shadow: 0 6px 18px color-mix(in srgb, black 55%, transparent);
|
|
2298
|
+
}
|
|
2299
|
+
.panel-floating {
|
|
2300
|
+
background: linear-gradient(
|
|
2301
|
+
180deg,
|
|
2302
|
+
var(--color-base-3),
|
|
2303
|
+
var(--color-base-2)
|
|
2304
|
+
);
|
|
2305
|
+
border: 1px solid var(--color-border-strong);
|
|
2306
|
+
box-shadow: 0 12px 30px color-mix(in srgb, black 65%, transparent);
|
|
2307
|
+
}
|
|
2308
|
+
.panel-spectral {
|
|
2309
|
+
background: linear-gradient(
|
|
2310
|
+
180deg,
|
|
2311
|
+
color-mix(in srgb, #1a1a1a 92%, black),
|
|
2312
|
+
color-mix(in srgb, #121212 96%, black)
|
|
2313
|
+
);
|
|
2314
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2315
|
+
background: linear-gradient(
|
|
2316
|
+
180deg,
|
|
2317
|
+
color-mix(in srgb, var(--color-base-2) 92%, black),
|
|
2318
|
+
color-mix(in srgb, var(--color-base-1) 96%, black)
|
|
2319
|
+
);
|
|
2320
|
+
}
|
|
2321
|
+
border: 1px solid var(--color-border);
|
|
2322
|
+
box-shadow: 0 10px 28px color-mix(in srgb, black 70%, transparent);
|
|
2323
|
+
}
|
|
2324
|
+
.glass-panel.error-state {
|
|
2325
|
+
border-color: var(--color-error) !important;
|
|
2326
|
+
box-shadow: 0 0 0 3px var(--color-error-overlay-10),
|
|
2327
|
+
var(--shadow-error-glow);
|
|
2328
|
+
}
|
|
2329
|
+
.accent-glow {
|
|
2330
|
+
box-shadow: var(--shadow-accent-glow);
|
|
2331
|
+
}
|
|
2332
|
+
.hover-lift {
|
|
2333
|
+
transition: all 0.3s var(--ease-sharp);
|
|
2334
|
+
}
|
|
2335
|
+
.hover-lift:hover {
|
|
2336
|
+
transform: translateY(-4px);
|
|
2337
|
+
box-shadow: var(--shadow-accent-glow), var(--shadow-deep);
|
|
2338
|
+
}
|
|
2339
|
+
.drag-child {
|
|
2340
|
+
transition: all var(--duration-200) var(--ease-luxe);
|
|
2341
|
+
}
|
|
2342
|
+
.dragging .drag-child {
|
|
2343
|
+
transform: scale(1.03);
|
|
2344
|
+
box-shadow: var(--shadow-accent-glow), var(--shadow-deep);
|
|
2345
|
+
border-color: var(--color-accent-overlay-30);
|
|
2346
|
+
}
|
|
2347
|
+
.drop-zone {
|
|
2348
|
+
border: 2px dashed var(--color-border);
|
|
2349
|
+
transition: all var(--duration-300) var(--ease-luxe);
|
|
2350
|
+
position: relative;
|
|
2351
|
+
}
|
|
2352
|
+
[data-can-drop="true"] .drop-zone {
|
|
2353
|
+
border-color: var(--color-accent-overlay-30);
|
|
2354
|
+
background: var(--color-accent-overlay-5);
|
|
2355
|
+
}
|
|
2356
|
+
[data-over="true"][data-can-drop="true"] .drop-zone {
|
|
2357
|
+
border-style: solid;
|
|
2358
|
+
border-color: var(--color-accent);
|
|
2359
|
+
background: var(--color-accent-overlay-10);
|
|
2360
|
+
box-shadow: var(--shadow-accent-glow);
|
|
2361
|
+
}
|
|
2362
|
+
[data-over="true"][data-can-drop="false"] .drop-zone {
|
|
2363
|
+
border-style: solid;
|
|
2364
|
+
border-color: var(--color-error);
|
|
2365
|
+
background: var(--color-error-overlay-10);
|
|
2366
|
+
box-shadow: var(--shadow-error-glow);
|
|
2367
|
+
}
|
|
2368
|
+
.text-glow {
|
|
2369
|
+
text-shadow: var(--shadow-text-glow);
|
|
2370
|
+
}
|
|
2371
|
+
.text-gradient {
|
|
2372
|
+
background: linear-gradient(
|
|
2373
|
+
135deg,
|
|
2374
|
+
var(--color-accent) 0%,
|
|
2375
|
+
var(--color-accent-soft) 100%
|
|
2376
|
+
);
|
|
2377
|
+
-webkit-background-clip: text;
|
|
2378
|
+
-webkit-text-fill-color: transparent;
|
|
2379
|
+
background-clip: text;
|
|
2380
|
+
}
|
|
2381
|
+
.text-accent {
|
|
2382
|
+
background: var(--color-accent);
|
|
2383
|
+
-webkit-background-clip: text;
|
|
2384
|
+
-webkit-text-fill-color: transparent;
|
|
2385
|
+
background-clip: text;
|
|
2386
|
+
}
|
|
2387
|
+
.card-icon {
|
|
2388
|
+
font-size: var(--text-4xl);
|
|
2389
|
+
margin-bottom: 1rem;
|
|
2390
|
+
color: var(--color-accent);
|
|
2391
|
+
display: flex;
|
|
2392
|
+
align-items: center;
|
|
2393
|
+
justify-content: center;
|
|
2394
|
+
}
|
|
2395
|
+
.accent-surface {
|
|
2396
|
+
background: var(--color-accent-overlay-5);
|
|
2397
|
+
border: 1px solid var(--color-border-glow);
|
|
2398
|
+
}
|
|
2399
|
+
.span-2 {
|
|
2400
|
+
grid-column: span 2;
|
|
2401
|
+
}
|
|
2402
|
+
.span-3 {
|
|
2403
|
+
grid-column: span 3;
|
|
2404
|
+
}
|
|
2405
|
+
.span-4 {
|
|
2406
|
+
grid-column: span 4;
|
|
2407
|
+
}
|
|
2408
|
+
.span-6 {
|
|
2409
|
+
grid-column: span 6;
|
|
2410
|
+
}
|
|
2411
|
+
.span-full {
|
|
2412
|
+
grid-column: 1 / -1;
|
|
2413
|
+
}
|
|
2414
|
+
.row-span-2 {
|
|
2415
|
+
grid-row: span 2;
|
|
2416
|
+
}
|
|
2417
|
+
.row-span-3 {
|
|
2418
|
+
grid-row: span 3;
|
|
2419
|
+
}
|
|
2420
|
+
.row-span-4 {
|
|
2421
|
+
grid-row: span 4;
|
|
2422
|
+
}
|
|
2423
|
+
@media (min-width: 768px) {
|
|
2424
|
+
.md\:span-2 {
|
|
2425
|
+
grid-column: span 2;
|
|
2426
|
+
}
|
|
2427
|
+
.md\:span-3 {
|
|
2428
|
+
grid-column: span 3;
|
|
2429
|
+
}
|
|
2430
|
+
.md\:span-4 {
|
|
2431
|
+
grid-column: span 4;
|
|
2432
|
+
}
|
|
2433
|
+
.md\:span-6 {
|
|
2434
|
+
grid-column: span 6;
|
|
2435
|
+
}
|
|
2436
|
+
.md\:span-full {
|
|
2437
|
+
grid-column: 1 / -1;
|
|
2438
|
+
}
|
|
2439
|
+
}
|
|
2440
|
+
@media (min-width: 1024px) {
|
|
2441
|
+
.lg\:span-2 {
|
|
2442
|
+
grid-column: span 2;
|
|
2443
|
+
}
|
|
2444
|
+
.lg\:span-3 {
|
|
2445
|
+
grid-column: span 3;
|
|
2446
|
+
}
|
|
2447
|
+
.lg\:span-4 {
|
|
2448
|
+
grid-column: span 4;
|
|
2449
|
+
}
|
|
2450
|
+
.lg\:span-6 {
|
|
2451
|
+
grid-column: span 6;
|
|
2452
|
+
}
|
|
2453
|
+
.lg\:span-full {
|
|
2454
|
+
grid-column: 1 / -1;
|
|
2455
|
+
}
|
|
2456
|
+
}
|
|
2457
|
+
.metal-edge {
|
|
2458
|
+
border-top: 1px solid var(--color-border-metal);
|
|
2459
|
+
border-left: 0.5px solid var(--color-border-metal);
|
|
2460
|
+
}
|
|
2461
|
+
.obsidian-surface {
|
|
2462
|
+
background: linear-gradient(
|
|
2463
|
+
145deg,
|
|
2464
|
+
var(--color-base-0) 0%,
|
|
2465
|
+
var(--color-base-1) 50%,
|
|
2466
|
+
var(--color-base-0) 100%
|
|
2467
|
+
);
|
|
2468
|
+
}
|
|
2469
|
+
.sidebar-collapsed-icon {
|
|
2470
|
+
display: flex;
|
|
2471
|
+
justify-content: center;
|
|
2472
|
+
align-items: center;
|
|
2473
|
+
font-size: var(--text-2xl);
|
|
2474
|
+
}
|
|
2475
|
+
.sidebar-collapsed-letter {
|
|
2476
|
+
width: 2.5rem;
|
|
2477
|
+
height: 2.5rem;
|
|
2478
|
+
border-radius: var(--radius-pill);
|
|
2479
|
+
background: color-mix(in srgb, #6b21a8 20%, transparent);
|
|
2480
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2481
|
+
background: color-mix(in srgb, var(--color-accent) 20%, transparent);
|
|
2482
|
+
}
|
|
2483
|
+
color: var(--color-accent);
|
|
2484
|
+
display: flex;
|
|
2485
|
+
align-items: center;
|
|
2486
|
+
justify-content: center;
|
|
2487
|
+
font-weight: 600;
|
|
2488
|
+
}
|
|
2489
|
+
@property --tw-translate-x {
|
|
2490
|
+
syntax: "*";
|
|
2491
|
+
inherits: false;
|
|
2492
|
+
initial-value: 0;
|
|
2493
|
+
}
|
|
2494
|
+
@property --tw-translate-y {
|
|
2495
|
+
syntax: "*";
|
|
2496
|
+
inherits: false;
|
|
2497
|
+
initial-value: 0;
|
|
2498
|
+
}
|
|
2499
|
+
@property --tw-translate-z {
|
|
2500
|
+
syntax: "*";
|
|
2501
|
+
inherits: false;
|
|
2502
|
+
initial-value: 0;
|
|
2503
|
+
}
|
|
2504
|
+
@property --tw-rotate-x {
|
|
2505
|
+
syntax: "*";
|
|
2506
|
+
inherits: false;
|
|
2507
|
+
}
|
|
2508
|
+
@property --tw-rotate-y {
|
|
2509
|
+
syntax: "*";
|
|
2510
|
+
inherits: false;
|
|
2511
|
+
}
|
|
2512
|
+
@property --tw-rotate-z {
|
|
2513
|
+
syntax: "*";
|
|
2514
|
+
inherits: false;
|
|
2515
|
+
}
|
|
2516
|
+
@property --tw-skew-x {
|
|
2517
|
+
syntax: "*";
|
|
2518
|
+
inherits: false;
|
|
2519
|
+
}
|
|
2520
|
+
@property --tw-skew-y {
|
|
2521
|
+
syntax: "*";
|
|
2522
|
+
inherits: false;
|
|
2523
|
+
}
|
|
2524
|
+
@property --tw-space-y-reverse {
|
|
2525
|
+
syntax: "*";
|
|
2526
|
+
inherits: false;
|
|
2527
|
+
initial-value: 0;
|
|
2528
|
+
}
|
|
2529
|
+
@property --tw-border-style {
|
|
2530
|
+
syntax: "*";
|
|
2531
|
+
inherits: false;
|
|
2532
|
+
initial-value: solid;
|
|
2533
|
+
}
|
|
2534
|
+
@property --tw-font-weight {
|
|
2535
|
+
syntax: "*";
|
|
2536
|
+
inherits: false;
|
|
2537
|
+
}
|
|
2538
|
+
@property --tw-tracking {
|
|
2539
|
+
syntax: "*";
|
|
2540
|
+
inherits: false;
|
|
2541
|
+
}
|
|
2542
|
+
@property --tw-shadow {
|
|
2543
|
+
syntax: "*";
|
|
2544
|
+
inherits: false;
|
|
2545
|
+
initial-value: 0 0 #0000;
|
|
2546
|
+
}
|
|
2547
|
+
@property --tw-shadow-color {
|
|
2548
|
+
syntax: "*";
|
|
2549
|
+
inherits: false;
|
|
2550
|
+
}
|
|
2551
|
+
@property --tw-shadow-alpha {
|
|
2552
|
+
syntax: "<percentage>";
|
|
2553
|
+
inherits: false;
|
|
2554
|
+
initial-value: 100%;
|
|
2555
|
+
}
|
|
2556
|
+
@property --tw-inset-shadow {
|
|
2557
|
+
syntax: "*";
|
|
2558
|
+
inherits: false;
|
|
2559
|
+
initial-value: 0 0 #0000;
|
|
2560
|
+
}
|
|
2561
|
+
@property --tw-inset-shadow-color {
|
|
2562
|
+
syntax: "*";
|
|
2563
|
+
inherits: false;
|
|
2564
|
+
}
|
|
2565
|
+
@property --tw-inset-shadow-alpha {
|
|
2566
|
+
syntax: "<percentage>";
|
|
2567
|
+
inherits: false;
|
|
2568
|
+
initial-value: 100%;
|
|
2569
|
+
}
|
|
2570
|
+
@property --tw-ring-color {
|
|
2571
|
+
syntax: "*";
|
|
2572
|
+
inherits: false;
|
|
2573
|
+
}
|
|
2574
|
+
@property --tw-ring-shadow {
|
|
2575
|
+
syntax: "*";
|
|
2576
|
+
inherits: false;
|
|
2577
|
+
initial-value: 0 0 #0000;
|
|
2578
|
+
}
|
|
2579
|
+
@property --tw-inset-ring-color {
|
|
2580
|
+
syntax: "*";
|
|
2581
|
+
inherits: false;
|
|
2582
|
+
}
|
|
2583
|
+
@property --tw-inset-ring-shadow {
|
|
2584
|
+
syntax: "*";
|
|
2585
|
+
inherits: false;
|
|
2586
|
+
initial-value: 0 0 #0000;
|
|
2587
|
+
}
|
|
2588
|
+
@property --tw-ring-inset {
|
|
2589
|
+
syntax: "*";
|
|
2590
|
+
inherits: false;
|
|
2591
|
+
}
|
|
2592
|
+
@property --tw-ring-offset-width {
|
|
2593
|
+
syntax: "<length>";
|
|
2594
|
+
inherits: false;
|
|
2595
|
+
initial-value: 0px;
|
|
2596
|
+
}
|
|
2597
|
+
@property --tw-ring-offset-color {
|
|
2598
|
+
syntax: "*";
|
|
2599
|
+
inherits: false;
|
|
2600
|
+
initial-value: #fff;
|
|
2601
|
+
}
|
|
2602
|
+
@property --tw-ring-offset-shadow {
|
|
2603
|
+
syntax: "*";
|
|
2604
|
+
inherits: false;
|
|
2605
|
+
initial-value: 0 0 #0000;
|
|
2606
|
+
}
|
|
2607
|
+
@property --tw-outline-style {
|
|
2608
|
+
syntax: "*";
|
|
2609
|
+
inherits: false;
|
|
2610
|
+
initial-value: solid;
|
|
2611
|
+
}
|
|
2612
|
+
@property --tw-blur {
|
|
2613
|
+
syntax: "*";
|
|
2614
|
+
inherits: false;
|
|
2615
|
+
}
|
|
2616
|
+
@property --tw-brightness {
|
|
2617
|
+
syntax: "*";
|
|
2618
|
+
inherits: false;
|
|
2619
|
+
}
|
|
2620
|
+
@property --tw-contrast {
|
|
2621
|
+
syntax: "*";
|
|
2622
|
+
inherits: false;
|
|
2623
|
+
}
|
|
2624
|
+
@property --tw-grayscale {
|
|
2625
|
+
syntax: "*";
|
|
2626
|
+
inherits: false;
|
|
2627
|
+
}
|
|
2628
|
+
@property --tw-hue-rotate {
|
|
2629
|
+
syntax: "*";
|
|
2630
|
+
inherits: false;
|
|
2631
|
+
}
|
|
2632
|
+
@property --tw-invert {
|
|
2633
|
+
syntax: "*";
|
|
2634
|
+
inherits: false;
|
|
2635
|
+
}
|
|
2636
|
+
@property --tw-opacity {
|
|
2637
|
+
syntax: "*";
|
|
2638
|
+
inherits: false;
|
|
2639
|
+
}
|
|
2640
|
+
@property --tw-saturate {
|
|
2641
|
+
syntax: "*";
|
|
2642
|
+
inherits: false;
|
|
2643
|
+
}
|
|
2644
|
+
@property --tw-sepia {
|
|
2645
|
+
syntax: "*";
|
|
2646
|
+
inherits: false;
|
|
2647
|
+
}
|
|
2648
|
+
@property --tw-drop-shadow {
|
|
2649
|
+
syntax: "*";
|
|
2650
|
+
inherits: false;
|
|
2651
|
+
}
|
|
2652
|
+
@property --tw-drop-shadow-color {
|
|
2653
|
+
syntax: "*";
|
|
2654
|
+
inherits: false;
|
|
2655
|
+
}
|
|
2656
|
+
@property --tw-drop-shadow-alpha {
|
|
2657
|
+
syntax: "<percentage>";
|
|
2658
|
+
inherits: false;
|
|
2659
|
+
initial-value: 100%;
|
|
2660
|
+
}
|
|
2661
|
+
@property --tw-drop-shadow-size {
|
|
2662
|
+
syntax: "*";
|
|
2663
|
+
inherits: false;
|
|
2664
|
+
}
|
|
2665
|
+
@property --tw-backdrop-blur {
|
|
2666
|
+
syntax: "*";
|
|
2667
|
+
inherits: false;
|
|
2668
|
+
}
|
|
2669
|
+
@property --tw-backdrop-brightness {
|
|
2670
|
+
syntax: "*";
|
|
2671
|
+
inherits: false;
|
|
2672
|
+
}
|
|
2673
|
+
@property --tw-backdrop-contrast {
|
|
2674
|
+
syntax: "*";
|
|
2675
|
+
inherits: false;
|
|
2676
|
+
}
|
|
2677
|
+
@property --tw-backdrop-grayscale {
|
|
2678
|
+
syntax: "*";
|
|
2679
|
+
inherits: false;
|
|
2680
|
+
}
|
|
2681
|
+
@property --tw-backdrop-hue-rotate {
|
|
2682
|
+
syntax: "*";
|
|
2683
|
+
inherits: false;
|
|
2684
|
+
}
|
|
2685
|
+
@property --tw-backdrop-invert {
|
|
2686
|
+
syntax: "*";
|
|
2687
|
+
inherits: false;
|
|
2688
|
+
}
|
|
2689
|
+
@property --tw-backdrop-opacity {
|
|
2690
|
+
syntax: "*";
|
|
2691
|
+
inherits: false;
|
|
2692
|
+
}
|
|
2693
|
+
@property --tw-backdrop-saturate {
|
|
2694
|
+
syntax: "*";
|
|
2695
|
+
inherits: false;
|
|
2696
|
+
}
|
|
2697
|
+
@property --tw-backdrop-sepia {
|
|
2698
|
+
syntax: "*";
|
|
2699
|
+
inherits: false;
|
|
2700
|
+
}
|
|
2701
|
+
@property --tw-duration {
|
|
2702
|
+
syntax: "*";
|
|
2703
|
+
inherits: false;
|
|
2704
|
+
}
|
|
2705
|
+
@property --tw-ease {
|
|
2706
|
+
syntax: "*";
|
|
2707
|
+
inherits: false;
|
|
2708
|
+
}
|
|
2709
|
+
@property --tw-scale-x {
|
|
2710
|
+
syntax: "*";
|
|
2711
|
+
inherits: false;
|
|
2712
|
+
initial-value: 1;
|
|
2713
|
+
}
|
|
2714
|
+
@property --tw-scale-y {
|
|
2715
|
+
syntax: "*";
|
|
2716
|
+
inherits: false;
|
|
2717
|
+
initial-value: 1;
|
|
2718
|
+
}
|
|
2719
|
+
@property --tw-scale-z {
|
|
2720
|
+
syntax: "*";
|
|
2721
|
+
inherits: false;
|
|
2722
|
+
initial-value: 1;
|
|
2723
|
+
}
|
|
2724
|
+
@keyframes spin {
|
|
2725
|
+
to {
|
|
2726
|
+
transform: rotate(360deg);
|
|
2727
|
+
}
|
|
2728
|
+
}
|
|
2729
|
+
@keyframes fade-in {
|
|
2730
|
+
from {
|
|
2731
|
+
opacity: 0;
|
|
2732
|
+
}
|
|
2733
|
+
to {
|
|
2734
|
+
opacity: 1;
|
|
2735
|
+
}
|
|
2736
|
+
}
|
|
2737
|
+
@keyframes fade-up {
|
|
2738
|
+
from {
|
|
2739
|
+
opacity: 0;
|
|
2740
|
+
transform: translateY(20px);
|
|
2741
|
+
}
|
|
2742
|
+
to {
|
|
2743
|
+
opacity: 1;
|
|
2744
|
+
transform: translateY(0);
|
|
2745
|
+
}
|
|
2746
|
+
}
|
|
2747
|
+
@keyframes glow-pulse {
|
|
2748
|
+
0%,
|
|
2749
|
+
100% {
|
|
2750
|
+
box-shadow: 0 0 20px
|
|
2751
|
+
color-mix(in srgb, #6b21a8 50%, transparent),
|
|
2752
|
+
0 0 40px
|
|
2753
|
+
color-mix(in srgb, #6b21a8 30%, transparent),
|
|
2754
|
+
0 0 60px
|
|
2755
|
+
color-mix(in srgb, #6b21a8 15%, transparent);
|
|
2756
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2757
|
+
box-shadow: 0 0 20px
|
|
2758
|
+
color-mix(in srgb, var(--color-accent) 50%, transparent),
|
|
2759
|
+
0 0 40px
|
|
2760
|
+
color-mix(in srgb, var(--color-accent) 30%, transparent),
|
|
2761
|
+
0 0 60px
|
|
2762
|
+
color-mix(in srgb, var(--color-accent) 15%, transparent);
|
|
2763
|
+
}
|
|
2764
|
+
}
|
|
2765
|
+
50% {
|
|
2766
|
+
box-shadow: 0 0 30px
|
|
2767
|
+
color-mix(in srgb, #6b21a8 70%, transparent),
|
|
2768
|
+
0 0 60px
|
|
2769
|
+
color-mix(in srgb, #6b21a8 40%, transparent),
|
|
2770
|
+
0 0 90px
|
|
2771
|
+
color-mix(in srgb, #6b21a8 20%, transparent);
|
|
2772
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2773
|
+
box-shadow: 0 0 30px
|
|
2774
|
+
color-mix(in srgb, var(--color-accent) 70%, transparent),
|
|
2775
|
+
0 0 60px
|
|
2776
|
+
color-mix(in srgb, var(--color-accent) 40%, transparent),
|
|
2777
|
+
0 0 90px
|
|
2778
|
+
color-mix(in srgb, var(--color-accent) 20%, transparent);
|
|
2779
|
+
}
|
|
2780
|
+
}
|
|
2781
|
+
}
|
|
2782
|
+
@keyframes fade-out {
|
|
2783
|
+
from {
|
|
2784
|
+
opacity: 1;
|
|
2785
|
+
}
|
|
2786
|
+
to {
|
|
2787
|
+
opacity: 0;
|
|
2788
|
+
}
|
|
2789
|
+
}
|
|
2790
|
+
@keyframes slide-in-left {
|
|
2791
|
+
from {
|
|
2792
|
+
opacity: 0;
|
|
2793
|
+
transform: translateX(-100%);
|
|
2794
|
+
}
|
|
2795
|
+
to {
|
|
2796
|
+
opacity: 1;
|
|
2797
|
+
transform: translateX(0);
|
|
2798
|
+
}
|
|
2799
|
+
}
|
|
2800
|
+
@keyframes slide-in-right {
|
|
2801
|
+
from {
|
|
2802
|
+
opacity: 0;
|
|
2803
|
+
transform: translateX(100%);
|
|
2804
|
+
}
|
|
2805
|
+
to {
|
|
2806
|
+
opacity: 1;
|
|
2807
|
+
transform: translateX(0);
|
|
2808
|
+
}
|
|
2809
|
+
}
|
|
2810
|
+
@keyframes slide-in-top {
|
|
2811
|
+
from {
|
|
2812
|
+
opacity: 0;
|
|
2813
|
+
transform: translateY(-100%);
|
|
2814
|
+
}
|
|
2815
|
+
to {
|
|
2816
|
+
opacity: 1;
|
|
2817
|
+
transform: translateY(0);
|
|
2818
|
+
}
|
|
2819
|
+
}
|
|
2820
|
+
@keyframes slide-in-bottom {
|
|
2821
|
+
from {
|
|
2822
|
+
opacity: 0;
|
|
2823
|
+
transform: translateY(100%);
|
|
2824
|
+
}
|
|
2825
|
+
to {
|
|
2826
|
+
opacity: 1;
|
|
2827
|
+
transform: translateY(0);
|
|
2828
|
+
}
|
|
2829
|
+
}
|
|
2830
|
+
@layer properties {
|
|
2831
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
2832
|
+
*, ::before, ::after, ::backdrop {
|
|
2833
|
+
--tw-translate-x: 0;
|
|
2834
|
+
--tw-translate-y: 0;
|
|
2835
|
+
--tw-translate-z: 0;
|
|
2836
|
+
--tw-rotate-x: initial;
|
|
2837
|
+
--tw-rotate-y: initial;
|
|
2838
|
+
--tw-rotate-z: initial;
|
|
2839
|
+
--tw-skew-x: initial;
|
|
2840
|
+
--tw-skew-y: initial;
|
|
2841
|
+
--tw-space-y-reverse: 0;
|
|
2842
|
+
--tw-border-style: solid;
|
|
2843
|
+
--tw-font-weight: initial;
|
|
2844
|
+
--tw-tracking: initial;
|
|
2845
|
+
--tw-shadow: 0 0 #0000;
|
|
2846
|
+
--tw-shadow-color: initial;
|
|
2847
|
+
--tw-shadow-alpha: 100%;
|
|
2848
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
2849
|
+
--tw-inset-shadow-color: initial;
|
|
2850
|
+
--tw-inset-shadow-alpha: 100%;
|
|
2851
|
+
--tw-ring-color: initial;
|
|
2852
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
2853
|
+
--tw-inset-ring-color: initial;
|
|
2854
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
2855
|
+
--tw-ring-inset: initial;
|
|
2856
|
+
--tw-ring-offset-width: 0px;
|
|
2857
|
+
--tw-ring-offset-color: #fff;
|
|
2858
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
2859
|
+
--tw-outline-style: solid;
|
|
2860
|
+
--tw-blur: initial;
|
|
2861
|
+
--tw-brightness: initial;
|
|
2862
|
+
--tw-contrast: initial;
|
|
2863
|
+
--tw-grayscale: initial;
|
|
2864
|
+
--tw-hue-rotate: initial;
|
|
2865
|
+
--tw-invert: initial;
|
|
2866
|
+
--tw-opacity: initial;
|
|
2867
|
+
--tw-saturate: initial;
|
|
2868
|
+
--tw-sepia: initial;
|
|
2869
|
+
--tw-drop-shadow: initial;
|
|
2870
|
+
--tw-drop-shadow-color: initial;
|
|
2871
|
+
--tw-drop-shadow-alpha: 100%;
|
|
2872
|
+
--tw-drop-shadow-size: initial;
|
|
2873
|
+
--tw-backdrop-blur: initial;
|
|
2874
|
+
--tw-backdrop-brightness: initial;
|
|
2875
|
+
--tw-backdrop-contrast: initial;
|
|
2876
|
+
--tw-backdrop-grayscale: initial;
|
|
2877
|
+
--tw-backdrop-hue-rotate: initial;
|
|
2878
|
+
--tw-backdrop-invert: initial;
|
|
2879
|
+
--tw-backdrop-opacity: initial;
|
|
2880
|
+
--tw-backdrop-saturate: initial;
|
|
2881
|
+
--tw-backdrop-sepia: initial;
|
|
2882
|
+
--tw-duration: initial;
|
|
2883
|
+
--tw-ease: initial;
|
|
2884
|
+
--tw-scale-x: 1;
|
|
2885
|
+
--tw-scale-y: 1;
|
|
2886
|
+
--tw-scale-z: 1;
|
|
2887
|
+
}
|
|
2888
|
+
}
|
|
2889
|
+
}
|