@limpiolux/ui-styles 1.0.9 → 1.0.11
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/components.css +118 -1
- package/light.css +68 -0
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -136,6 +136,103 @@
|
|
|
136
136
|
@apply rounded-[28px] border border-white/10 bg-white/[0.045] shadow-2xl shadow-black/30 backdrop-blur-xl relative overflow-hidden p-5 transition duration-300;
|
|
137
137
|
}
|
|
138
138
|
|
|
139
|
+
.portal-widget-grid {
|
|
140
|
+
@apply grid gap-4 md:grid-cols-2 xl:grid-cols-4;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.portal-widget-card {
|
|
144
|
+
@apply rounded-[24px] border border-white/10 bg-white/[0.045] p-4 shadow-2xl shadow-black/30 backdrop-blur-xl transition duration-300;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.portal-widget-card:hover {
|
|
148
|
+
transform: translateY(-3px);
|
|
149
|
+
border-color: rgba(255, 255, 255, 0.16);
|
|
150
|
+
background: rgba(255, 255, 255, 0.065);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.portal-widget-header {
|
|
154
|
+
@apply flex items-start justify-between gap-3;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.portal-widget-icon {
|
|
158
|
+
@apply inline-flex h-11 w-11 items-center justify-center rounded-2xl border;
|
|
159
|
+
border-color: rgba(255, 255, 255, 0.12);
|
|
160
|
+
background: rgba(255, 255, 255, 0.06);
|
|
161
|
+
color: rgb(var(--color-brand-soft));
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.portal-widget-kicker {
|
|
165
|
+
@apply text-[11px] font-medium uppercase tracking-[0.2em];
|
|
166
|
+
color: #71717a;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.portal-widget-value {
|
|
170
|
+
@apply mt-3 text-2xl font-semibold tracking-tight;
|
|
171
|
+
color: #f4f4f5;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.portal-widget-body {
|
|
175
|
+
@apply mt-1 text-sm leading-6;
|
|
176
|
+
color: #a1a1aa;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.portal-widget-link {
|
|
180
|
+
@apply mt-4 inline-flex items-center gap-2 text-sm font-medium;
|
|
181
|
+
color: rgb(var(--color-brand-soft));
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.portal-launchpad-grid {
|
|
185
|
+
@apply grid gap-5 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.portal-launchpad-card {
|
|
189
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.04] p-5 text-left shadow-2xl shadow-black/30 backdrop-blur-xl transition duration-300;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.portal-launchpad-card:hover {
|
|
193
|
+
transform: translateY(-5px);
|
|
194
|
+
border-color: rgba(var(--color-brand) / 0.3);
|
|
195
|
+
background: rgba(255, 255, 255, 0.075);
|
|
196
|
+
box-shadow: 0 24px 50px -28px rgba(0, 117, 169, 0.42);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.portal-launchpad-icon-wrap {
|
|
200
|
+
@apply flex items-center justify-center;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.portal-launchpad-icon {
|
|
204
|
+
@apply inline-flex h-20 w-20 items-center justify-center rounded-[26px] border;
|
|
205
|
+
border-color: rgba(var(--color-brand) / 0.2);
|
|
206
|
+
background:
|
|
207
|
+
radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 56%),
|
|
208
|
+
linear-gradient(180deg, rgba(var(--color-brand) / 0.22), rgba(var(--color-brand) / 0.1));
|
|
209
|
+
color: #f8fdff;
|
|
210
|
+
box-shadow:
|
|
211
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.18),
|
|
212
|
+
0 20px 32px -24px rgba(0, 117, 169, 0.68);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.portal-launchpad-title {
|
|
216
|
+
@apply mt-4 text-base font-semibold tracking-tight;
|
|
217
|
+
color: #f4f4f5;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.portal-launchpad-subtitle {
|
|
221
|
+
@apply mt-1 text-sm leading-6;
|
|
222
|
+
color: #a1a1aa;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.portal-launchpad-meta {
|
|
226
|
+
@apply mt-4 flex items-center justify-between gap-3;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.portal-launchpad-role {
|
|
230
|
+
@apply rounded-full border px-3 py-1 text-[11px] font-medium uppercase tracking-[0.18em];
|
|
231
|
+
border-color: rgba(var(--color-brand) / 0.24);
|
|
232
|
+
background: rgba(var(--color-brand) / 0.1);
|
|
233
|
+
color: #d7f1fb;
|
|
234
|
+
}
|
|
235
|
+
|
|
139
236
|
.auth-hero-panel {
|
|
140
237
|
@apply relative overflow-hidden p-8 md:p-10;
|
|
141
238
|
}
|
|
@@ -149,8 +246,28 @@
|
|
|
149
246
|
@apply h-20 w-auto md:h-28;
|
|
150
247
|
}
|
|
151
248
|
|
|
249
|
+
.auth-hero-frame {
|
|
250
|
+
@apply relative h-full;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.auth-hero-icon {
|
|
254
|
+
@apply absolute left-0 top-0 h-9 w-auto md:h-10;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.auth-hero-content {
|
|
258
|
+
@apply flex h-full items-center justify-center;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.auth-hero-copy {
|
|
262
|
+
@apply w-full max-w-xl text-left;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.auth-hero-wordmark {
|
|
266
|
+
@apply mt-3 h-14 w-auto md:h-16;
|
|
267
|
+
}
|
|
268
|
+
|
|
152
269
|
.auth-hero-title {
|
|
153
|
-
@apply
|
|
270
|
+
@apply max-w-xl text-3xl font-semibold tracking-tight text-zinc-100 md:text-[2.6rem];
|
|
154
271
|
}
|
|
155
272
|
|
|
156
273
|
.auth-hero-body {
|
package/light.css
CHANGED
|
@@ -363,6 +363,38 @@
|
|
|
363
363
|
background: rgba(255, 255, 255, 0.82);
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
+
.light .portal-widget-card {
|
|
367
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
368
|
+
background: rgba(255, 255, 255, 0.84);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.light .portal-widget-card:hover {
|
|
372
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
373
|
+
background: rgba(255, 255, 255, 0.94);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.light .portal-widget-icon {
|
|
377
|
+
border-color: rgba(186, 230, 253, 0.88);
|
|
378
|
+
background: rgba(240, 249, 255, 0.92);
|
|
379
|
+
color: rgb(var(--color-brand-strong));
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.light .portal-widget-kicker {
|
|
383
|
+
color: #52525b;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.light .portal-widget-value {
|
|
387
|
+
color: #18181b;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.light .portal-widget-body {
|
|
391
|
+
color: #52525b;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.light .portal-widget-link {
|
|
395
|
+
color: rgb(var(--color-brand-strong));
|
|
396
|
+
}
|
|
397
|
+
|
|
366
398
|
.light .portal-card:hover {
|
|
367
399
|
border-color: rgba(161, 161, 170, 0.42);
|
|
368
400
|
background: rgba(255, 255, 255, 0.88);
|
|
@@ -421,6 +453,42 @@
|
|
|
421
453
|
color: #0369a1;
|
|
422
454
|
}
|
|
423
455
|
|
|
456
|
+
.light .portal-launchpad-card {
|
|
457
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
458
|
+
background: rgba(255, 255, 255, 0.84);
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.light .portal-launchpad-card:hover {
|
|
462
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
463
|
+
background: rgba(255, 255, 255, 0.96);
|
|
464
|
+
box-shadow: 0 26px 48px -34px rgba(0, 117, 169, 0.28);
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.light .portal-launchpad-icon {
|
|
468
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
469
|
+
background:
|
|
470
|
+
radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 52%),
|
|
471
|
+
linear-gradient(180deg, rgba(224, 242, 254, 0.98), rgba(186, 230, 253, 0.86));
|
|
472
|
+
color: rgb(var(--color-brand-strong));
|
|
473
|
+
box-shadow:
|
|
474
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.92),
|
|
475
|
+
0 20px 36px -28px rgba(14, 116, 144, 0.32);
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.light .portal-launchpad-title {
|
|
479
|
+
color: #18181b;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.light .portal-launchpad-subtitle {
|
|
483
|
+
color: #52525b;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.light .portal-launchpad-role {
|
|
487
|
+
border-color: rgba(186, 230, 253, 0.88);
|
|
488
|
+
background: #f0f9ff;
|
|
489
|
+
color: #0369a1;
|
|
490
|
+
}
|
|
491
|
+
|
|
424
492
|
.light .portal-title {
|
|
425
493
|
color: #18181b;
|
|
426
494
|
}
|