create-gardener 1.1.8 → 1.1.11
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 +4 -2
- package/package.json +1 -1
- package/template/buildHelper.js +11 -0
- package/template/package.json +3 -3
- package/template/src/frontend/gardenerST.js +3 -3
- package/template/src/frontend/static/gardener.js +11 -2
- package/template/src/frontend/static/style.css +1 -1047
- package/template/src/frontend/views/_.ejs +2 -3
- package/template/tsconfig.json +1 -1
- package/template/src/frontend/static/components/test.js +0 -54
package/Readme.md
CHANGED
|
@@ -16,8 +16,10 @@ Use it with
|
|
|
16
16
|
`npm create-gardener filename`
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
[See Docs](https://ritish.site/Gardener)
|
|
20
|
-
|
|
19
|
+
* [See Docs](https://ritish.site/Gardener)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
* [Github](https://github.com/ritishDas/Gardener)
|
|
21
23
|
|
|
22
24
|
|
|
23
25
|
|
package/package.json
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import fs from 'fs/promises';
|
|
2
|
+
import path from 'path';
|
|
3
|
+
|
|
4
|
+
async function buildHelper() {
|
|
5
|
+
const src = path.resolve('src', 'frontend');
|
|
6
|
+
const dest = path.resolve('build', 'frontend');
|
|
7
|
+
|
|
8
|
+
await fs.cp(src, dest, { recursive: true });
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
buildHelper();// const path = require('path');
|
package/template/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-gardener",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.11",
|
|
4
4
|
"description": "A dom gardener converting dom elements into json and vice versa",
|
|
5
5
|
"main": "src/build/server.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"start": "node src/build/server.js",
|
|
9
9
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
10
|
-
"dev": "concurrently \"tsx watch src/backend/server.ts\" \"tailwindcss -w -i src/frontend/tailwind.css -o src/frontend/style.css\"",
|
|
11
|
-
|
|
10
|
+
"dev": "concurrently \"tsx watch src/backend/server.ts\" \"tailwindcss -w -i src/frontend/tailwind.css -o src/frontend/static/style.css\"",
|
|
11
|
+
"build": "tailwindcss -i src/frontend/tailwind.css -o src/frontend/static/style.css --minify && tsc && node buildHelper.js"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [],
|
|
14
14
|
"author": "ritishDas",
|
|
@@ -54,7 +54,7 @@ font-size:14px;
|
|
|
54
54
|
{
|
|
55
55
|
t: 'span',
|
|
56
56
|
attr: { style: 'color:#22c55e;font-weight:bold;' },
|
|
57
|
-
txt: '
|
|
57
|
+
txt: 'Alt+h'
|
|
58
58
|
},
|
|
59
59
|
{ t: 'span', txt: ' to toggle Hot Reload' },
|
|
60
60
|
{
|
|
@@ -79,8 +79,7 @@ font-size:14px;
|
|
|
79
79
|
applyHotReloadState();
|
|
80
80
|
|
|
81
81
|
document.addEventListener('keydown', function(e) {
|
|
82
|
-
|
|
83
|
-
if (e.ctrlKey && e.key.toLowerCase() === 'h') {
|
|
82
|
+
if (e.altKey && e.key.toLowerCase() === 'h') {
|
|
84
83
|
e.preventDefault(); // Stop browser from opening history
|
|
85
84
|
// Your logic here...
|
|
86
85
|
togglehotreload();
|
|
@@ -428,3 +427,4 @@ export function imagePreloader(images) {
|
|
|
428
427
|
|
|
429
428
|
|
|
430
429
|
|
|
430
|
+
|
|
@@ -80,7 +80,7 @@ if (config.mode === 'dev') {
|
|
|
80
80
|
{
|
|
81
81
|
t: 'span',
|
|
82
82
|
cn: ['text-green-500', 'font-bold'],
|
|
83
|
-
txt: '
|
|
83
|
+
txt: 'Alt+h'
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
86
|
t: 'span',
|
|
@@ -116,7 +116,7 @@ if (config.mode === 'dev') {
|
|
|
116
116
|
togglehotreload();
|
|
117
117
|
document.addEventListener('keydown', function(e) {
|
|
118
118
|
// Detect Ctrl + H
|
|
119
|
-
if (e.
|
|
119
|
+
if (e.altKey && e.key.toLowerCase() === 'h') {
|
|
120
120
|
e.preventDefault(); // Stop browser from opening history
|
|
121
121
|
// Your logic here...
|
|
122
122
|
togglehotreload();
|
|
@@ -365,6 +365,14 @@ function generateFile(obj) {
|
|
|
365
365
|
const formatted = JSON.stringify(obj, null, 2);
|
|
366
366
|
const { cleanedString, extractedList } = cleanStringAndList(formatted);
|
|
367
367
|
|
|
368
|
+
if (extractedList.length === 0) return `
|
|
369
|
+
import { gardener, fetchElement, replaceElement } from '../gardener.js'
|
|
370
|
+
|
|
371
|
+
export default function thisfun() {
|
|
372
|
+
return gardener(${cleanedString})
|
|
373
|
+
}
|
|
374
|
+
`;
|
|
375
|
+
|
|
368
376
|
return `
|
|
369
377
|
import { gardener, fetchElement, replaceElement } from '../gardener.js'
|
|
370
378
|
|
|
@@ -471,3 +479,4 @@ export function imagePreloader(images) {
|
|
|
471
479
|
}
|
|
472
480
|
|
|
473
481
|
|
|
482
|
+
|
|
@@ -1,1048 +1,2 @@
|
|
|
1
1
|
/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
|
|
2
|
-
@layer properties;
|
|
3
|
-
@layer theme, base, components, utilities;
|
|
4
|
-
@layer theme {
|
|
5
|
-
:root, :host {
|
|
6
|
-
--font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
7
|
-
'Noto Color Emoji';
|
|
8
|
-
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
|
|
9
|
-
monospace;
|
|
10
|
-
--color-red-300: oklch(80.8% 0.114 19.571);
|
|
11
|
-
--color-green-200: oklch(92.5% 0.084 155.995);
|
|
12
|
-
--color-green-300: oklch(87.1% 0.15 154.449);
|
|
13
|
-
--color-green-500: oklch(72.3% 0.219 149.579);
|
|
14
|
-
--color-emerald-50: oklch(97.9% 0.021 166.113);
|
|
15
|
-
--color-emerald-300: oklch(84.5% 0.143 164.978);
|
|
16
|
-
--color-cyan-50: oklch(98.4% 0.019 200.873);
|
|
17
|
-
--color-blue-400: oklch(70.7% 0.165 254.624);
|
|
18
|
-
--color-blue-800: oklch(42.4% 0.199 265.638);
|
|
19
|
-
--color-slate-100: oklch(96.8% 0.007 247.896);
|
|
20
|
-
--color-slate-200: oklch(92.9% 0.013 255.508);
|
|
21
|
-
--color-slate-300: oklch(86.9% 0.022 252.894);
|
|
22
|
-
--color-slate-500: oklch(55.4% 0.046 257.417);
|
|
23
|
-
--color-slate-600: oklch(44.6% 0.043 257.281);
|
|
24
|
-
--color-slate-700: oklch(37.2% 0.044 257.287);
|
|
25
|
-
--color-slate-800: oklch(27.9% 0.041 260.031);
|
|
26
|
-
--color-slate-900: oklch(20.8% 0.042 265.755);
|
|
27
|
-
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
28
|
-
--color-gray-500: oklch(55.1% 0.027 264.364);
|
|
29
|
-
--color-gray-900: oklch(21% 0.034 264.665);
|
|
30
|
-
--color-black: #000;
|
|
31
|
-
--color-white: #fff;
|
|
32
|
-
--spacing: 0.25rem;
|
|
33
|
-
--container-sm: 24rem;
|
|
34
|
-
--container-2xl: 42rem;
|
|
35
|
-
--container-7xl: 80rem;
|
|
36
|
-
--text-sm: 0.875rem;
|
|
37
|
-
--text-sm--line-height: calc(1.25 / 0.875);
|
|
38
|
-
--text-lg: 1.125rem;
|
|
39
|
-
--text-lg--line-height: calc(1.75 / 1.125);
|
|
40
|
-
--text-xl: 1.25rem;
|
|
41
|
-
--text-xl--line-height: calc(1.75 / 1.25);
|
|
42
|
-
--text-2xl: 1.5rem;
|
|
43
|
-
--text-2xl--line-height: calc(2 / 1.5);
|
|
44
|
-
--text-3xl: 1.875rem;
|
|
45
|
-
--text-3xl--line-height: calc(2.25 / 1.875);
|
|
46
|
-
--text-4xl: 2.25rem;
|
|
47
|
-
--text-4xl--line-height: calc(2.5 / 2.25);
|
|
48
|
-
--text-5xl: 3rem;
|
|
49
|
-
--text-5xl--line-height: 1;
|
|
50
|
-
--font-weight-medium: 500;
|
|
51
|
-
--font-weight-semibold: 600;
|
|
52
|
-
--font-weight-bold: 700;
|
|
53
|
-
--tracking-wide: 0.025em;
|
|
54
|
-
--leading-relaxed: 1.625;
|
|
55
|
-
--radius-md: 0.375rem;
|
|
56
|
-
--radius-lg: 0.5rem;
|
|
57
|
-
--radius-xl: 0.75rem;
|
|
58
|
-
--radius-2xl: 1rem;
|
|
59
|
-
--radius-3xl: 1.5rem;
|
|
60
|
-
--blur-md: 12px;
|
|
61
|
-
--default-transition-duration: 150ms;
|
|
62
|
-
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
63
|
-
--default-font-family: var(--font-sans);
|
|
64
|
-
--default-mono-font-family: var(--font-mono);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
@layer base {
|
|
68
|
-
*, ::after, ::before, ::backdrop, ::file-selector-button {
|
|
69
|
-
box-sizing: border-box;
|
|
70
|
-
margin: 0;
|
|
71
|
-
padding: 0;
|
|
72
|
-
border: 0 solid;
|
|
73
|
-
}
|
|
74
|
-
html, :host {
|
|
75
|
-
line-height: 1.5;
|
|
76
|
-
-webkit-text-size-adjust: 100%;
|
|
77
|
-
tab-size: 4;
|
|
78
|
-
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');
|
|
79
|
-
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
80
|
-
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
81
|
-
-webkit-tap-highlight-color: transparent;
|
|
82
|
-
}
|
|
83
|
-
hr {
|
|
84
|
-
height: 0;
|
|
85
|
-
color: inherit;
|
|
86
|
-
border-top-width: 1px;
|
|
87
|
-
}
|
|
88
|
-
abbr:where([title]) {
|
|
89
|
-
-webkit-text-decoration: underline dotted;
|
|
90
|
-
text-decoration: underline dotted;
|
|
91
|
-
}
|
|
92
|
-
h1, h2, h3, h4, h5, h6 {
|
|
93
|
-
font-size: inherit;
|
|
94
|
-
font-weight: inherit;
|
|
95
|
-
}
|
|
96
|
-
a {
|
|
97
|
-
color: inherit;
|
|
98
|
-
-webkit-text-decoration: inherit;
|
|
99
|
-
text-decoration: inherit;
|
|
100
|
-
}
|
|
101
|
-
b, strong {
|
|
102
|
-
font-weight: bolder;
|
|
103
|
-
}
|
|
104
|
-
code, kbd, samp, pre {
|
|
105
|
-
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
|
|
106
|
-
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
107
|
-
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
108
|
-
font-size: 1em;
|
|
109
|
-
}
|
|
110
|
-
small {
|
|
111
|
-
font-size: 80%;
|
|
112
|
-
}
|
|
113
|
-
sub, sup {
|
|
114
|
-
font-size: 75%;
|
|
115
|
-
line-height: 0;
|
|
116
|
-
position: relative;
|
|
117
|
-
vertical-align: baseline;
|
|
118
|
-
}
|
|
119
|
-
sub {
|
|
120
|
-
bottom: -0.25em;
|
|
121
|
-
}
|
|
122
|
-
sup {
|
|
123
|
-
top: -0.5em;
|
|
124
|
-
}
|
|
125
|
-
table {
|
|
126
|
-
text-indent: 0;
|
|
127
|
-
border-color: inherit;
|
|
128
|
-
border-collapse: collapse;
|
|
129
|
-
}
|
|
130
|
-
:-moz-focusring {
|
|
131
|
-
outline: auto;
|
|
132
|
-
}
|
|
133
|
-
progress {
|
|
134
|
-
vertical-align: baseline;
|
|
135
|
-
}
|
|
136
|
-
summary {
|
|
137
|
-
display: list-item;
|
|
138
|
-
}
|
|
139
|
-
ol, ul, menu {
|
|
140
|
-
list-style: none;
|
|
141
|
-
}
|
|
142
|
-
img, svg, video, canvas, audio, iframe, embed, object {
|
|
143
|
-
display: block;
|
|
144
|
-
vertical-align: middle;
|
|
145
|
-
}
|
|
146
|
-
img, video {
|
|
147
|
-
max-width: 100%;
|
|
148
|
-
height: auto;
|
|
149
|
-
}
|
|
150
|
-
button, input, select, optgroup, textarea, ::file-selector-button {
|
|
151
|
-
font: inherit;
|
|
152
|
-
font-feature-settings: inherit;
|
|
153
|
-
font-variation-settings: inherit;
|
|
154
|
-
letter-spacing: inherit;
|
|
155
|
-
color: inherit;
|
|
156
|
-
border-radius: 0;
|
|
157
|
-
background-color: transparent;
|
|
158
|
-
opacity: 1;
|
|
159
|
-
}
|
|
160
|
-
:where(select:is([multiple], [size])) optgroup {
|
|
161
|
-
font-weight: bolder;
|
|
162
|
-
}
|
|
163
|
-
:where(select:is([multiple], [size])) optgroup option {
|
|
164
|
-
padding-inline-start: 20px;
|
|
165
|
-
}
|
|
166
|
-
::file-selector-button {
|
|
167
|
-
margin-inline-end: 4px;
|
|
168
|
-
}
|
|
169
|
-
::placeholder {
|
|
170
|
-
opacity: 1;
|
|
171
|
-
}
|
|
172
|
-
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
173
|
-
::placeholder {
|
|
174
|
-
color: currentcolor;
|
|
175
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
176
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
textarea {
|
|
181
|
-
resize: vertical;
|
|
182
|
-
}
|
|
183
|
-
::-webkit-search-decoration {
|
|
184
|
-
-webkit-appearance: none;
|
|
185
|
-
}
|
|
186
|
-
::-webkit-date-and-time-value {
|
|
187
|
-
min-height: 1lh;
|
|
188
|
-
text-align: inherit;
|
|
189
|
-
}
|
|
190
|
-
::-webkit-datetime-edit {
|
|
191
|
-
display: inline-flex;
|
|
192
|
-
}
|
|
193
|
-
::-webkit-datetime-edit-fields-wrapper {
|
|
194
|
-
padding: 0;
|
|
195
|
-
}
|
|
196
|
-
::-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 {
|
|
197
|
-
padding-block: 0;
|
|
198
|
-
}
|
|
199
|
-
::-webkit-calendar-picker-indicator {
|
|
200
|
-
line-height: 1;
|
|
201
|
-
}
|
|
202
|
-
:-moz-ui-invalid {
|
|
203
|
-
box-shadow: none;
|
|
204
|
-
}
|
|
205
|
-
button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
|
|
206
|
-
appearance: button;
|
|
207
|
-
}
|
|
208
|
-
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
|
|
209
|
-
height: auto;
|
|
210
|
-
}
|
|
211
|
-
[hidden]:where(:not([hidden='until-found'])) {
|
|
212
|
-
display: none !important;
|
|
213
|
-
}
|
|
214
|
-
}
|
|
215
|
-
@layer utilities {
|
|
216
|
-
.visible {
|
|
217
|
-
visibility: visible;
|
|
218
|
-
}
|
|
219
|
-
.absolute {
|
|
220
|
-
position: absolute;
|
|
221
|
-
}
|
|
222
|
-
.fixed {
|
|
223
|
-
position: fixed;
|
|
224
|
-
}
|
|
225
|
-
.static {
|
|
226
|
-
position: static;
|
|
227
|
-
}
|
|
228
|
-
.top-0 {
|
|
229
|
-
top: calc(var(--spacing) * 0);
|
|
230
|
-
}
|
|
231
|
-
.top-1\/4 {
|
|
232
|
-
top: calc(1/4 * 100%);
|
|
233
|
-
}
|
|
234
|
-
.top-2\/5 {
|
|
235
|
-
top: calc(2/5 * 100%);
|
|
236
|
-
}
|
|
237
|
-
.top-\[-60px\] {
|
|
238
|
-
top: -60px;
|
|
239
|
-
}
|
|
240
|
-
.right-0 {
|
|
241
|
-
right: calc(var(--spacing) * 0);
|
|
242
|
-
}
|
|
243
|
-
.right-2 {
|
|
244
|
-
right: calc(var(--spacing) * 2);
|
|
245
|
-
}
|
|
246
|
-
.bottom-0 {
|
|
247
|
-
bottom: calc(var(--spacing) * 0);
|
|
248
|
-
}
|
|
249
|
-
.bottom-22 {
|
|
250
|
-
bottom: calc(var(--spacing) * 22);
|
|
251
|
-
}
|
|
252
|
-
.left-0 {
|
|
253
|
-
left: calc(var(--spacing) * 0);
|
|
254
|
-
}
|
|
255
|
-
.left-1\/4 {
|
|
256
|
-
left: calc(1/4 * 100%);
|
|
257
|
-
}
|
|
258
|
-
.left-2\/5 {
|
|
259
|
-
left: calc(2/5 * 100%);
|
|
260
|
-
}
|
|
261
|
-
.left-\[100vw\] {
|
|
262
|
-
left: 100vw;
|
|
263
|
-
}
|
|
264
|
-
.z-50 {
|
|
265
|
-
z-index: 50;
|
|
266
|
-
}
|
|
267
|
-
.z-90 {
|
|
268
|
-
z-index: 90;
|
|
269
|
-
}
|
|
270
|
-
.z-100 {
|
|
271
|
-
z-index: 100;
|
|
272
|
-
}
|
|
273
|
-
.mx-auto {
|
|
274
|
-
margin-inline: auto;
|
|
275
|
-
}
|
|
276
|
-
.my-1 {
|
|
277
|
-
margin-block: calc(var(--spacing) * 1);
|
|
278
|
-
}
|
|
279
|
-
.mt-3 {
|
|
280
|
-
margin-top: calc(var(--spacing) * 3);
|
|
281
|
-
}
|
|
282
|
-
.mt-4 {
|
|
283
|
-
margin-top: calc(var(--spacing) * 4);
|
|
284
|
-
}
|
|
285
|
-
.mt-5 {
|
|
286
|
-
margin-top: calc(var(--spacing) * 5);
|
|
287
|
-
}
|
|
288
|
-
.box-border {
|
|
289
|
-
box-sizing: border-box;
|
|
290
|
-
}
|
|
291
|
-
.block {
|
|
292
|
-
display: block;
|
|
293
|
-
}
|
|
294
|
-
.flex {
|
|
295
|
-
display: flex;
|
|
296
|
-
}
|
|
297
|
-
.grid {
|
|
298
|
-
display: grid;
|
|
299
|
-
}
|
|
300
|
-
.inline-block {
|
|
301
|
-
display: inline-block;
|
|
302
|
-
}
|
|
303
|
-
.h-2\/4 {
|
|
304
|
-
height: calc(2/4 * 100%);
|
|
305
|
-
}
|
|
306
|
-
.h-8 {
|
|
307
|
-
height: calc(var(--spacing) * 8);
|
|
308
|
-
}
|
|
309
|
-
.h-15 {
|
|
310
|
-
height: calc(var(--spacing) * 15);
|
|
311
|
-
}
|
|
312
|
-
.h-\[90vh\] {
|
|
313
|
-
height: 90vh;
|
|
314
|
-
}
|
|
315
|
-
.h-screen {
|
|
316
|
-
height: 100vh;
|
|
317
|
-
}
|
|
318
|
-
.min-h-100 {
|
|
319
|
-
min-height: calc(var(--spacing) * 100);
|
|
320
|
-
}
|
|
321
|
-
.w-2\/4 {
|
|
322
|
-
width: calc(2/4 * 100%);
|
|
323
|
-
}
|
|
324
|
-
.w-3\/4 {
|
|
325
|
-
width: calc(3/4 * 100%);
|
|
326
|
-
}
|
|
327
|
-
.w-15 {
|
|
328
|
-
width: calc(var(--spacing) * 15);
|
|
329
|
-
}
|
|
330
|
-
.w-64 {
|
|
331
|
-
width: calc(var(--spacing) * 64);
|
|
332
|
-
}
|
|
333
|
-
.w-90 {
|
|
334
|
-
width: calc(var(--spacing) * 90);
|
|
335
|
-
}
|
|
336
|
-
.w-500 {
|
|
337
|
-
width: calc(var(--spacing) * 500);
|
|
338
|
-
}
|
|
339
|
-
.w-full {
|
|
340
|
-
width: 100%;
|
|
341
|
-
}
|
|
342
|
-
.w-screen {
|
|
343
|
-
width: 100vw;
|
|
344
|
-
}
|
|
345
|
-
.max-w-2xl {
|
|
346
|
-
max-width: var(--container-2xl);
|
|
347
|
-
}
|
|
348
|
-
.max-w-7xl {
|
|
349
|
-
max-width: var(--container-7xl);
|
|
350
|
-
}
|
|
351
|
-
.max-w-sm {
|
|
352
|
-
max-width: var(--container-sm);
|
|
353
|
-
}
|
|
354
|
-
.min-w-100 {
|
|
355
|
-
min-width: calc(var(--spacing) * 100);
|
|
356
|
-
}
|
|
357
|
-
.flex-1 {
|
|
358
|
-
flex: 1;
|
|
359
|
-
}
|
|
360
|
-
.transform {
|
|
361
|
-
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
362
|
-
}
|
|
363
|
-
.cursor-pointer {
|
|
364
|
-
cursor: pointer;
|
|
365
|
-
}
|
|
366
|
-
.resize {
|
|
367
|
-
resize: both;
|
|
368
|
-
}
|
|
369
|
-
.list-inside {
|
|
370
|
-
list-style-position: inside;
|
|
371
|
-
}
|
|
372
|
-
.list-decimal {
|
|
373
|
-
list-style-type: decimal;
|
|
374
|
-
}
|
|
375
|
-
.list-disc {
|
|
376
|
-
list-style-type: disc;
|
|
377
|
-
}
|
|
378
|
-
.flex-col {
|
|
379
|
-
flex-direction: column;
|
|
380
|
-
}
|
|
381
|
-
.items-center {
|
|
382
|
-
align-items: center;
|
|
383
|
-
}
|
|
384
|
-
.justify-around {
|
|
385
|
-
justify-content: space-around;
|
|
386
|
-
}
|
|
387
|
-
.justify-between {
|
|
388
|
-
justify-content: space-between;
|
|
389
|
-
}
|
|
390
|
-
.justify-center {
|
|
391
|
-
justify-content: center;
|
|
392
|
-
}
|
|
393
|
-
.gap-2 {
|
|
394
|
-
gap: calc(var(--spacing) * 2);
|
|
395
|
-
}
|
|
396
|
-
.gap-4 {
|
|
397
|
-
gap: calc(var(--spacing) * 4);
|
|
398
|
-
}
|
|
399
|
-
.gap-8 {
|
|
400
|
-
gap: calc(var(--spacing) * 8);
|
|
401
|
-
}
|
|
402
|
-
.gap-10 {
|
|
403
|
-
gap: calc(var(--spacing) * 10);
|
|
404
|
-
}
|
|
405
|
-
.gap-12 {
|
|
406
|
-
gap: calc(var(--spacing) * 12);
|
|
407
|
-
}
|
|
408
|
-
.space-y-2 {
|
|
409
|
-
:where(& > :not(:last-child)) {
|
|
410
|
-
--tw-space-y-reverse: 0;
|
|
411
|
-
margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
|
|
412
|
-
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
|
-
.space-y-3 {
|
|
416
|
-
:where(& > :not(:last-child)) {
|
|
417
|
-
--tw-space-y-reverse: 0;
|
|
418
|
-
margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
|
|
419
|
-
margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
.space-y-4 {
|
|
423
|
-
:where(& > :not(:last-child)) {
|
|
424
|
-
--tw-space-y-reverse: 0;
|
|
425
|
-
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
426
|
-
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
|
-
.space-y-5 {
|
|
430
|
-
:where(& > :not(:last-child)) {
|
|
431
|
-
--tw-space-y-reverse: 0;
|
|
432
|
-
margin-block-start: calc(calc(var(--spacing) * 5) * var(--tw-space-y-reverse));
|
|
433
|
-
margin-block-end: calc(calc(var(--spacing) * 5) * calc(1 - var(--tw-space-y-reverse)));
|
|
434
|
-
}
|
|
435
|
-
}
|
|
436
|
-
.space-y-6 {
|
|
437
|
-
:where(& > :not(:last-child)) {
|
|
438
|
-
--tw-space-y-reverse: 0;
|
|
439
|
-
margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
|
|
440
|
-
margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
|
|
441
|
-
}
|
|
442
|
-
}
|
|
443
|
-
.space-y-10 {
|
|
444
|
-
:where(& > :not(:last-child)) {
|
|
445
|
-
--tw-space-y-reverse: 0;
|
|
446
|
-
margin-block-start: calc(calc(var(--spacing) * 10) * var(--tw-space-y-reverse));
|
|
447
|
-
margin-block-end: calc(calc(var(--spacing) * 10) * calc(1 - var(--tw-space-y-reverse)));
|
|
448
|
-
}
|
|
449
|
-
}
|
|
450
|
-
.space-y-20 {
|
|
451
|
-
:where(& > :not(:last-child)) {
|
|
452
|
-
--tw-space-y-reverse: 0;
|
|
453
|
-
margin-block-start: calc(calc(var(--spacing) * 20) * var(--tw-space-y-reverse));
|
|
454
|
-
margin-block-end: calc(calc(var(--spacing) * 20) * calc(1 - var(--tw-space-y-reverse)));
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
.space-x-1 {
|
|
458
|
-
:where(& > :not(:last-child)) {
|
|
459
|
-
--tw-space-x-reverse: 0;
|
|
460
|
-
margin-inline-start: calc(calc(var(--spacing) * 1) * var(--tw-space-x-reverse));
|
|
461
|
-
margin-inline-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-x-reverse)));
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
.overflow-scroll {
|
|
465
|
-
overflow: scroll;
|
|
466
|
-
}
|
|
467
|
-
.overflow-x-auto {
|
|
468
|
-
overflow-x: auto;
|
|
469
|
-
}
|
|
470
|
-
.rounded {
|
|
471
|
-
border-radius: 0.25rem;
|
|
472
|
-
}
|
|
473
|
-
.rounded-2xl {
|
|
474
|
-
border-radius: var(--radius-2xl);
|
|
475
|
-
}
|
|
476
|
-
.rounded-3xl {
|
|
477
|
-
border-radius: var(--radius-3xl);
|
|
478
|
-
}
|
|
479
|
-
.rounded-full {
|
|
480
|
-
border-radius: calc(infinity * 1px);
|
|
481
|
-
}
|
|
482
|
-
.rounded-lg {
|
|
483
|
-
border-radius: var(--radius-lg);
|
|
484
|
-
}
|
|
485
|
-
.rounded-md {
|
|
486
|
-
border-radius: var(--radius-md);
|
|
487
|
-
}
|
|
488
|
-
.rounded-xl {
|
|
489
|
-
border-radius: var(--radius-xl);
|
|
490
|
-
}
|
|
491
|
-
.rounded-t-lg {
|
|
492
|
-
border-top-left-radius: var(--radius-lg);
|
|
493
|
-
border-top-right-radius: var(--radius-lg);
|
|
494
|
-
}
|
|
495
|
-
.border {
|
|
496
|
-
border-style: var(--tw-border-style);
|
|
497
|
-
border-width: 1px;
|
|
498
|
-
}
|
|
499
|
-
.border-2 {
|
|
500
|
-
border-style: var(--tw-border-style);
|
|
501
|
-
border-width: 2px;
|
|
502
|
-
}
|
|
503
|
-
.border-t {
|
|
504
|
-
border-top-style: var(--tw-border-style);
|
|
505
|
-
border-top-width: 1px;
|
|
506
|
-
}
|
|
507
|
-
.border-b-1 {
|
|
508
|
-
border-bottom-style: var(--tw-border-style);
|
|
509
|
-
border-bottom-width: 1px;
|
|
510
|
-
}
|
|
511
|
-
.border-black {
|
|
512
|
-
border-color: var(--color-black);
|
|
513
|
-
}
|
|
514
|
-
.border-gray-900 {
|
|
515
|
-
border-color: var(--color-gray-900);
|
|
516
|
-
}
|
|
517
|
-
.border-slate-200 {
|
|
518
|
-
border-color: var(--color-slate-200);
|
|
519
|
-
}
|
|
520
|
-
.border-slate-300 {
|
|
521
|
-
border-color: var(--color-slate-300);
|
|
522
|
-
}
|
|
523
|
-
.bg-\[\#2e7d32\] {
|
|
524
|
-
background-color: #2e7d32;
|
|
525
|
-
}
|
|
526
|
-
.bg-\[\#d32f2f\] {
|
|
527
|
-
background-color: #d32f2f;
|
|
528
|
-
}
|
|
529
|
-
.bg-\[\#ed6c02\] {
|
|
530
|
-
background-color: #ed6c02;
|
|
531
|
-
}
|
|
532
|
-
.bg-blue-400 {
|
|
533
|
-
background-color: var(--color-blue-400);
|
|
534
|
-
}
|
|
535
|
-
.bg-gray-200 {
|
|
536
|
-
background-color: var(--color-gray-200);
|
|
537
|
-
}
|
|
538
|
-
.bg-gray-500 {
|
|
539
|
-
background-color: var(--color-gray-500);
|
|
540
|
-
}
|
|
541
|
-
.bg-green-200 {
|
|
542
|
-
background-color: var(--color-green-200);
|
|
543
|
-
}
|
|
544
|
-
.bg-green-300 {
|
|
545
|
-
background-color: var(--color-green-300);
|
|
546
|
-
}
|
|
547
|
-
.bg-red-300 {
|
|
548
|
-
background-color: var(--color-red-300);
|
|
549
|
-
}
|
|
550
|
-
.bg-slate-100 {
|
|
551
|
-
background-color: var(--color-slate-100);
|
|
552
|
-
}
|
|
553
|
-
.bg-slate-900 {
|
|
554
|
-
background-color: var(--color-slate-900);
|
|
555
|
-
}
|
|
556
|
-
.bg-white {
|
|
557
|
-
background-color: var(--color-white);
|
|
558
|
-
}
|
|
559
|
-
.bg-gradient-to-br {
|
|
560
|
-
--tw-gradient-position: to bottom right in oklab;
|
|
561
|
-
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
562
|
-
}
|
|
563
|
-
.from-emerald-50 {
|
|
564
|
-
--tw-gradient-from: var(--color-emerald-50);
|
|
565
|
-
--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));
|
|
566
|
-
}
|
|
567
|
-
.to-cyan-50 {
|
|
568
|
-
--tw-gradient-to: var(--color-cyan-50);
|
|
569
|
-
--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));
|
|
570
|
-
}
|
|
571
|
-
.p-1 {
|
|
572
|
-
padding: calc(var(--spacing) * 1);
|
|
573
|
-
}
|
|
574
|
-
.p-2 {
|
|
575
|
-
padding: calc(var(--spacing) * 2);
|
|
576
|
-
}
|
|
577
|
-
.p-3 {
|
|
578
|
-
padding: calc(var(--spacing) * 3);
|
|
579
|
-
}
|
|
580
|
-
.p-4 {
|
|
581
|
-
padding: calc(var(--spacing) * 4);
|
|
582
|
-
}
|
|
583
|
-
.p-5 {
|
|
584
|
-
padding: calc(var(--spacing) * 5);
|
|
585
|
-
}
|
|
586
|
-
.p-6 {
|
|
587
|
-
padding: calc(var(--spacing) * 6);
|
|
588
|
-
}
|
|
589
|
-
.p-8 {
|
|
590
|
-
padding: calc(var(--spacing) * 8);
|
|
591
|
-
}
|
|
592
|
-
.p-10 {
|
|
593
|
-
padding: calc(var(--spacing) * 10);
|
|
594
|
-
}
|
|
595
|
-
.px-2 {
|
|
596
|
-
padding-inline: calc(var(--spacing) * 2);
|
|
597
|
-
}
|
|
598
|
-
.px-4 {
|
|
599
|
-
padding-inline: calc(var(--spacing) * 4);
|
|
600
|
-
}
|
|
601
|
-
.px-5 {
|
|
602
|
-
padding-inline: calc(var(--spacing) * 5);
|
|
603
|
-
}
|
|
604
|
-
.px-6 {
|
|
605
|
-
padding-inline: calc(var(--spacing) * 6);
|
|
606
|
-
}
|
|
607
|
-
.py-1 {
|
|
608
|
-
padding-block: calc(var(--spacing) * 1);
|
|
609
|
-
}
|
|
610
|
-
.py-3 {
|
|
611
|
-
padding-block: calc(var(--spacing) * 3);
|
|
612
|
-
}
|
|
613
|
-
.py-12 {
|
|
614
|
-
padding-block: calc(var(--spacing) * 12);
|
|
615
|
-
}
|
|
616
|
-
.pb-1\.5 {
|
|
617
|
-
padding-bottom: calc(var(--spacing) * 1.5);
|
|
618
|
-
}
|
|
619
|
-
.text-center {
|
|
620
|
-
text-align: center;
|
|
621
|
-
}
|
|
622
|
-
.text-left {
|
|
623
|
-
text-align: left;
|
|
624
|
-
}
|
|
625
|
-
.text-right {
|
|
626
|
-
text-align: right;
|
|
627
|
-
}
|
|
628
|
-
.font-mono {
|
|
629
|
-
font-family: var(--font-mono);
|
|
630
|
-
}
|
|
631
|
-
.text-2xl {
|
|
632
|
-
font-size: var(--text-2xl);
|
|
633
|
-
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
634
|
-
}
|
|
635
|
-
.text-3xl {
|
|
636
|
-
font-size: var(--text-3xl);
|
|
637
|
-
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
638
|
-
}
|
|
639
|
-
.text-4xl {
|
|
640
|
-
font-size: var(--text-4xl);
|
|
641
|
-
line-height: var(--tw-leading, var(--text-4xl--line-height));
|
|
642
|
-
}
|
|
643
|
-
.text-5xl {
|
|
644
|
-
font-size: var(--text-5xl);
|
|
645
|
-
line-height: var(--tw-leading, var(--text-5xl--line-height));
|
|
646
|
-
}
|
|
647
|
-
.text-lg {
|
|
648
|
-
font-size: var(--text-lg);
|
|
649
|
-
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
650
|
-
}
|
|
651
|
-
.text-sm {
|
|
652
|
-
font-size: var(--text-sm);
|
|
653
|
-
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
654
|
-
}
|
|
655
|
-
.text-xl {
|
|
656
|
-
font-size: var(--text-xl);
|
|
657
|
-
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
658
|
-
}
|
|
659
|
-
.leading-relaxed {
|
|
660
|
-
--tw-leading: var(--leading-relaxed);
|
|
661
|
-
line-height: var(--leading-relaxed);
|
|
662
|
-
}
|
|
663
|
-
.font-bold {
|
|
664
|
-
--tw-font-weight: var(--font-weight-bold);
|
|
665
|
-
font-weight: var(--font-weight-bold);
|
|
666
|
-
}
|
|
667
|
-
.font-medium {
|
|
668
|
-
--tw-font-weight: var(--font-weight-medium);
|
|
669
|
-
font-weight: var(--font-weight-medium);
|
|
670
|
-
}
|
|
671
|
-
.font-semibold {
|
|
672
|
-
--tw-font-weight: var(--font-weight-semibold);
|
|
673
|
-
font-weight: var(--font-weight-semibold);
|
|
674
|
-
}
|
|
675
|
-
.tracking-wide {
|
|
676
|
-
--tw-tracking: var(--tracking-wide);
|
|
677
|
-
letter-spacing: var(--tracking-wide);
|
|
678
|
-
}
|
|
679
|
-
.text-black {
|
|
680
|
-
color: var(--color-black);
|
|
681
|
-
}
|
|
682
|
-
.text-blue-800 {
|
|
683
|
-
color: var(--color-blue-800);
|
|
684
|
-
}
|
|
685
|
-
.text-emerald-300 {
|
|
686
|
-
color: var(--color-emerald-300);
|
|
687
|
-
}
|
|
688
|
-
.text-green-500 {
|
|
689
|
-
color: var(--color-green-500);
|
|
690
|
-
}
|
|
691
|
-
.text-slate-100 {
|
|
692
|
-
color: var(--color-slate-100);
|
|
693
|
-
}
|
|
694
|
-
.text-slate-500 {
|
|
695
|
-
color: var(--color-slate-500);
|
|
696
|
-
}
|
|
697
|
-
.text-slate-600 {
|
|
698
|
-
color: var(--color-slate-600);
|
|
699
|
-
}
|
|
700
|
-
.text-slate-700 {
|
|
701
|
-
color: var(--color-slate-700);
|
|
702
|
-
}
|
|
703
|
-
.text-slate-800 {
|
|
704
|
-
color: var(--color-slate-800);
|
|
705
|
-
}
|
|
706
|
-
.text-white {
|
|
707
|
-
color: var(--color-white);
|
|
708
|
-
}
|
|
709
|
-
.shadow {
|
|
710
|
-
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
711
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
712
|
-
}
|
|
713
|
-
.shadow-2xl {
|
|
714
|
-
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
715
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
716
|
-
}
|
|
717
|
-
.shadow-\[30px_0_60px_15px_rgb\(0\,0\,0\)\] {
|
|
718
|
-
--tw-shadow: 30px 0 60px 15px var(--tw-shadow-color, rgb(0,0,0));
|
|
719
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
720
|
-
}
|
|
721
|
-
.shadow-xl {
|
|
722
|
-
--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));
|
|
723
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
724
|
-
}
|
|
725
|
-
.backdrop-blur-md {
|
|
726
|
-
--tw-backdrop-blur: blur(var(--blur-md));
|
|
727
|
-
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
728
|
-
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
729
|
-
}
|
|
730
|
-
.transition {
|
|
731
|
-
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, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
732
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
733
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
734
|
-
}
|
|
735
|
-
.transition-all {
|
|
736
|
-
transition-property: all;
|
|
737
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
738
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
739
|
-
}
|
|
740
|
-
.outline-none {
|
|
741
|
-
--tw-outline-style: none;
|
|
742
|
-
outline-style: none;
|
|
743
|
-
}
|
|
744
|
-
.hover\:cursor-pointer {
|
|
745
|
-
&:hover {
|
|
746
|
-
@media (hover: hover) {
|
|
747
|
-
cursor: pointer;
|
|
748
|
-
}
|
|
749
|
-
}
|
|
750
|
-
}
|
|
751
|
-
.hover\:bg-green-300 {
|
|
752
|
-
&:hover {
|
|
753
|
-
@media (hover: hover) {
|
|
754
|
-
background-color: var(--color-green-300);
|
|
755
|
-
}
|
|
756
|
-
}
|
|
757
|
-
}
|
|
758
|
-
.md\:right-\[60px\] {
|
|
759
|
-
@media (width >= 48rem) {
|
|
760
|
-
right: 60px;
|
|
761
|
-
}
|
|
762
|
-
}
|
|
763
|
-
.md\:left-auto {
|
|
764
|
-
@media (width >= 48rem) {
|
|
765
|
-
left: auto;
|
|
766
|
-
}
|
|
767
|
-
}
|
|
768
|
-
.md\:grid-cols-2 {
|
|
769
|
-
@media (width >= 48rem) {
|
|
770
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
771
|
-
}
|
|
772
|
-
}
|
|
773
|
-
.lg\:w-80 {
|
|
774
|
-
@media (width >= 64rem) {
|
|
775
|
-
width: calc(var(--spacing) * 80);
|
|
776
|
-
}
|
|
777
|
-
}
|
|
778
|
-
.lg\:grid-cols-2 {
|
|
779
|
-
@media (width >= 64rem) {
|
|
780
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
781
|
-
}
|
|
782
|
-
}
|
|
783
|
-
.lg\:flex-row {
|
|
784
|
-
@media (width >= 64rem) {
|
|
785
|
-
flex-direction: row;
|
|
786
|
-
}
|
|
787
|
-
}
|
|
788
|
-
.lg\:p-12 {
|
|
789
|
-
@media (width >= 64rem) {
|
|
790
|
-
padding: calc(var(--spacing) * 12);
|
|
791
|
-
}
|
|
792
|
-
}
|
|
793
|
-
.lg\:p-16 {
|
|
794
|
-
@media (width >= 64rem) {
|
|
795
|
-
padding: calc(var(--spacing) * 16);
|
|
796
|
-
}
|
|
797
|
-
}
|
|
798
|
-
.lg\:text-left {
|
|
799
|
-
@media (width >= 64rem) {
|
|
800
|
-
text-align: left;
|
|
801
|
-
}
|
|
802
|
-
}
|
|
803
|
-
.lg\:text-5xl {
|
|
804
|
-
@media (width >= 64rem) {
|
|
805
|
-
font-size: var(--text-5xl);
|
|
806
|
-
line-height: var(--tw-leading, var(--text-5xl--line-height));
|
|
807
|
-
}
|
|
808
|
-
}
|
|
809
|
-
}
|
|
810
|
-
@property --tw-rotate-x {
|
|
811
|
-
syntax: "*";
|
|
812
|
-
inherits: false;
|
|
813
|
-
}
|
|
814
|
-
@property --tw-rotate-y {
|
|
815
|
-
syntax: "*";
|
|
816
|
-
inherits: false;
|
|
817
|
-
}
|
|
818
|
-
@property --tw-rotate-z {
|
|
819
|
-
syntax: "*";
|
|
820
|
-
inherits: false;
|
|
821
|
-
}
|
|
822
|
-
@property --tw-skew-x {
|
|
823
|
-
syntax: "*";
|
|
824
|
-
inherits: false;
|
|
825
|
-
}
|
|
826
|
-
@property --tw-skew-y {
|
|
827
|
-
syntax: "*";
|
|
828
|
-
inherits: false;
|
|
829
|
-
}
|
|
830
|
-
@property --tw-space-y-reverse {
|
|
831
|
-
syntax: "*";
|
|
832
|
-
inherits: false;
|
|
833
|
-
initial-value: 0;
|
|
834
|
-
}
|
|
835
|
-
@property --tw-space-x-reverse {
|
|
836
|
-
syntax: "*";
|
|
837
|
-
inherits: false;
|
|
838
|
-
initial-value: 0;
|
|
839
|
-
}
|
|
840
|
-
@property --tw-border-style {
|
|
841
|
-
syntax: "*";
|
|
842
|
-
inherits: false;
|
|
843
|
-
initial-value: solid;
|
|
844
|
-
}
|
|
845
|
-
@property --tw-gradient-position {
|
|
846
|
-
syntax: "*";
|
|
847
|
-
inherits: false;
|
|
848
|
-
}
|
|
849
|
-
@property --tw-gradient-from {
|
|
850
|
-
syntax: "<color>";
|
|
851
|
-
inherits: false;
|
|
852
|
-
initial-value: #0000;
|
|
853
|
-
}
|
|
854
|
-
@property --tw-gradient-via {
|
|
855
|
-
syntax: "<color>";
|
|
856
|
-
inherits: false;
|
|
857
|
-
initial-value: #0000;
|
|
858
|
-
}
|
|
859
|
-
@property --tw-gradient-to {
|
|
860
|
-
syntax: "<color>";
|
|
861
|
-
inherits: false;
|
|
862
|
-
initial-value: #0000;
|
|
863
|
-
}
|
|
864
|
-
@property --tw-gradient-stops {
|
|
865
|
-
syntax: "*";
|
|
866
|
-
inherits: false;
|
|
867
|
-
}
|
|
868
|
-
@property --tw-gradient-via-stops {
|
|
869
|
-
syntax: "*";
|
|
870
|
-
inherits: false;
|
|
871
|
-
}
|
|
872
|
-
@property --tw-gradient-from-position {
|
|
873
|
-
syntax: "<length-percentage>";
|
|
874
|
-
inherits: false;
|
|
875
|
-
initial-value: 0%;
|
|
876
|
-
}
|
|
877
|
-
@property --tw-gradient-via-position {
|
|
878
|
-
syntax: "<length-percentage>";
|
|
879
|
-
inherits: false;
|
|
880
|
-
initial-value: 50%;
|
|
881
|
-
}
|
|
882
|
-
@property --tw-gradient-to-position {
|
|
883
|
-
syntax: "<length-percentage>";
|
|
884
|
-
inherits: false;
|
|
885
|
-
initial-value: 100%;
|
|
886
|
-
}
|
|
887
|
-
@property --tw-leading {
|
|
888
|
-
syntax: "*";
|
|
889
|
-
inherits: false;
|
|
890
|
-
}
|
|
891
|
-
@property --tw-font-weight {
|
|
892
|
-
syntax: "*";
|
|
893
|
-
inherits: false;
|
|
894
|
-
}
|
|
895
|
-
@property --tw-tracking {
|
|
896
|
-
syntax: "*";
|
|
897
|
-
inherits: false;
|
|
898
|
-
}
|
|
899
|
-
@property --tw-shadow {
|
|
900
|
-
syntax: "*";
|
|
901
|
-
inherits: false;
|
|
902
|
-
initial-value: 0 0 #0000;
|
|
903
|
-
}
|
|
904
|
-
@property --tw-shadow-color {
|
|
905
|
-
syntax: "*";
|
|
906
|
-
inherits: false;
|
|
907
|
-
}
|
|
908
|
-
@property --tw-shadow-alpha {
|
|
909
|
-
syntax: "<percentage>";
|
|
910
|
-
inherits: false;
|
|
911
|
-
initial-value: 100%;
|
|
912
|
-
}
|
|
913
|
-
@property --tw-inset-shadow {
|
|
914
|
-
syntax: "*";
|
|
915
|
-
inherits: false;
|
|
916
|
-
initial-value: 0 0 #0000;
|
|
917
|
-
}
|
|
918
|
-
@property --tw-inset-shadow-color {
|
|
919
|
-
syntax: "*";
|
|
920
|
-
inherits: false;
|
|
921
|
-
}
|
|
922
|
-
@property --tw-inset-shadow-alpha {
|
|
923
|
-
syntax: "<percentage>";
|
|
924
|
-
inherits: false;
|
|
925
|
-
initial-value: 100%;
|
|
926
|
-
}
|
|
927
|
-
@property --tw-ring-color {
|
|
928
|
-
syntax: "*";
|
|
929
|
-
inherits: false;
|
|
930
|
-
}
|
|
931
|
-
@property --tw-ring-shadow {
|
|
932
|
-
syntax: "*";
|
|
933
|
-
inherits: false;
|
|
934
|
-
initial-value: 0 0 #0000;
|
|
935
|
-
}
|
|
936
|
-
@property --tw-inset-ring-color {
|
|
937
|
-
syntax: "*";
|
|
938
|
-
inherits: false;
|
|
939
|
-
}
|
|
940
|
-
@property --tw-inset-ring-shadow {
|
|
941
|
-
syntax: "*";
|
|
942
|
-
inherits: false;
|
|
943
|
-
initial-value: 0 0 #0000;
|
|
944
|
-
}
|
|
945
|
-
@property --tw-ring-inset {
|
|
946
|
-
syntax: "*";
|
|
947
|
-
inherits: false;
|
|
948
|
-
}
|
|
949
|
-
@property --tw-ring-offset-width {
|
|
950
|
-
syntax: "<length>";
|
|
951
|
-
inherits: false;
|
|
952
|
-
initial-value: 0px;
|
|
953
|
-
}
|
|
954
|
-
@property --tw-ring-offset-color {
|
|
955
|
-
syntax: "*";
|
|
956
|
-
inherits: false;
|
|
957
|
-
initial-value: #fff;
|
|
958
|
-
}
|
|
959
|
-
@property --tw-ring-offset-shadow {
|
|
960
|
-
syntax: "*";
|
|
961
|
-
inherits: false;
|
|
962
|
-
initial-value: 0 0 #0000;
|
|
963
|
-
}
|
|
964
|
-
@property --tw-backdrop-blur {
|
|
965
|
-
syntax: "*";
|
|
966
|
-
inherits: false;
|
|
967
|
-
}
|
|
968
|
-
@property --tw-backdrop-brightness {
|
|
969
|
-
syntax: "*";
|
|
970
|
-
inherits: false;
|
|
971
|
-
}
|
|
972
|
-
@property --tw-backdrop-contrast {
|
|
973
|
-
syntax: "*";
|
|
974
|
-
inherits: false;
|
|
975
|
-
}
|
|
976
|
-
@property --tw-backdrop-grayscale {
|
|
977
|
-
syntax: "*";
|
|
978
|
-
inherits: false;
|
|
979
|
-
}
|
|
980
|
-
@property --tw-backdrop-hue-rotate {
|
|
981
|
-
syntax: "*";
|
|
982
|
-
inherits: false;
|
|
983
|
-
}
|
|
984
|
-
@property --tw-backdrop-invert {
|
|
985
|
-
syntax: "*";
|
|
986
|
-
inherits: false;
|
|
987
|
-
}
|
|
988
|
-
@property --tw-backdrop-opacity {
|
|
989
|
-
syntax: "*";
|
|
990
|
-
inherits: false;
|
|
991
|
-
}
|
|
992
|
-
@property --tw-backdrop-saturate {
|
|
993
|
-
syntax: "*";
|
|
994
|
-
inherits: false;
|
|
995
|
-
}
|
|
996
|
-
@property --tw-backdrop-sepia {
|
|
997
|
-
syntax: "*";
|
|
998
|
-
inherits: false;
|
|
999
|
-
}
|
|
1000
|
-
@layer properties {
|
|
1001
|
-
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
1002
|
-
*, ::before, ::after, ::backdrop {
|
|
1003
|
-
--tw-rotate-x: initial;
|
|
1004
|
-
--tw-rotate-y: initial;
|
|
1005
|
-
--tw-rotate-z: initial;
|
|
1006
|
-
--tw-skew-x: initial;
|
|
1007
|
-
--tw-skew-y: initial;
|
|
1008
|
-
--tw-space-y-reverse: 0;
|
|
1009
|
-
--tw-space-x-reverse: 0;
|
|
1010
|
-
--tw-border-style: solid;
|
|
1011
|
-
--tw-gradient-position: initial;
|
|
1012
|
-
--tw-gradient-from: #0000;
|
|
1013
|
-
--tw-gradient-via: #0000;
|
|
1014
|
-
--tw-gradient-to: #0000;
|
|
1015
|
-
--tw-gradient-stops: initial;
|
|
1016
|
-
--tw-gradient-via-stops: initial;
|
|
1017
|
-
--tw-gradient-from-position: 0%;
|
|
1018
|
-
--tw-gradient-via-position: 50%;
|
|
1019
|
-
--tw-gradient-to-position: 100%;
|
|
1020
|
-
--tw-leading: initial;
|
|
1021
|
-
--tw-font-weight: initial;
|
|
1022
|
-
--tw-tracking: initial;
|
|
1023
|
-
--tw-shadow: 0 0 #0000;
|
|
1024
|
-
--tw-shadow-color: initial;
|
|
1025
|
-
--tw-shadow-alpha: 100%;
|
|
1026
|
-
--tw-inset-shadow: 0 0 #0000;
|
|
1027
|
-
--tw-inset-shadow-color: initial;
|
|
1028
|
-
--tw-inset-shadow-alpha: 100%;
|
|
1029
|
-
--tw-ring-color: initial;
|
|
1030
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
1031
|
-
--tw-inset-ring-color: initial;
|
|
1032
|
-
--tw-inset-ring-shadow: 0 0 #0000;
|
|
1033
|
-
--tw-ring-inset: initial;
|
|
1034
|
-
--tw-ring-offset-width: 0px;
|
|
1035
|
-
--tw-ring-offset-color: #fff;
|
|
1036
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1037
|
-
--tw-backdrop-blur: initial;
|
|
1038
|
-
--tw-backdrop-brightness: initial;
|
|
1039
|
-
--tw-backdrop-contrast: initial;
|
|
1040
|
-
--tw-backdrop-grayscale: initial;
|
|
1041
|
-
--tw-backdrop-hue-rotate: initial;
|
|
1042
|
-
--tw-backdrop-invert: initial;
|
|
1043
|
-
--tw-backdrop-opacity: initial;
|
|
1044
|
-
--tw-backdrop-saturate: initial;
|
|
1045
|
-
--tw-backdrop-sepia: initial;
|
|
1046
|
-
}
|
|
1047
|
-
}
|
|
1048
|
-
}
|
|
2
|
+
@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-300:oklch(80.8% .114 19.571);--color-green-200:oklch(92.5% .084 155.995);--color-green-300:oklch(87.1% .15 154.449);--color-green-500:oklch(72.3% .219 149.579);--color-emerald-50:oklch(97.9% .021 166.113);--color-emerald-300:oklch(84.5% .143 164.978);--color-cyan-50:oklch(98.4% .019 200.873);--color-blue-400:oklch(70.7% .165 254.624);--color-blue-800:oklch(42.4% .199 265.638);--color-slate-100:oklch(96.8% .007 247.896);--color-slate-200:oklch(92.9% .013 255.508);--color-slate-300:oklch(86.9% .022 252.894);--color-slate-500:oklch(55.4% .046 257.417);--color-slate-600:oklch(44.6% .043 257.281);--color-slate-700:oklch(37.2% .044 257.287);--color-slate-800:oklch(27.9% .041 260.031);--color-slate-900:oklch(20.8% .042 265.755);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-500:oklch(55.1% .027 264.364);--color-gray-900:oklch(21% .034 264.665);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-sm:24rem;--container-2xl:42rem;--container-7xl:80rem;--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25/1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--text-5xl:3rem;--text-5xl--line-height:1;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-wide:.025em;--leading-relaxed:1.625;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--blur-md:12px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;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");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.static{position:static}.top-0{top:calc(var(--spacing)*0)}.top-1\/4{top:25%}.top-2\/5{top:40%}.top-\[-60px\]{top:-60px}.right-0{right:calc(var(--spacing)*0)}.right-2{right:calc(var(--spacing)*2)}.bottom-0{bottom:calc(var(--spacing)*0)}.bottom-22{bottom:calc(var(--spacing)*22)}.left-0{left:calc(var(--spacing)*0)}.left-1\/4{left:25%}.left-2\/5{left:40%}.left-\[100vw\]{left:100vw}.z-50{z-index:50}.z-90{z-index:90}.z-100{z-index:100}.mx-auto{margin-inline:auto}.my-1{margin-block:calc(var(--spacing)*1)}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-5{margin-top:calc(var(--spacing)*5)}.box-border{box-sizing:border-box}.block{display:block}.flex{display:flex}.grid{display:grid}.inline-block{display:inline-block}.h-2\/4{height:50%}.h-8{height:calc(var(--spacing)*8)}.h-15{height:calc(var(--spacing)*15)}.h-\[90vh\]{height:90vh}.h-screen{height:100vh}.min-h-100{min-height:calc(var(--spacing)*100)}.w-2\/4{width:50%}.w-3\/4{width:75%}.w-15{width:calc(var(--spacing)*15)}.w-64{width:calc(var(--spacing)*64)}.w-90{width:calc(var(--spacing)*90)}.w-500{width:calc(var(--spacing)*500)}.w-full{width:100%}.w-screen{width:100vw}.max-w-2xl{max-width:var(--container-2xl)}.max-w-7xl{max-width:var(--container-7xl)}.max-w-sm{max-width:var(--container-sm)}.min-w-100{min-width:calc(var(--spacing)*100)}.flex-1{flex:1}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.cursor-pointer{cursor:pointer}.list-inside{list-style-position:inside}.list-decimal{list-style-type:decimal}.list-disc{list-style-type:disc}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-around{justify-content:space-around}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-2{gap:calc(var(--spacing)*2)}.gap-4{gap:calc(var(--spacing)*4)}.gap-8{gap:calc(var(--spacing)*8)}.gap-10{gap:calc(var(--spacing)*10)}.gap-12{gap:calc(var(--spacing)*12)}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*5)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*5)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-10>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*10)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*10)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-20>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*20)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*20)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-x-1>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*1)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-x-reverse)))}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-3xl{border-radius:var(--radius-3xl)}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-t-lg{border-top-left-radius:var(--radius-lg);border-top-right-radius:var(--radius-lg)}.border{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b-1{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-black{border-color:var(--color-black)}.border-gray-900{border-color:var(--color-gray-900)}.border-slate-200{border-color:var(--color-slate-200)}.border-slate-300{border-color:var(--color-slate-300)}.bg-\[\#2e7d32\]{background-color:#2e7d32}.bg-\[\#d32f2f\]{background-color:#d32f2f}.bg-\[\#ed6c02\]{background-color:#ed6c02}.bg-blue-400{background-color:var(--color-blue-400)}.bg-gray-200{background-color:var(--color-gray-200)}.bg-gray-500{background-color:var(--color-gray-500)}.bg-green-200{background-color:var(--color-green-200)}.bg-green-300{background-color:var(--color-green-300)}.bg-red-300{background-color:var(--color-red-300)}.bg-slate-100{background-color:var(--color-slate-100)}.bg-slate-900{background-color:var(--color-slate-900)}.bg-white{background-color:var(--color-white)}.bg-gradient-to-br{--tw-gradient-position:to bottom right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-emerald-50{--tw-gradient-from:var(--color-emerald-50);--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))}.to-cyan-50{--tw-gradient-to:var(--color-cyan-50);--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))}.p-1{padding:calc(var(--spacing)*1)}.p-2{padding:calc(var(--spacing)*2)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.p-5{padding:calc(var(--spacing)*5)}.p-6{padding:calc(var(--spacing)*6)}.p-8{padding:calc(var(--spacing)*8)}.p-10{padding:calc(var(--spacing)*10)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-5{padding-inline:calc(var(--spacing)*5)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-1{padding-block:calc(var(--spacing)*1)}.py-3{padding-block:calc(var(--spacing)*3)}.py-12{padding-block:calc(var(--spacing)*12)}.pb-1\.5{padding-bottom:calc(var(--spacing)*1.5)}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.font-mono{font-family:var(--font-mono)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.text-black{color:var(--color-black)}.text-blue-800{color:var(--color-blue-800)}.text-emerald-300{color:var(--color-emerald-300)}.text-green-500{color:var(--color-green-500)}.text-slate-100{color:var(--color-slate-100)}.text-slate-500{color:var(--color-slate-500)}.text-slate-600{color:var(--color-slate-600)}.text-slate-700{color:var(--color-slate-700)}.text-slate-800{color:var(--color-slate-800)}.text-white{color:var(--color-white)}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[30px_0_60px_15px_rgb\(0\,0\,0\)\]{--tw-shadow:30px 0 60px 15px var(--tw-shadow-color,#000);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.backdrop-blur-md{--tw-backdrop-blur:blur(var(--blur-md));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{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,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.outline-none{--tw-outline-style:none;outline-style:none}@media (hover:hover){.hover\:cursor-pointer:hover{cursor:pointer}.hover\:bg-green-300:hover{background-color:var(--color-green-300)}}@media (min-width:48rem){.md\:right-\[60px\]{right:60px}.md\:left-auto{left:auto}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:64rem){.lg\:w-80{width:calc(var(--spacing)*80)}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:flex-row{flex-direction:row}.lg\:p-12{padding:calc(var(--spacing)*12)}.lg\:p-16{padding:calc(var(--spacing)*16)}.lg\:text-left{text-align:left}.lg\:text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}}}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}
|
|
@@ -215,16 +215,15 @@ replaceElement(
|
|
|
215
215
|
</div>
|
|
216
216
|
|
|
217
217
|
<!-- <div class='test'> -->
|
|
218
|
-
<!-- hi there you must be ?name? how old are you let me guess ?age? -->
|
|
219
218
|
<!-- </div> -->
|
|
220
219
|
|
|
221
220
|
<script src="/static/global.js" type="module"></script>
|
|
222
221
|
<script type="module">
|
|
223
222
|
import { gardener,parser, fetchElement,replaceElement } from "/static/gardener.js";
|
|
224
|
-
|
|
223
|
+
// import parameterised from '/static/components/test.js';
|
|
225
224
|
|
|
226
225
|
// parser('.test')
|
|
227
|
-
// replaceElement('.test', parameterised(
|
|
226
|
+
// replaceElement('.test', parameterised())
|
|
228
227
|
|
|
229
228
|
|
|
230
229
|
</script>
|
package/template/tsconfig.json
CHANGED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
import { gardener, fetchElement, replaceElement } from '/static/gardener.js'
|
|
3
|
-
|
|
4
|
-
export default function thisfun() {
|
|
5
|
-
return gardener({
|
|
6
|
-
"t": "div",
|
|
7
|
-
"attr": {
|
|
8
|
-
"id": "body"
|
|
9
|
-
},
|
|
10
|
-
"children": [
|
|
11
|
-
{
|
|
12
|
-
"t": "div",
|
|
13
|
-
"cn": [
|
|
14
|
-
"h-screen",
|
|
15
|
-
"w-screen",
|
|
16
|
-
"bg-white",
|
|
17
|
-
"loader",
|
|
18
|
-
"absolute"
|
|
19
|
-
],
|
|
20
|
-
"attr": {
|
|
21
|
-
"style": "transition: 0.4s; opacity: 0;"
|
|
22
|
-
},
|
|
23
|
-
"txt": ""
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"t": "div",
|
|
27
|
-
"cn": [
|
|
28
|
-
"hero",
|
|
29
|
-
"flex",
|
|
30
|
-
"justify-around",
|
|
31
|
-
"items-center",
|
|
32
|
-
"p-5",
|
|
33
|
-
"h-[90vh]"
|
|
34
|
-
],
|
|
35
|
-
"children": [
|
|
36
|
-
{
|
|
37
|
-
"t": "p",
|
|
38
|
-
"cn": [
|
|
39
|
-
"p-5"
|
|
40
|
-
],
|
|
41
|
-
"txt": "Gardener is a front-end library for creating and manipulating DOM elements using a declarative JavaScript object syntax. It includes a development server with features like timely reload and on-the-fly component creation from existing HTML. The server also provides dynamic image resizing and caching."
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"t": "img",
|
|
45
|
-
"attr": {
|
|
46
|
-
"src": "/cache/gardener_500x500.webp",
|
|
47
|
-
"alt": "logo"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
]
|
|
51
|
-
}
|
|
52
|
-
]
|
|
53
|
-
})
|
|
54
|
-
}
|