@limpiolux/ui-styles 1.0.7 → 1.0.9
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 +29 -5
- package/light.css +22 -0
- package/package.json +1 -1
- package/utilities.css +1 -1
package/components.css
CHANGED
|
@@ -95,7 +95,11 @@
|
|
|
95
95
|
overflow: hidden;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
.glass-panel
|
|
98
|
+
.glass-panel,
|
|
99
|
+
.auth-hero-panel,
|
|
100
|
+
.portal-panel,
|
|
101
|
+
.portal-header-panel,
|
|
102
|
+
.portal-card {
|
|
99
103
|
@apply rounded-[28px] border border-white/10 bg-white/[0.045] shadow-2xl shadow-black/30 backdrop-blur-xl;
|
|
100
104
|
transition:
|
|
101
105
|
background-color 420ms ease,
|
|
@@ -112,8 +116,28 @@
|
|
|
112
116
|
@apply inline-flex h-14 items-center justify-center rounded-[20px] border border-white/10 bg-white/5 px-4;
|
|
113
117
|
}
|
|
114
118
|
|
|
119
|
+
.portal-shell {
|
|
120
|
+
@apply min-h-screen px-4 py-6 md:px-8 md:py-8;
|
|
121
|
+
background-image:
|
|
122
|
+
radial-gradient(circle at top left, rgba(59, 130, 246, 0.22), transparent 28%),
|
|
123
|
+
radial-gradient(circle at top right, rgba(16, 185, 129, 0.16), transparent 24%),
|
|
124
|
+
linear-gradient(180deg, rgba(9, 9, 11, 0.95), rgba(9, 9, 11, 1));
|
|
125
|
+
transition:
|
|
126
|
+
background-color 420ms ease,
|
|
127
|
+
color 420ms ease,
|
|
128
|
+
background-image 420ms ease;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.portal-grid {
|
|
132
|
+
@apply grid gap-4 md:grid-cols-2 xl:grid-cols-3;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.portal-app-card {
|
|
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
|
+
}
|
|
138
|
+
|
|
115
139
|
.auth-hero-panel {
|
|
116
|
-
@apply
|
|
140
|
+
@apply relative overflow-hidden p-8 md:p-10;
|
|
117
141
|
}
|
|
118
142
|
|
|
119
143
|
.auth-hero-backdrop {
|
|
@@ -439,11 +463,11 @@
|
|
|
439
463
|
/* ── Portal surfaces ── */
|
|
440
464
|
|
|
441
465
|
.portal-panel {
|
|
442
|
-
@apply
|
|
466
|
+
@apply p-5;
|
|
443
467
|
}
|
|
444
468
|
|
|
445
469
|
.portal-header-panel {
|
|
446
|
-
@apply
|
|
470
|
+
@apply flex flex-col gap-4 p-6 md:flex-row md:items-end md:justify-between;
|
|
447
471
|
}
|
|
448
472
|
|
|
449
473
|
.portal-stat-card {
|
|
@@ -453,7 +477,7 @@
|
|
|
453
477
|
}
|
|
454
478
|
|
|
455
479
|
.portal-card {
|
|
456
|
-
@apply
|
|
480
|
+
@apply relative overflow-hidden p-5 transition duration-300;
|
|
457
481
|
}
|
|
458
482
|
|
|
459
483
|
.portal-card:hover {
|
package/light.css
CHANGED
|
@@ -35,6 +35,13 @@
|
|
|
35
35
|
box-shadow: 0 20px 36px -30px rgba(15, 23, 42, 0.18);
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
.light .portal-shell {
|
|
39
|
+
background-image:
|
|
40
|
+
radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 28%),
|
|
41
|
+
radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 24%),
|
|
42
|
+
linear-gradient(180deg, rgba(250, 250, 250, 0.96), rgba(244, 244, 245, 1));
|
|
43
|
+
}
|
|
44
|
+
|
|
38
45
|
.light .auth-hero-backdrop {
|
|
39
46
|
background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 36%);
|
|
40
47
|
}
|
|
@@ -109,6 +116,13 @@
|
|
|
109
116
|
color: #18181b;
|
|
110
117
|
}
|
|
111
118
|
|
|
119
|
+
.light .btn-primary,
|
|
120
|
+
.light .btn-primary:hover,
|
|
121
|
+
.light .brand-fab,
|
|
122
|
+
.light .brand-fab:hover {
|
|
123
|
+
color: #ffffff;
|
|
124
|
+
}
|
|
125
|
+
|
|
112
126
|
.light .accent-amber-text {
|
|
113
127
|
color: #a16207;
|
|
114
128
|
}
|
|
@@ -245,6 +259,10 @@
|
|
|
245
259
|
color: #ffffff;
|
|
246
260
|
}
|
|
247
261
|
|
|
262
|
+
.light .soft-tab-active .soft-tab-label {
|
|
263
|
+
color: #ffffff;
|
|
264
|
+
}
|
|
265
|
+
|
|
248
266
|
.light .soft-tab-track {
|
|
249
267
|
border-color: rgba(212, 212, 216, 0.95);
|
|
250
268
|
background:
|
|
@@ -691,6 +709,10 @@
|
|
|
691
709
|
color: rgb(var(--color-zinc-300)) !important;
|
|
692
710
|
}
|
|
693
711
|
|
|
712
|
+
.light {
|
|
713
|
+
--legacy-white-foreground: rgb(var(--color-zinc-200));
|
|
714
|
+
}
|
|
715
|
+
|
|
694
716
|
.light .text-muted {
|
|
695
717
|
color: rgb(var(--color-zinc-500)) !important;
|
|
696
718
|
}
|
package/package.json
CHANGED