@howssatoshi/quantumcss 1.7.3 → 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 {
@@ -217,10 +229,10 @@ html[data-theme="light"] .starlight-dialog::-webkit-scrollbar-track {
217
229
  }
218
230
 
219
231
  html[data-theme="light"] .starlight-dialog {
220
- background-color: rgb(255 255 255 / 98%);
221
- 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);
222
234
  color: #1e293b;
223
- box-shadow: 0 25px 50px -12px rgb(0 0 0 / 15%);
235
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
224
236
  }
225
237
 
226
238
  .dialog-close {
@@ -341,14 +353,11 @@ html[data-theme="light"] .dropdown-item:hover {
341
353
 
342
354
  /* 7. Input & Glass Fixes */
343
355
  .input-starlight, .textarea-starlight {
344
- height: auto;
345
- padding: 0.75rem 1rem;
346
356
  background-color: rgb(255 255 255 / 4%);
347
357
  border: 1px solid rgb(255 255 255 / 15%);
348
358
  border-radius: 0.75rem;
349
359
  color: inherit;
350
360
  width: 100%;
351
- line-height: normal;
352
361
  }
353
362
 
354
363
  textarea.input-starlight, .textarea-starlight {
@@ -367,21 +376,6 @@ html[data-theme="light"] .glass {
367
376
  border-color: rgba(0, 0, 0, 0.1);
368
377
  }
369
378
 
370
- /* 8. Input Focus States */
371
- .input-starlight:focus, .textarea-starlight:focus {
372
- outline: none;
373
- border-color: var(--q-color-starlight-blue);
374
- box-shadow: 0 0 0 4px rgb(0 212 255 / 10%), 0 0 20px rgb(0 212 255 / 10%);
375
- background-color: rgb(255 255 255 / 6%);
376
- }
377
-
378
- html[data-theme="light"] .input-starlight:focus,
379
- html[data-theme="light"] .textarea-starlight:focus {
380
- border-color: var(--q-color-starlight-blue);
381
- box-shadow: 0 0 0 4px rgb(0 212 255 / 10%), 0 4px 12px rgb(0 0 0 / 5%);
382
- background-color: #fff;
383
- }
384
-
385
379
  /* 9. Code Interface Window */
386
380
  .code-window {
387
381
  background: rgb(0 0 0 / 40%);
@@ -635,7 +629,7 @@ html[data-theme="light"] .stat-value {
635
629
 
636
630
  /* 9. Glass Navigation */
637
631
  .nav-glass {
638
- background: rgba(255, 255, 255, 0.08);
632
+ background: rgba(255, 255, 255, 0.15);
639
633
  backdrop-filter: blur(16px);
640
634
  -webkit-backdrop-filter: blur(16px);
641
635
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
@@ -648,6 +642,14 @@ html[data-theme="light"] .stat-value {
648
642
  padding: 0;
649
643
  }
650
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
+
651
653
  html[data-theme="light"] .nav-glass {
652
654
  background: rgb(255 255 255 / 95%);
653
655
  backdrop-filter: blur(16px);
@@ -736,12 +738,11 @@ html[data-theme="light"] .nav-link:hover {
736
738
  align-items: center;
737
739
  gap: 0.4rem;
738
740
  cursor: pointer;
739
- background: rgb(255 255 255 / 5%);
740
- 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);
741
743
  border-radius: 0.5rem;
742
744
  padding: 0.5rem;
743
745
  transition: all 0.3s;
744
- position: relative;
745
746
  }
746
747
 
747
748
  html[data-theme="light"] .hamburger {
@@ -777,23 +778,30 @@ html[data-theme="light"] .hamburger span {
777
778
  }
778
779
 
779
780
  .nav-menu-mobile {
780
- width: 100%;
781
- background: rgb(255 255 255 / 5%);
782
- backdrop-filter: blur(10px);
783
- -webkit-backdrop-filter: blur(10px);
784
- border-top: 1px solid rgb(255 255 255 / 5%);
785
- 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;
786
791
  max-height: 0;
787
792
  overflow: hidden;
788
793
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
789
794
  opacity: 0;
795
+ pointer-events: none;
790
796
  }
791
797
 
792
798
  .nav-menu-mobile.active {
793
- display: block;
794
- max-height: 500px;
799
+ display: flex;
800
+ flex-direction: column;
801
+ max-height: 100vh;
795
802
  padding: 1.5rem 2rem;
796
803
  opacity: 1;
804
+ pointer-events: auto;
797
805
  }
798
806
 
799
807
  html[data-theme="light"] .nav-menu-mobile {
@@ -864,6 +872,23 @@ html[data-theme="light"] .nav-menu-mobile {
864
872
  justify-content: flex-start;
865
873
  }
866
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
+
867
892
  html[data-theme="light"] .starlight-nav.vertical {
868
893
  background: rgb(255 255 255 / 98%);
869
894
  border-right-color: rgb(0 0 0 / 8%);
@@ -899,7 +924,7 @@ html[data-theme="light"] .range-starlight {
899
924
  background: rgb(0 0 0 / 10%);
900
925
  }
901
926
 
902
- .range-starlight::-webkit-slider-thumb {
927
+ .range-starlight:-webkit-slider-thumb {
903
928
  appearance: none;
904
929
  width: 18px;
905
930
  height: 18px;
@@ -910,7 +935,7 @@ html[data-theme="light"] .range-starlight {
910
935
  transition: all 0.2s;
911
936
  }
912
937
 
913
- .range-starlight::-webkit-slider-thumb:hover {
938
+ .range-starlight:-webkit-slider-thumb:hover {
914
939
  transform: scale(1.2);
915
940
  box-shadow: 0 0 20px var(--q-color-starlight-blue);
916
941
  }
@@ -961,7 +986,7 @@ html[data-theme="light"] .text-gradient-starlight {
961
986
  html[data-theme="light"] .text-success { color: #059669; }
962
987
  html[data-theme="light"] .text-warning { color: #d97706; }
963
988
 
964
- html[data-theme="light"] .dialog-content .bg-black\/40 {
989
+ html[data-theme="light"] .dialog-content .bg-black_40 {
965
990
  background-color: rgb(0 0 0 / 5%);
966
991
  border-color: rgb(0 0 0 / 10%);
967
992
  }
@@ -1083,8 +1108,6 @@ html[data-theme="light"] * {
1083
1108
  font-weight: 700;
1084
1109
  border: none;
1085
1110
  border-radius: 0.5rem;
1086
- padding: 0 1.5rem;
1087
- height: 3rem;
1088
1111
  display: inline-flex;
1089
1112
  align-items: center;
1090
1113
  justify-content: center;
@@ -1096,13 +1119,11 @@ html[data-theme="light"] * {
1096
1119
 
1097
1120
  .btn-starlight:hover {
1098
1121
  transform: translateY(-2px);
1099
- box-shadow: 0 5px 25px rgb(0 212 255 / 40%);
1100
1122
  filter: brightness(1.1);
1101
1123
  }
1102
1124
 
1103
1125
  .btn-starlight:active {
1104
1126
  transform: translateY(0) scale(0.95);
1105
- box-shadow: 0 2px 10px rgb(0 212 255 / 20%);
1106
1127
  filter: brightness(0.9);
1107
1128
  }
1108
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
- }