@howssatoshi/quantumcss 1.4.0 → 1.4.2
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/README.md +20 -0
- package/dist/quantum.min.css +805 -133
- package/package.json +1 -1
- package/src/defaults.js +40 -9
- package/src/generator.js +36 -14
- package/src/starlight.js +135 -0
- package/src/styles/quantum-base.css +3 -3
- package/src/styles/quantum-components.css +164 -3
- package/src/styles/starlight.css +428 -40
package/dist/quantum.min.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* QuantumCSS + Starlight UI v1.4.
|
|
2
|
+
* QuantumCSS + Starlight UI v1.4.2 - Advanced Utility-First CSS Framework
|
|
3
3
|
* https://github.com/macroadster/quantumcss
|
|
4
4
|
* Copyright (c) 2026 Eric Yang
|
|
5
5
|
* License: MIT
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
/*!
|
|
9
9
|
* QuantumCSS + Starlight UI
|
|
10
10
|
* Advanced utility-first framework with ethereal cosmic aesthetics
|
|
11
|
-
* Version: 1.4.
|
|
11
|
+
* Version: 1.4.2
|
|
12
12
|
* Features: Modern CSS, JIT Engine, Starlight Components, Dark Mode
|
|
13
13
|
*/
|
|
14
14
|
|
|
@@ -357,8 +357,8 @@ textarea {
|
|
|
357
357
|
.bg-warning { background-color: var(--color-warning); }
|
|
358
358
|
.bg-error { background-color: var(--color-error); }
|
|
359
359
|
.bg-neutral { background-color: var(--color-neutral); }
|
|
360
|
-
.bg-white { background-color: #ffffff; }
|
|
361
|
-
.bg-black { background-color: #000000; }
|
|
360
|
+
.bg-white { background-color: #ffffff; color: #0f172a; }
|
|
361
|
+
.bg-black { background-color: #000000; color: #ffffff; }
|
|
362
362
|
|
|
363
363
|
/* Border Utilities */
|
|
364
364
|
.border-0 { border-width: 0px; }
|
|
@@ -1206,12 +1206,18 @@ body.light-mode .btn-secondary {
|
|
|
1206
1206
|
/* Card Component */
|
|
1207
1207
|
.card {
|
|
1208
1208
|
background-color: white;
|
|
1209
|
+
color: #1e293b;
|
|
1209
1210
|
border-radius: var(--radius-lg);
|
|
1210
1211
|
box-shadow: var(--shadow-md);
|
|
1211
1212
|
overflow: hidden;
|
|
1212
1213
|
transition: all var(--duration-200) var(--ease-in-out);
|
|
1213
1214
|
}
|
|
1214
1215
|
|
|
1216
|
+
body.light-mode .card {
|
|
1217
|
+
background-color: white;
|
|
1218
|
+
color: #1e293b;
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1215
1221
|
.card:hover {
|
|
1216
1222
|
box-shadow: var(--shadow-lg);
|
|
1217
1223
|
transform: translateY(-2px);
|
|
@@ -1230,6 +1236,12 @@ body.light-mode .btn-secondary {
|
|
|
1230
1236
|
padding: var(--space-6);
|
|
1231
1237
|
border-top: 1px solid #e5e7eb;
|
|
1232
1238
|
background-color: #f9fafb;
|
|
1239
|
+
color: #1e293b;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
body.light-mode .card-footer {
|
|
1243
|
+
background-color: #f9fafb;
|
|
1244
|
+
color: #1e293b;
|
|
1233
1245
|
}
|
|
1234
1246
|
|
|
1235
1247
|
/* Input Component */
|
|
@@ -1240,10 +1252,16 @@ body.light-mode .btn-secondary {
|
|
|
1240
1252
|
border: 1px solid #d1d5db;
|
|
1241
1253
|
border-radius: var(--radius-md);
|
|
1242
1254
|
background-color: white;
|
|
1255
|
+
color: #1e293b;
|
|
1243
1256
|
font-size: 1rem;
|
|
1244
1257
|
transition: all var(--duration-150) var(--ease-in-out);
|
|
1245
1258
|
}
|
|
1246
1259
|
|
|
1260
|
+
body.light-mode .input {
|
|
1261
|
+
background-color: white;
|
|
1262
|
+
color: #1e293b;
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1247
1265
|
textarea.input {
|
|
1248
1266
|
min-height: 100px;
|
|
1249
1267
|
}
|
|
@@ -1285,6 +1303,11 @@ input[type="date"]::-webkit-calendar-picker-indicator {
|
|
|
1285
1303
|
cursor: not-allowed;
|
|
1286
1304
|
}
|
|
1287
1305
|
|
|
1306
|
+
body.light-mode .input:disabled {
|
|
1307
|
+
background-color: #f3f4f6;
|
|
1308
|
+
color: #6b7280;
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1288
1311
|
.input-error {
|
|
1289
1312
|
border-color: var(--color-error);
|
|
1290
1313
|
}
|
|
@@ -1414,6 +1437,7 @@ body.light-mode .badge-error {
|
|
|
1414
1437
|
|
|
1415
1438
|
.modal-content {
|
|
1416
1439
|
background-color: white;
|
|
1440
|
+
color: #1e293b;
|
|
1417
1441
|
border-radius: var(--radius-lg);
|
|
1418
1442
|
box-shadow: var(--shadow-2xl);
|
|
1419
1443
|
max-width: 90vw;
|
|
@@ -1421,6 +1445,11 @@ body.light-mode .badge-error {
|
|
|
1421
1445
|
overflow-y: auto;
|
|
1422
1446
|
}
|
|
1423
1447
|
|
|
1448
|
+
body.light-mode .modal-content {
|
|
1449
|
+
background-color: white;
|
|
1450
|
+
color: #1e293b;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1424
1453
|
/* Loading Spinner */
|
|
1425
1454
|
.spinner {
|
|
1426
1455
|
display: inline-block;
|
|
@@ -1493,6 +1522,7 @@ body.light-mode .skeleton {
|
|
|
1493
1522
|
top: 100%;
|
|
1494
1523
|
left: 0;
|
|
1495
1524
|
background-color: white;
|
|
1525
|
+
color: #1e293b;
|
|
1496
1526
|
border: 1px solid #e5e7eb;
|
|
1497
1527
|
border-radius: var(--radius-md);
|
|
1498
1528
|
box-shadow: var(--shadow-lg);
|
|
@@ -1504,6 +1534,11 @@ body.light-mode .skeleton {
|
|
|
1504
1534
|
transition: all var(--duration-150) var(--ease-in-out);
|
|
1505
1535
|
}
|
|
1506
1536
|
|
|
1537
|
+
body.light-mode .dropdown-content {
|
|
1538
|
+
background-color: white;
|
|
1539
|
+
color: #1e293b;
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1507
1542
|
.dropdown.active .dropdown-content {
|
|
1508
1543
|
opacity: 1;
|
|
1509
1544
|
visibility: visible;
|
|
@@ -1518,11 +1553,22 @@ body.light-mode .skeleton {
|
|
|
1518
1553
|
background: none;
|
|
1519
1554
|
border: none;
|
|
1520
1555
|
cursor: pointer;
|
|
1556
|
+
color: #1e293b;
|
|
1521
1557
|
transition: background-color var(--duration-150) var(--ease-in-out);
|
|
1522
1558
|
}
|
|
1523
1559
|
|
|
1524
1560
|
.dropdown-item:hover {
|
|
1525
1561
|
background-color: #f3f4f6;
|
|
1562
|
+
color: #1e293b;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
body.light-mode .dropdown-item {
|
|
1566
|
+
color: #1e293b;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
body.light-mode .dropdown-item:hover {
|
|
1570
|
+
background-color: #f3f4f6;
|
|
1571
|
+
color: #1e293b;
|
|
1526
1572
|
}
|
|
1527
1573
|
|
|
1528
1574
|
/* Accordion Component */
|
|
@@ -1536,6 +1582,7 @@ body.light-mode .skeleton {
|
|
|
1536
1582
|
.accordion-header {
|
|
1537
1583
|
padding: var(--space-4);
|
|
1538
1584
|
background-color: #f9fafb;
|
|
1585
|
+
color: #1e293b;
|
|
1539
1586
|
cursor: pointer;
|
|
1540
1587
|
display: flex;
|
|
1541
1588
|
justify-content: space-between;
|
|
@@ -1545,16 +1592,33 @@ body.light-mode .skeleton {
|
|
|
1545
1592
|
|
|
1546
1593
|
.accordion-header:hover {
|
|
1547
1594
|
background-color: #f3f4f6;
|
|
1595
|
+
color: #1e293b;
|
|
1548
1596
|
}
|
|
1549
1597
|
|
|
1550
1598
|
.accordion-content {
|
|
1551
1599
|
padding: var(--space-4);
|
|
1552
1600
|
background-color: white;
|
|
1601
|
+
color: #1e293b;
|
|
1553
1602
|
max-height: 0;
|
|
1554
1603
|
overflow: hidden;
|
|
1555
1604
|
transition: max-height var(--duration-300) var(--ease-in-out);
|
|
1556
1605
|
}
|
|
1557
1606
|
|
|
1607
|
+
body.light-mode .accordion-header {
|
|
1608
|
+
background-color: #f9fafb;
|
|
1609
|
+
color: #1e293b;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
body.light-mode .accordion-header:hover {
|
|
1613
|
+
background-color: #f3f4f6;
|
|
1614
|
+
color: #1e293b;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
body.light-mode .accordion-content {
|
|
1618
|
+
background-color: white;
|
|
1619
|
+
color: #1e293b;
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1558
1622
|
.accordion-item.active .accordion-content {
|
|
1559
1623
|
max-height: 500px;
|
|
1560
1624
|
}
|
|
@@ -1570,23 +1634,44 @@ body.light-mode .skeleton {
|
|
|
1570
1634
|
/* Tab Component */
|
|
1571
1635
|
.tab-list {
|
|
1572
1636
|
display: flex;
|
|
1573
|
-
border-bottom: 1px solid
|
|
1637
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
1574
1638
|
}
|
|
1575
1639
|
|
|
1576
1640
|
.tab-button {
|
|
1577
|
-
padding: var(--space-
|
|
1641
|
+
padding: var(--space-3) var(--space-4);
|
|
1578
1642
|
background: none;
|
|
1579
1643
|
border: none;
|
|
1580
1644
|
cursor: pointer;
|
|
1581
1645
|
border-bottom: 2px solid transparent;
|
|
1646
|
+
color: var(--text-secondary);
|
|
1647
|
+
font-weight: 500;
|
|
1582
1648
|
transition: all var(--duration-150) var(--ease-in-out);
|
|
1583
1649
|
}
|
|
1584
1650
|
|
|
1585
1651
|
.tab-button:hover {
|
|
1586
|
-
background-color:
|
|
1652
|
+
background-color: rgba(255, 255, 255, 0.05);
|
|
1653
|
+
color: var(--text-primary);
|
|
1587
1654
|
}
|
|
1588
1655
|
|
|
1589
1656
|
.tab-button.active {
|
|
1657
|
+
border-bottom-color: var(--color-starlight-blue);
|
|
1658
|
+
color: var(--color-starlight-blue);
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
body.light-mode .tab-list {
|
|
1662
|
+
border-bottom-color: #e2e8f0;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
body.light-mode .tab-button {
|
|
1666
|
+
color: #64748b;
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
body.light-mode .tab-button:hover {
|
|
1670
|
+
background-color: #f1f5f9;
|
|
1671
|
+
color: #0f172a;
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
body.light-mode .tab-button.active {
|
|
1590
1675
|
border-bottom-color: var(--color-primary);
|
|
1591
1676
|
color: var(--color-primary);
|
|
1592
1677
|
}
|
|
@@ -1706,6 +1791,82 @@ body.light-mode .skeleton {
|
|
|
1706
1791
|
from { transform: translateY(-20px); opacity: 0; }
|
|
1707
1792
|
to { transform: translateY(0); opacity: 1; }
|
|
1708
1793
|
}
|
|
1794
|
+
|
|
1795
|
+
/* Table Component */
|
|
1796
|
+
.table-wrapper {
|
|
1797
|
+
width: 100%;
|
|
1798
|
+
overflow-x: auto;
|
|
1799
|
+
-webkit-overflow-scrolling: touch;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
.table-wrapper::-webkit-scrollbar {
|
|
1803
|
+
height: 8px;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
.table-wrapper::-webkit-scrollbar-track {
|
|
1807
|
+
background: rgba(255, 255, 255, 0.05);
|
|
1808
|
+
border-radius: 4px;
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
.table-wrapper::-webkit-scrollbar-thumb {
|
|
1812
|
+
background: var(--color-starlight-blue, #3b82f6);
|
|
1813
|
+
border-radius: 4px;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
body.light-mode .table-wrapper::-webkit-scrollbar-track {
|
|
1817
|
+
background: rgba(0, 0, 0, 0.05);
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
.table {
|
|
1821
|
+
width: 100%;
|
|
1822
|
+
border-collapse: collapse;
|
|
1823
|
+
font-size: 0.875rem;
|
|
1824
|
+
text-align: left;
|
|
1825
|
+
color: var(--text-primary);
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
.table th {
|
|
1829
|
+
padding: var(--space-3) var(--space-4);
|
|
1830
|
+
font-weight: 600;
|
|
1831
|
+
background-color: rgba(255, 255, 255, 0.05);
|
|
1832
|
+
border-bottom: 2px solid rgba(255, 255, 255, 0.1);
|
|
1833
|
+
color: var(--text-primary);
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
.table td {
|
|
1837
|
+
padding: var(--space-3) var(--space-4);
|
|
1838
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
1839
|
+
color: var(--text-secondary);
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
.table tbody tr:hover {
|
|
1843
|
+
background-color: rgba(255, 255, 255, 0.03);
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
/* Light Mode Table Styles */
|
|
1847
|
+
body.light-mode .table th {
|
|
1848
|
+
background-color: #f8fafc;
|
|
1849
|
+
border-bottom-color: #e2e8f0;
|
|
1850
|
+
color: #0f172a;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
body.light-mode .table td {
|
|
1854
|
+
border-bottom-color: #e2e8f0;
|
|
1855
|
+
color: #334155;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
body.light-mode .table tbody tr:hover {
|
|
1859
|
+
background-color: #f1f5f9;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
/* Overflow Utility */
|
|
1863
|
+
.overflow-x-auto {
|
|
1864
|
+
overflow-x: auto;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
.overflow-y-auto {
|
|
1868
|
+
overflow-y: auto;
|
|
1869
|
+
}
|
|
1709
1870
|
/* Cosmic Animation Library */
|
|
1710
1871
|
|
|
1711
1872
|
@keyframes nebula-drift {
|
|
@@ -1889,7 +2050,10 @@ body.light-mode a:hover {
|
|
|
1889
2050
|
}
|
|
1890
2051
|
|
|
1891
2052
|
.starlight-card:hover {
|
|
1892
|
-
border-color: rgba(0, 212, 255, 0.
|
|
2053
|
+
border-color: rgba(0, 212, 255, 0.4);
|
|
2054
|
+
transform: translateY(-4px);
|
|
2055
|
+
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.1);
|
|
2056
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
1893
2057
|
}
|
|
1894
2058
|
|
|
1895
2059
|
body.light-mode .starlight-card {
|
|
@@ -2012,13 +2176,98 @@ body.light-mode .star {
|
|
|
2012
2176
|
backdrop-filter: blur(20px);
|
|
2013
2177
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
2014
2178
|
border-radius: 1.5rem;
|
|
2015
|
-
padding:
|
|
2179
|
+
padding: 2.5rem;
|
|
2016
2180
|
max-width: 90%;
|
|
2017
2181
|
width: 600px;
|
|
2182
|
+
max-height: 85vh;
|
|
2183
|
+
overflow-y: auto;
|
|
2018
2184
|
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
|
2019
2185
|
position: relative;
|
|
2020
2186
|
}
|
|
2021
2187
|
|
|
2188
|
+
.starlight-dialog {
|
|
2189
|
+
background-color: rgba(10, 10, 20, 0.98);
|
|
2190
|
+
backdrop-filter: blur(24px);
|
|
2191
|
+
-webkit-backdrop-filter: blur(24px);
|
|
2192
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
2193
|
+
border-radius: 1.5rem;
|
|
2194
|
+
padding: 3rem;
|
|
2195
|
+
width: 100%;
|
|
2196
|
+
max-width: 600px;
|
|
2197
|
+
max-height: 85vh;
|
|
2198
|
+
overflow-y: auto;
|
|
2199
|
+
margin: auto;
|
|
2200
|
+
position: relative;
|
|
2201
|
+
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
|
2202
|
+
}
|
|
2203
|
+
|
|
2204
|
+
/* Custom scrollbar for dialogs */
|
|
2205
|
+
.dialog-content::-webkit-scrollbar,
|
|
2206
|
+
.starlight-dialog::-webkit-scrollbar {
|
|
2207
|
+
width: 8px;
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2210
|
+
.dialog-content::-webkit-scrollbar-track,
|
|
2211
|
+
.starlight-dialog::-webkit-scrollbar-track {
|
|
2212
|
+
background: rgba(255, 255, 255, 0.05);
|
|
2213
|
+
border-radius: 4px;
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
.dialog-content::-webkit-scrollbar-thumb,
|
|
2217
|
+
.starlight-dialog::-webkit-scrollbar-thumb {
|
|
2218
|
+
background: var(--color-starlight-blue, #3b82f6);
|
|
2219
|
+
border-radius: 4px;
|
|
2220
|
+
}
|
|
2221
|
+
|
|
2222
|
+
body.light-mode .dialog-content::-webkit-scrollbar-track,
|
|
2223
|
+
body.light-mode .starlight-dialog::-webkit-scrollbar-track {
|
|
2224
|
+
background: rgba(0, 0, 0, 0.05);
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
body.light-mode .starlight-dialog {
|
|
2228
|
+
background-color: rgba(255, 255, 255, 0.98);
|
|
2229
|
+
border-color: rgba(0, 0, 0, 0.1);
|
|
2230
|
+
color: #1e293b;
|
|
2231
|
+
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
.dialog-close {
|
|
2235
|
+
position: absolute;
|
|
2236
|
+
top: 1.5rem;
|
|
2237
|
+
right: 1.5rem;
|
|
2238
|
+
width: 2rem;
|
|
2239
|
+
height: 2rem;
|
|
2240
|
+
border-radius: 50%;
|
|
2241
|
+
background: rgba(255, 255, 255, 0.05);
|
|
2242
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
2243
|
+
color: white;
|
|
2244
|
+
display: flex;
|
|
2245
|
+
align-items: center;
|
|
2246
|
+
justify-content: center;
|
|
2247
|
+
cursor: pointer;
|
|
2248
|
+
transition: all 0.2s;
|
|
2249
|
+
padding: 0;
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
body.light-mode .dialog-close {
|
|
2253
|
+
background: rgba(0, 0, 0, 0.05);
|
|
2254
|
+
border-color: rgba(0, 0, 0, 0.1);
|
|
2255
|
+
color: #1e293b;
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2258
|
+
.dialog-close:hover {
|
|
2259
|
+
background: rgba(255, 255, 255, 0.15);
|
|
2260
|
+
border-color: var(--color-starlight-blue);
|
|
2261
|
+
transform: rotate(90deg);
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
.form-row {
|
|
2265
|
+
display: flex;
|
|
2266
|
+
justify-content: space-between;
|
|
2267
|
+
align-items: center;
|
|
2268
|
+
gap: 1rem;
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2022
2271
|
body.light-mode .dialog-overlay {
|
|
2023
2272
|
background: rgba(255, 255, 255, 0.4);
|
|
2024
2273
|
}
|
|
@@ -2035,7 +2284,7 @@ body.light-mode .dialog-content {
|
|
|
2035
2284
|
position: absolute;
|
|
2036
2285
|
top: 100%;
|
|
2037
2286
|
left: 0;
|
|
2038
|
-
background-color: var(--color-starlight-deep)
|
|
2287
|
+
background-color: var(--color-starlight-deep);
|
|
2039
2288
|
backdrop-filter: blur(20px);
|
|
2040
2289
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
2041
2290
|
border-radius: 0.75rem;
|
|
@@ -2044,6 +2293,19 @@ body.light-mode .dialog-content {
|
|
|
2044
2293
|
min-width: 200px;
|
|
2045
2294
|
z-index: 600;
|
|
2046
2295
|
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
|
|
2296
|
+
opacity: 0;
|
|
2297
|
+
visibility: hidden;
|
|
2298
|
+
transform: translateY(10px);
|
|
2299
|
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2300
|
+
pointer-events: none;
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
.dropdown:hover .dropdown-menu,
|
|
2304
|
+
.dropdown.active .dropdown-menu {
|
|
2305
|
+
opacity: 1;
|
|
2306
|
+
visibility: visible;
|
|
2307
|
+
transform: translateY(0);
|
|
2308
|
+
pointer-events: auto;
|
|
2047
2309
|
}
|
|
2048
2310
|
|
|
2049
2311
|
.dropdown-item {
|
|
@@ -2110,13 +2372,15 @@ body.light-mode .glass {
|
|
|
2110
2372
|
.input-starlight:focus, .textarea-starlight:focus {
|
|
2111
2373
|
outline: none;
|
|
2112
2374
|
border-color: var(--color-starlight-blue);
|
|
2113
|
-
box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
|
|
2375
|
+
box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), 0 0 20px rgba(0, 212, 255, 0.1);
|
|
2376
|
+
background-color: rgba(255, 255, 255, 0.06);
|
|
2114
2377
|
}
|
|
2115
2378
|
|
|
2116
2379
|
body.light-mode .input-starlight:focus,
|
|
2117
2380
|
body.light-mode .textarea-starlight:focus {
|
|
2118
2381
|
border-color: var(--color-starlight-blue);
|
|
2119
|
-
box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
|
|
2382
|
+
box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
|
|
2383
|
+
background-color: #ffffff;
|
|
2120
2384
|
}
|
|
2121
2385
|
|
|
2122
2386
|
/* 9. Code Interface Window */
|
|
@@ -2251,23 +2515,29 @@ body.light-mode .accordion-starlight .accordion-content {
|
|
|
2251
2515
|
/* 11. Search Input with Icon */
|
|
2252
2516
|
.search-container {
|
|
2253
2517
|
position: relative;
|
|
2518
|
+
display: block;
|
|
2254
2519
|
width: 100%;
|
|
2255
|
-
max-width: 400px;
|
|
2256
2520
|
}
|
|
2257
2521
|
|
|
2258
2522
|
.search-input {
|
|
2259
2523
|
padding-left: 3rem !important;
|
|
2524
|
+
width: 100%;
|
|
2260
2525
|
}
|
|
2261
2526
|
|
|
2262
2527
|
.search-icon {
|
|
2263
2528
|
position: absolute;
|
|
2264
|
-
left:
|
|
2529
|
+
left: 1.125rem;
|
|
2265
2530
|
top: 50%;
|
|
2266
2531
|
transform: translateY(-50%);
|
|
2267
2532
|
color: var(--text-muted);
|
|
2268
2533
|
pointer-events: none;
|
|
2269
|
-
width: 1.
|
|
2270
|
-
height: 1.
|
|
2534
|
+
width: 1.25rem;
|
|
2535
|
+
height: 1.25rem;
|
|
2536
|
+
z-index: 10;
|
|
2537
|
+
}
|
|
2538
|
+
|
|
2539
|
+
body.light-mode .search-icon {
|
|
2540
|
+
color: #64748b;
|
|
2271
2541
|
}
|
|
2272
2542
|
|
|
2273
2543
|
/* 12. Gallery Widget */
|
|
@@ -2366,22 +2636,93 @@ body.light-mode .stat-value {
|
|
|
2366
2636
|
|
|
2367
2637
|
/* 14. Hamburger Menu Glass */
|
|
2368
2638
|
.nav-glass {
|
|
2369
|
-
background: rgba(255, 255, 255, 0.
|
|
2370
|
-
backdrop-filter: blur(
|
|
2371
|
-
-webkit-backdrop-filter: blur(
|
|
2372
|
-
border-bottom: 1px solid rgba(255, 255, 255, 0.
|
|
2373
|
-
padding: 1rem 2rem;
|
|
2639
|
+
background: rgba(255, 255, 255, 0.05);
|
|
2640
|
+
backdrop-filter: blur(24px);
|
|
2641
|
+
-webkit-backdrop-filter: blur(24px);
|
|
2642
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
2374
2643
|
display: flex;
|
|
2375
|
-
|
|
2376
|
-
align-items: center;
|
|
2644
|
+
flex-direction: column;
|
|
2377
2645
|
position: sticky;
|
|
2378
2646
|
top: 0;
|
|
2379
2647
|
z-index: 1000;
|
|
2648
|
+
padding: 0;
|
|
2380
2649
|
}
|
|
2381
2650
|
|
|
2382
2651
|
body.light-mode .nav-glass {
|
|
2383
|
-
background: rgba(255, 255, 255, 0.
|
|
2384
|
-
border-bottom-color: rgba(0, 0, 0, 0.
|
|
2652
|
+
background: rgba(255, 255, 255, 0.95);
|
|
2653
|
+
border-bottom-color: rgba(0, 0, 0, 0.08);
|
|
2654
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
.nav-desktop {
|
|
2658
|
+
display: none;
|
|
2659
|
+
align-items: center;
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2662
|
+
.nav-list {
|
|
2663
|
+
display: flex;
|
|
2664
|
+
list-style: none;
|
|
2665
|
+
gap: 2rem;
|
|
2666
|
+
margin: 0;
|
|
2667
|
+
padding: 0;
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2670
|
+
.nav-list.vertical {
|
|
2671
|
+
flex-direction: column;
|
|
2672
|
+
gap: 0.5rem;
|
|
2673
|
+
}
|
|
2674
|
+
|
|
2675
|
+
.nav-link {
|
|
2676
|
+
font-size: 0.875rem;
|
|
2677
|
+
font-weight: 500;
|
|
2678
|
+
color: rgba(255, 255, 255, 0.7);
|
|
2679
|
+
transition: all 0.3s;
|
|
2680
|
+
position: relative;
|
|
2681
|
+
padding: 0.5rem 0;
|
|
2682
|
+
display: inline-flex;
|
|
2683
|
+
align-items: center;
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
.nav-list.vertical .nav-link {
|
|
2687
|
+
width: 100%;
|
|
2688
|
+
padding: 0.75rem 1rem;
|
|
2689
|
+
border-radius: 0.5rem;
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
.nav-list.vertical .dropdown {
|
|
2693
|
+
width: 100%;
|
|
2694
|
+
display: block;
|
|
2695
|
+
}
|
|
2696
|
+
|
|
2697
|
+
.nav-list.vertical .nav-link:hover {
|
|
2698
|
+
background: rgba(255, 255, 255, 0.05);
|
|
2699
|
+
color: var(--color-starlight-blue);
|
|
2700
|
+
}
|
|
2701
|
+
|
|
2702
|
+
.nav-link::after {
|
|
2703
|
+
content: '';
|
|
2704
|
+
position: absolute;
|
|
2705
|
+
bottom: 0;
|
|
2706
|
+
left: 50%;
|
|
2707
|
+
width: 0;
|
|
2708
|
+
height: 2px;
|
|
2709
|
+
background: var(--color-starlight-blue);
|
|
2710
|
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2711
|
+
box-shadow: 0 0 10px var(--color-starlight-glow);
|
|
2712
|
+
transform: translateX(-50%);
|
|
2713
|
+
}
|
|
2714
|
+
|
|
2715
|
+
.nav-link:hover::after {
|
|
2716
|
+
width: 80%;
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2719
|
+
|
|
2720
|
+
body.light-mode .nav-link {
|
|
2721
|
+
color: #475569;
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
body.light-mode .nav-link:hover {
|
|
2725
|
+
color: #1e293b;
|
|
2385
2726
|
}
|
|
2386
2727
|
|
|
2387
2728
|
.hamburger {
|
|
@@ -2390,6 +2731,7 @@ body.light-mode .nav-glass {
|
|
|
2390
2731
|
display: flex;
|
|
2391
2732
|
flex-direction: column;
|
|
2392
2733
|
justify-content: center;
|
|
2734
|
+
align-items: center;
|
|
2393
2735
|
gap: 0.4rem;
|
|
2394
2736
|
cursor: pointer;
|
|
2395
2737
|
background: rgba(255,255,255,0.05);
|
|
@@ -2397,6 +2739,7 @@ body.light-mode .nav-glass {
|
|
|
2397
2739
|
border-radius: 0.5rem;
|
|
2398
2740
|
padding: 0.5rem;
|
|
2399
2741
|
transition: all 0.3s;
|
|
2742
|
+
position: relative;
|
|
2400
2743
|
}
|
|
2401
2744
|
|
|
2402
2745
|
body.light-mode .hamburger {
|
|
@@ -2414,42 +2757,92 @@ body.light-mode .hamburger:hover {
|
|
|
2414
2757
|
}
|
|
2415
2758
|
|
|
2416
2759
|
.hamburger span {
|
|
2417
|
-
width:
|
|
2760
|
+
width: 1.5rem;
|
|
2418
2761
|
height: 2px;
|
|
2419
2762
|
background: white;
|
|
2420
2763
|
border-radius: 2px;
|
|
2421
2764
|
transition: all 0.3s;
|
|
2765
|
+
transform-origin: center;
|
|
2422
2766
|
}
|
|
2423
2767
|
|
|
2424
2768
|
body.light-mode .hamburger span {
|
|
2425
2769
|
background: #1e293b;
|
|
2426
2770
|
}
|
|
2427
2771
|
|
|
2428
|
-
.
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
right: 2rem;
|
|
2432
|
-
width: 250px;
|
|
2433
|
-
background: rgba(255, 255, 255, 0.03);
|
|
2434
|
-
backdrop-filter: blur(20px);
|
|
2435
|
-
-webkit-backdrop-filter: blur(20px);
|
|
2436
|
-
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
2437
|
-
border-radius: 1rem;
|
|
2438
|
-
padding: 1rem;
|
|
2439
|
-
margin-top: 0.5rem;
|
|
2440
|
-
box-shadow: 0 20px 40px rgba(0,0,0,0.5);
|
|
2441
|
-
display: none;
|
|
2442
|
-
animation: slideInDown 0.3s ease forwards;
|
|
2772
|
+
.hamburger.active span {
|
|
2773
|
+
background-color: var(--color-starlight-blue);
|
|
2774
|
+
box-shadow: 0 0 10px var(--color-starlight-glow);
|
|
2443
2775
|
}
|
|
2444
2776
|
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2777
|
+
.nav-menu-mobile {
|
|
2778
|
+
width: 100%;
|
|
2779
|
+
background: rgba(0, 0, 0, 0.2);
|
|
2780
|
+
backdrop-filter: blur(10px);
|
|
2781
|
+
-webkit-backdrop-filter: blur(10px);
|
|
2782
|
+
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
|
2783
|
+
padding: 0;
|
|
2784
|
+
max-height: 0;
|
|
2785
|
+
overflow: hidden;
|
|
2786
|
+
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2787
|
+
opacity: 0;
|
|
2449
2788
|
}
|
|
2450
2789
|
|
|
2451
2790
|
.nav-menu-mobile.active {
|
|
2452
2791
|
display: block;
|
|
2792
|
+
max-height: 500px;
|
|
2793
|
+
padding: 1.5rem 2rem;
|
|
2794
|
+
opacity: 1;
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2797
|
+
body.light-mode .nav-menu-mobile {
|
|
2798
|
+
background: #ffffff;
|
|
2799
|
+
border-top-color: rgba(0, 0, 0, 0.08);
|
|
2800
|
+
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
|
|
2801
|
+
}
|
|
2802
|
+
|
|
2803
|
+
/* Vertical Accordion Dropdowns */
|
|
2804
|
+
.nav-list.vertical .dropdown-menu {
|
|
2805
|
+
position: static;
|
|
2806
|
+
opacity: 1;
|
|
2807
|
+
visibility: visible;
|
|
2808
|
+
transform: none;
|
|
2809
|
+
box-shadow: none;
|
|
2810
|
+
border: none;
|
|
2811
|
+
padding: 0 0 0 1.5rem;
|
|
2812
|
+
margin: 0;
|
|
2813
|
+
max-height: 0;
|
|
2814
|
+
overflow: hidden;
|
|
2815
|
+
transition: all 0.3s ease;
|
|
2816
|
+
background: transparent;
|
|
2817
|
+
pointer-events: none;
|
|
2818
|
+
}
|
|
2819
|
+
|
|
2820
|
+
.nav-list.vertical .dropdown.active .dropdown-menu {
|
|
2821
|
+
max-height: 300px;
|
|
2822
|
+
padding-top: 0.5rem;
|
|
2823
|
+
padding-bottom: 0.5rem;
|
|
2824
|
+
pointer-events: auto;
|
|
2825
|
+
}
|
|
2826
|
+
|
|
2827
|
+
.nav-list.vertical .dropdown-item {
|
|
2828
|
+
padding: 0.5rem 1rem;
|
|
2829
|
+
font-size: 0.825rem;
|
|
2830
|
+
border-left: 1px solid rgba(255, 255, 255, 0.1);
|
|
2831
|
+
border-radius: 0;
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2834
|
+
@media (min-width: 768px) {
|
|
2835
|
+
.nav-desktop {
|
|
2836
|
+
display: flex;
|
|
2837
|
+
}
|
|
2838
|
+
|
|
2839
|
+
.hamburger {
|
|
2840
|
+
display: none;
|
|
2841
|
+
}
|
|
2842
|
+
|
|
2843
|
+
.nav-menu-mobile {
|
|
2844
|
+
display: none !important;
|
|
2845
|
+
}
|
|
2453
2846
|
}
|
|
2454
2847
|
|
|
2455
2848
|
@keyframes slideInDown {
|
|
@@ -2457,6 +2850,23 @@ body.light-mode .nav-menu-mobile {
|
|
|
2457
2850
|
to { opacity: 1; transform: translateY(0); }
|
|
2458
2851
|
}
|
|
2459
2852
|
|
|
2853
|
+
.starlight-nav.vertical {
|
|
2854
|
+
flex-direction: column;
|
|
2855
|
+
height: 100%;
|
|
2856
|
+
width: 280px !important;
|
|
2857
|
+
min-width: 280px !important;
|
|
2858
|
+
border-bottom: none;
|
|
2859
|
+
border-right: 1px solid rgba(255, 255, 255, 0.1);
|
|
2860
|
+
padding: 2.5rem 1.5rem;
|
|
2861
|
+
align-items: flex-start;
|
|
2862
|
+
justify-content: flex-start;
|
|
2863
|
+
}
|
|
2864
|
+
|
|
2865
|
+
body.light-mode .starlight-nav.vertical {
|
|
2866
|
+
background: rgba(255, 255, 255, 0.98);
|
|
2867
|
+
border-right-color: rgba(0, 0, 0, 0.08);
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2460
2870
|
/* 15. More Form Controls */
|
|
2461
2871
|
.select-starlight {
|
|
2462
2872
|
appearance: none;
|
|
@@ -2505,6 +2915,17 @@ body.light-mode .range-starlight {
|
|
|
2505
2915
|
height: 1.75rem;
|
|
2506
2916
|
}
|
|
2507
2917
|
|
|
2918
|
+
.toggle-starlight .toggle-slider:before {
|
|
2919
|
+
height: 1.25rem;
|
|
2920
|
+
width: 1.25rem;
|
|
2921
|
+
top: 0.25rem;
|
|
2922
|
+
left: 0.25rem;
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2925
|
+
.toggle-starlight input:checked + .toggle-slider:before {
|
|
2926
|
+
transform: translateX(1.75rem);
|
|
2927
|
+
}
|
|
2928
|
+
|
|
2508
2929
|
.toggle-starlight .toggle-slider {
|
|
2509
2930
|
background: rgba(255,255,255,0.1);
|
|
2510
2931
|
border: 1px solid rgba(255,255,255,0.1);
|
|
@@ -2532,12 +2953,106 @@ body.light-mode .text-gradient-starlight {
|
|
|
2532
2953
|
-webkit-text-fill-color: transparent !important;
|
|
2533
2954
|
}
|
|
2534
2955
|
|
|
2535
|
-
body.light-mode .text-success { color: #059669; }
|
|
2536
|
-
body.light-mode .text-warning { color: #d97706; }
|
|
2956
|
+
body.light-mode .text-success { color: #059669; }
|
|
2957
|
+
body.light-mode .text-warning { color: #d97706; }
|
|
2958
|
+
|
|
2959
|
+
body.light-mode .dialog-content .bg-black\/40 {
|
|
2960
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
2961
|
+
border-color: rgba(0, 0, 0, 0.1);
|
|
2962
|
+
}
|
|
2963
|
+
|
|
2964
|
+
/* 18. Semantic Typography Utilities */
|
|
2965
|
+
.text-glow {
|
|
2966
|
+
text-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.2);
|
|
2967
|
+
}
|
|
2968
|
+
|
|
2969
|
+
.text-glass {
|
|
2970
|
+
color: rgba(255, 255, 255, 0.6);
|
|
2971
|
+
backdrop-filter: blur(4px);
|
|
2972
|
+
-webkit-backdrop-filter: blur(4px);
|
|
2973
|
+
}
|
|
2974
|
+
|
|
2975
|
+
body.light-mode .text-glow {
|
|
2976
|
+
text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
|
|
2977
|
+
}
|
|
2978
|
+
|
|
2979
|
+
body.light-mode .text-glass {
|
|
2980
|
+
color: rgba(0, 0, 0, 0.5);
|
|
2981
|
+
}
|
|
2982
|
+
|
|
2983
|
+
/* 17. Skeleton Loading (Starlight Variant) */
|
|
2984
|
+
.starlight-loading {
|
|
2985
|
+
background: linear-gradient(
|
|
2986
|
+
90deg,
|
|
2987
|
+
rgba(255, 255, 255, 0.03) 25%,
|
|
2988
|
+
rgba(255, 255, 255, 0.08) 50%,
|
|
2989
|
+
rgba(255, 255, 255, 0.03) 75%
|
|
2990
|
+
);
|
|
2991
|
+
background-size: 200% 100%;
|
|
2992
|
+
animation: starlight-shimmer 2s infinite linear;
|
|
2993
|
+
border-radius: var(--radius-md);
|
|
2994
|
+
min-height: 1rem;
|
|
2995
|
+
}
|
|
2996
|
+
|
|
2997
|
+
@keyframes starlight-shimmer {
|
|
2998
|
+
0% { background-position: 200% 0; }
|
|
2999
|
+
100% { background-position: -200% 0; }
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
body.light-mode .starlight-loading {
|
|
3003
|
+
background: linear-gradient(
|
|
3004
|
+
90deg,
|
|
3005
|
+
rgba(0, 0, 0, 0.03) 25%,
|
|
3006
|
+
rgba(0, 0, 0, 0.06) 50%,
|
|
3007
|
+
rgba(0, 0, 0, 0.03) 75%
|
|
3008
|
+
);
|
|
3009
|
+
background-size: 200% 100%;
|
|
3010
|
+
}
|
|
3011
|
+
|
|
3012
|
+
/* 16. Themed Scrollbars */
|
|
3013
|
+
::-webkit-scrollbar {
|
|
3014
|
+
width: 10px;
|
|
3015
|
+
height: 10px;
|
|
3016
|
+
}
|
|
3017
|
+
|
|
3018
|
+
::-webkit-scrollbar-track {
|
|
3019
|
+
background: rgba(255, 255, 255, 0.02);
|
|
3020
|
+
backdrop-filter: blur(10px);
|
|
3021
|
+
}
|
|
3022
|
+
|
|
3023
|
+
::-webkit-scrollbar-thumb {
|
|
3024
|
+
background: rgba(255, 255, 255, 0.1);
|
|
3025
|
+
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
3026
|
+
border-radius: 10px;
|
|
3027
|
+
transition: all 0.3s;
|
|
3028
|
+
}
|
|
3029
|
+
|
|
3030
|
+
::-webkit-scrollbar-thumb:hover {
|
|
3031
|
+
background: rgba(0, 212, 255, 0.3);
|
|
3032
|
+
box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
|
|
3033
|
+
}
|
|
3034
|
+
|
|
3035
|
+
body.light-mode ::-webkit-scrollbar-track {
|
|
3036
|
+
background: rgba(0, 0, 0, 0.03);
|
|
3037
|
+
}
|
|
3038
|
+
|
|
3039
|
+
body.light-mode ::-webkit-scrollbar-thumb {
|
|
3040
|
+
background: rgba(0, 0, 0, 0.1);
|
|
3041
|
+
border-color: rgba(0, 0, 0, 0.05);
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
body.light-mode ::-webkit-scrollbar-thumb:hover {
|
|
3045
|
+
background: var(--color-starlight-blue);
|
|
3046
|
+
}
|
|
3047
|
+
|
|
3048
|
+
/* Firefox Support */
|
|
3049
|
+
* {
|
|
3050
|
+
scrollbar-width: thin;
|
|
3051
|
+
scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
|
|
3052
|
+
}
|
|
2537
3053
|
|
|
2538
|
-
body.light-mode
|
|
2539
|
-
|
|
2540
|
-
border-color: rgba(0, 0, 0, 0.1);
|
|
3054
|
+
body.light-mode * {
|
|
3055
|
+
scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
|
|
2541
3056
|
}
|
|
2542
3057
|
|
|
2543
3058
|
@media (forced-colors: active) {
|
|
@@ -2558,9 +3073,43 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
2558
3073
|
}
|
|
2559
3074
|
|
|
2560
3075
|
.btn-starlight {
|
|
2561
|
-
|
|
3076
|
+
background: linear-gradient(135deg, var(--color-starlight-peach) 0%, var(--color-starlight-blue) 100%);
|
|
3077
|
+
color: #000;
|
|
3078
|
+
font-weight: 700;
|
|
3079
|
+
border: none;
|
|
3080
|
+
border-radius: 0.5rem;
|
|
3081
|
+
padding: 0 1.5rem;
|
|
3082
|
+
height: 3rem;
|
|
3083
|
+
display: inline-flex;
|
|
3084
|
+
align-items: center;
|
|
3085
|
+
justify-content: center;
|
|
3086
|
+
cursor: pointer;
|
|
3087
|
+
transition: all 0.2s ease;
|
|
3088
|
+
box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
|
|
3089
|
+
text-decoration: none;
|
|
2562
3090
|
}
|
|
2563
|
-
|
|
3091
|
+
|
|
3092
|
+
.btn-starlight:hover {
|
|
3093
|
+
transform: translateY(-2px);
|
|
3094
|
+
box-shadow: 0 5px 25px rgba(0, 212, 255, 0.4);
|
|
3095
|
+
filter: brightness(1.1);
|
|
3096
|
+
}
|
|
3097
|
+
|
|
3098
|
+
.btn-starlight:active {
|
|
3099
|
+
transform: translateY(0) scale(0.95);
|
|
3100
|
+
box-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
|
|
3101
|
+
filter: brightness(0.9);
|
|
3102
|
+
}
|
|
3103
|
+
|
|
3104
|
+
.btn-starlight:focus-visible {
|
|
3105
|
+
outline: 2px solid white;
|
|
3106
|
+
outline-offset: 2px;
|
|
3107
|
+
box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.3);
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3110
|
+
body.light-mode .btn-starlight:focus-visible {
|
|
3111
|
+
outline-color: var(--color-starlight-blue);
|
|
3112
|
+
}}
|
|
2564
3113
|
|
|
2565
3114
|
|
|
2566
3115
|
/* JIT Generated Utilities */
|
|
@@ -2616,13 +3165,14 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
2616
3165
|
display: inline-flex;
|
|
2617
3166
|
align-items: center;
|
|
2618
3167
|
justify-content: center;
|
|
2619
|
-
border-radius: 0.
|
|
3168
|
+
border-radius: 0.5rem;
|
|
2620
3169
|
cursor: pointer;
|
|
2621
3170
|
padding-left: 1.5rem;
|
|
2622
3171
|
padding-right: 1.5rem;
|
|
2623
3172
|
padding-top: 0.5rem;
|
|
2624
3173
|
padding-bottom: 0.5rem;
|
|
2625
3174
|
border-radius: 0.5rem;
|
|
3175
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
2626
3176
|
}
|
|
2627
3177
|
|
|
2628
3178
|
.btn-primary:hover {
|
|
@@ -2641,6 +3191,7 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
2641
3191
|
padding-top: 0.5rem;
|
|
2642
3192
|
padding-bottom: 0.5rem;
|
|
2643
3193
|
border-radius: 0.5rem;
|
|
3194
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
2644
3195
|
}
|
|
2645
3196
|
|
|
2646
3197
|
.btn-secondary:hover {
|
|
@@ -2653,6 +3204,7 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
2653
3204
|
-webkit-backdrop-filter: blur(4px);
|
|
2654
3205
|
padding: 2rem;
|
|
2655
3206
|
border-radius: 1rem;
|
|
3207
|
+
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
2656
3208
|
border-color: #f1f5f9;
|
|
2657
3209
|
}
|
|
2658
3210
|
|
|
@@ -3276,10 +3828,18 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3276
3828
|
background-color: #f97316;
|
|
3277
3829
|
}
|
|
3278
3830
|
|
|
3831
|
+
.relative {
|
|
3832
|
+
position: relative;
|
|
3833
|
+
}
|
|
3834
|
+
|
|
3279
3835
|
.h-48 {
|
|
3280
3836
|
height: 12rem;
|
|
3281
3837
|
}
|
|
3282
3838
|
|
|
3839
|
+
.absolute {
|
|
3840
|
+
position: absolute;
|
|
3841
|
+
}
|
|
3842
|
+
|
|
3283
3843
|
.w-4 {
|
|
3284
3844
|
width: 1rem;
|
|
3285
3845
|
}
|
|
@@ -3312,33 +3872,95 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3312
3872
|
display: inline-flex;
|
|
3313
3873
|
align-items: center;
|
|
3314
3874
|
justify-content: center;
|
|
3315
|
-
border-radius: 0.
|
|
3875
|
+
border-radius: 0.5rem;
|
|
3316
3876
|
cursor: pointer;
|
|
3317
3877
|
}
|
|
3318
3878
|
|
|
3319
|
-
.
|
|
3320
|
-
color:
|
|
3879
|
+
.border-white\/5 {
|
|
3880
|
+
border-color: rgba(255, 255, 255, 0.05);
|
|
3321
3881
|
}
|
|
3322
3882
|
|
|
3323
|
-
.
|
|
3324
|
-
|
|
3883
|
+
.bg-white\/5 {
|
|
3884
|
+
background-color: rgba(255, 255, 255, 0.05);
|
|
3885
|
+
}
|
|
3886
|
+
|
|
3887
|
+
.starlight-nav {
|
|
3888
|
+
background: rgba(255, 255, 255, 0.05);
|
|
3889
|
+
backdrop-filter: blur(24px);
|
|
3890
|
+
-webkit-backdrop-filter: blur(24px);
|
|
3891
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
3892
|
+
width: 100%;
|
|
3893
|
+
display: flex;
|
|
3894
|
+
flex-direction: column;
|
|
3895
|
+
padding: 0;
|
|
3896
|
+
position: sticky;
|
|
3897
|
+
top: 0;
|
|
3898
|
+
z-index: 1000;
|
|
3899
|
+
width: 100%;
|
|
3900
|
+
top: 0px;
|
|
3901
|
+
z-index: 1000;
|
|
3902
|
+
}
|
|
3903
|
+
|
|
3904
|
+
body.light-mode .light\:bg-slate-300 {
|
|
3905
|
+
background-color: #cbd5e1;
|
|
3906
|
+
}
|
|
3907
|
+
|
|
3908
|
+
.h-\[400px] {
|
|
3909
|
+
height: 400px;
|
|
3910
|
+
}
|
|
3911
|
+
|
|
3912
|
+
.border-r {
|
|
3913
|
+
border-right-width: undefinedpx;
|
|
3325
3914
|
}
|
|
3326
3915
|
|
|
3327
3916
|
.border-white\/10 {
|
|
3328
3917
|
border-color: rgba(255, 255, 255, 0.1);
|
|
3329
3918
|
}
|
|
3330
3919
|
|
|
3331
|
-
.
|
|
3332
|
-
|
|
3333
|
-
margin-bottom: 0.25rem;
|
|
3920
|
+
.block {
|
|
3921
|
+
display: block;
|
|
3334
3922
|
}
|
|
3335
3923
|
|
|
3336
|
-
.
|
|
3337
|
-
|
|
3924
|
+
.flex-1 {
|
|
3925
|
+
flex: 1 1 0%;
|
|
3926
|
+
}
|
|
3927
|
+
|
|
3928
|
+
.starlight-search {
|
|
3929
|
+
position: relative;
|
|
3930
|
+
display: block;
|
|
3931
|
+
width: 100%;
|
|
3932
|
+
position: relative;
|
|
3933
|
+
width: 100%;
|
|
3934
|
+
max-width: 36rem;
|
|
3935
|
+
}
|
|
3936
|
+
|
|
3937
|
+
.search-icon {
|
|
3938
|
+
position: absolute;
|
|
3939
|
+
left: 1rem;
|
|
3940
|
+
top: 50%;
|
|
3941
|
+
pointer-events: none;
|
|
3942
|
+
z-index: 10;
|
|
3943
|
+
width: 1.25rem;
|
|
3944
|
+
height: 1.25rem;
|
|
3945
|
+
}
|
|
3946
|
+
|
|
3947
|
+
.search-input {
|
|
3948
|
+
padding-left: 3rem;
|
|
3949
|
+
width: 100%;
|
|
3950
|
+
}
|
|
3951
|
+
|
|
3952
|
+
.text-muted {
|
|
3953
|
+
color: var(--text-muted);
|
|
3954
|
+
}
|
|
3955
|
+
|
|
3956
|
+
.starlight-dashboard {
|
|
3957
|
+
display: grid;
|
|
3958
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
3959
|
+
gap: 2rem;
|
|
3338
3960
|
}
|
|
3339
3961
|
|
|
3340
|
-
.
|
|
3341
|
-
|
|
3962
|
+
body.light-mode .light\:shadow-lg {
|
|
3963
|
+
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
3342
3964
|
}
|
|
3343
3965
|
|
|
3344
3966
|
.w-2 {
|
|
@@ -3357,47 +3979,43 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3357
3979
|
margin-right: 0.25rem;
|
|
3358
3980
|
}
|
|
3359
3981
|
|
|
3360
|
-
.
|
|
3361
|
-
|
|
3982
|
+
.starlight-gallery {
|
|
3983
|
+
display: grid;
|
|
3984
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
3985
|
+
gap: 1rem;
|
|
3362
3986
|
}
|
|
3363
3987
|
|
|
3364
|
-
.
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
position: relative;
|
|
3374
|
-
display: inline-flex;
|
|
3988
|
+
.starlight-form {
|
|
3989
|
+
display: grid;
|
|
3990
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
3991
|
+
gap: 2rem;
|
|
3992
|
+
}
|
|
3993
|
+
|
|
3994
|
+
.form-row {
|
|
3995
|
+
display: flex;
|
|
3996
|
+
justify-content: space-between;
|
|
3375
3997
|
align-items: center;
|
|
3376
|
-
|
|
3998
|
+
gap: 1rem;
|
|
3377
3999
|
}
|
|
3378
4000
|
|
|
3379
4001
|
.mt-auto {
|
|
3380
4002
|
margin-top: auto;
|
|
3381
4003
|
}
|
|
3382
4004
|
|
|
3383
|
-
.
|
|
3384
|
-
|
|
3385
|
-
}
|
|
3386
|
-
|
|
3387
|
-
.bg-black\/40 {
|
|
3388
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
4005
|
+
.pt-4 {
|
|
4006
|
+
padding-top: 1rem;
|
|
3389
4007
|
}
|
|
3390
4008
|
|
|
3391
|
-
.
|
|
3392
|
-
|
|
4009
|
+
.w-5 {
|
|
4010
|
+
width: 1.25rem;
|
|
3393
4011
|
}
|
|
3394
4012
|
|
|
3395
|
-
.
|
|
3396
|
-
|
|
4013
|
+
.h-5 {
|
|
4014
|
+
height: 1.25rem;
|
|
3397
4015
|
}
|
|
3398
4016
|
|
|
3399
|
-
.
|
|
3400
|
-
|
|
4017
|
+
.pl-5 {
|
|
4018
|
+
padding-left: 1.25rem;
|
|
3401
4019
|
}
|
|
3402
4020
|
|
|
3403
4021
|
.mt-20 {
|
|
@@ -3408,8 +4026,21 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3408
4026
|
padding-top: 2rem;
|
|
3409
4027
|
}
|
|
3410
4028
|
|
|
3411
|
-
.
|
|
3412
|
-
|
|
4029
|
+
.dialog-close {
|
|
4030
|
+
position: absolute;
|
|
4031
|
+
top: 1.5rem;
|
|
4032
|
+
right: 1.5rem;
|
|
4033
|
+
width: 2rem;
|
|
4034
|
+
height: 2rem;
|
|
4035
|
+
border-radius: 50%;
|
|
4036
|
+
display: flex;
|
|
4037
|
+
align-items: center;
|
|
4038
|
+
justify-content: center;
|
|
4039
|
+
cursor: pointer;
|
|
4040
|
+
}
|
|
4041
|
+
|
|
4042
|
+
.text-success {
|
|
4043
|
+
color: #10b981;
|
|
3413
4044
|
}
|
|
3414
4045
|
|
|
3415
4046
|
.h-14 {
|
|
@@ -3424,6 +4055,25 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3424
4055
|
max-width: 3xl;
|
|
3425
4056
|
}
|
|
3426
4057
|
|
|
4058
|
+
.gap-3 {
|
|
4059
|
+
gap: 0.75rem;
|
|
4060
|
+
}
|
|
4061
|
+
|
|
4062
|
+
.checkbox-starlight {
|
|
4063
|
+
appearance: none;
|
|
4064
|
+
width: 1.25rem;
|
|
4065
|
+
height: 1.25rem;
|
|
4066
|
+
background: rgba(255, 255, 255, 0.05);
|
|
4067
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
4068
|
+
border-radius: 0.375rem;
|
|
4069
|
+
cursor: pointer;
|
|
4070
|
+
transition: all 0.2s ease;
|
|
4071
|
+
position: relative;
|
|
4072
|
+
display: inline-flex;
|
|
4073
|
+
align-items: center;
|
|
4074
|
+
justify-content: center;
|
|
4075
|
+
}
|
|
4076
|
+
|
|
3427
4077
|
.mt-6 {
|
|
3428
4078
|
margin-top: 1.5rem;
|
|
3429
4079
|
}
|
|
@@ -3440,36 +4090,20 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3440
4090
|
width: 50.00%;
|
|
3441
4091
|
}
|
|
3442
4092
|
|
|
4093
|
+
.mr-8 {
|
|
4094
|
+
margin-right: 2rem;
|
|
4095
|
+
}
|
|
4096
|
+
|
|
3443
4097
|
.px-8 {
|
|
3444
4098
|
padding-left: 2rem;
|
|
3445
4099
|
padding-right: 2rem;
|
|
3446
4100
|
}
|
|
3447
4101
|
|
|
3448
|
-
.hover\:text-starlight:hover {
|
|
3449
|
-
color: #00d4ff;
|
|
3450
|
-
}
|
|
3451
|
-
|
|
3452
4102
|
.py-2.5 {
|
|
3453
4103
|
padding-top: 2.5;
|
|
3454
4104
|
padding-bottom: 2.5;
|
|
3455
4105
|
}
|
|
3456
4106
|
|
|
3457
|
-
.gap-1.5 {
|
|
3458
|
-
gap: 1.5;
|
|
3459
|
-
}
|
|
3460
|
-
|
|
3461
|
-
.h-0.5 {
|
|
3462
|
-
height: 0.5;
|
|
3463
|
-
}
|
|
3464
|
-
|
|
3465
|
-
.bg-starlight-deep\/98 {
|
|
3466
|
-
background-color: rgba(8, 8, 26, 0.98);
|
|
3467
|
-
}
|
|
3468
|
-
|
|
3469
|
-
.z-40 {
|
|
3470
|
-
z-index: 40;
|
|
3471
|
-
}
|
|
3472
|
-
|
|
3473
4107
|
.max-w-\[1200px] {
|
|
3474
4108
|
max-width: 1200px;
|
|
3475
4109
|
}
|
|
@@ -3478,6 +4112,10 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3478
4112
|
background: linear-gradient(135deg, #ffb38a 0%, #00d4ff 100%);
|
|
3479
4113
|
}
|
|
3480
4114
|
|
|
4115
|
+
.shadow-lg {
|
|
4116
|
+
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
4117
|
+
}
|
|
4118
|
+
|
|
3481
4119
|
.py-24 {
|
|
3482
4120
|
padding-top: 6rem;
|
|
3483
4121
|
padding-bottom: 6rem;
|
|
@@ -3507,16 +4145,12 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3507
4145
|
transition-duration: 500ms;
|
|
3508
4146
|
}
|
|
3509
4147
|
|
|
3510
|
-
.
|
|
3511
|
-
|
|
3512
|
-
}
|
|
3513
|
-
|
|
3514
|
-
.w-5 {
|
|
3515
|
-
width: 1.25rem;
|
|
4148
|
+
.gap-2 {
|
|
4149
|
+
gap: 0.5rem;
|
|
3516
4150
|
}
|
|
3517
4151
|
|
|
3518
|
-
.
|
|
3519
|
-
|
|
4152
|
+
.mb-32 {
|
|
4153
|
+
margin-bottom: 8rem;
|
|
3520
4154
|
}
|
|
3521
4155
|
|
|
3522
4156
|
.p-16 {
|
|
@@ -3535,6 +4169,10 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3535
4169
|
grid-column: span 2 / span 2;
|
|
3536
4170
|
}
|
|
3537
4171
|
|
|
4172
|
+
.hover\:text-starlight:hover {
|
|
4173
|
+
color: #00d4ff;
|
|
4174
|
+
}
|
|
4175
|
+
|
|
3538
4176
|
.text-primary {
|
|
3539
4177
|
color: #3b82f6;
|
|
3540
4178
|
}
|
|
@@ -3547,6 +4185,10 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3547
4185
|
z-index: 0;
|
|
3548
4186
|
}
|
|
3549
4187
|
|
|
4188
|
+
.pointer-events-none {
|
|
4189
|
+
pointer-events: none;
|
|
4190
|
+
}
|
|
4191
|
+
|
|
3550
4192
|
.h-24 {
|
|
3551
4193
|
height: 6rem;
|
|
3552
4194
|
}
|
|
@@ -3575,10 +4217,6 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3575
4217
|
color: #64748b;
|
|
3576
4218
|
}
|
|
3577
4219
|
|
|
3578
|
-
.pt-4 {
|
|
3579
|
-
padding-top: 1rem;
|
|
3580
|
-
}
|
|
3581
|
-
|
|
3582
4220
|
.w-12 {
|
|
3583
4221
|
width: 3rem;
|
|
3584
4222
|
}
|
|
@@ -3591,6 +4229,10 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3591
4229
|
padding: 0.25rem;
|
|
3592
4230
|
}
|
|
3593
4231
|
|
|
4232
|
+
.bg-black\/40 {
|
|
4233
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
4234
|
+
}
|
|
4235
|
+
|
|
3594
4236
|
.max-w-none {
|
|
3595
4237
|
max-width: none;
|
|
3596
4238
|
}
|
|
@@ -3611,10 +4253,6 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3611
4253
|
background-color: rgba(59, 130, 246, 0.05);
|
|
3612
4254
|
}
|
|
3613
4255
|
|
|
3614
|
-
.bg-white\/5 {
|
|
3615
|
-
background-color: rgba(255, 255, 255, 0.05);
|
|
3616
|
-
}
|
|
3617
|
-
|
|
3618
4256
|
.mt-12 {
|
|
3619
4257
|
margin-top: 3rem;
|
|
3620
4258
|
}
|
|
@@ -3667,6 +4305,10 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3667
4305
|
max-width: 5xl;
|
|
3668
4306
|
}
|
|
3669
4307
|
|
|
4308
|
+
.shadow-2xl {
|
|
4309
|
+
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
4310
|
+
}
|
|
4311
|
+
|
|
3670
4312
|
.mb-3 {
|
|
3671
4313
|
margin-bottom: 0.75rem;
|
|
3672
4314
|
}
|
|
@@ -3785,7 +4427,7 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3785
4427
|
}
|
|
3786
4428
|
|
|
3787
4429
|
.-top-1 {
|
|
3788
|
-
top:
|
|
4430
|
+
top: 0.25rem;
|
|
3789
4431
|
}
|
|
3790
4432
|
|
|
3791
4433
|
.-right-1 {
|
|
@@ -3859,6 +4501,10 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3859
4501
|
background-color: rgba(15, 23, 42, 0.8);
|
|
3860
4502
|
}
|
|
3861
4503
|
|
|
4504
|
+
.shadow-sm {
|
|
4505
|
+
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
4506
|
+
}
|
|
4507
|
+
|
|
3862
4508
|
.border-blue-600\/50 {
|
|
3863
4509
|
border-color: rgba(37, 99, 235, 0.5);
|
|
3864
4510
|
}
|
|
@@ -3876,6 +4522,10 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3876
4522
|
}
|
|
3877
4523
|
|
|
3878
4524
|
@media (min-width: 640px) {
|
|
4525
|
+
.starlight-gallery {
|
|
4526
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
4527
|
+
}
|
|
4528
|
+
|
|
3879
4529
|
.sm\:flex-row {
|
|
3880
4530
|
flex-direction: row;
|
|
3881
4531
|
}
|
|
@@ -3894,13 +4544,14 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3894
4544
|
display: inline-flex;
|
|
3895
4545
|
align-items: center;
|
|
3896
4546
|
justify-content: center;
|
|
3897
|
-
border-radius: 0.
|
|
4547
|
+
border-radius: 0.5rem;
|
|
3898
4548
|
cursor: pointer;
|
|
3899
4549
|
padding-left: 1.5rem;
|
|
3900
4550
|
padding-right: 1.5rem;
|
|
3901
4551
|
padding-top: 0.5rem;
|
|
3902
4552
|
padding-bottom: 0.5rem;
|
|
3903
4553
|
border-radius: 0.5rem;
|
|
4554
|
+
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
3904
4555
|
}
|
|
3905
4556
|
|
|
3906
4557
|
.md\:btn-primary:hover {
|
|
@@ -3931,8 +4582,17 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3931
4582
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3932
4583
|
}
|
|
3933
4584
|
|
|
3934
|
-
.md\:
|
|
3935
|
-
|
|
4585
|
+
.md\:px-8 {
|
|
4586
|
+
padding-left: 2rem;
|
|
4587
|
+
padding-right: 2rem;
|
|
4588
|
+
}
|
|
4589
|
+
|
|
4590
|
+
.starlight-dashboard {
|
|
4591
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
4592
|
+
}
|
|
4593
|
+
|
|
4594
|
+
.starlight-form {
|
|
4595
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3936
4596
|
}
|
|
3937
4597
|
|
|
3938
4598
|
.md\:hidden {
|
|
@@ -3947,6 +4607,10 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3947
4607
|
grid-column: span 1 / span 1;
|
|
3948
4608
|
}
|
|
3949
4609
|
|
|
4610
|
+
.md\:flex {
|
|
4611
|
+
display: flex;
|
|
4612
|
+
}
|
|
4613
|
+
|
|
3950
4614
|
.md\:block {
|
|
3951
4615
|
display: block;
|
|
3952
4616
|
}
|
|
@@ -3969,6 +4633,14 @@ body.light-mode .dialog-content .bg-black\/40 {
|
|
|
3969
4633
|
grid-column: span 4 / span 4;
|
|
3970
4634
|
}
|
|
3971
4635
|
|
|
4636
|
+
.starlight-dashboard {
|
|
4637
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
4638
|
+
}
|
|
4639
|
+
|
|
4640
|
+
.starlight-gallery {
|
|
4641
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
4642
|
+
}
|
|
4643
|
+
|
|
3972
4644
|
.lg\:grid-cols-3 {
|
|
3973
4645
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3974
4646
|
}
|