earthnut 0.2.3-alpha.1 → 0.2.3-alpha.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.
Files changed (47) hide show
  1. package/209.mjs +10 -0
  2. package/209.mjs.map +1 -0
  3. package/client.mjs +1 -1
  4. package/components/ThemeContext/index.d.ts +11 -0
  5. package/components/ThemeContext/types.d.ts +26 -0
  6. package/components/button/button.d.ts +1 -2
  7. package/components/image/index.d.ts +1 -2
  8. package/components/image/types.d.ts +2 -1
  9. package/components/layout/content.d.ts +2 -2
  10. package/components/layout/footer.d.ts +2 -3
  11. package/components/layout/header.d.ts +2 -3
  12. package/components/layout/is-fragment.d.ts +9 -0
  13. package/components/layout/layout.d.ts +3 -4
  14. package/components/layout/{sideBar.d.ts → sidebar.d.ts} +3 -4
  15. package/components/layout/types.d.ts +7 -6
  16. package/components/marquee/MarqueeEle.d.ts +2 -2
  17. package/components/ripples/Content.d.ts +1 -1
  18. package/components/ripples/LazyRippleEle.d.ts +2 -3
  19. package/components/ripples/RipplesEle.d.ts +2 -3
  20. package/components/ripples/useOptionUpdate.d.ts +2 -1
  21. package/components/shared/EnLayoutContent/index.d.ts +6 -6
  22. package/components/switch/SwitchContainer.d.ts +7 -0
  23. package/components/switch/SwitchContent.d.ts +10 -0
  24. package/components/switch/SwitchLabel.d.ts +9 -0
  25. package/components/switch/index.d.ts +14 -0
  26. package/customHooks/use-xcn/index.d.ts +1 -1
  27. package/customHooks/useInputIsComposing.d.ts +5 -4
  28. package/customHooks/useRipples/index.d.ts +2 -1
  29. package/customHooks/useRipples/types.d.ts +2 -1
  30. package/customHooks/useRipples/use-lazy-ripple.d.ts +3 -2
  31. package/index.client.d.ts +3 -0
  32. package/layoutUtil.mjs +1 -1
  33. package/layoutUtil.mjs.map +1 -0
  34. package/package.json +10 -2
  35. package/server.mjs +1 -1
  36. package/server.mjs.map +1 -0
  37. package/storage/main-logic .d.ts +26 -0
  38. package/storage/storage-store.d.ts +14 -0
  39. package/styles/common.css +613 -109
  40. package/styles/common.scss +48 -2
  41. package/styles/reset.scss +2 -2
  42. package/styles/respond.scss +1 -1
  43. package/styles/root.scss +135 -17
  44. package/styles/vars-color.scss +247 -0
  45. package/utilities/cookie.d.ts +28 -0
  46. package/utilities/sys.d.ts +41 -0
  47. package/styles/vars.scss +0 -248
package/styles/common.css CHANGED
@@ -1,14 +1,82 @@
1
1
  @charset "UTF-8";
2
2
  :root {
3
- --en-primary-white: $color-white;
4
- --en-primary-black: #1b1b1b;
5
- --en-primary-dust: #6f6f6f;
6
- --en-primary-red: #d30038;
7
- --en-primary-green: #007936;
8
- --en-primary-blue: #0069c2;
9
- --en-primary-yellow: #746a00;
10
- --en-primary-super-yellow: #ffff00;
11
- --en-text-primary: #1b1b1b;
3
+ --en-color-neutral-70: #f9f9fb;
4
+ --en-color-neutral-80: #f2f1f1;
5
+ --en-color-neutral-90: #ebeaea;
6
+ --en-color-neutral-10: #e2e2e2;
7
+ --en-color-neutral-20: #cdcdcd;
8
+ --en-color-neutral-30: #b3b3b3;
9
+ --en-color-neutral-40: #9e9e9e;
10
+ --en-color-neutral-50: #858585;
11
+ --en-color-neutral-60: #696969;
12
+ --en-color-neutral-70: #4e4e4e;
13
+ --en-color-neutral-75: #313131;
14
+ --en-color-neutral-80: #343434;
15
+ --en-color-neutral-90: #1b1b1b;
16
+ --en-color-black: #000;
17
+ --en-color-white: #fff;
18
+ --en-color-ads: #00d0aa;
19
+ }
20
+
21
+ :root {
22
+ --en-color-blue: #0085f2;
23
+ --en-color-green: #009a46;
24
+ --en-color-yellow: #928700;
25
+ --en-color-red: #d30038;
26
+ --en-color-violet: #9b65ff;
27
+ --en-color-pink: #d00058;
28
+ --en-color-blue-10: #dce2f2;
29
+ --en-color-blue-20: #c1cff1;
30
+ --en-color-blue-30: #8cb4ff;
31
+ --en-color-blue-40: #5e9eff;
32
+ --en-color-blue-50: #0085f2;
33
+ --en-color-blue-60: #0069c2;
34
+ --en-color-blue-70: #004d92;
35
+ --en-color-blue-80: #003465;
36
+ --en-color-blue-90: #001b3a;
37
+ --en-color-green-10: #a9f3ba;
38
+ --en-color-green-20: #73e693;
39
+ --en-color-green-30: #00d061;
40
+ --en-color-green-40: #00b755;
41
+ --en-color-green-50: #009a46;
42
+ --en-color-green-60: #007936;
43
+ --en-color-green-70: #005a26;
44
+ --en-color-green-80: #003d18;
45
+ --en-color-green-90: #00210a;
46
+ --en-color-yellow-10: #f0e498;
47
+ --en-color-yellow-20: #dfd172;
48
+ --en-color-yellow-30: #c7b700;
49
+ --en-color-yellow-40: #afa100;
50
+ --en-color-yellow-50: #938700;
51
+ --en-color-yellow-60: #746a00;
52
+ --en-color-yellow-70: #564e00;
53
+ --en-color-yellow-80: #3a3500;
54
+ --en-color-yellow-90: #1f1c00;
55
+ --en-color-red-10: #ffd9dc;
56
+ --en-color-red-20: #ffc0c4;
57
+ --en-color-red-30: #ff97a0;
58
+ --en-color-red-40: #ff707f;
59
+ --en-color-red-50: #ff2a51;
60
+ --en-color-red-60: #d30038;
61
+ --en-color-red-70: #9e0027;
62
+ --en-color-red-80: #6f0019;
63
+ --en-color-red-90: #40000a;
64
+ --en-color-violet-10: #e6deff;
65
+ --en-color-violet-20: #d4c5ff;
66
+ --en-color-violet-30: #bea5ff;
67
+ --en-color-violet-40: #ae8aff;
68
+ --en-color-violet-50: #9b65ff;
69
+ --en-color-violet-60: #872bff;
70
+ --en-color-violet-70: #6800cf;
71
+ --en-color-violet-80: #480091;
72
+ --en-color-violet-90: #280056;
73
+ --en-color-blue: #0085f2;
74
+ --en-color-green: #009a46;
75
+ --en-color-yellow: #928700;
76
+ --en-color-red: #d30038;
77
+ --en-color-violet: #9b65ff;
78
+ --en-color-pink: #d00058;
79
+ --en-text-primary: var(--en-color-light-blue-30);
12
80
  --en-text-secondary: #4e4e4e;
13
81
  --en-text-invert: var(--en-primary-white);
14
82
  --en-text-muted: var(--en-primary-dust);
@@ -34,15 +102,64 @@
34
102
 
35
103
  @media (prefers-color-scheme: light) {
36
104
  :root:not(.en-light):not(.en-dark) {
37
- --en-primary-white: $color-white;
38
- --en-primary-black: #1b1b1b;
39
- --en-primary-dust: #6f6f6f;
40
- --en-primary-red: #d30038;
41
- --en-primary-green: #007936;
42
- --en-primary-blue: #0069c2;
43
- --en-primary-yellow: #746a00;
44
- --en-primary-super-yellow: #ffff00;
45
- --en-text-primary: #1b1b1b;
105
+ --en-color-blue: #0085f2;
106
+ --en-color-green: #009a46;
107
+ --en-color-yellow: #928700;
108
+ --en-color-red: #d30038;
109
+ --en-color-violet: #9b65ff;
110
+ --en-color-pink: #d00058;
111
+ --en-color-blue-10: #dce2f2;
112
+ --en-color-blue-20: #c1cff1;
113
+ --en-color-blue-30: #8cb4ff;
114
+ --en-color-blue-40: #5e9eff;
115
+ --en-color-blue-50: #0085f2;
116
+ --en-color-blue-60: #0069c2;
117
+ --en-color-blue-70: #004d92;
118
+ --en-color-blue-80: #003465;
119
+ --en-color-blue-90: #001b3a;
120
+ --en-color-green-10: #a9f3ba;
121
+ --en-color-green-20: #73e693;
122
+ --en-color-green-30: #00d061;
123
+ --en-color-green-40: #00b755;
124
+ --en-color-green-50: #009a46;
125
+ --en-color-green-60: #007936;
126
+ --en-color-green-70: #005a26;
127
+ --en-color-green-80: #003d18;
128
+ --en-color-green-90: #00210a;
129
+ --en-color-yellow-10: #f0e498;
130
+ --en-color-yellow-20: #dfd172;
131
+ --en-color-yellow-30: #c7b700;
132
+ --en-color-yellow-40: #afa100;
133
+ --en-color-yellow-50: #938700;
134
+ --en-color-yellow-60: #746a00;
135
+ --en-color-yellow-70: #564e00;
136
+ --en-color-yellow-80: #3a3500;
137
+ --en-color-yellow-90: #1f1c00;
138
+ --en-color-red-10: #ffd9dc;
139
+ --en-color-red-20: #ffc0c4;
140
+ --en-color-red-30: #ff97a0;
141
+ --en-color-red-40: #ff707f;
142
+ --en-color-red-50: #ff2a51;
143
+ --en-color-red-60: #d30038;
144
+ --en-color-red-70: #9e0027;
145
+ --en-color-red-80: #6f0019;
146
+ --en-color-red-90: #40000a;
147
+ --en-color-violet-10: #e6deff;
148
+ --en-color-violet-20: #d4c5ff;
149
+ --en-color-violet-30: #bea5ff;
150
+ --en-color-violet-40: #ae8aff;
151
+ --en-color-violet-50: #9b65ff;
152
+ --en-color-violet-60: #872bff;
153
+ --en-color-violet-70: #6800cf;
154
+ --en-color-violet-80: #480091;
155
+ --en-color-violet-90: #280056;
156
+ --en-color-blue: #0085f2;
157
+ --en-color-green: #009a46;
158
+ --en-color-yellow: #928700;
159
+ --en-color-red: #d30038;
160
+ --en-color-violet: #9b65ff;
161
+ --en-color-pink: #d00058;
162
+ --en-text-primary: var(--en-color-light-blue-30);
46
163
  --en-text-secondary: #4e4e4e;
47
164
  --en-text-invert: var(--en-primary-white);
48
165
  --en-text-muted: var(--en-primary-dust);
@@ -68,13 +185,63 @@
68
185
  }
69
186
  @media (prefers-color-scheme: dark) {
70
187
  :root:not(.en-light):not(.en-dark) {
71
- --en-primary-white: #ffffff;
72
- --en-primary-black: #1b1b1b;
73
- --en-primary-dust: #858585;
74
- --en-primary-red: #ff97a0;
75
- --en-primary-green: #00d061;
76
- --en-primary-blue: #8cb4ff;
77
- --en-primary-yellow: #c7b700;
188
+ --en-color-blue: #0085f2;
189
+ --en-color-green: #009a46;
190
+ --en-color-yellow: #928700;
191
+ --en-color-red: #d30038;
192
+ --en-color-violet: #9b65ff;
193
+ --en-color-pink: #d00058;
194
+ --en-color-blue-10: #dce2f2;
195
+ --en-color-blue-20: #c1cff1;
196
+ --en-color-blue-30: #8cb4ff;
197
+ --en-color-blue-40: #5e9eff;
198
+ --en-color-blue-50: #0085f2;
199
+ --en-color-blue-60: #0069c2;
200
+ --en-color-blue-70: #004d92;
201
+ --en-color-blue-80: #003465;
202
+ --en-color-blue-90: #001b3a;
203
+ --en-color-green-10: #a9f3ba;
204
+ --en-color-green-20: #73e693;
205
+ --en-color-green-30: #00d061;
206
+ --en-color-green-40: #00b755;
207
+ --en-color-green-50: #009a46;
208
+ --en-color-green-60: #007936;
209
+ --en-color-green-70: #005a26;
210
+ --en-color-green-80: #003d18;
211
+ --en-color-green-90: #00210a;
212
+ --en-color-yellow-10: #f0e498;
213
+ --en-color-yellow-20: #dfd172;
214
+ --en-color-yellow-30: #c7b700;
215
+ --en-color-yellow-40: #afa100;
216
+ --en-color-yellow-50: #938700;
217
+ --en-color-yellow-60: #746a00;
218
+ --en-color-yellow-70: #564e00;
219
+ --en-color-yellow-80: #3a3500;
220
+ --en-color-yellow-90: #1f1c00;
221
+ --en-color-red-10: #ffd9dc;
222
+ --en-color-red-20: #ffc0c4;
223
+ --en-color-red-30: #ff97a0;
224
+ --en-color-red-40: #ff707f;
225
+ --en-color-red-50: #ff2a51;
226
+ --en-color-red-60: #d30038;
227
+ --en-color-red-70: #9e0027;
228
+ --en-color-red-80: #6f0019;
229
+ --en-color-red-90: #40000a;
230
+ --en-color-violet-10: #e6deff;
231
+ --en-color-violet-20: #d4c5ff;
232
+ --en-color-violet-30: #bea5ff;
233
+ --en-color-violet-40: #ae8aff;
234
+ --en-color-violet-50: #9b65ff;
235
+ --en-color-violet-60: #872bff;
236
+ --en-color-violet-70: #6800cf;
237
+ --en-color-violet-80: #480091;
238
+ --en-color-violet-90: #280056;
239
+ --en-color-blue: #0085f2;
240
+ --en-color-green: #009a46;
241
+ --en-color-yellow: #928700;
242
+ --en-color-red: #d30038;
243
+ --en-color-violet: #9b65ff;
244
+ --en-color-pink: #d00058;
78
245
  --en-text-primary: #fff;
79
246
  --en-text-secondary: #cdcdcd;
80
247
  --en-text-invert: var(--en-primary-black);
@@ -97,15 +264,64 @@
97
264
  }
98
265
  }
99
266
  .en-light {
100
- --en-primary-white: $color-white;
101
- --en-primary-black: #1b1b1b;
102
- --en-primary-dust: #6f6f6f;
103
- --en-primary-red: #d30038;
104
- --en-primary-green: #007936;
105
- --en-primary-blue: #0069c2;
106
- --en-primary-yellow: #746a00;
107
- --en-primary-super-yellow: #ffff00;
108
- --en-text-primary: #1b1b1b;
267
+ --en-color-blue: #0085f2;
268
+ --en-color-green: #009a46;
269
+ --en-color-yellow: #928700;
270
+ --en-color-red: #d30038;
271
+ --en-color-violet: #9b65ff;
272
+ --en-color-pink: #d00058;
273
+ --en-color-blue-10: #dce2f2;
274
+ --en-color-blue-20: #c1cff1;
275
+ --en-color-blue-30: #8cb4ff;
276
+ --en-color-blue-40: #5e9eff;
277
+ --en-color-blue-50: #0085f2;
278
+ --en-color-blue-60: #0069c2;
279
+ --en-color-blue-70: #004d92;
280
+ --en-color-blue-80: #003465;
281
+ --en-color-blue-90: #001b3a;
282
+ --en-color-green-10: #a9f3ba;
283
+ --en-color-green-20: #73e693;
284
+ --en-color-green-30: #00d061;
285
+ --en-color-green-40: #00b755;
286
+ --en-color-green-50: #009a46;
287
+ --en-color-green-60: #007936;
288
+ --en-color-green-70: #005a26;
289
+ --en-color-green-80: #003d18;
290
+ --en-color-green-90: #00210a;
291
+ --en-color-yellow-10: #f0e498;
292
+ --en-color-yellow-20: #dfd172;
293
+ --en-color-yellow-30: #c7b700;
294
+ --en-color-yellow-40: #afa100;
295
+ --en-color-yellow-50: #938700;
296
+ --en-color-yellow-60: #746a00;
297
+ --en-color-yellow-70: #564e00;
298
+ --en-color-yellow-80: #3a3500;
299
+ --en-color-yellow-90: #1f1c00;
300
+ --en-color-red-10: #ffd9dc;
301
+ --en-color-red-20: #ffc0c4;
302
+ --en-color-red-30: #ff97a0;
303
+ --en-color-red-40: #ff707f;
304
+ --en-color-red-50: #ff2a51;
305
+ --en-color-red-60: #d30038;
306
+ --en-color-red-70: #9e0027;
307
+ --en-color-red-80: #6f0019;
308
+ --en-color-red-90: #40000a;
309
+ --en-color-violet-10: #e6deff;
310
+ --en-color-violet-20: #d4c5ff;
311
+ --en-color-violet-30: #bea5ff;
312
+ --en-color-violet-40: #ae8aff;
313
+ --en-color-violet-50: #9b65ff;
314
+ --en-color-violet-60: #872bff;
315
+ --en-color-violet-70: #6800cf;
316
+ --en-color-violet-80: #480091;
317
+ --en-color-violet-90: #280056;
318
+ --en-color-blue: #0085f2;
319
+ --en-color-green: #009a46;
320
+ --en-color-yellow: #928700;
321
+ --en-color-red: #d30038;
322
+ --en-color-violet: #9b65ff;
323
+ --en-color-pink: #d00058;
324
+ --en-text-primary: var(--en-color-light-blue-30);
109
325
  --en-text-secondary: #4e4e4e;
110
326
  --en-text-invert: var(--en-primary-white);
111
327
  --en-text-muted: var(--en-primary-dust);
@@ -130,13 +346,63 @@
130
346
  }
131
347
 
132
348
  .en-dark {
133
- --en-primary-white: #ffffff;
134
- --en-primary-black: #1b1b1b;
135
- --en-primary-dust: #858585;
136
- --en-primary-red: #ff97a0;
137
- --en-primary-green: #00d061;
138
- --en-primary-blue: #8cb4ff;
139
- --en-primary-yellow: #c7b700;
349
+ --en-color-blue: #0085f2;
350
+ --en-color-green: #009a46;
351
+ --en-color-yellow: #928700;
352
+ --en-color-red: #d30038;
353
+ --en-color-violet: #9b65ff;
354
+ --en-color-pink: #d00058;
355
+ --en-color-blue-10: #dce2f2;
356
+ --en-color-blue-20: #c1cff1;
357
+ --en-color-blue-30: #8cb4ff;
358
+ --en-color-blue-40: #5e9eff;
359
+ --en-color-blue-50: #0085f2;
360
+ --en-color-blue-60: #0069c2;
361
+ --en-color-blue-70: #004d92;
362
+ --en-color-blue-80: #003465;
363
+ --en-color-blue-90: #001b3a;
364
+ --en-color-green-10: #a9f3ba;
365
+ --en-color-green-20: #73e693;
366
+ --en-color-green-30: #00d061;
367
+ --en-color-green-40: #00b755;
368
+ --en-color-green-50: #009a46;
369
+ --en-color-green-60: #007936;
370
+ --en-color-green-70: #005a26;
371
+ --en-color-green-80: #003d18;
372
+ --en-color-green-90: #00210a;
373
+ --en-color-yellow-10: #f0e498;
374
+ --en-color-yellow-20: #dfd172;
375
+ --en-color-yellow-30: #c7b700;
376
+ --en-color-yellow-40: #afa100;
377
+ --en-color-yellow-50: #938700;
378
+ --en-color-yellow-60: #746a00;
379
+ --en-color-yellow-70: #564e00;
380
+ --en-color-yellow-80: #3a3500;
381
+ --en-color-yellow-90: #1f1c00;
382
+ --en-color-red-10: #ffd9dc;
383
+ --en-color-red-20: #ffc0c4;
384
+ --en-color-red-30: #ff97a0;
385
+ --en-color-red-40: #ff707f;
386
+ --en-color-red-50: #ff2a51;
387
+ --en-color-red-60: #d30038;
388
+ --en-color-red-70: #9e0027;
389
+ --en-color-red-80: #6f0019;
390
+ --en-color-red-90: #40000a;
391
+ --en-color-violet-10: #e6deff;
392
+ --en-color-violet-20: #d4c5ff;
393
+ --en-color-violet-30: #bea5ff;
394
+ --en-color-violet-40: #ae8aff;
395
+ --en-color-violet-50: #9b65ff;
396
+ --en-color-violet-60: #872bff;
397
+ --en-color-violet-70: #6800cf;
398
+ --en-color-violet-80: #480091;
399
+ --en-color-violet-90: #280056;
400
+ --en-color-blue: #0085f2;
401
+ --en-color-green: #009a46;
402
+ --en-color-yellow: #928700;
403
+ --en-color-red: #d30038;
404
+ --en-color-violet: #9b65ff;
405
+ --en-color-pink: #d00058;
140
406
  --en-text-primary: #fff;
141
407
  --en-text-secondary: #cdcdcd;
142
408
  --en-text-invert: var(--en-primary-black);
@@ -158,95 +424,333 @@
158
424
  color-scheme: dark;
159
425
  }
160
426
 
161
- /* 盒模型 规则 */
162
- *,
163
- *::before,
164
- *::after {
165
- box-sizing: border-box;
427
+ .en-full-container {
428
+ width: 100%;
429
+ height: 100%;
166
430
  }
167
431
 
168
- /* 移除默认的 margin 外边距 */
169
- html,
170
- body,
171
- p,
172
- figure,
173
- blockquote,
174
- dl,
175
- dd {
176
- margin: 0;
432
+ .en-padding-horizontal-4 {
433
+ padding-left: 4px;
434
+ padding-right: 4px;
177
435
  }
178
436
 
179
- /* 设置根元素 html 默认样式 */
180
- html {
181
- scroll-behavior: smooth;
437
+ .en-padding-vertical-4 {
438
+ padding-top: 4px;
439
+ padding-bottom: 4px;
182
440
  }
183
441
 
184
- /* 设置默认的 body 元素的样式 */
185
- body {
186
- font-family: var(--en-font-body);
187
- font-size: var(--en-base-font-size);
188
- line-height: var(--en-font-content-line-height);
189
- text-rendering: optimizeSpeed;
442
+ .en-padding-4 {
443
+ padding: 4px;
190
444
  }
191
445
 
192
- /* 链接元素没有 class 类时的展示 */
193
- a:not([class]) {
194
- text-decoration-skip-ink: auto;
446
+ .en-margin-horizontal-4 {
447
+ margin-left: 4px;
448
+ margin-right: 4px;
195
449
  }
196
450
 
197
- a {
198
- text-decoration: none;
451
+ .en-margin-vertical-4 {
452
+ margin-top: 4px;
453
+ margin-bottom: 4px;
199
454
  }
200
455
 
201
- /* 设置图片样式 */
202
- img,
203
- picture {
204
- display: block;
205
- max-width: 100%;
456
+ .en-margin-4 {
457
+ margin: 4px;
206
458
  }
207
459
 
208
- /* Fix Inter font bug: 'em' not slanted in Safari. See issue: https://github.com/mdn/yari/issues/7203 */
209
- em {
210
- font-variation-settings: "slnt" -10;
460
+ .en-border-radius-4 {
461
+ border-radius: 4px;
211
462
  }
212
463
 
213
- /* Inherit fonts for inputs and buttons */
214
- input,
215
- button,
216
- textarea,
217
- select {
218
- font: inherit;
464
+ .en-padding-horizontal-8 {
465
+ padding-left: 8px;
466
+ padding-right: 8px;
219
467
  }
220
468
 
221
- /* 自动填充的密码的背景色设置动画已取消背景色 */
222
- input:-webkit-autofill,
223
- input:-webkit-autofill:hover,
224
- input:-webkit-autofill:focus,
225
- input:-webkit-autofill:active {
226
- transition-delay: 99999s;
227
- transition: color 99999s ease-out, background-color 99999s ease-out;
228
- -webkit-transition-delay: 99999s;
229
- -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
230
- -webkit-text-fill-color: var(--text-primary);
469
+ .en-padding-vertical-8 {
470
+ padding-top: 8px;
471
+ padding-bottom: 8px;
231
472
  }
232
473
 
233
- /* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
234
- @media (prefers-reduced-motion: reduce) {
235
- html {
236
- scroll-behavior: auto;
237
- }
238
- *,
239
- *::before,
240
- *::after {
241
- animation-duration: 0.01ms !important;
242
- animation-iteration-count: 1 !important;
243
- scroll-behavior: auto !important;
244
- transition-duration: 0.01ms !important;
245
- }
474
+ .en-padding-8 {
475
+ padding: 8px;
246
476
  }
247
- .en-full-container {
248
- width: 100%;
249
- height: 100%;
477
+
478
+ .en-margin-horizontal-8 {
479
+ margin-left: 8px;
480
+ margin-right: 8px;
481
+ }
482
+
483
+ .en-margin-vertical-8 {
484
+ margin-top: 8px;
485
+ margin-bottom: 8px;
486
+ }
487
+
488
+ .en-margin-8 {
489
+ margin: 8px;
490
+ }
491
+
492
+ .en-border-radius-8 {
493
+ border-radius: 8px;
494
+ }
495
+
496
+ .en-padding-horizontal-12 {
497
+ padding-left: 12px;
498
+ padding-right: 12px;
499
+ }
500
+
501
+ .en-padding-vertical-12 {
502
+ padding-top: 12px;
503
+ padding-bottom: 12px;
504
+ }
505
+
506
+ .en-padding-12 {
507
+ padding: 12px;
508
+ }
509
+
510
+ .en-margin-horizontal-12 {
511
+ margin-left: 12px;
512
+ margin-right: 12px;
513
+ }
514
+
515
+ .en-margin-vertical-12 {
516
+ margin-top: 12px;
517
+ margin-bottom: 12px;
518
+ }
519
+
520
+ .en-margin-12 {
521
+ margin: 12px;
522
+ }
523
+
524
+ .en-border-radius-12 {
525
+ border-radius: 12px;
526
+ }
527
+
528
+ .en-padding-horizontal-16 {
529
+ padding-left: 16px;
530
+ padding-right: 16px;
531
+ }
532
+
533
+ .en-padding-vertical-16 {
534
+ padding-top: 16px;
535
+ padding-bottom: 16px;
536
+ }
537
+
538
+ .en-padding-16 {
539
+ padding: 16px;
540
+ }
541
+
542
+ .en-margin-horizontal-16 {
543
+ margin-left: 16px;
544
+ margin-right: 16px;
545
+ }
546
+
547
+ .en-margin-vertical-16 {
548
+ margin-top: 16px;
549
+ margin-bottom: 16px;
550
+ }
551
+
552
+ .en-margin-16 {
553
+ margin: 16px;
554
+ }
555
+
556
+ .en-border-radius-16 {
557
+ border-radius: 16px;
558
+ }
559
+
560
+ .en-padding-horizontal-20 {
561
+ padding-left: 20px;
562
+ padding-right: 20px;
563
+ }
564
+
565
+ .en-padding-vertical-20 {
566
+ padding-top: 20px;
567
+ padding-bottom: 20px;
568
+ }
569
+
570
+ .en-padding-20 {
571
+ padding: 20px;
572
+ }
573
+
574
+ .en-margin-horizontal-20 {
575
+ margin-left: 20px;
576
+ margin-right: 20px;
577
+ }
578
+
579
+ .en-margin-vertical-20 {
580
+ margin-top: 20px;
581
+ margin-bottom: 20px;
582
+ }
583
+
584
+ .en-margin-20 {
585
+ margin: 20px;
586
+ }
587
+
588
+ .en-border-radius-20 {
589
+ border-radius: 20px;
590
+ }
591
+
592
+ .en-padding-horizontal-24 {
593
+ padding-left: 24px;
594
+ padding-right: 24px;
595
+ }
596
+
597
+ .en-padding-vertical-24 {
598
+ padding-top: 24px;
599
+ padding-bottom: 24px;
600
+ }
601
+
602
+ .en-padding-24 {
603
+ padding: 24px;
604
+ }
605
+
606
+ .en-margin-horizontal-24 {
607
+ margin-left: 24px;
608
+ margin-right: 24px;
609
+ }
610
+
611
+ .en-margin-vertical-24 {
612
+ margin-top: 24px;
613
+ margin-bottom: 24px;
614
+ }
615
+
616
+ .en-margin-24 {
617
+ margin: 24px;
618
+ }
619
+
620
+ .en-border-radius-24 {
621
+ border-radius: 24px;
622
+ }
623
+
624
+ .en-padding-horizontal-28 {
625
+ padding-left: 28px;
626
+ padding-right: 28px;
627
+ }
628
+
629
+ .en-padding-vertical-28 {
630
+ padding-top: 28px;
631
+ padding-bottom: 28px;
632
+ }
633
+
634
+ .en-padding-28 {
635
+ padding: 28px;
636
+ }
637
+
638
+ .en-margin-horizontal-28 {
639
+ margin-left: 28px;
640
+ margin-right: 28px;
641
+ }
642
+
643
+ .en-margin-vertical-28 {
644
+ margin-top: 28px;
645
+ margin-bottom: 28px;
646
+ }
647
+
648
+ .en-margin-28 {
649
+ margin: 28px;
650
+ }
651
+
652
+ .en-border-radius-28 {
653
+ border-radius: 28px;
654
+ }
655
+
656
+ .en-padding-horizontal-32 {
657
+ padding-left: 32px;
658
+ padding-right: 32px;
659
+ }
660
+
661
+ .en-padding-vertical-32 {
662
+ padding-top: 32px;
663
+ padding-bottom: 32px;
664
+ }
665
+
666
+ .en-padding-32 {
667
+ padding: 32px;
668
+ }
669
+
670
+ .en-margin-horizontal-32 {
671
+ margin-left: 32px;
672
+ margin-right: 32px;
673
+ }
674
+
675
+ .en-margin-vertical-32 {
676
+ margin-top: 32px;
677
+ margin-bottom: 32px;
678
+ }
679
+
680
+ .en-margin-32 {
681
+ margin: 32px;
682
+ }
683
+
684
+ .en-border-radius-32 {
685
+ border-radius: 32px;
686
+ }
687
+
688
+ .en-padding-horizontal-36 {
689
+ padding-left: 36px;
690
+ padding-right: 36px;
691
+ }
692
+
693
+ .en-padding-vertical-36 {
694
+ padding-top: 36px;
695
+ padding-bottom: 36px;
696
+ }
697
+
698
+ .en-padding-36 {
699
+ padding: 36px;
700
+ }
701
+
702
+ .en-margin-horizontal-36 {
703
+ margin-left: 36px;
704
+ margin-right: 36px;
705
+ }
706
+
707
+ .en-margin-vertical-36 {
708
+ margin-top: 36px;
709
+ margin-bottom: 36px;
710
+ }
711
+
712
+ .en-margin-36 {
713
+ margin: 36px;
714
+ }
715
+
716
+ .en-border-radius-36 {
717
+ border-radius: 36px;
718
+ }
719
+
720
+ .en-padding-horizontal-40 {
721
+ padding-left: 40px;
722
+ padding-right: 40px;
723
+ }
724
+
725
+ .en-padding-vertical-40 {
726
+ padding-top: 40px;
727
+ padding-bottom: 40px;
728
+ }
729
+
730
+ .en-padding-40 {
731
+ padding: 40px;
732
+ }
733
+
734
+ .en-margin-horizontal-40 {
735
+ margin-left: 40px;
736
+ margin-right: 40px;
737
+ }
738
+
739
+ .en-margin-vertical-40 {
740
+ margin-top: 40px;
741
+ margin-bottom: 40px;
742
+ }
743
+
744
+ .en-margin-40 {
745
+ margin: 40px;
746
+ }
747
+
748
+ .en-border-radius-40 {
749
+ border-radius: 40px;
750
+ }
751
+
752
+ .en-inline-block {
753
+ display: inline-block;
250
754
  }
251
755
 
252
756
  .en-relative {