@swizzyweb/swizzy-frontend-template-web-service 0.2.0 → 0.2.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/LICENSE +202 -0
- package/bundle/css/styles.css +736 -0
- package/bundle/index.html +15 -0
- package/bundle/js/bundle.js +216 -0
- package/dist/routers/ApiRouter/api-router.js.map +1 -1
- package/dist/routers/ApiRouter/controllers/funny-joke-controller.js.map +1 -1
- package/dist/routers/PageRouter/page-router.js +1 -2
- package/dist/routers/PageRouter/page-router.js.map +1 -1
- package/eslint.config.js +23 -0
- package/package.json +14 -7
- package/react/FunnyJokeTeller.tsx +1 -1
- package/src/routers/ApiRouter/api-router.ts +0 -3
- package/src/routers/ApiRouter/controllers/funny-joke-controller.ts +1 -3
- package/src/routers/PageRouter/page-router.ts +1 -2
|
@@ -0,0 +1,736 @@
|
|
|
1
|
+
/*!*************************************************************************************************************!*\
|
|
2
|
+
!*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./react/index.css ***!
|
|
3
|
+
\*************************************************************************************************************/
|
|
4
|
+
/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
|
|
5
|
+
@layer properties;
|
|
6
|
+
@layer theme, base, components, utilities;
|
|
7
|
+
@layer theme {
|
|
8
|
+
:root, :host {
|
|
9
|
+
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
10
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
11
|
+
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
12
|
+
"Courier New", monospace;
|
|
13
|
+
--color-blue-200: oklch(88.2% 0.059 254.128);
|
|
14
|
+
--color-blue-500: oklch(62.3% 0.214 259.815);
|
|
15
|
+
--color-blue-600: oklch(54.6% 0.245 262.881);
|
|
16
|
+
--color-purple-500: oklch(62.7% 0.265 303.9);
|
|
17
|
+
--color-purple-600: oklch(55.8% 0.288 302.321);
|
|
18
|
+
--color-purple-700: oklch(49.6% 0.265 301.924);
|
|
19
|
+
--color-gray-100: oklch(96.7% 0.003 264.542);
|
|
20
|
+
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
21
|
+
--color-gray-400: oklch(70.7% 0.022 261.325);
|
|
22
|
+
--color-gray-500: oklch(55.1% 0.027 264.364);
|
|
23
|
+
--color-gray-600: oklch(44.6% 0.03 256.802);
|
|
24
|
+
--color-gray-700: oklch(37.3% 0.034 259.733);
|
|
25
|
+
--color-gray-800: oklch(27.8% 0.033 256.848);
|
|
26
|
+
--color-white: #fff;
|
|
27
|
+
--spacing: 0.25rem;
|
|
28
|
+
--text-lg: 1.125rem;
|
|
29
|
+
--text-lg--line-height: calc(1.75 / 1.125);
|
|
30
|
+
--text-2xl: 1.5rem;
|
|
31
|
+
--text-2xl--line-height: calc(2 / 1.5);
|
|
32
|
+
--text-3xl: 1.875rem;
|
|
33
|
+
--text-3xl--line-height: calc(2.25 / 1.875);
|
|
34
|
+
--text-4xl: 2.25rem;
|
|
35
|
+
--text-4xl--line-height: calc(2.5 / 2.25);
|
|
36
|
+
--font-weight-medium: 500;
|
|
37
|
+
--font-weight-semibold: 600;
|
|
38
|
+
--font-weight-bold: 700;
|
|
39
|
+
--font-weight-extrabold: 800;
|
|
40
|
+
--tracking-tight: -0.025em;
|
|
41
|
+
--leading-relaxed: 1.625;
|
|
42
|
+
--radius-lg: 0.5rem;
|
|
43
|
+
--radius-xl: 0.75rem;
|
|
44
|
+
--default-transition-duration: 150ms;
|
|
45
|
+
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
46
|
+
--default-font-family: var(--font-sans);
|
|
47
|
+
--default-mono-font-family: var(--font-mono);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
@layer base {
|
|
51
|
+
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
52
|
+
box-sizing: border-box;
|
|
53
|
+
margin: 0;
|
|
54
|
+
padding: 0;
|
|
55
|
+
border: 0 solid;
|
|
56
|
+
}
|
|
57
|
+
html, :host {
|
|
58
|
+
line-height: 1.5;
|
|
59
|
+
-webkit-text-size-adjust: 100%;
|
|
60
|
+
-moz-tab-size: 4;
|
|
61
|
+
-o-tab-size: 4;
|
|
62
|
+
tab-size: 4;
|
|
63
|
+
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
64
|
+
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
65
|
+
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
66
|
+
-webkit-tap-highlight-color: transparent;
|
|
67
|
+
}
|
|
68
|
+
hr {
|
|
69
|
+
height: 0;
|
|
70
|
+
color: inherit;
|
|
71
|
+
border-top-width: 1px;
|
|
72
|
+
}
|
|
73
|
+
abbr:where([title]) {
|
|
74
|
+
-webkit-text-decoration: underline dotted;
|
|
75
|
+
text-decoration: underline dotted;
|
|
76
|
+
}
|
|
77
|
+
h1, h2, h3, h4, h5, h6 {
|
|
78
|
+
font-size: inherit;
|
|
79
|
+
font-weight: inherit;
|
|
80
|
+
}
|
|
81
|
+
a {
|
|
82
|
+
color: inherit;
|
|
83
|
+
-webkit-text-decoration: inherit;
|
|
84
|
+
text-decoration: inherit;
|
|
85
|
+
}
|
|
86
|
+
b, strong {
|
|
87
|
+
font-weight: bolder;
|
|
88
|
+
}
|
|
89
|
+
code, kbd, samp, pre {
|
|
90
|
+
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
91
|
+
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
92
|
+
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
93
|
+
font-size: 1em;
|
|
94
|
+
}
|
|
95
|
+
small {
|
|
96
|
+
font-size: 80%;
|
|
97
|
+
}
|
|
98
|
+
sub, sup {
|
|
99
|
+
font-size: 75%;
|
|
100
|
+
line-height: 0;
|
|
101
|
+
position: relative;
|
|
102
|
+
vertical-align: baseline;
|
|
103
|
+
}
|
|
104
|
+
sub {
|
|
105
|
+
bottom: -0.25em;
|
|
106
|
+
}
|
|
107
|
+
sup {
|
|
108
|
+
top: -0.5em;
|
|
109
|
+
}
|
|
110
|
+
table {
|
|
111
|
+
text-indent: 0;
|
|
112
|
+
border-color: inherit;
|
|
113
|
+
border-collapse: collapse;
|
|
114
|
+
}
|
|
115
|
+
:-moz-focusring {
|
|
116
|
+
outline: auto;
|
|
117
|
+
}
|
|
118
|
+
progress {
|
|
119
|
+
vertical-align: baseline;
|
|
120
|
+
}
|
|
121
|
+
summary {
|
|
122
|
+
display: list-item;
|
|
123
|
+
}
|
|
124
|
+
ol, ul, menu {
|
|
125
|
+
list-style: none;
|
|
126
|
+
}
|
|
127
|
+
img, svg, video, canvas, audio, iframe, embed, object {
|
|
128
|
+
display: block;
|
|
129
|
+
vertical-align: middle;
|
|
130
|
+
}
|
|
131
|
+
img, video {
|
|
132
|
+
max-width: 100%;
|
|
133
|
+
height: auto;
|
|
134
|
+
}
|
|
135
|
+
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
136
|
+
font: inherit;
|
|
137
|
+
font-feature-settings: inherit;
|
|
138
|
+
font-variation-settings: inherit;
|
|
139
|
+
letter-spacing: inherit;
|
|
140
|
+
color: inherit;
|
|
141
|
+
border-radius: 0;
|
|
142
|
+
background-color: transparent;
|
|
143
|
+
opacity: 1;
|
|
144
|
+
}
|
|
145
|
+
:where(select:is([multiple], [size])) optgroup {
|
|
146
|
+
font-weight: bolder;
|
|
147
|
+
}
|
|
148
|
+
:where(select:is([multiple], [size])) optgroup option {
|
|
149
|
+
padding-inline-start: 20px;
|
|
150
|
+
}
|
|
151
|
+
::file-selector-button {
|
|
152
|
+
margin-inline-end: 4px;
|
|
153
|
+
}
|
|
154
|
+
::-moz-placeholder {
|
|
155
|
+
opacity: 1;
|
|
156
|
+
}
|
|
157
|
+
::placeholder {
|
|
158
|
+
opacity: 1;
|
|
159
|
+
}
|
|
160
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
161
|
+
::-moz-placeholder {
|
|
162
|
+
color: currentcolor;
|
|
163
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
164
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
::placeholder {
|
|
168
|
+
color: currentcolor;
|
|
169
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
170
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
textarea {
|
|
175
|
+
resize: vertical;
|
|
176
|
+
}
|
|
177
|
+
::-webkit-search-decoration {
|
|
178
|
+
-webkit-appearance: none;
|
|
179
|
+
}
|
|
180
|
+
::-webkit-date-and-time-value {
|
|
181
|
+
min-height: 1lh;
|
|
182
|
+
text-align: inherit;
|
|
183
|
+
}
|
|
184
|
+
::-webkit-datetime-edit {
|
|
185
|
+
display: inline-flex;
|
|
186
|
+
}
|
|
187
|
+
::-webkit-datetime-edit-fields-wrapper {
|
|
188
|
+
padding: 0;
|
|
189
|
+
}
|
|
190
|
+
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
191
|
+
padding-block: 0;
|
|
192
|
+
}
|
|
193
|
+
::-webkit-calendar-picker-indicator {
|
|
194
|
+
line-height: 1;
|
|
195
|
+
}
|
|
196
|
+
:-moz-ui-invalid {
|
|
197
|
+
box-shadow: none;
|
|
198
|
+
}
|
|
199
|
+
button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
|
|
200
|
+
-webkit-appearance: button;
|
|
201
|
+
-moz-appearance: button;
|
|
202
|
+
appearance: button;
|
|
203
|
+
}
|
|
204
|
+
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
205
|
+
height: auto;
|
|
206
|
+
}
|
|
207
|
+
[hidden]:where(:not([hidden="until-found"])) {
|
|
208
|
+
display: none !important;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
@layer utilities {
|
|
212
|
+
.absolute {
|
|
213
|
+
position: absolute;
|
|
214
|
+
}
|
|
215
|
+
.static {
|
|
216
|
+
position: static;
|
|
217
|
+
}
|
|
218
|
+
.container {
|
|
219
|
+
width: 100%;
|
|
220
|
+
@media (width >= 40rem) {
|
|
221
|
+
max-width: 40rem;
|
|
222
|
+
}
|
|
223
|
+
@media (width >= 48rem) {
|
|
224
|
+
max-width: 48rem;
|
|
225
|
+
}
|
|
226
|
+
@media (width >= 64rem) {
|
|
227
|
+
max-width: 64rem;
|
|
228
|
+
}
|
|
229
|
+
@media (width >= 80rem) {
|
|
230
|
+
max-width: 80rem;
|
|
231
|
+
}
|
|
232
|
+
@media (width >= 96rem) {
|
|
233
|
+
max-width: 96rem;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
.mx-auto {
|
|
237
|
+
margin-inline: auto;
|
|
238
|
+
}
|
|
239
|
+
.mt-2 {
|
|
240
|
+
margin-top: calc(var(--spacing) * 2);
|
|
241
|
+
}
|
|
242
|
+
.mt-3 {
|
|
243
|
+
margin-top: calc(var(--spacing) * 3);
|
|
244
|
+
}
|
|
245
|
+
.mt-5 {
|
|
246
|
+
margin-top: calc(var(--spacing) * 5);
|
|
247
|
+
}
|
|
248
|
+
.mt-6 {
|
|
249
|
+
margin-top: calc(var(--spacing) * 6);
|
|
250
|
+
}
|
|
251
|
+
.mt-8 {
|
|
252
|
+
margin-top: calc(var(--spacing) * 8);
|
|
253
|
+
}
|
|
254
|
+
.mb-3 {
|
|
255
|
+
margin-bottom: calc(var(--spacing) * 3);
|
|
256
|
+
}
|
|
257
|
+
.mb-4 {
|
|
258
|
+
margin-bottom: calc(var(--spacing) * 4);
|
|
259
|
+
}
|
|
260
|
+
.mb-5 {
|
|
261
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
262
|
+
}
|
|
263
|
+
.mb-8 {
|
|
264
|
+
margin-bottom: calc(var(--spacing) * 8);
|
|
265
|
+
}
|
|
266
|
+
.contents {
|
|
267
|
+
display: contents;
|
|
268
|
+
}
|
|
269
|
+
.flex {
|
|
270
|
+
display: flex;
|
|
271
|
+
}
|
|
272
|
+
.grid {
|
|
273
|
+
display: grid;
|
|
274
|
+
}
|
|
275
|
+
.min-h-screen {
|
|
276
|
+
min-height: 100vh;
|
|
277
|
+
}
|
|
278
|
+
.flex-grow {
|
|
279
|
+
flex-grow: 1;
|
|
280
|
+
}
|
|
281
|
+
.transform {
|
|
282
|
+
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
283
|
+
}
|
|
284
|
+
.grid-cols-1 {
|
|
285
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
286
|
+
}
|
|
287
|
+
.flex-col {
|
|
288
|
+
flex-direction: column;
|
|
289
|
+
}
|
|
290
|
+
.items-center {
|
|
291
|
+
align-items: center;
|
|
292
|
+
}
|
|
293
|
+
.justify-between {
|
|
294
|
+
justify-content: space-between;
|
|
295
|
+
}
|
|
296
|
+
.justify-center {
|
|
297
|
+
justify-content: center;
|
|
298
|
+
}
|
|
299
|
+
.gap-8 {
|
|
300
|
+
gap: calc(var(--spacing) * 8);
|
|
301
|
+
}
|
|
302
|
+
.space-x-4 {
|
|
303
|
+
:where(& > :not(:last-child)) {
|
|
304
|
+
--tw-space-x-reverse: 0;
|
|
305
|
+
margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
|
|
306
|
+
margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
.space-x-6 {
|
|
310
|
+
:where(& > :not(:last-child)) {
|
|
311
|
+
--tw-space-x-reverse: 0;
|
|
312
|
+
margin-inline-start: calc(calc(var(--spacing) * 6) * var(--tw-space-x-reverse));
|
|
313
|
+
margin-inline-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-x-reverse)));
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
.rounded-lg {
|
|
317
|
+
border-radius: var(--radius-lg);
|
|
318
|
+
}
|
|
319
|
+
.rounded-xl {
|
|
320
|
+
border-radius: var(--radius-xl);
|
|
321
|
+
}
|
|
322
|
+
.rounded-t-xl {
|
|
323
|
+
border-top-left-radius: var(--radius-xl);
|
|
324
|
+
border-top-right-radius: var(--radius-xl);
|
|
325
|
+
}
|
|
326
|
+
.rounded-b-xl {
|
|
327
|
+
border-bottom-right-radius: var(--radius-xl);
|
|
328
|
+
border-bottom-left-radius: var(--radius-xl);
|
|
329
|
+
}
|
|
330
|
+
.border {
|
|
331
|
+
border-style: var(--tw-border-style);
|
|
332
|
+
border-width: 1px;
|
|
333
|
+
}
|
|
334
|
+
.border-gray-200 {
|
|
335
|
+
border-color: var(--color-gray-200);
|
|
336
|
+
}
|
|
337
|
+
.bg-blue-500 {
|
|
338
|
+
background-color: var(--color-blue-500);
|
|
339
|
+
}
|
|
340
|
+
.bg-gray-100 {
|
|
341
|
+
background-color: var(--color-gray-100);
|
|
342
|
+
}
|
|
343
|
+
.bg-gray-800 {
|
|
344
|
+
background-color: var(--color-gray-800);
|
|
345
|
+
}
|
|
346
|
+
.bg-purple-500 {
|
|
347
|
+
background-color: var(--color-purple-500);
|
|
348
|
+
}
|
|
349
|
+
.bg-white {
|
|
350
|
+
background-color: var(--color-white);
|
|
351
|
+
}
|
|
352
|
+
.bg-gradient-to-r {
|
|
353
|
+
--tw-gradient-position: to right in oklab;
|
|
354
|
+
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
355
|
+
}
|
|
356
|
+
.from-blue-600 {
|
|
357
|
+
--tw-gradient-from: var(--color-blue-600);
|
|
358
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
359
|
+
}
|
|
360
|
+
.to-purple-700 {
|
|
361
|
+
--tw-gradient-to: var(--color-purple-700);
|
|
362
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
363
|
+
}
|
|
364
|
+
.p-6 {
|
|
365
|
+
padding: calc(var(--spacing) * 6);
|
|
366
|
+
}
|
|
367
|
+
.p-8 {
|
|
368
|
+
padding: calc(var(--spacing) * 8);
|
|
369
|
+
}
|
|
370
|
+
.px-6 {
|
|
371
|
+
padding-inline: calc(var(--spacing) * 6);
|
|
372
|
+
}
|
|
373
|
+
.py-3 {
|
|
374
|
+
padding-block: calc(var(--spacing) * 3);
|
|
375
|
+
}
|
|
376
|
+
.py-12 {
|
|
377
|
+
padding-block: calc(var(--spacing) * 12);
|
|
378
|
+
}
|
|
379
|
+
.text-center {
|
|
380
|
+
text-align: center;
|
|
381
|
+
}
|
|
382
|
+
.font-sans {
|
|
383
|
+
font-family: var(--font-sans);
|
|
384
|
+
}
|
|
385
|
+
.text-2xl {
|
|
386
|
+
font-size: var(--text-2xl);
|
|
387
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
388
|
+
}
|
|
389
|
+
.text-3xl {
|
|
390
|
+
font-size: var(--text-3xl);
|
|
391
|
+
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
392
|
+
}
|
|
393
|
+
.text-4xl {
|
|
394
|
+
font-size: var(--text-4xl);
|
|
395
|
+
line-height: var(--tw-leading, var(--text-4xl--line-height));
|
|
396
|
+
}
|
|
397
|
+
.text-lg {
|
|
398
|
+
font-size: var(--text-lg);
|
|
399
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
400
|
+
}
|
|
401
|
+
.leading-relaxed {
|
|
402
|
+
--tw-leading: var(--leading-relaxed);
|
|
403
|
+
line-height: var(--leading-relaxed);
|
|
404
|
+
}
|
|
405
|
+
.font-bold {
|
|
406
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
407
|
+
font-weight: var(--font-weight-bold);
|
|
408
|
+
}
|
|
409
|
+
.font-extrabold {
|
|
410
|
+
--tw-font-weight: var(--font-weight-extrabold);
|
|
411
|
+
font-weight: var(--font-weight-extrabold);
|
|
412
|
+
}
|
|
413
|
+
.font-medium {
|
|
414
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
415
|
+
font-weight: var(--font-weight-medium);
|
|
416
|
+
}
|
|
417
|
+
.font-semibold {
|
|
418
|
+
--tw-font-weight: var(--font-weight-semibold);
|
|
419
|
+
font-weight: var(--font-weight-semibold);
|
|
420
|
+
}
|
|
421
|
+
.tracking-tight {
|
|
422
|
+
--tw-tracking: var(--tracking-tight);
|
|
423
|
+
letter-spacing: var(--tracking-tight);
|
|
424
|
+
}
|
|
425
|
+
.text-gray-400 {
|
|
426
|
+
color: var(--color-gray-400);
|
|
427
|
+
}
|
|
428
|
+
.text-gray-500 {
|
|
429
|
+
color: var(--color-gray-500);
|
|
430
|
+
}
|
|
431
|
+
.text-gray-600 {
|
|
432
|
+
color: var(--color-gray-600);
|
|
433
|
+
}
|
|
434
|
+
.text-gray-700 {
|
|
435
|
+
color: var(--color-gray-700);
|
|
436
|
+
}
|
|
437
|
+
.text-gray-800 {
|
|
438
|
+
color: var(--color-gray-800);
|
|
439
|
+
}
|
|
440
|
+
.text-white {
|
|
441
|
+
color: var(--color-white);
|
|
442
|
+
}
|
|
443
|
+
.antialiased {
|
|
444
|
+
-webkit-font-smoothing: antialiased;
|
|
445
|
+
-moz-osx-font-smoothing: grayscale;
|
|
446
|
+
}
|
|
447
|
+
.shadow-inner {
|
|
448
|
+
--tw-shadow: inset 0 2px 4px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
449
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
450
|
+
}
|
|
451
|
+
.shadow-lg {
|
|
452
|
+
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
453
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
454
|
+
}
|
|
455
|
+
.shadow-md {
|
|
456
|
+
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
457
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
458
|
+
}
|
|
459
|
+
.transition {
|
|
460
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
461
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
462
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
463
|
+
}
|
|
464
|
+
.duration-300 {
|
|
465
|
+
--tw-duration: 300ms;
|
|
466
|
+
transition-duration: 300ms;
|
|
467
|
+
}
|
|
468
|
+
.hover\:scale-105 {
|
|
469
|
+
&:hover {
|
|
470
|
+
@media (hover: hover) {
|
|
471
|
+
--tw-scale-x: 105%;
|
|
472
|
+
--tw-scale-y: 105%;
|
|
473
|
+
--tw-scale-z: 105%;
|
|
474
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
.hover\:bg-blue-600 {
|
|
479
|
+
&:hover {
|
|
480
|
+
@media (hover: hover) {
|
|
481
|
+
background-color: var(--color-blue-600);
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
.hover\:bg-purple-600 {
|
|
486
|
+
&:hover {
|
|
487
|
+
@media (hover: hover) {
|
|
488
|
+
background-color: var(--color-purple-600);
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
.hover\:text-blue-200 {
|
|
493
|
+
&:hover {
|
|
494
|
+
@media (hover: hover) {
|
|
495
|
+
color: var(--color-blue-200);
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
.hover\:text-white {
|
|
500
|
+
&:hover {
|
|
501
|
+
@media (hover: hover) {
|
|
502
|
+
color: var(--color-white);
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
.hover\:shadow-xl {
|
|
507
|
+
&:hover {
|
|
508
|
+
@media (hover: hover) {
|
|
509
|
+
--tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
510
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
.md\:grid-cols-2 {
|
|
515
|
+
@media (width >= 48rem) {
|
|
516
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
.lg\:grid-cols-3 {
|
|
520
|
+
@media (width >= 64rem) {
|
|
521
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
@property --tw-rotate-x {
|
|
526
|
+
syntax: "*";
|
|
527
|
+
inherits: false;
|
|
528
|
+
}
|
|
529
|
+
@property --tw-rotate-y {
|
|
530
|
+
syntax: "*";
|
|
531
|
+
inherits: false;
|
|
532
|
+
}
|
|
533
|
+
@property --tw-rotate-z {
|
|
534
|
+
syntax: "*";
|
|
535
|
+
inherits: false;
|
|
536
|
+
}
|
|
537
|
+
@property --tw-skew-x {
|
|
538
|
+
syntax: "*";
|
|
539
|
+
inherits: false;
|
|
540
|
+
}
|
|
541
|
+
@property --tw-skew-y {
|
|
542
|
+
syntax: "*";
|
|
543
|
+
inherits: false;
|
|
544
|
+
}
|
|
545
|
+
@property --tw-space-x-reverse {
|
|
546
|
+
syntax: "*";
|
|
547
|
+
inherits: false;
|
|
548
|
+
initial-value: 0;
|
|
549
|
+
}
|
|
550
|
+
@property --tw-border-style {
|
|
551
|
+
syntax: "*";
|
|
552
|
+
inherits: false;
|
|
553
|
+
initial-value: solid;
|
|
554
|
+
}
|
|
555
|
+
@property --tw-gradient-position {
|
|
556
|
+
syntax: "*";
|
|
557
|
+
inherits: false;
|
|
558
|
+
}
|
|
559
|
+
@property --tw-gradient-from {
|
|
560
|
+
syntax: "<color>";
|
|
561
|
+
inherits: false;
|
|
562
|
+
initial-value: #0000;
|
|
563
|
+
}
|
|
564
|
+
@property --tw-gradient-via {
|
|
565
|
+
syntax: "<color>";
|
|
566
|
+
inherits: false;
|
|
567
|
+
initial-value: #0000;
|
|
568
|
+
}
|
|
569
|
+
@property --tw-gradient-to {
|
|
570
|
+
syntax: "<color>";
|
|
571
|
+
inherits: false;
|
|
572
|
+
initial-value: #0000;
|
|
573
|
+
}
|
|
574
|
+
@property --tw-gradient-stops {
|
|
575
|
+
syntax: "*";
|
|
576
|
+
inherits: false;
|
|
577
|
+
}
|
|
578
|
+
@property --tw-gradient-via-stops {
|
|
579
|
+
syntax: "*";
|
|
580
|
+
inherits: false;
|
|
581
|
+
}
|
|
582
|
+
@property --tw-gradient-from-position {
|
|
583
|
+
syntax: "<length-percentage>";
|
|
584
|
+
inherits: false;
|
|
585
|
+
initial-value: 0%;
|
|
586
|
+
}
|
|
587
|
+
@property --tw-gradient-via-position {
|
|
588
|
+
syntax: "<length-percentage>";
|
|
589
|
+
inherits: false;
|
|
590
|
+
initial-value: 50%;
|
|
591
|
+
}
|
|
592
|
+
@property --tw-gradient-to-position {
|
|
593
|
+
syntax: "<length-percentage>";
|
|
594
|
+
inherits: false;
|
|
595
|
+
initial-value: 100%;
|
|
596
|
+
}
|
|
597
|
+
@property --tw-leading {
|
|
598
|
+
syntax: "*";
|
|
599
|
+
inherits: false;
|
|
600
|
+
}
|
|
601
|
+
@property --tw-font-weight {
|
|
602
|
+
syntax: "*";
|
|
603
|
+
inherits: false;
|
|
604
|
+
}
|
|
605
|
+
@property --tw-tracking {
|
|
606
|
+
syntax: "*";
|
|
607
|
+
inherits: false;
|
|
608
|
+
}
|
|
609
|
+
@property --tw-shadow {
|
|
610
|
+
syntax: "*";
|
|
611
|
+
inherits: false;
|
|
612
|
+
initial-value: 0 0 #0000;
|
|
613
|
+
}
|
|
614
|
+
@property --tw-shadow-color {
|
|
615
|
+
syntax: "*";
|
|
616
|
+
inherits: false;
|
|
617
|
+
}
|
|
618
|
+
@property --tw-shadow-alpha {
|
|
619
|
+
syntax: "<percentage>";
|
|
620
|
+
inherits: false;
|
|
621
|
+
initial-value: 100%;
|
|
622
|
+
}
|
|
623
|
+
@property --tw-inset-shadow {
|
|
624
|
+
syntax: "*";
|
|
625
|
+
inherits: false;
|
|
626
|
+
initial-value: 0 0 #0000;
|
|
627
|
+
}
|
|
628
|
+
@property --tw-inset-shadow-color {
|
|
629
|
+
syntax: "*";
|
|
630
|
+
inherits: false;
|
|
631
|
+
}
|
|
632
|
+
@property --tw-inset-shadow-alpha {
|
|
633
|
+
syntax: "<percentage>";
|
|
634
|
+
inherits: false;
|
|
635
|
+
initial-value: 100%;
|
|
636
|
+
}
|
|
637
|
+
@property --tw-ring-color {
|
|
638
|
+
syntax: "*";
|
|
639
|
+
inherits: false;
|
|
640
|
+
}
|
|
641
|
+
@property --tw-ring-shadow {
|
|
642
|
+
syntax: "*";
|
|
643
|
+
inherits: false;
|
|
644
|
+
initial-value: 0 0 #0000;
|
|
645
|
+
}
|
|
646
|
+
@property --tw-inset-ring-color {
|
|
647
|
+
syntax: "*";
|
|
648
|
+
inherits: false;
|
|
649
|
+
}
|
|
650
|
+
@property --tw-inset-ring-shadow {
|
|
651
|
+
syntax: "*";
|
|
652
|
+
inherits: false;
|
|
653
|
+
initial-value: 0 0 #0000;
|
|
654
|
+
}
|
|
655
|
+
@property --tw-ring-inset {
|
|
656
|
+
syntax: "*";
|
|
657
|
+
inherits: false;
|
|
658
|
+
}
|
|
659
|
+
@property --tw-ring-offset-width {
|
|
660
|
+
syntax: "<length>";
|
|
661
|
+
inherits: false;
|
|
662
|
+
initial-value: 0px;
|
|
663
|
+
}
|
|
664
|
+
@property --tw-ring-offset-color {
|
|
665
|
+
syntax: "*";
|
|
666
|
+
inherits: false;
|
|
667
|
+
initial-value: #fff;
|
|
668
|
+
}
|
|
669
|
+
@property --tw-ring-offset-shadow {
|
|
670
|
+
syntax: "*";
|
|
671
|
+
inherits: false;
|
|
672
|
+
initial-value: 0 0 #0000;
|
|
673
|
+
}
|
|
674
|
+
@property --tw-duration {
|
|
675
|
+
syntax: "*";
|
|
676
|
+
inherits: false;
|
|
677
|
+
}
|
|
678
|
+
@property --tw-scale-x {
|
|
679
|
+
syntax: "*";
|
|
680
|
+
inherits: false;
|
|
681
|
+
initial-value: 1;
|
|
682
|
+
}
|
|
683
|
+
@property --tw-scale-y {
|
|
684
|
+
syntax: "*";
|
|
685
|
+
inherits: false;
|
|
686
|
+
initial-value: 1;
|
|
687
|
+
}
|
|
688
|
+
@property --tw-scale-z {
|
|
689
|
+
syntax: "*";
|
|
690
|
+
inherits: false;
|
|
691
|
+
initial-value: 1;
|
|
692
|
+
}
|
|
693
|
+
@layer properties {
|
|
694
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
695
|
+
*, ::before, ::after, ::backdrop {
|
|
696
|
+
--tw-rotate-x: initial;
|
|
697
|
+
--tw-rotate-y: initial;
|
|
698
|
+
--tw-rotate-z: initial;
|
|
699
|
+
--tw-skew-x: initial;
|
|
700
|
+
--tw-skew-y: initial;
|
|
701
|
+
--tw-space-x-reverse: 0;
|
|
702
|
+
--tw-border-style: solid;
|
|
703
|
+
--tw-gradient-position: initial;
|
|
704
|
+
--tw-gradient-from: #0000;
|
|
705
|
+
--tw-gradient-via: #0000;
|
|
706
|
+
--tw-gradient-to: #0000;
|
|
707
|
+
--tw-gradient-stops: initial;
|
|
708
|
+
--tw-gradient-via-stops: initial;
|
|
709
|
+
--tw-gradient-from-position: 0%;
|
|
710
|
+
--tw-gradient-via-position: 50%;
|
|
711
|
+
--tw-gradient-to-position: 100%;
|
|
712
|
+
--tw-leading: initial;
|
|
713
|
+
--tw-font-weight: initial;
|
|
714
|
+
--tw-tracking: initial;
|
|
715
|
+
--tw-shadow: 0 0 #0000;
|
|
716
|
+
--tw-shadow-color: initial;
|
|
717
|
+
--tw-shadow-alpha: 100%;
|
|
718
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
719
|
+
--tw-inset-shadow-color: initial;
|
|
720
|
+
--tw-inset-shadow-alpha: 100%;
|
|
721
|
+
--tw-ring-color: initial;
|
|
722
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
723
|
+
--tw-inset-ring-color: initial;
|
|
724
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
725
|
+
--tw-ring-inset: initial;
|
|
726
|
+
--tw-ring-offset-width: 0px;
|
|
727
|
+
--tw-ring-offset-color: #fff;
|
|
728
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
729
|
+
--tw-duration: initial;
|
|
730
|
+
--tw-scale-x: 1;
|
|
731
|
+
--tw-scale-y: 1;
|
|
732
|
+
--tw-scale-z: 1;
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
|