@howssatoshi/quantumcss 1.7.2 → 1.7.4

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.
@@ -38,9 +38,21 @@ html[data-theme="light"] a:hover {
38
38
  }
39
39
 
40
40
  .starlight-card:hover {
41
- border-color: rgb(0 212 255 / 40%);
42
- box-shadow: 0 12px 40px rgb(0 0 0 / 40%), 0 0 20px rgb(0 212 255 / 10%);
43
- background-color: rgb(255 255 255 / 4%);
41
+ background-color: rgba(255, 255, 255, 0.04);
42
+ }
43
+
44
+ /* ... existing code ... */
45
+
46
+ .nav-glass:hover {
47
+ background-color: rgba(255, 255, 255, 0.1);
48
+ }
49
+
50
+ .starlight-nav {
51
+ position: relative;
52
+ }
53
+
54
+ html[data-theme="light"] .nav-glass:hover {
55
+ background-color: rgba(255, 255, 255, 0.98);
44
56
  }
45
57
 
46
58
  html[data-theme="light"] .starlight-card {
@@ -154,8 +166,9 @@ html[data-theme="light"] .star {
154
166
  .dialog-overlay {
155
167
  position: fixed;
156
168
  inset: 0;
157
- background: rgb(0 0 0 / 60%);
158
- backdrop-filter: blur(12px);
169
+ background: rgba(0, 0, 0, 0.6);
170
+ backdrop-filter: blur(16px);
171
+ -webkit-backdrop-filter: blur(16px);
159
172
  display: flex;
160
173
  align-items: center;
161
174
  justify-content: center;
@@ -216,10 +229,10 @@ html[data-theme="light"] .starlight-dialog::-webkit-scrollbar-track {
216
229
  }
217
230
 
218
231
  html[data-theme="light"] .starlight-dialog {
219
- background-color: rgb(255 255 255 / 98%);
220
- border-color: rgb(0 0 0 / 10%);
232
+ background-color: rgba(248, 250, 252, 0.9);
233
+ border-color: rgba(0, 0, 0, 0.1);
221
234
  color: #1e293b;
222
- box-shadow: 0 25px 50px -12px rgb(0 0 0 / 15%);
235
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
223
236
  }
224
237
 
225
238
  .dialog-close {
@@ -275,21 +288,22 @@ html[data-theme="light"] .dialog-content {
275
288
  position: absolute;
276
289
  top: 100%;
277
290
  left: 0;
278
- background: rgb(255 255 255 / 5%);
279
- backdrop-filter: blur(24px);
280
- -webkit-backdrop-filter: blur(24px);
281
- border: 1px solid rgb(255 255 255 / 10%);
291
+ background-color: rgba(8, 8, 26, 0.8);
292
+ backdrop-filter: blur(16px);
293
+ -webkit-backdrop-filter: blur(16px);
294
+ border: 1px solid rgba(255, 255, 255, 0.1);
282
295
  border-radius: 0.75rem;
283
296
  padding: 0.5rem;
284
297
  margin-top: 0.5rem;
285
298
  min-width: 200px;
286
299
  z-index: 600;
287
- box-shadow: 0 20px 40px rgb(0 0 0 / 40%);
300
+ box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
288
301
  opacity: 0;
289
302
  visibility: hidden;
290
303
  transform: translateY(10px);
291
304
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
292
305
  pointer-events: none;
306
+ will-change: backdrop-filter, transform, opacity;
293
307
  }
294
308
 
295
309
  .dropdown:hover .dropdown-menu,
@@ -298,6 +312,8 @@ html[data-theme="light"] .dialog-content {
298
312
  visibility: visible;
299
313
  transform: translateY(0);
300
314
  pointer-events: auto;
315
+ backdrop-filter: blur(16px) !important;
316
+ -webkit-backdrop-filter: blur(16px) !important;
301
317
  }
302
318
 
303
319
  .dropdown-item {
@@ -305,7 +321,7 @@ html[data-theme="light"] .dialog-content {
305
321
  width: 100%;
306
322
  padding: 0.625rem 1rem;
307
323
  border-radius: 0.5rem;
308
- color: var(--q-text-primary, rgb(255 255 255 / 70%));
324
+ color: var(--q-text-primary, rgba(255, 255, 255, 0.7));
309
325
  transition: all 0.2s ease;
310
326
  text-align: left;
311
327
  background: transparent;
@@ -314,14 +330,16 @@ html[data-theme="light"] .dialog-content {
314
330
  }
315
331
 
316
332
  .dropdown-item:hover {
317
- background-color: var(--q-color-starlight-blue);
333
+ background-color: rgba(0, 212, 255, 0.8);
318
334
  color: black;
319
335
  }
320
336
 
321
337
  html[data-theme="light"] .dropdown-menu {
322
- background: rgb(255 255 255 / 95%);
323
- border-color: rgb(0 0 0 / 8%);
324
- box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
338
+ background-color: rgba(255, 255, 255, 0.95) !important;
339
+ backdrop-filter: blur(16px) !important;
340
+ -webkit-backdrop-filter: blur(16px) !important;
341
+ border-color: rgba(0, 0, 0, 0.08);
342
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
325
343
  }
326
344
 
327
345
  html[data-theme="light"] .dropdown-item {
@@ -335,8 +353,6 @@ html[data-theme="light"] .dropdown-item:hover {
335
353
 
336
354
  /* 7. Input & Glass Fixes */
337
355
  .input-starlight, .textarea-starlight {
338
- height: auto;
339
- padding: 1rem;
340
356
  background-color: rgb(255 255 255 / 4%);
341
357
  border: 1px solid rgb(255 255 255 / 15%);
342
358
  border-radius: 0.75rem;
@@ -360,21 +376,6 @@ html[data-theme="light"] .glass {
360
376
  border-color: rgba(0, 0, 0, 0.1);
361
377
  }
362
378
 
363
- /* 8. Input Focus States */
364
- .input-starlight:focus, .textarea-starlight:focus {
365
- outline: none;
366
- border-color: var(--q-color-starlight-blue);
367
- box-shadow: 0 0 0 4px rgb(0 212 255 / 10%), 0 0 20px rgb(0 212 255 / 10%);
368
- background-color: rgb(255 255 255 / 6%);
369
- }
370
-
371
- html[data-theme="light"] .input-starlight:focus,
372
- html[data-theme="light"] .textarea-starlight:focus {
373
- border-color: var(--q-color-starlight-blue);
374
- box-shadow: 0 0 0 4px rgb(0 212 255 / 10%), 0 4px 12px rgb(0 0 0 / 5%);
375
- background-color: #fff;
376
- }
377
-
378
379
  /* 9. Code Interface Window */
379
380
  .code-window {
380
381
  background: rgb(0 0 0 / 40%);
@@ -626,12 +627,13 @@ html[data-theme="light"] .stat-value {
626
627
  .stat-trend.up { color: var(--q-color-success); }
627
628
  .stat-trend.down { color: var(--q-color-error); }
628
629
 
629
- /* 14. Hamburger Menu Glass */
630
+ /* 9. Glass Navigation */
630
631
  .nav-glass {
631
- background: rgb(255 255 255 / 5%);
632
- backdrop-filter: blur(24px);
633
- -webkit-backdrop-filter: blur(24px);
634
- border-bottom: 1px solid rgb(255 255 255 / 10%);
632
+ background: rgba(255, 255, 255, 0.15);
633
+ backdrop-filter: blur(16px);
634
+ -webkit-backdrop-filter: blur(16px);
635
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
636
+ background-clip: border-box;
635
637
  display: flex;
636
638
  flex-direction: column;
637
639
  position: sticky;
@@ -640,8 +642,18 @@ html[data-theme="light"] .stat-value {
640
642
  padding: 0;
641
643
  }
642
644
 
645
+ .nav-container {
646
+ display: flex;
647
+ justify-content: space-between;
648
+ align-items: center;
649
+ width: 100%;
650
+ padding: 1rem 1.5rem;
651
+ }
652
+
643
653
  html[data-theme="light"] .nav-glass {
644
654
  background: rgb(255 255 255 / 95%);
655
+ backdrop-filter: blur(16px);
656
+ -webkit-backdrop-filter: blur(16px);
645
657
  border-bottom-color: rgb(0 0 0 / 8%);
646
658
  box-shadow: 0 4px 12px rgb(0 0 0 / 3%);
647
659
  }
@@ -726,12 +738,11 @@ html[data-theme="light"] .nav-link:hover {
726
738
  align-items: center;
727
739
  gap: 0.4rem;
728
740
  cursor: pointer;
729
- background: rgb(255 255 255 / 5%);
730
- border: 1px solid rgb(255 255 255 / 10%);
741
+ background: rgba(255, 255, 255, 0.05);
742
+ border: 1px solid rgba(255, 255, 255, 0.1);
731
743
  border-radius: 0.5rem;
732
744
  padding: 0.5rem;
733
745
  transition: all 0.3s;
734
- position: relative;
735
746
  }
736
747
 
737
748
  html[data-theme="light"] .hamburger {
@@ -767,23 +778,30 @@ html[data-theme="light"] .hamburger span {
767
778
  }
768
779
 
769
780
  .nav-menu-mobile {
770
- width: 100%;
771
- background: rgb(255 255 255 / 5%);
772
- backdrop-filter: blur(10px);
773
- -webkit-backdrop-filter: blur(10px);
774
- border-top: 1px solid rgb(255 255 255 / 5%);
775
- padding: 0;
781
+ position: absolute;
782
+ top: 100%;
783
+ left: 0;
784
+ right: 0;
785
+ z-index: 1000;
786
+ background: rgba(8, 8, 26, 0.95);
787
+ backdrop-filter: blur(20px);
788
+ -webkit-backdrop-filter: blur(20px);
789
+ border-top: 1px solid rgba(255, 255, 255, 0.05);
790
+ padding: 0 2rem;
776
791
  max-height: 0;
777
792
  overflow: hidden;
778
793
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
779
794
  opacity: 0;
795
+ pointer-events: none;
780
796
  }
781
797
 
782
798
  .nav-menu-mobile.active {
783
- display: block;
784
- max-height: 500px;
799
+ display: flex;
800
+ flex-direction: column;
801
+ max-height: 100vh;
785
802
  padding: 1.5rem 2rem;
786
803
  opacity: 1;
804
+ pointer-events: auto;
787
805
  }
788
806
 
789
807
  html[data-theme="light"] .nav-menu-mobile {
@@ -854,6 +872,23 @@ html[data-theme="light"] .nav-menu-mobile {
854
872
  justify-content: flex-start;
855
873
  }
856
874
 
875
+ /* Nav Layout Modifiers */
876
+ .nav-reverse > div {
877
+ flex-direction: row-reverse !important;
878
+ }
879
+
880
+ .nav-center > div {
881
+ display: grid !important;
882
+ grid-template-columns: 1fr auto 1fr;
883
+ align-items: center;
884
+ }
885
+
886
+ @media (width < 768px) {
887
+ .hamburger-left {
888
+ order: -1;
889
+ }
890
+ }
891
+
857
892
  html[data-theme="light"] .starlight-nav.vertical {
858
893
  background: rgb(255 255 255 / 98%);
859
894
  border-right-color: rgb(0 0 0 / 8%);
@@ -862,6 +897,9 @@ html[data-theme="light"] .starlight-nav.vertical {
862
897
  /* 15. More Form Controls */
863
898
  .select-starlight {
864
899
  appearance: none;
900
+ line-height: normal;
901
+ padding-top: 0.5rem !important;
902
+ padding-bottom: 0.5rem !important;
865
903
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
866
904
  background-repeat: no-repeat;
867
905
  background-position: right 1rem center;
@@ -886,7 +924,7 @@ html[data-theme="light"] .range-starlight {
886
924
  background: rgb(0 0 0 / 10%);
887
925
  }
888
926
 
889
- .range-starlight::-webkit-slider-thumb {
927
+ .range-starlight:-webkit-slider-thumb {
890
928
  appearance: none;
891
929
  width: 18px;
892
930
  height: 18px;
@@ -897,7 +935,7 @@ html[data-theme="light"] .range-starlight {
897
935
  transition: all 0.2s;
898
936
  }
899
937
 
900
- .range-starlight::-webkit-slider-thumb:hover {
938
+ .range-starlight:-webkit-slider-thumb:hover {
901
939
  transform: scale(1.2);
902
940
  box-shadow: 0 0 20px var(--q-color-starlight-blue);
903
941
  }
@@ -948,7 +986,7 @@ html[data-theme="light"] .text-gradient-starlight {
948
986
  html[data-theme="light"] .text-success { color: #059669; }
949
987
  html[data-theme="light"] .text-warning { color: #d97706; }
950
988
 
951
- html[data-theme="light"] .dialog-content .bg-black\/40 {
989
+ html[data-theme="light"] .dialog-content .bg-black_40 {
952
990
  background-color: rgb(0 0 0 / 5%);
953
991
  border-color: rgb(0 0 0 / 10%);
954
992
  }
@@ -1070,8 +1108,6 @@ html[data-theme="light"] * {
1070
1108
  font-weight: 700;
1071
1109
  border: none;
1072
1110
  border-radius: 0.5rem;
1073
- padding: 0 1.5rem;
1074
- height: 3rem;
1075
1111
  display: inline-flex;
1076
1112
  align-items: center;
1077
1113
  justify-content: center;
@@ -1083,13 +1119,11 @@ html[data-theme="light"] * {
1083
1119
 
1084
1120
  .btn-starlight:hover {
1085
1121
  transform: translateY(-2px);
1086
- box-shadow: 0 5px 25px rgb(0 212 255 / 40%);
1087
1122
  filter: brightness(1.1);
1088
1123
  }
1089
1124
 
1090
1125
  .btn-starlight:active {
1091
1126
  transform: translateY(0) scale(0.95);
1092
- box-shadow: 0 2px 10px rgb(0 212 255 / 20%);
1093
1127
  filter: brightness(0.9);
1094
1128
  }
1095
1129
 
@@ -1,363 +0,0 @@
1
- /*!
2
- * QuantumCSS Responsive Design System
3
- * Advanced responsive utilities with container queries and modern breakpoints
4
- */
5
-
6
- /* Modern Responsive Breakpoints */
7
-
8
- /* Using logical properties and container queries */
9
-
10
- @custom-media --sm (min-width: 640px);
11
- @custom-media --md (min-width: 768px);
12
- @custom-media --lg (min-width: 1024px);
13
- @custom-media --xl (min-width: 1280px);
14
- @custom-media --2xl (min-width: 1536px);
15
-
16
- /* Container Query Support */
17
- @container (min-width: 320px) {
18
- .container\:flex { display: flex; }
19
- .container\:grid { display: grid; }
20
- .container\:hidden { display: none; }
21
- }
22
-
23
- @container (min-width: 640px) {
24
- .container\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
25
- .container\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
26
- .container\:p-6 { padding: var(--q-space-6); }
27
- }
28
-
29
- @container (min-width: 768px) {
30
- .container\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
31
- .container\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
32
- .container\:p-8 { padding: var(--q-space-8); }
33
- }
34
-
35
- @container (min-width: 1024px) {
36
- .container\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
37
- .container\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
38
- }
39
-
40
- /* Standard Responsive Utilities */
41
- @media (--sm) {
42
- .sm\:block { display: block; }
43
- .sm\:inline-block { display: inline-block; }
44
- .sm\:inline { display: inline; }
45
- .sm\:flex { display: flex; }
46
- .sm\:grid { display: grid; }
47
- .sm\:hidden { display: none; }
48
-
49
- .sm\:flex-row { flex-direction: row; }
50
- .sm\:flex-col { flex-direction: column; }
51
-
52
- .sm\:items-start { align-items: flex-start; }
53
- .sm\:items-center { align-items: center; }
54
- .sm\:items-end { align-items: flex-end; }
55
-
56
- .sm\:justify-start { justify-content: flex-start; }
57
- .sm\:justify-center { justify-content: center; }
58
- .sm\:justify-end { justify-content: flex-end; }
59
- .sm\:justify-between { justify-content: space-between; }
60
-
61
- .sm\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
62
- .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
63
- .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
64
-
65
- .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
66
- .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
67
- .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
68
- .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
69
- .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
70
- .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
71
-
72
- .sm\:m-0 { margin: var(--q-space-0); }
73
- .sm\:m-1 { margin: var(--q-space-1); }
74
- .sm\:m-2 { margin: var(--q-space-2); }
75
- .sm\:m-3 { margin: var(--q-space-3); }
76
- .sm\:m-4 { margin: var(--q-space-4); }
77
- .sm\:m-6 { margin: var(--q-space-6); }
78
- .sm\:m-8 { margin: var(--q-space-8); }
79
- .sm\:mx-auto { margin-left: auto; margin-right: auto; }
80
-
81
- .sm\:p-0 { padding: var(--q-space-0); }
82
- .sm\:p-1 { padding: var(--q-space-1); }
83
- .sm\:p-2 { padding: var(--q-space-2); }
84
- .sm\:p-3 { padding: var(--q-space-3); }
85
- .sm\:p-4 { padding: var(--q-space-4); }
86
- .sm\:p-6 { padding: var(--q-space-6); }
87
- .sm\:p-8 { padding: var(--q-space-8); }
88
-
89
- .sm\:w-full { width: 100%; }
90
- .sm\:w-auto { width: auto; }
91
- .sm\:h-full { height: 100%; }
92
- .sm\:h-auto { height: auto; }
93
- }
94
-
95
- @media (--md) {
96
- .md\:block { display: block; }
97
- .md\:inline-block { display: inline-block; }
98
- .md\:inline { display: inline; }
99
- .md\:flex { display: flex; }
100
- .md\:grid { display: grid; }
101
- .md\:hidden { display: none; }
102
-
103
- .md\:flex-row { flex-direction: row; }
104
- .md\:flex-col { flex-direction: column; }
105
-
106
- .md\:items-start { align-items: flex-start; }
107
- .md\:items-center { align-items: center; }
108
- .md\:items-end { align-items: flex-end; }
109
-
110
- .md\:justify-start { justify-content: flex-start; }
111
- .md\:justify-center { justify-content: center; }
112
- .md\:justify-end { justify-content: flex-end; }
113
- .md\:justify-between { justify-content: space-between; }
114
-
115
- .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
116
- .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
117
- .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
118
- .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
119
-
120
- .md\:text-xs { font-size: 0.75rem; line-height: 1rem; }
121
- .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
122
- .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
123
- .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
124
- .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
125
- .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
126
- .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
127
-
128
- .md\:m-0 { margin: var(--q-space-0); }
129
- .md\:m-1 { margin: var(--q-space-1); }
130
- .md\:m-2 { margin: var(--q-space-2); }
131
- .md\:m-3 { margin: var(--q-space-3); }
132
- .md\:m-4 { margin: var(--q-space-4); }
133
- .md\:m-6 { margin: var(--q-space-6); }
134
- .md\:m-8 { margin: var(--q-space-8); }
135
- .md\:m-12 { margin: var(--q-space-12); }
136
- .md\:mx-auto { margin-left: auto; margin-right: auto; }
137
-
138
- .md\:p-0 { padding: var(--q-space-0); }
139
- .md\:p-1 { padding: var(--q-space-1); }
140
- .md\:p-2 { padding: var(--q-space-2); }
141
- .md\:p-3 { padding: var(--q-space-3); }
142
- .md\:p-4 { padding: var(--q-space-4); }
143
- .md\:p-6 { padding: var(--q-space-6); }
144
- .md\:p-8 { padding: var(--q-space-8); }
145
- .md\:p-12 { padding: var(--q-space-12); }
146
-
147
- .md\:w-full { width: 100%; }
148
- .md\:w-auto { width: auto; }
149
- .md\:w-1\/2 { width: 50%; }
150
- .md\:w-1\/3 { width: 33.333333%; }
151
- .md\:w-2\/3 { width: 66.666667%; }
152
- .md\:w-1\/4 { width: 25%; }
153
- .md\:w-3\/4 { width: 75%; }
154
-
155
- .md\:h-full { height: 100%; }
156
- .md\:h-auto { height: auto; }
157
- .md\:h-screen { height: 100vh; }
158
- }
159
-
160
- @media (--lg) {
161
- .lg\:block { display: block; }
162
- .lg\:inline-block { display: inline-block; }
163
- .lg\:inline { display: inline; }
164
- .lg\:flex { display: flex; }
165
- .lg\:grid { display: grid; }
166
- .lg\:hidden { display: none; }
167
-
168
- .lg\:flex-row { flex-direction: row; }
169
- .lg\:flex-col { flex-direction: column; }
170
-
171
- .lg\:items-start { align-items: flex-start; }
172
- .lg\:items-center { align-items: center; }
173
- .lg\:items-end { align-items: flex-end; }
174
- .lg\:items-stretch { align-items: stretch; }
175
-
176
- .lg\:justify-start { justify-content: flex-start; }
177
- .lg\:justify-center { justify-content: center; }
178
- .lg\:justify-end { justify-content: flex-end; }
179
- .lg\:justify-between { justify-content: space-between; }
180
- .lg\:justify-around { justify-content: space-around; }
181
-
182
- .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
183
- .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
184
- .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
185
- .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
186
- .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
187
- .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
188
-
189
- .lg\:text-xs { font-size: 0.75rem; line-height: 1rem; }
190
- .lg\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
191
- .lg\:text-base { font-size: 1rem; line-height: 1.5rem; }
192
- .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
193
- .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
194
- .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
195
- .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
196
- .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
197
-
198
- .lg\:m-0 { margin: var(--q-space-0); }
199
- .lg\:m-1 { margin: var(--q-space-1); }
200
- .lg\:m-2 { margin: var(--q-space-2); }
201
- .lg\:m-3 { margin: var(--q-space-3); }
202
- .lg\:m-4 { margin: var(--q-space-4); }
203
- .lg\:m-6 { margin: var(--q-space-6); }
204
- .lg\:m-8 { margin: var(--q-space-8); }
205
- .lg\:m-12 { margin: var(--q-space-12); }
206
- .lg\:m-16 { margin: var(--q-space-16); }
207
- .lg\:mx-auto { margin-left: auto; margin-right: auto; }
208
-
209
- .lg\:p-0 { padding: var(--q-space-0); }
210
- .lg\:p-1 { padding: var(--q-space-1); }
211
- .lg\:p-2 { padding: var(--q-space-2); }
212
- .lg\:p-3 { padding: var(--q-space-3); }
213
- .lg\:p-4 { padding: var(--q-space-4); }
214
- .lg\:p-6 { padding: var(--q-space-6); }
215
- .lg\:p-8 { padding: var(--q-space-8); }
216
- .lg\:p-12 { padding: var(--q-space-12); }
217
- .lg\:p-16 { padding: var(--q-space-16); }
218
-
219
- .lg\:w-full { width: 100%; }
220
- .lg\:w-auto { width: auto; }
221
- .lg\:w-1\/2 { width: 50%; }
222
- .lg\:w-1\/3 { width: 33.333333%; }
223
- .lg\:w-2\/3 { width: 66.666667%; }
224
- .lg\:w-1\/4 { width: 25%; }
225
- .lg\:w-3\/4 { width: 75%; }
226
- .lg\:w-1\/5 { width: 20%; }
227
- .lg\:w-2\/5 { width: 40%; }
228
- .lg\:w-3\/5 { width: 60%; }
229
- .lg\:w-4\/5 { width: 80%; }
230
-
231
- .lg\:h-full { height: 100%; }
232
- .lg\:h-auto { height: auto; }
233
- .lg\:h-screen { height: 100vh; }
234
- }
235
-
236
- @media (--xl) {
237
- .xl\:block { display: block; }
238
- .xl\:inline-block { display: inline-block; }
239
- .xl\:inline { display: inline; }
240
- .xl\:flex { display: flex; }
241
- .xl\:grid { display: grid; }
242
- .xl\:hidden { display: none; }
243
-
244
- .xl\:flex-row { flex-direction: row; }
245
- .xl\:flex-col { flex-direction: column; }
246
-
247
- .xl\:items-start { align-items: flex-start; }
248
- .xl\:items-center { align-items: center; }
249
- .xl\:items-end { align-items: flex-end; }
250
- .xl\:items-stretch { align-items: stretch; }
251
-
252
- .xl\:justify-start { justify-content: flex-start; }
253
- .xl\:justify-center { justify-content: center; }
254
- .xl\:justify-end { justify-content: flex-end; }
255
- .xl\:justify-between { justify-content: space-between; }
256
- .xl\:justify-around { justify-content: space-around; }
257
- .xl\:justify-evenly { justify-content: space-evenly; }
258
-
259
- .xl\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
260
- .xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
261
- .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
262
- .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
263
- .xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
264
- .xl\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
265
- .xl\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
266
-
267
- .xl\:text-xs { font-size: 0.75rem; line-height: 1rem; }
268
- .xl\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
269
- .xl\:text-base { font-size: 1rem; line-height: 1.5rem; }
270
- .xl\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
271
- .xl\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
272
- .xl\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
273
- .xl\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
274
- .xl\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
275
- .xl\:text-5xl { font-size: 3rem; line-height: 1; }
276
-
277
- .xl\:m-0 { margin: var(--q-space-0); }
278
- .xl\:m-1 { margin: var(--q-space-1); }
279
- .xl\:m-2 { margin: var(--q-space-2); }
280
- .xl\:m-3 { margin: var(--q-space-3); }
281
- .xl\:m-4 { margin: var(--q-space-4); }
282
- .xl\:m-6 { margin: var(--q-space-6); }
283
- .xl\:m-8 { margin: var(--q-space-8); }
284
- .xl\:m-12 { margin: var(--q-space-12); }
285
- .xl\:m-16 { margin: var(--q-space-16); }
286
- .xl\:m-20 { margin: var(--q-space-20); }
287
- .xl\:mx-auto { margin-left: auto; margin-right: auto; }
288
-
289
- .xl\:p-0 { padding: var(--q-space-0); }
290
- .xl\:p-1 { padding: var(--q-space-1); }
291
- .xl\:p-2 { padding: var(--q-space-2); }
292
- .xl\:p-3 { padding: var(--q-space-3); }
293
- .xl\:p-4 { padding: var(--q-space-4); }
294
- .xl\:p-6 { padding: var(--q-space-6); }
295
- .xl\:p-8 { padding: var(--q-space-8); }
296
- .xl\:p-12 { padding: var(--q-space-12); }
297
- .xl\:p-16 { padding: var(--q-space-16); }
298
- .xl\:p-20 { padding: var(--q-space-20); }
299
-
300
- .xl\:w-full { width: 100%; }
301
- .xl\:w-auto { width: auto; }
302
- .xl\:w-1\/2 { width: 50%; }
303
- .xl\:w-1\/3 { width: 33.333333%; }
304
- .xl\:w-2\/3 { width: 66.666667%; }
305
- .xl\:w-1\/4 { width: 25%; }
306
- .xl\:w-3\/4 { width: 75%; }
307
- .xl\:w-1\/5 { width: 20%; }
308
- .xl\:w-2\/5 { width: 40%; }
309
- .xl\:w-3\/5 { width: 60%; }
310
- .xl\:w-4\/5 { width: 80%; }
311
-
312
- .xl\:h-full { height: 100%; }
313
- .xl\:h-auto { height: auto; }
314
- .xl\:h-screen { height: 100vh; }
315
- }
316
-
317
- /* Landscape/Portrait Orientation Utilities */
318
- @media (orientation: landscape) {
319
- .landscape\:flex-row { flex-direction: row; }
320
- .landscape\:hidden { display: none; }
321
- }
322
-
323
- @media (orientation: portrait) {
324
- .portrait\:flex-col { flex-direction: column; }
325
- .portrait\:hidden { display: none; }
326
- }
327
-
328
- /* High DPI Display Utilities */
329
- @media (min-resolution: 2dppx), (min-resolution: 192dpi) {
330
- .retina\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
331
- .retina\:border { border-width: 0.5px; }
332
- }
333
-
334
- /* Reduced Motion Support */
335
- @media (prefers-reduced-motion: reduce) {
336
- .motion-reduce\:transition-none {
337
- transition-property: none;
338
- }
339
- }
340
-
341
- /* Dark Mode Utilities */
342
- @media (prefers-color-scheme: dark) {
343
- .dark\:text-white { color: #fff; }
344
- .dark\:text-gray-200 { color: #e5e7eb; }
345
- .dark\:text-gray-300 { color: #d1d5db; }
346
- .dark\:bg-gray-900 { background-color: #111827; }
347
- .dark\:bg-gray-800 { background-color: #1f2937; }
348
- .dark\:bg-gray-700 { background-color: #374151; }
349
- .dark\:border-gray-700 { border-color: #374151; }
350
- .dark\:border-gray-600 { border-color: #4b5563; }
351
- }
352
-
353
- /* Light Mode Utilities */
354
- @media (prefers-color-scheme: light) {
355
- .light\:text-black { color: #000; }
356
- .light\:text-gray-800 { color: #1f2937; }
357
- .light\:text-gray-700 { color: #374151; }
358
- .light\:bg-white { background-color: #fff; }
359
- .light\:bg-gray-50 { background-color: #f9fafb; }
360
- .light\:bg-gray-100 { background-color: #f3f4f6; }
361
- .light\:border-gray-300 { border-color: #d1d5db; }
362
- .light\:border-gray-200 { border-color: #e5e7eb; }
363
- }