@limpiolux/ui-styles 1.0.13 → 1.0.15
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 +113 -16
- package/light.css +66 -7
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
.theme-icon-button {
|
|
46
|
-
@apply inline-flex h-
|
|
46
|
+
@apply inline-flex h-12 w-12 items-center justify-center rounded-2xl border border-white/10 bg-white/5 text-zinc-200;
|
|
47
47
|
transition:
|
|
48
48
|
transform 220ms ease,
|
|
49
49
|
background-color 220ms ease,
|
|
@@ -182,18 +182,15 @@
|
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
.portal-launchpad-grid {
|
|
185
|
-
@apply grid gap-
|
|
185
|
+
@apply grid gap-x-6 gap-y-8 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
.portal-launchpad-card {
|
|
189
|
-
@apply rounded-[28px]
|
|
189
|
+
@apply flex flex-col items-center rounded-[28px] bg-transparent p-2 text-center transition duration-300;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
.portal-launchpad-card:hover {
|
|
193
|
-
transform: translateY(-
|
|
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);
|
|
193
|
+
transform: translateY(-4px) scale(1.01);
|
|
197
194
|
}
|
|
198
195
|
|
|
199
196
|
.portal-launchpad-icon-wrap {
|
|
@@ -201,19 +198,38 @@
|
|
|
201
198
|
}
|
|
202
199
|
|
|
203
200
|
.portal-launchpad-icon {
|
|
204
|
-
@apply inline-flex h-24 w-24 items-center justify-center rounded-[
|
|
205
|
-
border-color: rgba(
|
|
201
|
+
@apply inline-flex h-24 w-24 items-center justify-center rounded-[30px] border;
|
|
202
|
+
border-color: rgba(255, 255, 255, 0.14);
|
|
206
203
|
background:
|
|
207
|
-
radial-gradient(circle at top left, rgba(255, 255, 255, 0.
|
|
208
|
-
|
|
204
|
+
radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 54%),
|
|
205
|
+
radial-gradient(circle at bottom right, rgba(var(--color-brand) / 0.18), transparent 52%),
|
|
206
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
|
|
209
207
|
color: #f8fdff;
|
|
210
208
|
box-shadow:
|
|
211
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.
|
|
212
|
-
0
|
|
209
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.28),
|
|
210
|
+
inset 0 -16px 24px -20px rgba(0, 0, 0, 0.24),
|
|
211
|
+
0 24px 42px -28px rgba(0, 117, 169, 0.46);
|
|
212
|
+
backdrop-filter: blur(18px);
|
|
213
|
+
-webkit-backdrop-filter: blur(18px);
|
|
214
|
+
transition:
|
|
215
|
+
transform 220ms ease,
|
|
216
|
+
border-color 220ms ease,
|
|
217
|
+
box-shadow 220ms ease,
|
|
218
|
+
background 220ms ease;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.portal-launchpad-card:hover .portal-launchpad-icon,
|
|
222
|
+
.portal-launchpad-card:focus-visible .portal-launchpad-icon {
|
|
223
|
+
transform: translateY(-2px);
|
|
224
|
+
border-color: rgba(var(--color-brand) / 0.28);
|
|
225
|
+
box-shadow:
|
|
226
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.32),
|
|
227
|
+
inset 0 -16px 24px -20px rgba(0, 0, 0, 0.18),
|
|
228
|
+
0 28px 52px -30px rgba(0, 117, 169, 0.58);
|
|
213
229
|
}
|
|
214
230
|
|
|
215
231
|
.portal-launchpad-title {
|
|
216
|
-
@apply mt-
|
|
232
|
+
@apply mt-3 text-base font-semibold tracking-tight;
|
|
217
233
|
color: #f4f4f5;
|
|
218
234
|
}
|
|
219
235
|
|
|
@@ -244,6 +260,71 @@
|
|
|
244
260
|
transform: translateY(0);
|
|
245
261
|
}
|
|
246
262
|
|
|
263
|
+
.portal-home-grid {
|
|
264
|
+
@apply mt-10 grid gap-5 lg:grid-cols-3;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.portal-home-card {
|
|
268
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.045] p-5 shadow-2xl shadow-black/30 backdrop-blur-xl;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.portal-home-header {
|
|
272
|
+
@apply flex items-start gap-4;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.portal-home-icon {
|
|
276
|
+
@apply inline-flex h-12 w-12 items-center justify-center rounded-2xl border;
|
|
277
|
+
border-color: rgba(var(--color-brand) / 0.2);
|
|
278
|
+
background: rgba(var(--color-brand) / 0.1);
|
|
279
|
+
color: rgb(var(--color-brand-soft));
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.portal-home-kicker {
|
|
283
|
+
@apply text-[11px] font-medium uppercase tracking-[0.18em];
|
|
284
|
+
color: #71717a;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.portal-home-title {
|
|
288
|
+
@apply mt-2 text-lg font-semibold tracking-tight;
|
|
289
|
+
color: #f4f4f5;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.portal-home-copy {
|
|
293
|
+
@apply mt-2 text-sm leading-6;
|
|
294
|
+
color: #a1a1aa;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.portal-home-list {
|
|
298
|
+
@apply mt-5 space-y-3;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.portal-home-item {
|
|
302
|
+
@apply rounded-2xl border p-4 transition duration-200;
|
|
303
|
+
border-color: rgba(255, 255, 255, 0.08);
|
|
304
|
+
background: rgba(255, 255, 255, 0.03);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.portal-home-item:hover {
|
|
308
|
+
border-color: rgba(var(--color-brand) / 0.18);
|
|
309
|
+
background: rgba(255, 255, 255, 0.05);
|
|
310
|
+
transform: translateY(-1px);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.portal-home-item-title {
|
|
314
|
+
@apply text-sm font-medium;
|
|
315
|
+
color: #f4f4f5;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.portal-home-item-copy {
|
|
319
|
+
@apply mt-1 text-sm leading-6;
|
|
320
|
+
color: #a1a1aa;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.portal-home-item-meta {
|
|
324
|
+
@apply mt-3 inline-flex items-center gap-2 text-xs font-medium uppercase tracking-[0.16em];
|
|
325
|
+
color: rgb(var(--color-brand-soft));
|
|
326
|
+
}
|
|
327
|
+
|
|
247
328
|
.auth-hero-panel {
|
|
248
329
|
@apply relative overflow-hidden p-8 md:p-10;
|
|
249
330
|
}
|
|
@@ -599,7 +680,7 @@
|
|
|
599
680
|
}
|
|
600
681
|
|
|
601
682
|
.portal-stat-card {
|
|
602
|
-
@apply flex h-
|
|
683
|
+
@apply flex h-12 items-center rounded-2xl border px-3.5;
|
|
603
684
|
border-color: rgba(255, 255, 255, 0.1);
|
|
604
685
|
background: rgba(255, 255, 255, 0.05);
|
|
605
686
|
}
|
|
@@ -609,7 +690,23 @@
|
|
|
609
690
|
}
|
|
610
691
|
|
|
611
692
|
.portal-toolbar-button {
|
|
612
|
-
@apply h-
|
|
693
|
+
@apply h-12 min-w-12 rounded-2xl px-0;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.portal-toolbar-icon {
|
|
697
|
+
@apply inline-flex h-12 w-12 items-center justify-center rounded-2xl border border-white/10 bg-white/5 text-zinc-200;
|
|
698
|
+
transition:
|
|
699
|
+
transform 220ms ease,
|
|
700
|
+
background-color 220ms ease,
|
|
701
|
+
border-color 220ms ease,
|
|
702
|
+
color 220ms ease,
|
|
703
|
+
box-shadow 220ms ease;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.portal-toolbar-icon:hover {
|
|
707
|
+
transform: translateY(-1px);
|
|
708
|
+
background: rgba(255, 255, 255, 0.1);
|
|
709
|
+
border-color: rgba(255, 255, 255, 0.14);
|
|
613
710
|
}
|
|
614
711
|
|
|
615
712
|
.portal-card {
|
package/light.css
CHANGED
|
@@ -363,6 +363,18 @@
|
|
|
363
363
|
background: rgba(255, 255, 255, 0.82);
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
+
.light .portal-toolbar-icon {
|
|
367
|
+
background: rgba(255, 255, 255, 0.82);
|
|
368
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
369
|
+
color: #3f3f46;
|
|
370
|
+
box-shadow: 0 16px 36px -28px rgba(15, 23, 42, 0.18);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.light .portal-toolbar-icon:hover {
|
|
374
|
+
background: #ffffff;
|
|
375
|
+
border-color: rgba(161, 161, 170, 0.36);
|
|
376
|
+
}
|
|
377
|
+
|
|
366
378
|
.light .portal-widget-card {
|
|
367
379
|
border-color: rgba(212, 212, 216, 0.92);
|
|
368
380
|
background: rgba(255, 255, 255, 0.84);
|
|
@@ -454,27 +466,35 @@
|
|
|
454
466
|
}
|
|
455
467
|
|
|
456
468
|
.light .portal-launchpad-card {
|
|
457
|
-
|
|
458
|
-
background: rgba(255, 255, 255, 0.84);
|
|
469
|
+
background: transparent;
|
|
459
470
|
}
|
|
460
471
|
|
|
461
472
|
.light .portal-launchpad-card:hover {
|
|
462
|
-
|
|
463
|
-
background: rgba(255, 255, 255, 0.96);
|
|
464
|
-
box-shadow: 0 26px 48px -34px rgba(0, 117, 169, 0.28);
|
|
473
|
+
background: transparent;
|
|
465
474
|
}
|
|
466
475
|
|
|
467
476
|
.light .portal-launchpad-icon {
|
|
468
477
|
border-color: rgba(186, 230, 253, 0.92);
|
|
469
478
|
background:
|
|
470
|
-
radial-gradient(circle at top left, rgba(255, 255, 255, 0.
|
|
471
|
-
|
|
479
|
+
radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), transparent 50%),
|
|
480
|
+
radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.14), transparent 54%),
|
|
481
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(224, 242, 254, 0.82));
|
|
472
482
|
color: rgb(var(--color-brand-strong));
|
|
473
483
|
box-shadow:
|
|
474
484
|
inset 0 1px 0 rgba(255, 255, 255, 0.92),
|
|
485
|
+
inset 0 -16px 24px -22px rgba(8, 47, 73, 0.08),
|
|
475
486
|
0 20px 36px -28px rgba(14, 116, 144, 0.32);
|
|
476
487
|
}
|
|
477
488
|
|
|
489
|
+
.light .portal-launchpad-card:hover .portal-launchpad-icon,
|
|
490
|
+
.light .portal-launchpad-card:focus-visible .portal-launchpad-icon {
|
|
491
|
+
border-color: rgba(125, 211, 252, 0.98);
|
|
492
|
+
box-shadow:
|
|
493
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.96),
|
|
494
|
+
inset 0 -16px 24px -22px rgba(8, 47, 73, 0.06),
|
|
495
|
+
0 24px 42px -28px rgba(14, 116, 144, 0.38);
|
|
496
|
+
}
|
|
497
|
+
|
|
478
498
|
.light .portal-launchpad-title {
|
|
479
499
|
color: #18181b;
|
|
480
500
|
}
|
|
@@ -489,6 +509,45 @@
|
|
|
489
509
|
color: #0369a1;
|
|
490
510
|
}
|
|
491
511
|
|
|
512
|
+
.light .portal-home-card {
|
|
513
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
514
|
+
background: rgba(255, 255, 255, 0.84);
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.light .portal-home-icon {
|
|
518
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
519
|
+
background: rgba(240, 249, 255, 0.92);
|
|
520
|
+
color: rgb(var(--color-brand-strong));
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.light .portal-home-kicker {
|
|
524
|
+
color: #52525b;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.light .portal-home-title,
|
|
528
|
+
.light .portal-home-item-title {
|
|
529
|
+
color: #18181b;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.light .portal-home-copy,
|
|
533
|
+
.light .portal-home-item-copy {
|
|
534
|
+
color: #52525b;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.light .portal-home-item {
|
|
538
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
539
|
+
background: rgba(255, 255, 255, 0.9);
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.light .portal-home-item:hover {
|
|
543
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
544
|
+
background: #ffffff;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.light .portal-home-item-meta {
|
|
548
|
+
color: rgb(var(--color-brand-strong));
|
|
549
|
+
}
|
|
550
|
+
|
|
492
551
|
.light .portal-title {
|
|
493
552
|
color: #18181b;
|
|
494
553
|
}
|