@bookklik/senangstart-css 0.2.9 → 0.2.12
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/.agent/skills/add-utility/SKILL.md +65 -0
- package/.agent/workflows/add-utility.md +2 -0
- package/.agent/workflows/build.md +2 -0
- package/.agent/workflows/dev.md +2 -0
- package/AGENTS.md +30 -0
- package/dist/senangstart-css.js +607 -180
- package/dist/senangstart-css.min.js +234 -195
- package/dist/senangstart-tw.js +274 -8
- package/dist/senangstart-tw.min.js +1 -1
- package/docs/SYNTAX-REFERENCE.md +1731 -1590
- package/docs/guide/preflight.md +20 -1
- package/docs/ms/guide/preflight.md +19 -0
- package/docs/ms/reference/breakpoints.md +14 -0
- package/docs/ms/reference/visual/border-radius.md +50 -10
- package/docs/ms/reference/visual/contain.md +57 -0
- package/docs/ms/reference/visual/content-visibility.md +53 -0
- package/docs/ms/reference/visual/placeholder-color.md +92 -0
- package/docs/ms/reference/visual/ring-color.md +2 -2
- package/docs/ms/reference/visual/ring-offset.md +3 -3
- package/docs/ms/reference/visual/ring.md +5 -5
- package/docs/ms/reference/visual/writing-mode.md +53 -0
- package/docs/ms/reference/visual.md +6 -0
- package/docs/public/assets/senangstart-css.min.js +234 -195
- package/docs/public/llms.txt +45 -12
- package/docs/reference/breakpoints.md +14 -0
- package/docs/reference/visual/border-radius.md +50 -10
- package/docs/reference/visual/contain.md +57 -0
- package/docs/reference/visual/content-visibility.md +53 -0
- package/docs/reference/visual/placeholder-color.md +92 -0
- package/docs/reference/visual/ring-color.md +2 -2
- package/docs/reference/visual/ring-offset.md +3 -3
- package/docs/reference/visual/ring.md +5 -5
- package/docs/reference/visual/writing-mode.md +53 -0
- package/docs/reference/visual.md +7 -0
- package/docs/syntax-reference.json +2185 -2009
- package/package.json +1 -1
- package/scripts/convert-tailwind.js +300 -26
- package/scripts/generate-docs.js +403 -403
- package/src/cdn/senangstart-engine.js +5 -5
- package/src/cdn/tw-conversion-engine.js +305 -8
- package/src/cli/commands/build.js +51 -13
- package/src/cli/commands/dev.js +157 -93
- package/src/compiler/generators/css.js +467 -208
- package/src/compiler/generators/preflight.js +26 -13
- package/src/compiler/generators/typescript.js +3 -1
- package/src/compiler/index.js +27 -3
- package/src/compiler/parser.js +13 -6
- package/src/compiler/tokenizer.js +25 -23
- package/src/config/defaults.js +3 -0
- package/src/core/tokenizer-core.js +46 -19
- package/src/definitions/index.js +4 -1
- package/src/definitions/visual-borders.js +10 -10
- package/src/definitions/visual-performance.js +126 -0
- package/src/definitions/visual.js +25 -9
- package/src/utils/common.js +456 -27
- package/src/utils/node-io.js +82 -0
- package/tests/integration/dev-recovery.test.js +231 -0
- package/tests/unit/cli/memory-limits.test.js +169 -0
- package/tests/unit/compiler/css-generation-error-handling.test.js +204 -0
- package/tests/unit/compiler/generators/css-errors.test.js +102 -0
- package/tests/unit/compiler/generators/css.test.js +102 -5
- package/tests/unit/convert-tailwind.test.js +518 -431
- package/tests/unit/utils/common.test.js +376 -26
- package/tests/unit/utils/file-timeout.test.js +154 -0
- package/tests/unit/utils/theme-validation.test.js +181 -0
- package/tests/unit/compiler/generators/css.coverage.test.js +0 -833
- package/tests/unit/convert-tailwind.cli.test.js +0 -95
- package/tests/unit/security.test.js +0 -206
- /package/tests/unit/{convert-tailwind.coverage.test.js → convert-tailwind-edgecases.test.js} +0 -0
package/docs/SYNTAX-REFERENCE.md
CHANGED
|
@@ -1,1590 +1,1731 @@
|
|
|
1
|
-
# SenangStart CSS - Syntax Reference
|
|
2
|
-
|
|
3
|
-
> Auto-generated on 2026-
|
|
4
|
-
> Total definitions:
|
|
5
|
-
|
|
6
|
-
This document provides a complete reference of all utility syntax patterns in SenangStart CSS.
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
## Summary
|
|
11
|
-
|
|
12
|
-
| Category | Count |
|
|
13
|
-
|----------|-------|
|
|
14
|
-
| Layout | 41 |
|
|
15
|
-
| Space | 5 |
|
|
16
|
-
| Visual |
|
|
17
|
-
| **Total** | **
|
|
18
|
-
|
|
19
|
-
---
|
|
20
|
-
|
|
21
|
-
## Layout Utilities
|
|
22
|
-
|
|
23
|
-
| Name | Syntax | Description |
|
|
24
|
-
|------|--------|-------------|
|
|
25
|
-
| align-content | `content:[value]` | Align content rows in multi-line flex container |
|
|
26
|
-
| align-items | `items:[value]` | Align items along the cross axis |
|
|
27
|
-
| align-self | `self:[value]` | Override alignment for a single item |
|
|
28
|
-
| aspect-ratio | `aspect:[value]` | Set element aspect ratio |
|
|
29
|
-
| border-collapse | `border:[value]` | Control table border collapse |
|
|
30
|
-
| border-spacing | `border-spacing:[value]` | Control spacing between table borders |
|
|
31
|
-
| box-sizing | `box:[value]` | Control how width and height are calculated |
|
|
32
|
-
| caption-side | `caption:[value]` | Control table caption position |
|
|
33
|
-
| columns | `cols:[value]` | Create multi-column layouts |
|
|
34
|
-
| container | `container` | Create a centered container with max-width |
|
|
35
|
-
| display | `[display-value]` | Control the display type of elements |
|
|
36
|
-
| flex | `flex:[value]` | Flex shorthand property |
|
|
37
|
-
| flex-basis | `basis:[value]` | Set initial size of flex item |
|
|
38
|
-
| flex-direction | `[direction]` | Set the direction of flex items |
|
|
39
|
-
| flex-items | `[flex-item-value]` | Control flex grow and shrink behavior |
|
|
40
|
-
| flex-wrap | `[wrap-value]` | Control how flex items wrap |
|
|
41
|
-
| float-clear | `float:[value]` or `clear:[value]` | Control element floating and clearing |
|
|
42
|
-
| grid-auto-flow | `grid-flow:[value]` | Control how auto-placed items flow in grid |
|
|
43
|
-
| grid-auto-sizing | `auto-cols:[value]` or `auto-rows:[value]` | Control size of auto-generated grid tracks |
|
|
44
|
-
| grid-column-span | `col-span:[value]` | Span across grid columns |
|
|
45
|
-
| grid-columns | `grid-cols:[value]` | Define grid template columns |
|
|
46
|
-
| grid-row-span | `row-span:[value]` | Span across grid rows |
|
|
47
|
-
| grid-rows | `grid-rows:[value]` | Define grid template rows |
|
|
48
|
-
| inset | `inset:[value]` or `top:[value]` | Control positioning offsets |
|
|
49
|
-
| isolation | `isolation:[value]` | Create new stacking context |
|
|
50
|
-
| justify-content | `justify:[value]` | Align items along the main axis |
|
|
51
|
-
| justify-items | `justify-items:[value]` | Align grid items on inline axis |
|
|
52
|
-
| justify-self | `justify-self:[value]` | Align single grid item on inline axis |
|
|
53
|
-
| object-fit | `object:[value]` | Control how media content fits its container |
|
|
54
|
-
| object-position | `object-pos:[value]` | Position replaced element content within container |
|
|
55
|
-
| order | `order:[value]` | Control flex/grid item order |
|
|
56
|
-
| overflow | `overflow:[value]` | Control content overflow behavior |
|
|
57
|
-
| overscroll | `overscroll:[value]` | Control scroll chaining behavior |
|
|
58
|
-
| place-content | `place-content:[value]` | Shorthand for align-content and justify-content |
|
|
59
|
-
| place-items | `place-items:[value]` | Shorthand for align-items and justify-items |
|
|
60
|
-
| place-self | `place-self:[value]` | Shorthand for align-self and justify-self |
|
|
61
|
-
| position | `[position-value]` | Set the positioning method |
|
|
62
|
-
| shorthand-alignment | `[alignment]` | Quick alignment shortcuts |
|
|
63
|
-
| table-layout | `table:[value]` | Control table layout algorithm |
|
|
64
|
-
| visibility | `[visibility-value]` | Control element visibility |
|
|
65
|
-
| z-index | `z:[value]` | Control stacking order |
|
|
66
|
-
|
|
67
|
-
---
|
|
68
|
-
|
|
69
|
-
## Space Utilities
|
|
70
|
-
|
|
71
|
-
| Name | Syntax | Description |
|
|
72
|
-
|------|--------|-------------|
|
|
73
|
-
| gap | `g:[value]` or `g-{axis}:[value]` | Add gap between flex/grid items |
|
|
74
|
-
| height | `h:[value]` | Set element height |
|
|
75
|
-
| margin | `m:[value]` or `m-{side}:[value]` | Add margin to elements |
|
|
76
|
-
| padding | `p:[value]` or `p-{side}:[value]` | Add padding to elements |
|
|
77
|
-
| width | `w:[value]` | Set element width |
|
|
78
|
-
|
|
79
|
-
---
|
|
80
|
-
|
|
81
|
-
## Visual Utilities
|
|
82
|
-
|
|
83
|
-
| Name | Syntax | Description |
|
|
84
|
-
|------|--------|-------------|
|
|
85
|
-
| accent-color | `accent:[color]` | Set accent color for form controls |
|
|
86
|
-
| animation-builtin | `animate:[value]` | Apply built-in animations |
|
|
87
|
-
| animation-delay | `animation-delay:[value]` | Set animation delay |
|
|
88
|
-
| animation-direction | `animation-direction:[value]` | Set animation direction |
|
|
89
|
-
| animation-duration | `animation-duration:[value]` | Set animation duration |
|
|
90
|
-
| animation-fill | `animation-fill:[value]` | Set animation fill mode |
|
|
91
|
-
| animation-iteration | `animation-iteration:[value]` | Set animation iteration count |
|
|
92
|
-
| animation-play | `animation-play:[value]` | Control animation play state |
|
|
93
|
-
| appearance | `appearance:[value]` | Control native appearance |
|
|
94
|
-
| backdrop-blur | `backdrop-blur:[value]` | Blur backdrop |
|
|
95
|
-
| backdrop-brightness | `backdrop-brightness:[value]` | Adjust backdrop brightness |
|
|
96
|
-
| backdrop-contrast | `backdrop-contrast:[value]` | Adjust backdrop contrast |
|
|
97
|
-
| backdrop-grayscale | `backdrop-grayscale:[value]` | Apply grayscale to backdrop |
|
|
98
|
-
| backdrop-hue-rotate | `backdrop-hue-rotate:[degrees]` | Rotate backdrop hue |
|
|
99
|
-
| backdrop-invert | `backdrop-invert:[value]` | Invert backdrop colors |
|
|
100
|
-
| backdrop-opacity | `backdrop-opacity:[value]` | Set backdrop opacity |
|
|
101
|
-
| backdrop-saturate | `backdrop-saturate:[value]` | Adjust backdrop saturation |
|
|
102
|
-
| backdrop-sepia | `backdrop-sepia:[value]` | Apply sepia to backdrop |
|
|
103
|
-
| background-attachment | `bg-attachment:[value]` | Set background attachment behavior |
|
|
104
|
-
| background-blend-mode | `bg-blend:[value]` | Set background blend mode |
|
|
105
|
-
| background-clip | `bg-clip:[value]` | Set background clipping area |
|
|
106
|
-
| background-color | `bg:[color]` | Set background color |
|
|
107
|
-
| background-image | `bg-image:[value]` | Set background image or gradient |
|
|
108
|
-
| background-origin | `bg-origin:[value]` | Set background positioning origin |
|
|
109
|
-
| background-position | `bg-pos:[value]` | Set background position |
|
|
110
|
-
| background-repeat | `bg-repeat:[value]` | Set background repeat behavior |
|
|
111
|
-
| background-size | `bg-size:[value]` | Set background size |
|
|
112
|
-
| blend-modes | `mix-blend:[value]` | Set mix blend mode |
|
|
113
|
-
| border | `border:[color]` | `border-{t|b|l|r|x|y}:[color]` | Set border color for all sides or specific sides |
|
|
114
|
-
| border-radius | `rounded:[value]` | Set border radius |
|
|
115
|
-
| border-style | `border-style:[value]` | Set border style |
|
|
116
|
-
| border-width | `border-w:[value]` | `border-{t|b|l|r|x|y}-w:[value]` | Set border width for all sides or specific sides |
|
|
117
|
-
| box-shadow | `shadow:[value]` | Add box shadow |
|
|
118
|
-
| caret-color | `caret:[color]` | Set text input caret color |
|
|
119
|
-
| color-scheme | `color-scheme:[value]` | Set preferred color scheme |
|
|
120
|
-
|
|
|
121
|
-
|
|
|
122
|
-
|
|
|
123
|
-
|
|
|
124
|
-
|
|
|
125
|
-
|
|
|
126
|
-
|
|
|
127
|
-
|
|
|
128
|
-
|
|
|
129
|
-
| filter-
|
|
130
|
-
| filter-
|
|
131
|
-
| filter-
|
|
132
|
-
|
|
|
133
|
-
|
|
|
134
|
-
|
|
|
135
|
-
|
|
|
136
|
-
|
|
|
137
|
-
|
|
|
138
|
-
|
|
|
139
|
-
|
|
|
140
|
-
|
|
|
141
|
-
|
|
|
142
|
-
|
|
|
143
|
-
|
|
|
144
|
-
|
|
|
145
|
-
|
|
|
146
|
-
|
|
|
147
|
-
|
|
|
148
|
-
|
|
|
149
|
-
|
|
|
150
|
-
|
|
|
151
|
-
|
|
|
152
|
-
|
|
|
153
|
-
|
|
|
154
|
-
|
|
|
155
|
-
|
|
|
156
|
-
|
|
|
157
|
-
|
|
|
158
|
-
|
|
|
159
|
-
|
|
|
160
|
-
|
|
|
161
|
-
|
|
|
162
|
-
|
|
|
163
|
-
|
|
|
164
|
-
|
|
|
165
|
-
|
|
|
166
|
-
|
|
|
167
|
-
|
|
|
168
|
-
|
|
|
169
|
-
|
|
|
170
|
-
|
|
|
171
|
-
|
|
|
172
|
-
|
|
|
173
|
-
|
|
|
174
|
-
|
|
|
175
|
-
|
|
|
176
|
-
| transform
|
|
177
|
-
|
|
|
178
|
-
|
|
|
179
|
-
|
|
|
180
|
-
|
|
|
181
|
-
|
|
|
182
|
-
|
|
|
183
|
-
|
|
|
184
|
-
|
|
|
185
|
-
|
|
|
186
|
-
|
|
|
187
|
-
|
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
|
198
|
-
|
|
199
|
-
|
|
|
200
|
-
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
| `
|
|
213
|
-
| `
|
|
214
|
-
| `
|
|
215
|
-
| `
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
|
223
|
-
|
|
224
|
-
| `
|
|
225
|
-
| `
|
|
226
|
-
| `
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
|
233
|
-
|
|
234
|
-
| `
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
|
246
|
-
|
|
247
|
-
| `
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
|
261
|
-
|
|
262
|
-
| `
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
| `
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
| `
|
|
277
|
-
|
|
278
|
-
####
|
|
279
|
-
|
|
280
|
-
| Value | CSS Output |
|
|
281
|
-
|-------|------------|
|
|
282
|
-
| `
|
|
283
|
-
| `
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
| `
|
|
296
|
-
| `
|
|
297
|
-
| `
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
|
309
|
-
|
|
310
|
-
| `
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
|
356
|
-
|
|
357
|
-
| `
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
|
369
|
-
|
|
370
|
-
| `
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
|
384
|
-
|
|
385
|
-
| `
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
|
397
|
-
|
|
398
|
-
| `
|
|
399
|
-
| `
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
| `
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
|
411
|
-
|
|
412
|
-
| `
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
|
417
|
-
|
|
418
|
-
| `
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
| `
|
|
426
|
-
| `
|
|
427
|
-
| `
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
|
436
|
-
|
|
437
|
-
| `
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
|
445
|
-
|
|
446
|
-
| `
|
|
447
|
-
| `
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
|
455
|
-
|
|
456
|
-
| `
|
|
457
|
-
| `
|
|
458
|
-
| `
|
|
459
|
-
| `
|
|
460
|
-
| `
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
| `
|
|
468
|
-
| `
|
|
469
|
-
| `
|
|
470
|
-
| `
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
|
479
|
-
|
|
480
|
-
| `
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
|
498
|
-
|
|
499
|
-
| `
|
|
500
|
-
| `
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
| `
|
|
508
|
-
| `
|
|
509
|
-
| `
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
|
518
|
-
|
|
519
|
-
| `
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
|
527
|
-
|
|
528
|
-
| `
|
|
529
|
-
| `
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
|
537
|
-
|
|
538
|
-
| `
|
|
539
|
-
| `
|
|
540
|
-
| `
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
|
552
|
-
|
|
553
|
-
| `
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
| `
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
| `
|
|
574
|
-
| `
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
|
592
|
-
|
|
593
|
-
| `undefined` | `
|
|
594
|
-
| `undefined` | `
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
| `undefined` | `
|
|
602
|
-
| `undefined` | `
|
|
603
|
-
| `undefined` | `
|
|
604
|
-
| `undefined` | `
|
|
605
|
-
| `undefined` | `
|
|
606
|
-
| `undefined` | `
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
| `undefined` | `
|
|
614
|
-
| `undefined` | `
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
|
624
|
-
|
|
625
|
-
| `
|
|
626
|
-
| `
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
|
634
|
-
|
|
635
|
-
| `
|
|
636
|
-
| `
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
|
644
|
-
|
|
645
|
-
| `
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
|
654
|
-
|
|
655
|
-
| `
|
|
656
|
-
| `
|
|
657
|
-
| `
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
| `
|
|
665
|
-
| `
|
|
666
|
-
| `
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
|
678
|
-
|
|
679
|
-
| `
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
| `
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
| `
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
|
698
|
-
|
|
699
|
-
| `
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
| `
|
|
707
|
-
| `
|
|
708
|
-
| `
|
|
709
|
-
| `
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
|
717
|
-
|
|
718
|
-
| `
|
|
719
|
-
| `
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
|
787
|
-
|
|
788
|
-
| `
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
|
795
|
-
|
|
796
|
-
| `
|
|
797
|
-
| `
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
|
806
|
-
|
|
807
|
-
| `
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
|
825
|
-
|
|
826
|
-
| `
|
|
827
|
-
| `
|
|
828
|
-
| `
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
| `
|
|
836
|
-
| `
|
|
837
|
-
| `
|
|
838
|
-
| `
|
|
839
|
-
| `
|
|
840
|
-
| `
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
|
847
|
-
|
|
848
|
-
| `
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
|
858
|
-
|
|
859
|
-
| `
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
|
866
|
-
|
|
867
|
-
| `
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
|
885
|
-
|
|
886
|
-
| `
|
|
887
|
-
| `
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
|
895
|
-
|
|
896
|
-
| `
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
|
905
|
-
|
|
906
|
-
| `
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
|
924
|
-
|
|
925
|
-
| `
|
|
926
|
-
| `
|
|
927
|
-
| `
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
| `
|
|
935
|
-
| `content` | `
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
|
952
|
-
|
|
953
|
-
| `
|
|
954
|
-
| `
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
|
959
|
-
|
|
960
|
-
| `
|
|
961
|
-
| `
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
|
981
|
-
|
|
982
|
-
| `
|
|
983
|
-
| `
|
|
984
|
-
| `
|
|
985
|
-
| `
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
| `
|
|
993
|
-
| `
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
|
1000
|
-
|
|
1001
|
-
| `
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
| `
|
|
1009
|
-
| `
|
|
1010
|
-
|
|
1011
|
-
#### filter-
|
|
1012
|
-
|
|
1013
|
-
| Value | CSS Output |
|
|
1014
|
-
|-------|------------|
|
|
1015
|
-
| `none` | `filter:
|
|
1016
|
-
| `
|
|
1017
|
-
| `
|
|
1018
|
-
| `
|
|
1019
|
-
| `
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
|
1026
|
-
|
|
1027
|
-
| `
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
|
1040
|
-
|
|
1041
|
-
| `
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
| `
|
|
1049
|
-
| `
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
|
1057
|
-
|
|
1058
|
-
| `
|
|
1059
|
-
| `
|
|
1060
|
-
| `
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
| `
|
|
1068
|
-
| `
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
| `
|
|
1076
|
-
| `
|
|
1077
|
-
|
|
1078
|
-
####
|
|
1079
|
-
|
|
1080
|
-
| Value | CSS Output |
|
|
1081
|
-
|-------|------------|
|
|
1082
|
-
| `none` | `
|
|
1083
|
-
| `
|
|
1084
|
-
| `
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
|
1091
|
-
|
|
1092
|
-
| `
|
|
1093
|
-
| `
|
|
1094
|
-
| `
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
| `
|
|
1102
|
-
| `
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
|
1114
|
-
|
|
1115
|
-
| `
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
| `
|
|
1123
|
-
| `
|
|
1124
|
-
| `
|
|
1125
|
-
| `
|
|
1126
|
-
| `
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
|
1133
|
-
|
|
1134
|
-
| `
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
|
1141
|
-
|
|
1142
|
-
| `
|
|
1143
|
-
| `
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
| `
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
| `
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
|
1176
|
-
|
|
1177
|
-
| `
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
|
1201
|
-
|
|
1202
|
-
| `
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
| `
|
|
1210
|
-
| `
|
|
1211
|
-
| `
|
|
1212
|
-
| `
|
|
1213
|
-
| `
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
| `
|
|
1221
|
-
| `
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
|
1226
|
-
|
|
1227
|
-
| `
|
|
1228
|
-
| `
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
|
1257
|
-
|
|
1258
|
-
| `
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
|
1289
|
-
|
|
1290
|
-
| `
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
|
1298
|
-
|
|
1299
|
-
| `
|
|
1300
|
-
| `
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
|
1307
|
-
|
|
1308
|
-
| `
|
|
1309
|
-
| `
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
|
1321
|
-
|
|
1322
|
-
| `
|
|
1323
|
-
| `
|
|
1324
|
-
| `
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
|
1336
|
-
|
|
1337
|
-
| `
|
|
1338
|
-
| `
|
|
1339
|
-
| `
|
|
1340
|
-
| `
|
|
1341
|
-
| `
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
|
1353
|
-
|
|
1354
|
-
| `
|
|
1355
|
-
| `
|
|
1356
|
-
| `
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
| `center` | `
|
|
1364
|
-
| `
|
|
1365
|
-
| `
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
|
1370
|
-
|
|
1371
|
-
| `
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
|
1379
|
-
|
|
1380
|
-
| `
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
|
1388
|
-
|
|
1389
|
-
| `
|
|
1390
|
-
|
|
1391
|
-
####
|
|
1392
|
-
|
|
1393
|
-
| Value | CSS Output |
|
|
1394
|
-
|-------|------------|
|
|
1395
|
-
| `
|
|
1396
|
-
| `
|
|
1397
|
-
| `
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
|
1415
|
-
|
|
1416
|
-
| `
|
|
1417
|
-
| `
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
|
1422
|
-
|
|
1423
|
-
| `
|
|
1424
|
-
| `
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
|
1429
|
-
|
|
1430
|
-
|
|
|
1431
|
-
|
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
|
1438
|
-
|
|
1439
|
-
| `
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
|
1447
|
-
|
|
1448
|
-
| `
|
|
1449
|
-
| `
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
|
1454
|
-
|
|
1455
|
-
| `
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
|
1460
|
-
|
|
1461
|
-
| `
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
| `
|
|
1469
|
-
| `
|
|
1470
|
-
| `
|
|
1471
|
-
| `
|
|
1472
|
-
| `
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
|
1486
|
-
|
|
1487
|
-
| `
|
|
1488
|
-
| `
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
|
1493
|
-
|
|
1494
|
-
| `
|
|
1495
|
-
| `
|
|
1496
|
-
| `
|
|
1497
|
-
| `
|
|
1498
|
-
| `
|
|
1499
|
-
| `
|
|
1500
|
-
| `
|
|
1501
|
-
| `
|
|
1502
|
-
| `
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
|
1507
|
-
|
|
1508
|
-
| `
|
|
1509
|
-
| `
|
|
1510
|
-
| `
|
|
1511
|
-
| `
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
|
1516
|
-
|
|
1517
|
-
| `
|
|
1518
|
-
| `
|
|
1519
|
-
| `
|
|
1520
|
-
| `
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
|
1525
|
-
|
|
1526
|
-
| `
|
|
1527
|
-
| `
|
|
1528
|
-
| `
|
|
1529
|
-
| `
|
|
1530
|
-
| `
|
|
1531
|
-
| `
|
|
1532
|
-
| `
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
|
1553
|
-
|
|
1554
|
-
| `
|
|
1555
|
-
| `
|
|
1556
|
-
| `
|
|
1557
|
-
| `
|
|
1558
|
-
| `
|
|
1559
|
-
| `
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
|
1567
|
-
|
|
1568
|
-
| `
|
|
1569
|
-
| `
|
|
1570
|
-
| `
|
|
1571
|
-
|
|
1572
|
-
####
|
|
1573
|
-
|
|
1574
|
-
| Value | CSS Output |
|
|
1575
|
-
|-------|------------|
|
|
1576
|
-
| `
|
|
1577
|
-
| `
|
|
1578
|
-
| `
|
|
1579
|
-
| `
|
|
1580
|
-
| `
|
|
1581
|
-
|
|
1582
|
-
####
|
|
1583
|
-
|
|
1584
|
-
| Value | CSS Output |
|
|
1585
|
-
|-------|------------|
|
|
1586
|
-
| `
|
|
1587
|
-
| `
|
|
1588
|
-
| `
|
|
1589
|
-
| `
|
|
1590
|
-
|
|
1
|
+
# SenangStart CSS - Syntax Reference
|
|
2
|
+
|
|
3
|
+
> Auto-generated on 2026-02-06
|
|
4
|
+
> Total definitions: 162
|
|
5
|
+
|
|
6
|
+
This document provides a complete reference of all utility syntax patterns in SenangStart CSS.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Summary
|
|
11
|
+
|
|
12
|
+
| Category | Count |
|
|
13
|
+
|----------|-------|
|
|
14
|
+
| Layout | 41 |
|
|
15
|
+
| Space | 5 |
|
|
16
|
+
| Visual | 116 |
|
|
17
|
+
| **Total** | **162** |
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Layout Utilities
|
|
22
|
+
|
|
23
|
+
| Name | Syntax | Description |
|
|
24
|
+
|------|--------|-------------|
|
|
25
|
+
| align-content | `content:[value]` | Align content rows in multi-line flex container |
|
|
26
|
+
| align-items | `items:[value]` | Align items along the cross axis |
|
|
27
|
+
| align-self | `self:[value]` | Override alignment for a single item |
|
|
28
|
+
| aspect-ratio | `aspect:[value]` | Set element aspect ratio |
|
|
29
|
+
| border-collapse | `border:[value]` | Control table border collapse |
|
|
30
|
+
| border-spacing | `border-spacing:[value]` | Control spacing between table borders |
|
|
31
|
+
| box-sizing | `box:[value]` | Control how width and height are calculated |
|
|
32
|
+
| caption-side | `caption:[value]` | Control table caption position |
|
|
33
|
+
| columns | `cols:[value]` | Create multi-column layouts |
|
|
34
|
+
| container | `container` | Create a centered container with max-width |
|
|
35
|
+
| display | `[display-value]` | Control the display type of elements |
|
|
36
|
+
| flex | `flex:[value]` | Flex shorthand property |
|
|
37
|
+
| flex-basis | `basis:[value]` | Set initial size of flex item |
|
|
38
|
+
| flex-direction | `[direction]` | Set the direction of flex items |
|
|
39
|
+
| flex-items | `[flex-item-value]` | Control flex grow and shrink behavior |
|
|
40
|
+
| flex-wrap | `[wrap-value]` | Control how flex items wrap |
|
|
41
|
+
| float-clear | `float:[value]` or `clear:[value]` | Control element floating and clearing |
|
|
42
|
+
| grid-auto-flow | `grid-flow:[value]` | Control how auto-placed items flow in grid |
|
|
43
|
+
| grid-auto-sizing | `auto-cols:[value]` or `auto-rows:[value]` | Control size of auto-generated grid tracks |
|
|
44
|
+
| grid-column-span | `col-span:[value]` | Span across grid columns |
|
|
45
|
+
| grid-columns | `grid-cols:[value]` | Define grid template columns |
|
|
46
|
+
| grid-row-span | `row-span:[value]` | Span across grid rows |
|
|
47
|
+
| grid-rows | `grid-rows:[value]` | Define grid template rows |
|
|
48
|
+
| inset | `inset:[value]` or `top:[value]` | Control positioning offsets |
|
|
49
|
+
| isolation | `isolation:[value]` | Create new stacking context |
|
|
50
|
+
| justify-content | `justify:[value]` | Align items along the main axis |
|
|
51
|
+
| justify-items | `justify-items:[value]` | Align grid items on inline axis |
|
|
52
|
+
| justify-self | `justify-self:[value]` | Align single grid item on inline axis |
|
|
53
|
+
| object-fit | `object:[value]` | Control how media content fits its container |
|
|
54
|
+
| object-position | `object-pos:[value]` | Position replaced element content within container |
|
|
55
|
+
| order | `order:[value]` | Control flex/grid item order |
|
|
56
|
+
| overflow | `overflow:[value]` | Control content overflow behavior |
|
|
57
|
+
| overscroll | `overscroll:[value]` | Control scroll chaining behavior |
|
|
58
|
+
| place-content | `place-content:[value]` | Shorthand for align-content and justify-content |
|
|
59
|
+
| place-items | `place-items:[value]` | Shorthand for align-items and justify-items |
|
|
60
|
+
| place-self | `place-self:[value]` | Shorthand for align-self and justify-self |
|
|
61
|
+
| position | `[position-value]` | Set the positioning method |
|
|
62
|
+
| shorthand-alignment | `[alignment]` | Quick alignment shortcuts |
|
|
63
|
+
| table-layout | `table:[value]` | Control table layout algorithm |
|
|
64
|
+
| visibility | `[visibility-value]` | Control element visibility |
|
|
65
|
+
| z-index | `z:[value]` | Control stacking order |
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## Space Utilities
|
|
70
|
+
|
|
71
|
+
| Name | Syntax | Description |
|
|
72
|
+
|------|--------|-------------|
|
|
73
|
+
| gap | `g:[value]` or `g-{axis}:[value]` | Add gap between flex/grid items |
|
|
74
|
+
| height | `h:[value]` | Set element height |
|
|
75
|
+
| margin | `m:[value]` or `m-{side}:[value]` | Add margin to elements |
|
|
76
|
+
| padding | `p:[value]` or `p-{side}:[value]` | Add padding to elements |
|
|
77
|
+
| width | `w:[value]` | Set element width |
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## Visual Utilities
|
|
82
|
+
|
|
83
|
+
| Name | Syntax | Description |
|
|
84
|
+
|------|--------|-------------|
|
|
85
|
+
| accent-color | `accent:[color]` | Set accent color for form controls |
|
|
86
|
+
| animation-builtin | `animate:[value]` | Apply built-in animations |
|
|
87
|
+
| animation-delay | `animation-delay:[value]` | Set animation delay |
|
|
88
|
+
| animation-direction | `animation-direction:[value]` | Set animation direction |
|
|
89
|
+
| animation-duration | `animation-duration:[value]` | Set animation duration |
|
|
90
|
+
| animation-fill | `animation-fill:[value]` | Set animation fill mode |
|
|
91
|
+
| animation-iteration | `animation-iteration:[value]` | Set animation iteration count |
|
|
92
|
+
| animation-play | `animation-play:[value]` | Control animation play state |
|
|
93
|
+
| appearance | `appearance:[value]` | Control native appearance |
|
|
94
|
+
| backdrop-blur | `backdrop-blur:[value]` | Blur backdrop |
|
|
95
|
+
| backdrop-brightness | `backdrop-brightness:[value]` | Adjust backdrop brightness |
|
|
96
|
+
| backdrop-contrast | `backdrop-contrast:[value]` | Adjust backdrop contrast |
|
|
97
|
+
| backdrop-grayscale | `backdrop-grayscale:[value]` | Apply grayscale to backdrop |
|
|
98
|
+
| backdrop-hue-rotate | `backdrop-hue-rotate:[degrees]` | Rotate backdrop hue |
|
|
99
|
+
| backdrop-invert | `backdrop-invert:[value]` | Invert backdrop colors |
|
|
100
|
+
| backdrop-opacity | `backdrop-opacity:[value]` | Set backdrop opacity |
|
|
101
|
+
| backdrop-saturate | `backdrop-saturate:[value]` | Adjust backdrop saturation |
|
|
102
|
+
| backdrop-sepia | `backdrop-sepia:[value]` | Apply sepia to backdrop |
|
|
103
|
+
| background-attachment | `bg-attachment:[value]` | Set background attachment behavior |
|
|
104
|
+
| background-blend-mode | `bg-blend:[value]` | Set background blend mode |
|
|
105
|
+
| background-clip | `bg-clip:[value]` | Set background clipping area |
|
|
106
|
+
| background-color | `bg:[color]` | Set background color |
|
|
107
|
+
| background-image | `bg-image:[value]` | Set background image or gradient |
|
|
108
|
+
| background-origin | `bg-origin:[value]` | Set background positioning origin |
|
|
109
|
+
| background-position | `bg-pos:[value]` | Set background position |
|
|
110
|
+
| background-repeat | `bg-repeat:[value]` | Set background repeat behavior |
|
|
111
|
+
| background-size | `bg-size:[value]` | Set background size |
|
|
112
|
+
| blend-modes | `mix-blend:[value]` | Set mix blend mode |
|
|
113
|
+
| border | `border:[color]` | `border-{t|b|l|r|x|y}:[color]` | Set border color for all sides or specific sides |
|
|
114
|
+
| border-radius | `rounded:[value]` | Set border radius |
|
|
115
|
+
| border-style | `border-style:[value]` | Set border style |
|
|
116
|
+
| border-width | `border-w:[value]` | `border-{t|b|l|r|x|y}-w:[value]` | Set border width for all sides or specific sides |
|
|
117
|
+
| box-shadow | `shadow:[value]` | Add box shadow |
|
|
118
|
+
| caret-color | `caret:[color]` | Set text input caret color |
|
|
119
|
+
| color-scheme | `color-scheme:[value]` | Set preferred color scheme |
|
|
120
|
+
| contain | `contain:[value]` | Isolate element rendering for performance |
|
|
121
|
+
| content-visibility | `content-visibility:[value]` | Optimize rendering by skipping off-screen content |
|
|
122
|
+
| cursor | `cursor:[value]` | Set cursor style |
|
|
123
|
+
| divide | `divide:[color]` | `divide-{x|y}:[color]` | `divide-{x|y}:reverse` | Add borders between child elements |
|
|
124
|
+
| divide-reverse | `divide-{x|y}:reverse` | Reverse border side for flex-reverse |
|
|
125
|
+
| divide-style | `divide-style:[value]` | Set divider style |
|
|
126
|
+
| divide-width | `divide-w:[value]` | `divide-{x|y}-w:[value]` | Set divider width |
|
|
127
|
+
| field-sizing | `field-sizing:[value]` | Control form field sizing |
|
|
128
|
+
| fill | `fill:[color]` | Set SVG fill color |
|
|
129
|
+
| filter-blur | `blur:[value]` | Apply blur filter |
|
|
130
|
+
| filter-brightness | `brightness:[value]` | Adjust brightness |
|
|
131
|
+
| filter-contrast | `contrast:[value]` | Adjust contrast |
|
|
132
|
+
| filter-drop-shadow | `drop-shadow:[value]` | Add drop shadow |
|
|
133
|
+
| filter-grayscale | `grayscale:[value]` | Apply grayscale filter |
|
|
134
|
+
| filter-hue-rotate | `hue-rotate:[degrees]` | Rotate hue colors |
|
|
135
|
+
| filter-invert | `invert:[value]` | Invert colors |
|
|
136
|
+
| filter-saturate | `saturate:[value]` | Adjust saturation |
|
|
137
|
+
| filter-sepia | `sepia:[value]` | Apply sepia filter |
|
|
138
|
+
| font-family | `font:[family]` | Set font family |
|
|
139
|
+
| font-smoothing | `[smoothing-value]` | Control font smoothing |
|
|
140
|
+
| font-style | `[style-value]` | Set font style |
|
|
141
|
+
| font-variant-numeric | `[variant-value]` | Control numeric font variants |
|
|
142
|
+
| font-weight | `font:[weight]` | Set font weight |
|
|
143
|
+
| forced-color-adjust | `forced-color:[value]` | Control forced colors mode behavior |
|
|
144
|
+
| gradient-from | `from:[color]` | Set gradient start color |
|
|
145
|
+
| gradient-to | `to:[color]` | Set gradient end color |
|
|
146
|
+
| gradient-via | `via:[color]` | Set gradient middle color |
|
|
147
|
+
| hyphens | `hyphens:[value]` | Control hyphenation |
|
|
148
|
+
| letter-spacing | `tracking:[value]` | Set letter spacing |
|
|
149
|
+
| line-clamp | `line-clamp:[value]` | Limit text to specific lines |
|
|
150
|
+
| line-height | `leading:[value]` | Set line height |
|
|
151
|
+
| list-style | `list:[value]` | Set list style |
|
|
152
|
+
| mask | `mask:[value]` | Apply mask to element |
|
|
153
|
+
| opacity | `opacity:[value]` | Set element opacity (0-100) |
|
|
154
|
+
| outline | `outline:[color]` | Set outline color |
|
|
155
|
+
| pointer-events | `pointer-events:[value]` | Control pointer events |
|
|
156
|
+
| resize | `resize:[value]` | Control element resizing |
|
|
157
|
+
| ring | `ring:[size]` | Add focus ring around element using box-shadow |
|
|
158
|
+
| ring-color | `ring-color:[color]` | Set ring color |
|
|
159
|
+
| ring-offset | `ring-offset:[size]` | Add gap between ring and element |
|
|
160
|
+
| scroll-behavior | `scroll-behavior:[value]` | Set scroll behavior |
|
|
161
|
+
| scroll-margin | `scroll-m:[value]` | Set scroll margin for snap |
|
|
162
|
+
| scroll-padding | `scroll-p:[value]` | Set scroll padding for snap |
|
|
163
|
+
| scroll-snap-align | `snap-align:[value]` | Set scroll snap alignment |
|
|
164
|
+
| scroll-snap-stop | `snap-stop:[value]` | Control scroll snap stop behavior |
|
|
165
|
+
| scroll-snap-type | `snap-type:[value]` | Set scroll snap type |
|
|
166
|
+
| state-prefixes | `hover:... focus:... active:...` | Apply styles on specific states |
|
|
167
|
+
| stroke | `stroke:[color]` | Set SVG stroke color |
|
|
168
|
+
| stroke-width | `stroke-w:[value]` | Set SVG stroke width |
|
|
169
|
+
| text-alignment | `text:[alignment]` | Set text alignment |
|
|
170
|
+
| text-color | `text:[color]` | Set text color |
|
|
171
|
+
| text-decoration | `[decoration-value]` | Set text decoration |
|
|
172
|
+
| text-indent | `indent:[value]` | Set text indentation |
|
|
173
|
+
| text-overflow | `[overflow-value]` | Handle text overflow |
|
|
174
|
+
| text-shadow | `text-shadow:[value]` | Add text shadow |
|
|
175
|
+
| text-size | `text-size:[value]` | Set font size |
|
|
176
|
+
| text-transform | `[transform-value]` | Transform text case |
|
|
177
|
+
| text-wrap | `[wrap-value]` | Control text wrapping |
|
|
178
|
+
| touch-action | `touch:[value]` | Control touch interactions |
|
|
179
|
+
| transform-backface | `backface:[value]` | Control visibility of element back side when rotated in 3D |
|
|
180
|
+
| transform-origin | `origin:[value]` | Set transform origin point |
|
|
181
|
+
| transform-perspective | `perspective:[value]` | Set 3D perspective on container (apply to parent of transformed elements) |
|
|
182
|
+
| transform-perspective-origin | `perspective-origin:[value]` | Set perspective vanishing point location |
|
|
183
|
+
| transform-rotate | `rotate:[degrees]` | Rotate element |
|
|
184
|
+
| transform-rotate-3d | `rotate-x:[degrees]` or `rotate-y:[degrees]` or `rotate-z:[degrees]` | Rotate element in 3D space along X, Y, or Z axis |
|
|
185
|
+
| transform-scale | `scale:[value]` | Scale element |
|
|
186
|
+
| transform-skew | `skew-x:[degrees]` or `skew-y:[degrees]` | Skew element |
|
|
187
|
+
| transform-style | `transform-style:[value]` | Preserve 3D space for nested transformed elements |
|
|
188
|
+
| transform-translate | `translate-x:[value]` or `translate-y:[value]` or `translate-z:[value]` | Translate element position along X, Y, or Z axis |
|
|
189
|
+
| transform-translate-z | `translate-z:[value]` | Translate element along Z axis (depth) in 3D space |
|
|
190
|
+
| transition-delay | `delay:[value]` | Set transition delay |
|
|
191
|
+
| transition-duration | `duration:[value]` | Set transition duration |
|
|
192
|
+
| transition-property | `transition:[value]` | Set transition properties |
|
|
193
|
+
| transition-timing | `ease:[value]` | Set transition timing function |
|
|
194
|
+
| typography-keywords | `[keyword]` | Typography utility keywords |
|
|
195
|
+
| user-select | `select:[value]` | Control text selection |
|
|
196
|
+
| vertical-align | `align:[value]` | Set vertical alignment |
|
|
197
|
+
| whitespace | `whitespace:[value]` | Control whitespace handling |
|
|
198
|
+
| will-change | `will-change:[value]` | Hint browser about upcoming changes |
|
|
199
|
+
| word-break | `[break-value]` | Control word breaking |
|
|
200
|
+
| writing-mode | `writing-mode:[value]` | Set writing direction for RTL/vertical text |
|
|
201
|
+
|
|
202
|
+
---
|
|
203
|
+
|
|
204
|
+
## Detailed Values
|
|
205
|
+
|
|
206
|
+
### Layout Values
|
|
207
|
+
|
|
208
|
+
#### align-content
|
|
209
|
+
|
|
210
|
+
| Value | CSS Output |
|
|
211
|
+
|-------|------------|
|
|
212
|
+
| `start` | `align-content: flex-start;` |
|
|
213
|
+
| `end` | `align-content: flex-end;` |
|
|
214
|
+
| `center` | `align-content: center;` |
|
|
215
|
+
| `between` | `align-content: space-between;` |
|
|
216
|
+
| `around` | `align-content: space-around;` |
|
|
217
|
+
| `evenly` | `align-content: space-evenly;` |
|
|
218
|
+
| `stretch` | `align-content: stretch;` |
|
|
219
|
+
|
|
220
|
+
#### align-items
|
|
221
|
+
|
|
222
|
+
| Value | CSS Output |
|
|
223
|
+
|-------|------------|
|
|
224
|
+
| `start` | `align-items: flex-start;` |
|
|
225
|
+
| `end` | `align-items: flex-end;` |
|
|
226
|
+
| `center` | `align-items: center;` |
|
|
227
|
+
| `baseline` | `align-items: baseline;` |
|
|
228
|
+
| `stretch` | `align-items: stretch;` |
|
|
229
|
+
|
|
230
|
+
#### align-self
|
|
231
|
+
|
|
232
|
+
| Value | CSS Output |
|
|
233
|
+
|-------|------------|
|
|
234
|
+
| `auto` | `align-self: auto;` |
|
|
235
|
+
| `start` | `align-self: flex-start;` |
|
|
236
|
+
| `end` | `align-self: flex-end;` |
|
|
237
|
+
| `center` | `align-self: center;` |
|
|
238
|
+
| `baseline` | `align-self: baseline;` |
|
|
239
|
+
| `stretch` | `align-self: stretch;` |
|
|
240
|
+
|
|
241
|
+
#### aspect-ratio
|
|
242
|
+
|
|
243
|
+
| Value | CSS Output |
|
|
244
|
+
|-------|------------|
|
|
245
|
+
| `auto` | `aspect-ratio: auto;` |
|
|
246
|
+
| `square` | `aspect-ratio: 1 / 1;` |
|
|
247
|
+
| `video` | `aspect-ratio: 16 / 9;` |
|
|
248
|
+
|
|
249
|
+
#### border-collapse
|
|
250
|
+
|
|
251
|
+
| Value | CSS Output |
|
|
252
|
+
|-------|------------|
|
|
253
|
+
| `collapse` | `border-collapse: collapse;` |
|
|
254
|
+
| `separate` | `border-collapse: separate;` |
|
|
255
|
+
|
|
256
|
+
#### border-spacing
|
|
257
|
+
|
|
258
|
+
| Value | CSS Output |
|
|
259
|
+
|-------|------------|
|
|
260
|
+
| `border-spacing` | `border-spacing: {value};` |
|
|
261
|
+
| `border-spacing-x` | `border-spacing: {value} 0;` |
|
|
262
|
+
| `border-spacing-y` | `border-spacing: 0 {value};` |
|
|
263
|
+
|
|
264
|
+
#### box-sizing
|
|
265
|
+
|
|
266
|
+
| Value | CSS Output |
|
|
267
|
+
|-------|------------|
|
|
268
|
+
| `border` | `box-sizing: border-box;` |
|
|
269
|
+
| `content` | `box-sizing: content-box;` |
|
|
270
|
+
|
|
271
|
+
#### caption-side
|
|
272
|
+
|
|
273
|
+
| Value | CSS Output |
|
|
274
|
+
|-------|------------|
|
|
275
|
+
| `top` | `caption-side: top;` |
|
|
276
|
+
| `bottom` | `caption-side: bottom;` |
|
|
277
|
+
|
|
278
|
+
#### columns
|
|
279
|
+
|
|
280
|
+
| Value | CSS Output |
|
|
281
|
+
|-------|------------|
|
|
282
|
+
| `1-12` | `columns: {n};` |
|
|
283
|
+
| `auto` | `columns: auto;` |
|
|
284
|
+
|
|
285
|
+
#### container
|
|
286
|
+
|
|
287
|
+
| Value | CSS Output |
|
|
288
|
+
|-------|------------|
|
|
289
|
+
| `container` | `width: 100%; margin-left: auto; margin-right: auto;` |
|
|
290
|
+
|
|
291
|
+
#### display
|
|
292
|
+
|
|
293
|
+
| Value | CSS Output |
|
|
294
|
+
|-------|------------|
|
|
295
|
+
| `flex` | `display: flex;` |
|
|
296
|
+
| `inline-flex` | `display: inline-flex;` |
|
|
297
|
+
| `grid` | `display: grid;` |
|
|
298
|
+
| `inline-grid` | `display: inline-grid;` |
|
|
299
|
+
| `block` | `display: block;` |
|
|
300
|
+
| `inline` | `display: inline-block;` |
|
|
301
|
+
| `hidden` | `display: none;` |
|
|
302
|
+
|
|
303
|
+
#### flex
|
|
304
|
+
|
|
305
|
+
| Value | CSS Output |
|
|
306
|
+
|-------|------------|
|
|
307
|
+
| `1` | `flex: 1 1 0%;` |
|
|
308
|
+
| `auto` | `flex: 1 1 auto;` |
|
|
309
|
+
| `initial` | `flex: 0 1 auto;` |
|
|
310
|
+
| `none` | `flex: none;` |
|
|
311
|
+
|
|
312
|
+
#### flex-basis
|
|
313
|
+
|
|
314
|
+
| Value | CSS Output |
|
|
315
|
+
|-------|------------|
|
|
316
|
+
| `auto` | `flex-basis: auto;` |
|
|
317
|
+
| `0` | `flex-basis: 0;` |
|
|
318
|
+
|
|
319
|
+
#### flex-direction
|
|
320
|
+
|
|
321
|
+
| Value | CSS Output |
|
|
322
|
+
|-------|------------|
|
|
323
|
+
| `row` | `flex-direction: row;` |
|
|
324
|
+
| `col` | `flex-direction: column;` |
|
|
325
|
+
| `row-reverse` | `flex-direction: row-reverse;` |
|
|
326
|
+
| `col-reverse` | `flex-direction: column-reverse;` |
|
|
327
|
+
|
|
328
|
+
#### flex-items
|
|
329
|
+
|
|
330
|
+
| Value | CSS Output |
|
|
331
|
+
|-------|------------|
|
|
332
|
+
| `grow` | `flex-grow: 1;` |
|
|
333
|
+
| `grow-0` | `flex-grow: 0;` |
|
|
334
|
+
| `shrink` | `flex-shrink: 1;` |
|
|
335
|
+
| `shrink-0` | `flex-shrink: 0;` |
|
|
336
|
+
|
|
337
|
+
#### flex-wrap
|
|
338
|
+
|
|
339
|
+
| Value | CSS Output |
|
|
340
|
+
|-------|------------|
|
|
341
|
+
| `wrap` | `flex-wrap: wrap;` |
|
|
342
|
+
| `nowrap` | `flex-wrap: nowrap;` |
|
|
343
|
+
| `wrap-reverse` | `flex-wrap: wrap-reverse;` |
|
|
344
|
+
|
|
345
|
+
#### float-clear
|
|
346
|
+
|
|
347
|
+
| Value | CSS Output |
|
|
348
|
+
|-------|------------|
|
|
349
|
+
| `left` | `float: left;` |
|
|
350
|
+
| `right` | `float: right;` |
|
|
351
|
+
| `none` | `float: none;` |
|
|
352
|
+
|
|
353
|
+
#### grid-auto-flow
|
|
354
|
+
|
|
355
|
+
| Value | CSS Output |
|
|
356
|
+
|-------|------------|
|
|
357
|
+
| `row` | `grid-auto-flow: row;` |
|
|
358
|
+
| `col` | `grid-auto-flow: column;` |
|
|
359
|
+
| `dense` | `grid-auto-flow: dense;` |
|
|
360
|
+
| `row-dense` | `grid-auto-flow: row dense;` |
|
|
361
|
+
| `col-dense` | `grid-auto-flow: column dense;` |
|
|
362
|
+
|
|
363
|
+
#### grid-auto-sizing
|
|
364
|
+
|
|
365
|
+
| Value | CSS Output |
|
|
366
|
+
|-------|------------|
|
|
367
|
+
| `auto` | `auto` |
|
|
368
|
+
| `min` | `min-content` |
|
|
369
|
+
| `max` | `max-content` |
|
|
370
|
+
| `fr` | `minmax(0, 1fr)` |
|
|
371
|
+
|
|
372
|
+
#### grid-column-span
|
|
373
|
+
|
|
374
|
+
| Value | CSS Output |
|
|
375
|
+
|-------|------------|
|
|
376
|
+
| `1-12` | `grid-column: span {n} / span {n};` |
|
|
377
|
+
| `full` | `grid-column: 1 / -1;` |
|
|
378
|
+
|
|
379
|
+
#### grid-columns
|
|
380
|
+
|
|
381
|
+
| Value | CSS Output |
|
|
382
|
+
|-------|------------|
|
|
383
|
+
| `1-12` | `grid-template-columns: repeat({n}, minmax(0, 1fr));` |
|
|
384
|
+
| `none` | `grid-template-columns: none;` |
|
|
385
|
+
| `subgrid` | `grid-template-columns: subgrid;` |
|
|
386
|
+
|
|
387
|
+
#### grid-row-span
|
|
388
|
+
|
|
389
|
+
| Value | CSS Output |
|
|
390
|
+
|-------|------------|
|
|
391
|
+
| `1-12` | `grid-row: span {n} / span {n};` |
|
|
392
|
+
| `full` | `grid-row: 1 / -1;` |
|
|
393
|
+
|
|
394
|
+
#### grid-rows
|
|
395
|
+
|
|
396
|
+
| Value | CSS Output |
|
|
397
|
+
|-------|------------|
|
|
398
|
+
| `1-12` | `grid-template-rows: repeat({n}, minmax(0, 1fr));` |
|
|
399
|
+
| `none` | `grid-template-rows: none;` |
|
|
400
|
+
| `subgrid` | `grid-template-rows: subgrid;` |
|
|
401
|
+
|
|
402
|
+
#### inset
|
|
403
|
+
|
|
404
|
+
| Value | CSS Output |
|
|
405
|
+
|-------|------------|
|
|
406
|
+
| `inset` | `inset: {value};` |
|
|
407
|
+
| `inset-x` | `left: {value}; right: {value};` |
|
|
408
|
+
| `inset-y` | `top: {value}; bottom: {value};` |
|
|
409
|
+
| `top` | `top: {value};` |
|
|
410
|
+
| `right` | `right: {value};` |
|
|
411
|
+
| `bottom` | `bottom: {value};` |
|
|
412
|
+
| `left` | `left: {value};` |
|
|
413
|
+
|
|
414
|
+
#### isolation
|
|
415
|
+
|
|
416
|
+
| Value | CSS Output |
|
|
417
|
+
|-------|------------|
|
|
418
|
+
| `isolate` | `isolation: isolate;` |
|
|
419
|
+
| `auto` | `isolation: auto;` |
|
|
420
|
+
|
|
421
|
+
#### justify-content
|
|
422
|
+
|
|
423
|
+
| Value | CSS Output |
|
|
424
|
+
|-------|------------|
|
|
425
|
+
| `start` | `justify-content: flex-start;` |
|
|
426
|
+
| `end` | `justify-content: flex-end;` |
|
|
427
|
+
| `center` | `justify-content: center;` |
|
|
428
|
+
| `between` | `justify-content: space-between;` |
|
|
429
|
+
| `around` | `justify-content: space-around;` |
|
|
430
|
+
| `evenly` | `justify-content: space-evenly;` |
|
|
431
|
+
| `stretch` | `justify-content: stretch;` |
|
|
432
|
+
|
|
433
|
+
#### justify-items
|
|
434
|
+
|
|
435
|
+
| Value | CSS Output |
|
|
436
|
+
|-------|------------|
|
|
437
|
+
| `start` | `justify-items: start;` |
|
|
438
|
+
| `end` | `justify-items: end;` |
|
|
439
|
+
| `center` | `justify-items: center;` |
|
|
440
|
+
| `stretch` | `justify-items: stretch;` |
|
|
441
|
+
|
|
442
|
+
#### justify-self
|
|
443
|
+
|
|
444
|
+
| Value | CSS Output |
|
|
445
|
+
|-------|------------|
|
|
446
|
+
| `auto` | `justify-self: auto;` |
|
|
447
|
+
| `start` | `justify-self: start;` |
|
|
448
|
+
| `end` | `justify-self: end;` |
|
|
449
|
+
| `center` | `justify-self: center;` |
|
|
450
|
+
| `stretch` | `justify-self: stretch;` |
|
|
451
|
+
|
|
452
|
+
#### object-fit
|
|
453
|
+
|
|
454
|
+
| Value | CSS Output |
|
|
455
|
+
|-------|------------|
|
|
456
|
+
| `contain` | `object-fit: contain;` |
|
|
457
|
+
| `cover` | `object-fit: cover;` |
|
|
458
|
+
| `fill` | `object-fit: fill;` |
|
|
459
|
+
| `none` | `object-fit: none;` |
|
|
460
|
+
| `scale-down` | `object-fit: scale-down;` |
|
|
461
|
+
|
|
462
|
+
#### object-position
|
|
463
|
+
|
|
464
|
+
| Value | CSS Output |
|
|
465
|
+
|-------|------------|
|
|
466
|
+
| `center` | `object-position: center;` |
|
|
467
|
+
| `top` | `object-position: top;` |
|
|
468
|
+
| `bottom` | `object-position: bottom;` |
|
|
469
|
+
| `left` | `object-position: left;` |
|
|
470
|
+
| `right` | `object-position: right;` |
|
|
471
|
+
| `top-left` | `object-position: top left;` |
|
|
472
|
+
| `top-right` | `object-position: top right;` |
|
|
473
|
+
| `bottom-left` | `object-position: bottom left;` |
|
|
474
|
+
| `bottom-right` | `object-position: bottom right;` |
|
|
475
|
+
|
|
476
|
+
#### order
|
|
477
|
+
|
|
478
|
+
| Value | CSS Output |
|
|
479
|
+
|-------|------------|
|
|
480
|
+
| `first` | `order: -9999;` |
|
|
481
|
+
| `last` | `order: 9999;` |
|
|
482
|
+
| `none` | `order: 0;` |
|
|
483
|
+
| `1-12` | `order: {n};` |
|
|
484
|
+
|
|
485
|
+
#### overflow
|
|
486
|
+
|
|
487
|
+
| Value | CSS Output |
|
|
488
|
+
|-------|------------|
|
|
489
|
+
| `auto` | `overflow: auto;` |
|
|
490
|
+
| `hidden` | `overflow: hidden;` |
|
|
491
|
+
| `visible` | `overflow: visible;` |
|
|
492
|
+
| `scroll` | `overflow: scroll;` |
|
|
493
|
+
| `clip` | `overflow: clip;` |
|
|
494
|
+
|
|
495
|
+
#### overscroll
|
|
496
|
+
|
|
497
|
+
| Value | CSS Output |
|
|
498
|
+
|-------|------------|
|
|
499
|
+
| `auto` | `overscroll-behavior: auto;` |
|
|
500
|
+
| `contain` | `overscroll-behavior: contain;` |
|
|
501
|
+
| `none` | `overscroll-behavior: none;` |
|
|
502
|
+
|
|
503
|
+
#### place-content
|
|
504
|
+
|
|
505
|
+
| Value | CSS Output |
|
|
506
|
+
|-------|------------|
|
|
507
|
+
| `start` | `place-content: start;` |
|
|
508
|
+
| `end` | `place-content: end;` |
|
|
509
|
+
| `center` | `place-content: center;` |
|
|
510
|
+
| `between` | `place-content: space-between;` |
|
|
511
|
+
| `around` | `place-content: space-around;` |
|
|
512
|
+
| `evenly` | `place-content: space-evenly;` |
|
|
513
|
+
| `stretch` | `place-content: stretch;` |
|
|
514
|
+
|
|
515
|
+
#### place-items
|
|
516
|
+
|
|
517
|
+
| Value | CSS Output |
|
|
518
|
+
|-------|------------|
|
|
519
|
+
| `start` | `place-items: start;` |
|
|
520
|
+
| `end` | `place-items: end;` |
|
|
521
|
+
| `center` | `place-items: center;` |
|
|
522
|
+
| `stretch` | `place-items: stretch;` |
|
|
523
|
+
|
|
524
|
+
#### place-self
|
|
525
|
+
|
|
526
|
+
| Value | CSS Output |
|
|
527
|
+
|-------|------------|
|
|
528
|
+
| `auto` | `place-self: auto;` |
|
|
529
|
+
| `start` | `place-self: start;` |
|
|
530
|
+
| `end` | `place-self: end;` |
|
|
531
|
+
| `center` | `place-self: center;` |
|
|
532
|
+
| `stretch` | `place-self: stretch;` |
|
|
533
|
+
|
|
534
|
+
#### position
|
|
535
|
+
|
|
536
|
+
| Value | CSS Output |
|
|
537
|
+
|-------|------------|
|
|
538
|
+
| `static` | `position: static;` |
|
|
539
|
+
| `relative` | `position: relative;` |
|
|
540
|
+
| `absolute` | `position: absolute;` |
|
|
541
|
+
| `fixed` | `position: fixed;` |
|
|
542
|
+
| `sticky` | `position: sticky;` |
|
|
543
|
+
|
|
544
|
+
#### shorthand-alignment
|
|
545
|
+
|
|
546
|
+
| Value | CSS Output |
|
|
547
|
+
|-------|------------|
|
|
548
|
+
| `center` | `justify-content: center; align-items: center;` |
|
|
549
|
+
| `start` | `justify-content: flex-start; align-items: flex-start;` |
|
|
550
|
+
| `end` | `justify-content: flex-end; align-items: flex-end;` |
|
|
551
|
+
| `between` | `justify-content: space-between;` |
|
|
552
|
+
| `around` | `justify-content: space-around;` |
|
|
553
|
+
| `evenly` | `justify-content: space-evenly;` |
|
|
554
|
+
|
|
555
|
+
#### table-layout
|
|
556
|
+
|
|
557
|
+
| Value | CSS Output |
|
|
558
|
+
|-------|------------|
|
|
559
|
+
| `auto` | `table-layout: auto;` |
|
|
560
|
+
| `fixed` | `table-layout: fixed;` |
|
|
561
|
+
|
|
562
|
+
#### visibility
|
|
563
|
+
|
|
564
|
+
| Value | CSS Output |
|
|
565
|
+
|-------|------------|
|
|
566
|
+
| `visible` | `visibility: visible;` |
|
|
567
|
+
| `invisible` | `visibility: hidden;` |
|
|
568
|
+
|
|
569
|
+
#### z-index
|
|
570
|
+
|
|
571
|
+
| Value | CSS Output |
|
|
572
|
+
|-------|------------|
|
|
573
|
+
| `base` | `z-index: var(--z-base);` |
|
|
574
|
+
| `low` | `z-index: var(--z-low);` |
|
|
575
|
+
| `mid` | `z-index: var(--z-mid);` |
|
|
576
|
+
| `high` | `z-index: var(--z-high);` |
|
|
577
|
+
| `top` | `z-index: var(--z-top);` |
|
|
578
|
+
|
|
579
|
+
### Space Values
|
|
580
|
+
|
|
581
|
+
#### gap
|
|
582
|
+
|
|
583
|
+
| Value | CSS Output |
|
|
584
|
+
|-------|------------|
|
|
585
|
+
| `undefined` | `gap: var(--s-{value});` |
|
|
586
|
+
| `undefined` | `column-gap: var(--s-{value});` |
|
|
587
|
+
| `undefined` | `row-gap: var(--s-{value});` |
|
|
588
|
+
|
|
589
|
+
#### height
|
|
590
|
+
|
|
591
|
+
| Value | CSS Output |
|
|
592
|
+
|-------|------------|
|
|
593
|
+
| `undefined` | `height: var(--s-{value});` |
|
|
594
|
+
| `undefined` | `min-height: var(--s-{value});` |
|
|
595
|
+
| `undefined` | `max-height: var(--s-{value});` |
|
|
596
|
+
|
|
597
|
+
#### margin
|
|
598
|
+
|
|
599
|
+
| Value | CSS Output |
|
|
600
|
+
|-------|------------|
|
|
601
|
+
| `undefined` | `margin: var(--s-{value});` |
|
|
602
|
+
| `undefined` | `margin-top: var(--s-{value});` |
|
|
603
|
+
| `undefined` | `margin-right: var(--s-{value});` |
|
|
604
|
+
| `undefined` | `margin-bottom: var(--s-{value});` |
|
|
605
|
+
| `undefined` | `margin-left: var(--s-{value});` |
|
|
606
|
+
| `undefined` | `margin-left: var(--s-{value}); margin-right: var(--s-{value});` |
|
|
607
|
+
| `undefined` | `margin-top: var(--s-{value}); margin-bottom: var(--s-{value});` |
|
|
608
|
+
|
|
609
|
+
#### padding
|
|
610
|
+
|
|
611
|
+
| Value | CSS Output |
|
|
612
|
+
|-------|------------|
|
|
613
|
+
| `undefined` | `padding: var(--s-{value});` |
|
|
614
|
+
| `undefined` | `padding-top: var(--s-{value});` |
|
|
615
|
+
| `undefined` | `padding-right: var(--s-{value});` |
|
|
616
|
+
| `undefined` | `padding-bottom: var(--s-{value});` |
|
|
617
|
+
| `undefined` | `padding-left: var(--s-{value});` |
|
|
618
|
+
| `undefined` | `padding-left: var(--s-{value}); padding-right: var(--s-{value});` |
|
|
619
|
+
| `undefined` | `padding-top: var(--s-{value}); padding-bottom: var(--s-{value});` |
|
|
620
|
+
|
|
621
|
+
#### width
|
|
622
|
+
|
|
623
|
+
| Value | CSS Output |
|
|
624
|
+
|-------|------------|
|
|
625
|
+
| `undefined` | `width: var(--s-{value});` |
|
|
626
|
+
| `undefined` | `min-width: var(--s-{value});` |
|
|
627
|
+
| `undefined` | `max-width: var(--s-{value});` |
|
|
628
|
+
|
|
629
|
+
### Visual Values
|
|
630
|
+
|
|
631
|
+
#### animation-builtin
|
|
632
|
+
|
|
633
|
+
| Value | CSS Output |
|
|
634
|
+
|-------|------------|
|
|
635
|
+
| `none` | `animation: none;` |
|
|
636
|
+
| `spin` | `animation: spin 1s linear infinite;` |
|
|
637
|
+
| `ping` | `animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;` |
|
|
638
|
+
| `pulse` | `animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;` |
|
|
639
|
+
| `bounce` | `animation: bounce 1s infinite;` |
|
|
640
|
+
|
|
641
|
+
#### animation-delay
|
|
642
|
+
|
|
643
|
+
| Value | CSS Output |
|
|
644
|
+
|-------|------------|
|
|
645
|
+
| `instant` | `animation-delay: 75ms;` |
|
|
646
|
+
| `quick` | `animation-delay: 100ms;` |
|
|
647
|
+
| `fast` | `animation-delay: 150ms;` |
|
|
648
|
+
| `normal` | `animation-delay: 200ms;` |
|
|
649
|
+
| `slow` | `animation-delay: 300ms;` |
|
|
650
|
+
|
|
651
|
+
#### animation-direction
|
|
652
|
+
|
|
653
|
+
| Value | CSS Output |
|
|
654
|
+
|-------|------------|
|
|
655
|
+
| `normal` | `animation-direction: normal;` |
|
|
656
|
+
| `reverse` | `animation-direction: reverse;` |
|
|
657
|
+
| `alternate` | `animation-direction: alternate;` |
|
|
658
|
+
| `alternate-reverse` | `animation-direction: alternate-reverse;` |
|
|
659
|
+
|
|
660
|
+
#### animation-duration
|
|
661
|
+
|
|
662
|
+
| Value | CSS Output |
|
|
663
|
+
|-------|------------|
|
|
664
|
+
| `instant` | `animation-duration: 75ms;` |
|
|
665
|
+
| `quick` | `animation-duration: 100ms;` |
|
|
666
|
+
| `fast` | `animation-duration: 150ms;` |
|
|
667
|
+
| `normal` | `animation-duration: 200ms;` |
|
|
668
|
+
| `slow` | `animation-duration: 300ms;` |
|
|
669
|
+
| `slower` | `animation-duration: 500ms;` |
|
|
670
|
+
| `lazy` | `animation-duration: 700ms;` |
|
|
671
|
+
|
|
672
|
+
#### animation-fill
|
|
673
|
+
|
|
674
|
+
| Value | CSS Output |
|
|
675
|
+
|-------|------------|
|
|
676
|
+
| `none` | `animation-fill-mode: none;` |
|
|
677
|
+
| `forwards` | `animation-fill-mode: forwards;` |
|
|
678
|
+
| `backwards` | `animation-fill-mode: backwards;` |
|
|
679
|
+
| `both` | `animation-fill-mode: both;` |
|
|
680
|
+
|
|
681
|
+
#### animation-iteration
|
|
682
|
+
|
|
683
|
+
| Value | CSS Output |
|
|
684
|
+
|-------|------------|
|
|
685
|
+
| `1` | `animation-iteration-count: 1;` |
|
|
686
|
+
| `infinite` | `animation-iteration-count: infinite;` |
|
|
687
|
+
|
|
688
|
+
#### animation-play
|
|
689
|
+
|
|
690
|
+
| Value | CSS Output |
|
|
691
|
+
|-------|------------|
|
|
692
|
+
| `running` | `animation-play-state: running;` |
|
|
693
|
+
| `paused` | `animation-play-state: paused;` |
|
|
694
|
+
|
|
695
|
+
#### appearance
|
|
696
|
+
|
|
697
|
+
| Value | CSS Output |
|
|
698
|
+
|-------|------------|
|
|
699
|
+
| `none` | `appearance: none;` |
|
|
700
|
+
| `auto` | `appearance: auto;` |
|
|
701
|
+
|
|
702
|
+
#### backdrop-blur
|
|
703
|
+
|
|
704
|
+
| Value | CSS Output |
|
|
705
|
+
|-------|------------|
|
|
706
|
+
| `none` | `backdrop-filter: blur(0);` |
|
|
707
|
+
| `tiny` | `backdrop-filter: blur(2px);` |
|
|
708
|
+
| `small` | `backdrop-filter: blur(4px);` |
|
|
709
|
+
| `medium` | `backdrop-filter: blur(8px);` |
|
|
710
|
+
| `big` | `backdrop-filter: blur(12px);` |
|
|
711
|
+
| `giant` | `backdrop-filter: blur(24px);` |
|
|
712
|
+
| `vast` | `backdrop-filter: blur(48px);` |
|
|
713
|
+
|
|
714
|
+
#### backdrop-brightness
|
|
715
|
+
|
|
716
|
+
| Value | CSS Output |
|
|
717
|
+
|-------|------------|
|
|
718
|
+
| `dim` | `backdrop-filter: brightness(0.5);` |
|
|
719
|
+
| `dark` | `backdrop-filter: brightness(0.75);` |
|
|
720
|
+
| `normal` | `backdrop-filter: brightness(1);` |
|
|
721
|
+
| `bright` | `backdrop-filter: brightness(1.25);` |
|
|
722
|
+
| `vivid` | `backdrop-filter: brightness(1.5);` |
|
|
723
|
+
|
|
724
|
+
#### backdrop-contrast
|
|
725
|
+
|
|
726
|
+
| Value | CSS Output |
|
|
727
|
+
|-------|------------|
|
|
728
|
+
| `low` | `backdrop-filter: contrast(0.5);` |
|
|
729
|
+
| `reduced` | `backdrop-filter: contrast(0.75);` |
|
|
730
|
+
| `normal` | `backdrop-filter: contrast(1);` |
|
|
731
|
+
| `high` | `backdrop-filter: contrast(1.25);` |
|
|
732
|
+
| `max` | `backdrop-filter: contrast(1.5);` |
|
|
733
|
+
|
|
734
|
+
#### backdrop-grayscale
|
|
735
|
+
|
|
736
|
+
| Value | CSS Output |
|
|
737
|
+
|-------|------------|
|
|
738
|
+
| `none` | `backdrop-filter: grayscale(0%);` |
|
|
739
|
+
| `partial` | `backdrop-filter: grayscale(50%);` |
|
|
740
|
+
| `full` | `backdrop-filter: grayscale(100%);` |
|
|
741
|
+
|
|
742
|
+
#### backdrop-hue-rotate
|
|
743
|
+
|
|
744
|
+
| Value | CSS Output |
|
|
745
|
+
|-------|------------|
|
|
746
|
+
| `0` | `backdrop-filter: hue-rotate(0deg);` |
|
|
747
|
+
| `90` | `backdrop-filter: hue-rotate(90deg);` |
|
|
748
|
+
| `180` | `backdrop-filter: hue-rotate(180deg);` |
|
|
749
|
+
|
|
750
|
+
#### backdrop-invert
|
|
751
|
+
|
|
752
|
+
| Value | CSS Output |
|
|
753
|
+
|-------|------------|
|
|
754
|
+
| `none` | `backdrop-filter: invert(0%);` |
|
|
755
|
+
| `partial` | `backdrop-filter: invert(50%);` |
|
|
756
|
+
| `full` | `backdrop-filter: invert(100%);` |
|
|
757
|
+
|
|
758
|
+
#### backdrop-opacity
|
|
759
|
+
|
|
760
|
+
| Value | CSS Output |
|
|
761
|
+
|-------|------------|
|
|
762
|
+
| `0` | `backdrop-filter: opacity(0);` |
|
|
763
|
+
| `50` | `backdrop-filter: opacity(0.5);` |
|
|
764
|
+
| `100` | `backdrop-filter: opacity(1);` |
|
|
765
|
+
|
|
766
|
+
#### backdrop-saturate
|
|
767
|
+
|
|
768
|
+
| Value | CSS Output |
|
|
769
|
+
|-------|------------|
|
|
770
|
+
| `none` | `backdrop-filter: saturate(0);` |
|
|
771
|
+
| `low` | `backdrop-filter: saturate(0.5);` |
|
|
772
|
+
| `normal` | `backdrop-filter: saturate(1);` |
|
|
773
|
+
| `high` | `backdrop-filter: saturate(1.5);` |
|
|
774
|
+
| `vivid` | `backdrop-filter: saturate(2);` |
|
|
775
|
+
|
|
776
|
+
#### backdrop-sepia
|
|
777
|
+
|
|
778
|
+
| Value | CSS Output |
|
|
779
|
+
|-------|------------|
|
|
780
|
+
| `none` | `backdrop-filter: sepia(0%);` |
|
|
781
|
+
| `partial` | `backdrop-filter: sepia(50%);` |
|
|
782
|
+
| `full` | `backdrop-filter: sepia(100%);` |
|
|
783
|
+
|
|
784
|
+
#### background-attachment
|
|
785
|
+
|
|
786
|
+
| Value | CSS Output |
|
|
787
|
+
|-------|------------|
|
|
788
|
+
| `fixed` | `background-attachment: fixed;` |
|
|
789
|
+
| `local` | `background-attachment: local;` |
|
|
790
|
+
| `scroll` | `background-attachment: scroll;` |
|
|
791
|
+
|
|
792
|
+
#### background-blend-mode
|
|
793
|
+
|
|
794
|
+
| Value | CSS Output |
|
|
795
|
+
|-------|------------|
|
|
796
|
+
| `normal` | `background-blend-mode: normal;` |
|
|
797
|
+
| `multiply` | `background-blend-mode: multiply;` |
|
|
798
|
+
| `screen` | `background-blend-mode: screen;` |
|
|
799
|
+
| `overlay` | `background-blend-mode: overlay;` |
|
|
800
|
+
| `darken` | `background-blend-mode: darken;` |
|
|
801
|
+
| `lighten` | `background-blend-mode: lighten;` |
|
|
802
|
+
|
|
803
|
+
#### background-clip
|
|
804
|
+
|
|
805
|
+
| Value | CSS Output |
|
|
806
|
+
|-------|------------|
|
|
807
|
+
| `border` | `background-clip: border-box;` |
|
|
808
|
+
| `padding` | `background-clip: padding-box;` |
|
|
809
|
+
| `content` | `background-clip: content-box;` |
|
|
810
|
+
| `text` | `background-clip: text; -webkit-background-clip: text;` |
|
|
811
|
+
|
|
812
|
+
#### background-image
|
|
813
|
+
|
|
814
|
+
| Value | CSS Output |
|
|
815
|
+
|-------|------------|
|
|
816
|
+
| `none` | `background-image: none;` |
|
|
817
|
+
| `gradient-to-t` | `background-image: linear-gradient(to top, var(--tw-gradient-stops));` |
|
|
818
|
+
| `gradient-to-b` | `background-image: linear-gradient(to bottom, var(--tw-gradient-stops));` |
|
|
819
|
+
| `gradient-to-l` | `background-image: linear-gradient(to left, var(--tw-gradient-stops));` |
|
|
820
|
+
| `gradient-to-r` | `background-image: linear-gradient(to right, var(--tw-gradient-stops));` |
|
|
821
|
+
|
|
822
|
+
#### background-origin
|
|
823
|
+
|
|
824
|
+
| Value | CSS Output |
|
|
825
|
+
|-------|------------|
|
|
826
|
+
| `border` | `background-origin: border-box;` |
|
|
827
|
+
| `padding` | `background-origin: padding-box;` |
|
|
828
|
+
| `content` | `background-origin: content-box;` |
|
|
829
|
+
|
|
830
|
+
#### background-position
|
|
831
|
+
|
|
832
|
+
| Value | CSS Output |
|
|
833
|
+
|-------|------------|
|
|
834
|
+
| `center` | `background-position: center;` |
|
|
835
|
+
| `top` | `background-position: top;` |
|
|
836
|
+
| `bottom` | `background-position: bottom;` |
|
|
837
|
+
| `left` | `background-position: left;` |
|
|
838
|
+
| `right` | `background-position: right;` |
|
|
839
|
+
| `top-left` | `background-position: top left;` |
|
|
840
|
+
| `top-right` | `background-position: top right;` |
|
|
841
|
+
| `bottom-left` | `background-position: bottom left;` |
|
|
842
|
+
| `bottom-right` | `background-position: bottom right;` |
|
|
843
|
+
|
|
844
|
+
#### background-repeat
|
|
845
|
+
|
|
846
|
+
| Value | CSS Output |
|
|
847
|
+
|-------|------------|
|
|
848
|
+
| `repeat` | `background-repeat: repeat;` |
|
|
849
|
+
| `no-repeat` | `background-repeat: no-repeat;` |
|
|
850
|
+
| `repeat-x` | `background-repeat: repeat-x;` |
|
|
851
|
+
| `repeat-y` | `background-repeat: repeat-y;` |
|
|
852
|
+
| `round` | `background-repeat: round;` |
|
|
853
|
+
| `space` | `background-repeat: space;` |
|
|
854
|
+
|
|
855
|
+
#### background-size
|
|
856
|
+
|
|
857
|
+
| Value | CSS Output |
|
|
858
|
+
|-------|------------|
|
|
859
|
+
| `auto` | `background-size: auto;` |
|
|
860
|
+
| `cover` | `background-size: cover;` |
|
|
861
|
+
| `contain` | `background-size: contain;` |
|
|
862
|
+
|
|
863
|
+
#### blend-modes
|
|
864
|
+
|
|
865
|
+
| Value | CSS Output |
|
|
866
|
+
|-------|------------|
|
|
867
|
+
| `normal` | `mix-blend-mode: normal;` |
|
|
868
|
+
| `multiply` | `mix-blend-mode: multiply;` |
|
|
869
|
+
| `screen` | `mix-blend-mode: screen;` |
|
|
870
|
+
| `overlay` | `mix-blend-mode: overlay;` |
|
|
871
|
+
| `darken` | `mix-blend-mode: darken;` |
|
|
872
|
+
| `lighten` | `mix-blend-mode: lighten;` |
|
|
873
|
+
|
|
874
|
+
#### border
|
|
875
|
+
|
|
876
|
+
| Value | CSS Output |
|
|
877
|
+
|-------|------------|
|
|
878
|
+
| `primary` | `border-color: var(--c-primary); border-style: solid;` |
|
|
879
|
+
| `gray-300` | `border-color: var(--c-gray-300); border-style: solid;` |
|
|
880
|
+
| `danger` | `border-color: var(--c-danger); border-style: solid;` |
|
|
881
|
+
|
|
882
|
+
#### border-radius
|
|
883
|
+
|
|
884
|
+
| Value | CSS Output |
|
|
885
|
+
|-------|------------|
|
|
886
|
+
| `none` | `border-radius: var(--r-none);` |
|
|
887
|
+
| `small` | `border-radius: var(--r-small);` |
|
|
888
|
+
| `medium` | `border-radius: var(--r-medium);` |
|
|
889
|
+
| `big` | `border-radius: var(--r-big);` |
|
|
890
|
+
| `round` | `border-radius: var(--r-round);` |
|
|
891
|
+
|
|
892
|
+
#### border-style
|
|
893
|
+
|
|
894
|
+
| Value | CSS Output |
|
|
895
|
+
|-------|------------|
|
|
896
|
+
| `solid` | `border-style: solid;` |
|
|
897
|
+
| `dashed` | `border-style: dashed;` |
|
|
898
|
+
| `dotted` | `border-style: dotted;` |
|
|
899
|
+
| `double` | `border-style: double;` |
|
|
900
|
+
| `none` | `border-style: none;` |
|
|
901
|
+
|
|
902
|
+
#### border-width
|
|
903
|
+
|
|
904
|
+
| Value | CSS Output |
|
|
905
|
+
|-------|------------|
|
|
906
|
+
| `none` | `border-width: var(--s-none);` |
|
|
907
|
+
| `thin` | `border-width: var(--s-thin);` |
|
|
908
|
+
| `regular` | `border-width: var(--s-regular);` |
|
|
909
|
+
| `thick` | `border-width: var(--s-thick);` |
|
|
910
|
+
|
|
911
|
+
#### box-shadow
|
|
912
|
+
|
|
913
|
+
| Value | CSS Output |
|
|
914
|
+
|-------|------------|
|
|
915
|
+
| `none` | `box-shadow: var(--shadow-none);` |
|
|
916
|
+
| `small` | `box-shadow: var(--shadow-small);` |
|
|
917
|
+
| `medium` | `box-shadow: var(--shadow-medium);` |
|
|
918
|
+
| `big` | `box-shadow: var(--shadow-big);` |
|
|
919
|
+
| `giant` | `box-shadow: var(--shadow-giant);` |
|
|
920
|
+
|
|
921
|
+
#### color-scheme
|
|
922
|
+
|
|
923
|
+
| Value | CSS Output |
|
|
924
|
+
|-------|------------|
|
|
925
|
+
| `light` | `color-scheme: light;` |
|
|
926
|
+
| `dark` | `color-scheme: dark;` |
|
|
927
|
+
| `normal` | `color-scheme: normal;` |
|
|
928
|
+
|
|
929
|
+
#### contain
|
|
930
|
+
|
|
931
|
+
| Value | CSS Output |
|
|
932
|
+
|-------|------------|
|
|
933
|
+
| `none` | `contain: none;` |
|
|
934
|
+
| `strict` | `contain: strict;` |
|
|
935
|
+
| `content` | `contain: content;` |
|
|
936
|
+
| `size` | `contain: size;` |
|
|
937
|
+
| `layout` | `contain: layout;` |
|
|
938
|
+
| `style` | `contain: style;` |
|
|
939
|
+
| `paint` | `contain: paint;` |
|
|
940
|
+
|
|
941
|
+
#### content-visibility
|
|
942
|
+
|
|
943
|
+
| Value | CSS Output |
|
|
944
|
+
|-------|------------|
|
|
945
|
+
| `visible` | `content-visibility: visible;` |
|
|
946
|
+
| `auto` | `content-visibility: auto;` |
|
|
947
|
+
| `hidden` | `content-visibility: hidden;` |
|
|
948
|
+
|
|
949
|
+
#### cursor
|
|
950
|
+
|
|
951
|
+
| Value | CSS Output |
|
|
952
|
+
|-------|------------|
|
|
953
|
+
| `auto` | `cursor: auto;` |
|
|
954
|
+
| `default` | `cursor: default;` |
|
|
955
|
+
| `pointer` | `cursor: pointer;` |
|
|
956
|
+
| `wait` | `cursor: wait;` |
|
|
957
|
+
| `text` | `cursor: text;` |
|
|
958
|
+
| `move` | `cursor: move;` |
|
|
959
|
+
| `not-allowed` | `cursor: not-allowed;` |
|
|
960
|
+
| `grab` | `cursor: grab;` |
|
|
961
|
+
| `grabbing` | `cursor: grabbing;` |
|
|
962
|
+
|
|
963
|
+
#### divide
|
|
964
|
+
|
|
965
|
+
| Value | CSS Output |
|
|
966
|
+
|-------|------------|
|
|
967
|
+
| `primary` | `border-color: var(--c-primary); border-style: solid;` |
|
|
968
|
+
| `gray-300` | `border-color: var(--c-gray-300); border-style: solid;` |
|
|
969
|
+
| `danger` | `border-color: var(--c-danger); border-style: solid;` |
|
|
970
|
+
|
|
971
|
+
#### divide-reverse
|
|
972
|
+
|
|
973
|
+
| Value | CSS Output |
|
|
974
|
+
|-------|------------|
|
|
975
|
+
| `divide-x:reverse` | `--ss-divide-x-reverse: 1;` |
|
|
976
|
+
| `divide-y:reverse` | `--ss-divide-y-reverse: 1;` |
|
|
977
|
+
|
|
978
|
+
#### divide-style
|
|
979
|
+
|
|
980
|
+
| Value | CSS Output |
|
|
981
|
+
|-------|------------|
|
|
982
|
+
| `solid` | `border-style: solid;` |
|
|
983
|
+
| `dashed` | `border-style: dashed;` |
|
|
984
|
+
| `dotted` | `border-style: dotted;` |
|
|
985
|
+
| `double` | `border-style: double;` |
|
|
986
|
+
| `none` | `border-style: none;` |
|
|
987
|
+
|
|
988
|
+
#### divide-width
|
|
989
|
+
|
|
990
|
+
| Value | CSS Output |
|
|
991
|
+
|-------|------------|
|
|
992
|
+
| `none` | `border-width: var(--s-none);` |
|
|
993
|
+
| `thin` | `border-width: var(--s-thin);` |
|
|
994
|
+
| `regular` | `border-width: var(--s-regular);` |
|
|
995
|
+
| `thick` | `border-width: var(--s-thick);` |
|
|
996
|
+
|
|
997
|
+
#### field-sizing
|
|
998
|
+
|
|
999
|
+
| Value | CSS Output |
|
|
1000
|
+
|-------|------------|
|
|
1001
|
+
| `fixed` | `field-sizing: fixed;` |
|
|
1002
|
+
| `content` | `field-sizing: content;` |
|
|
1003
|
+
|
|
1004
|
+
#### fill
|
|
1005
|
+
|
|
1006
|
+
| Value | CSS Output |
|
|
1007
|
+
|-------|------------|
|
|
1008
|
+
| `none` | `fill: none;` |
|
|
1009
|
+
| `current` | `fill: currentColor;` |
|
|
1010
|
+
|
|
1011
|
+
#### filter-blur
|
|
1012
|
+
|
|
1013
|
+
| Value | CSS Output |
|
|
1014
|
+
|-------|------------|
|
|
1015
|
+
| `none` | `filter: blur(0);` |
|
|
1016
|
+
| `tiny` | `filter: blur(2px);` |
|
|
1017
|
+
| `small` | `filter: blur(4px);` |
|
|
1018
|
+
| `medium` | `filter: blur(8px);` |
|
|
1019
|
+
| `big` | `filter: blur(12px);` |
|
|
1020
|
+
| `giant` | `filter: blur(24px);` |
|
|
1021
|
+
| `vast` | `filter: blur(48px);` |
|
|
1022
|
+
|
|
1023
|
+
#### filter-brightness
|
|
1024
|
+
|
|
1025
|
+
| Value | CSS Output |
|
|
1026
|
+
|-------|------------|
|
|
1027
|
+
| `dim` | `filter: brightness(0.5);` |
|
|
1028
|
+
| `dark` | `filter: brightness(0.75);` |
|
|
1029
|
+
| `normal` | `filter: brightness(1);` |
|
|
1030
|
+
| `bright` | `filter: brightness(1.25);` |
|
|
1031
|
+
| `vivid` | `filter: brightness(1.5);` |
|
|
1032
|
+
|
|
1033
|
+
#### filter-contrast
|
|
1034
|
+
|
|
1035
|
+
| Value | CSS Output |
|
|
1036
|
+
|-------|------------|
|
|
1037
|
+
| `low` | `filter: contrast(0.5);` |
|
|
1038
|
+
| `reduced` | `filter: contrast(0.75);` |
|
|
1039
|
+
| `normal` | `filter: contrast(1);` |
|
|
1040
|
+
| `high` | `filter: contrast(1.25);` |
|
|
1041
|
+
| `max` | `filter: contrast(1.5);` |
|
|
1042
|
+
|
|
1043
|
+
#### filter-drop-shadow
|
|
1044
|
+
|
|
1045
|
+
| Value | CSS Output |
|
|
1046
|
+
|-------|------------|
|
|
1047
|
+
| `none` | `filter: drop-shadow(none);` |
|
|
1048
|
+
| `tiny` | `filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));` |
|
|
1049
|
+
| `small` | `filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));` |
|
|
1050
|
+
| `medium` | `filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07));` |
|
|
1051
|
+
| `big` | `filter: drop-shadow(0 10px 8px rgba(0,0,0,0.04));` |
|
|
1052
|
+
| `giant` | `filter: drop-shadow(0 20px 13px rgba(0,0,0,0.03));` |
|
|
1053
|
+
|
|
1054
|
+
#### filter-grayscale
|
|
1055
|
+
|
|
1056
|
+
| Value | CSS Output |
|
|
1057
|
+
|-------|------------|
|
|
1058
|
+
| `none` | `filter: grayscale(0%);` |
|
|
1059
|
+
| `partial` | `filter: grayscale(50%);` |
|
|
1060
|
+
| `full` | `filter: grayscale(100%);` |
|
|
1061
|
+
|
|
1062
|
+
#### filter-hue-rotate
|
|
1063
|
+
|
|
1064
|
+
| Value | CSS Output |
|
|
1065
|
+
|-------|------------|
|
|
1066
|
+
| `0` | `filter: hue-rotate(0deg);` |
|
|
1067
|
+
| `90` | `filter: hue-rotate(90deg);` |
|
|
1068
|
+
| `180` | `filter: hue-rotate(180deg);` |
|
|
1069
|
+
|
|
1070
|
+
#### filter-invert
|
|
1071
|
+
|
|
1072
|
+
| Value | CSS Output |
|
|
1073
|
+
|-------|------------|
|
|
1074
|
+
| `none` | `filter: invert(0%);` |
|
|
1075
|
+
| `partial` | `filter: invert(50%);` |
|
|
1076
|
+
| `full` | `filter: invert(100%);` |
|
|
1077
|
+
|
|
1078
|
+
#### filter-saturate
|
|
1079
|
+
|
|
1080
|
+
| Value | CSS Output |
|
|
1081
|
+
|-------|------------|
|
|
1082
|
+
| `none` | `filter: saturate(0);` |
|
|
1083
|
+
| `low` | `filter: saturate(0.5);` |
|
|
1084
|
+
| `normal` | `filter: saturate(1);` |
|
|
1085
|
+
| `high` | `filter: saturate(1.5);` |
|
|
1086
|
+
| `vivid` | `filter: saturate(2);` |
|
|
1087
|
+
|
|
1088
|
+
#### filter-sepia
|
|
1089
|
+
|
|
1090
|
+
| Value | CSS Output |
|
|
1091
|
+
|-------|------------|
|
|
1092
|
+
| `none` | `filter: sepia(0%);` |
|
|
1093
|
+
| `partial` | `filter: sepia(50%);` |
|
|
1094
|
+
| `full` | `filter: sepia(100%);` |
|
|
1095
|
+
|
|
1096
|
+
#### font-family
|
|
1097
|
+
|
|
1098
|
+
| Value | CSS Output |
|
|
1099
|
+
|-------|------------|
|
|
1100
|
+
| `sans` | `font-family: ui-sans-serif, system-ui, sans-serif;` |
|
|
1101
|
+
| `serif` | `font-family: ui-serif, Georgia, serif;` |
|
|
1102
|
+
| `mono` | `font-family: ui-monospace, monospace;` |
|
|
1103
|
+
|
|
1104
|
+
#### font-smoothing
|
|
1105
|
+
|
|
1106
|
+
| Value | CSS Output |
|
|
1107
|
+
|-------|------------|
|
|
1108
|
+
| `antialiased` | `-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;` |
|
|
1109
|
+
| `subpixel-antialiased` | `-webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto;` |
|
|
1110
|
+
|
|
1111
|
+
#### font-style
|
|
1112
|
+
|
|
1113
|
+
| Value | CSS Output |
|
|
1114
|
+
|-------|------------|
|
|
1115
|
+
| `italic` | `font-style: italic;` |
|
|
1116
|
+
| `not-italic` | `font-style: normal;` |
|
|
1117
|
+
|
|
1118
|
+
#### font-variant-numeric
|
|
1119
|
+
|
|
1120
|
+
| Value | CSS Output |
|
|
1121
|
+
|-------|------------|
|
|
1122
|
+
| `normal-nums` | `font-variant-numeric: normal;` |
|
|
1123
|
+
| `ordinal` | `font-variant-numeric: ordinal;` |
|
|
1124
|
+
| `slashed-zero` | `font-variant-numeric: slashed-zero;` |
|
|
1125
|
+
| `lining-nums` | `font-variant-numeric: lining-nums;` |
|
|
1126
|
+
| `oldstyle-nums` | `font-variant-numeric: oldstyle-nums;` |
|
|
1127
|
+
| `proportional-nums` | `font-variant-numeric: proportional-nums;` |
|
|
1128
|
+
| `tabular-nums` | `font-variant-numeric: tabular-nums;` |
|
|
1129
|
+
|
|
1130
|
+
#### font-weight
|
|
1131
|
+
|
|
1132
|
+
| Value | CSS Output |
|
|
1133
|
+
|-------|------------|
|
|
1134
|
+
| `normal` | `font-weight: var(--fw-normal);` |
|
|
1135
|
+
| `medium` | `font-weight: var(--fw-medium);` |
|
|
1136
|
+
| `bold` | `font-weight: var(--fw-bold);` |
|
|
1137
|
+
|
|
1138
|
+
#### forced-color-adjust
|
|
1139
|
+
|
|
1140
|
+
| Value | CSS Output |
|
|
1141
|
+
|-------|------------|
|
|
1142
|
+
| `auto` | `forced-color-adjust: auto;` |
|
|
1143
|
+
| `none` | `forced-color-adjust: none;` |
|
|
1144
|
+
|
|
1145
|
+
#### gradient-from
|
|
1146
|
+
|
|
1147
|
+
| Value | CSS Output |
|
|
1148
|
+
|-------|------------|
|
|
1149
|
+
| `primary` | `--tw-gradient-from: var(--c-primary); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);` |
|
|
1150
|
+
| `blue-500` | `--tw-gradient-from: var(--c-blue-500); --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);` |
|
|
1151
|
+
|
|
1152
|
+
#### gradient-to
|
|
1153
|
+
|
|
1154
|
+
| Value | CSS Output |
|
|
1155
|
+
|-------|------------|
|
|
1156
|
+
| `purple-500` | `--tw-gradient-to: var(--c-purple-500);` |
|
|
1157
|
+
| `pink-500` | `--tw-gradient-to: var(--c-pink-500);` |
|
|
1158
|
+
|
|
1159
|
+
#### gradient-via
|
|
1160
|
+
|
|
1161
|
+
| Value | CSS Output |
|
|
1162
|
+
|-------|------------|
|
|
1163
|
+
| `purple-500` | `--tw-gradient-via: var(--c-purple-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to);` |
|
|
1164
|
+
|
|
1165
|
+
#### hyphens
|
|
1166
|
+
|
|
1167
|
+
| Value | CSS Output |
|
|
1168
|
+
|-------|------------|
|
|
1169
|
+
| `none` | `hyphens: none;` |
|
|
1170
|
+
| `manual` | `hyphens: manual;` |
|
|
1171
|
+
| `auto` | `hyphens: auto;` |
|
|
1172
|
+
|
|
1173
|
+
#### letter-spacing
|
|
1174
|
+
|
|
1175
|
+
| Value | CSS Output |
|
|
1176
|
+
|-------|------------|
|
|
1177
|
+
| `tighter` | `letter-spacing: -0.05em;` |
|
|
1178
|
+
| `tight` | `letter-spacing: -0.025em;` |
|
|
1179
|
+
| `normal` | `letter-spacing: 0;` |
|
|
1180
|
+
| `wide` | `letter-spacing: 0.025em;` |
|
|
1181
|
+
| `wider` | `letter-spacing: 0.05em;` |
|
|
1182
|
+
| `widest` | `letter-spacing: 0.1em;` |
|
|
1183
|
+
|
|
1184
|
+
#### line-clamp
|
|
1185
|
+
|
|
1186
|
+
| Value | CSS Output |
|
|
1187
|
+
|-------|------------|
|
|
1188
|
+
| `1` | `overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1;` |
|
|
1189
|
+
| `2` | `overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;` |
|
|
1190
|
+
| `3` | `overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;` |
|
|
1191
|
+
| `none` | `overflow: visible; display: block; -webkit-box-orient: horizontal; -webkit-line-clamp: none;` |
|
|
1192
|
+
|
|
1193
|
+
#### line-height
|
|
1194
|
+
|
|
1195
|
+
| Value | CSS Output |
|
|
1196
|
+
|-------|------------|
|
|
1197
|
+
| `none` | `line-height: 1;` |
|
|
1198
|
+
| `tight` | `line-height: 1.25;` |
|
|
1199
|
+
| `snug` | `line-height: 1.375;` |
|
|
1200
|
+
| `normal` | `line-height: 1.5;` |
|
|
1201
|
+
| `relaxed` | `line-height: 1.625;` |
|
|
1202
|
+
| `loose` | `line-height: 2;` |
|
|
1203
|
+
|
|
1204
|
+
#### list-style
|
|
1205
|
+
|
|
1206
|
+
| Value | CSS Output |
|
|
1207
|
+
|-------|------------|
|
|
1208
|
+
| `none` | `list-style-type: none;` |
|
|
1209
|
+
| `disc` | `list-style-type: disc;` |
|
|
1210
|
+
| `decimal` | `list-style-type: decimal;` |
|
|
1211
|
+
| `square` | `list-style-type: square;` |
|
|
1212
|
+
| `inside` | `list-style-position: inside;` |
|
|
1213
|
+
| `outside` | `list-style-position: outside;` |
|
|
1214
|
+
|
|
1215
|
+
#### mask
|
|
1216
|
+
|
|
1217
|
+
| Value | CSS Output |
|
|
1218
|
+
|-------|------------|
|
|
1219
|
+
| `none` | `mask-image: none;` |
|
|
1220
|
+
| `fade-y` | `mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);` |
|
|
1221
|
+
| `fade-x` | `mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);` |
|
|
1222
|
+
|
|
1223
|
+
#### opacity
|
|
1224
|
+
|
|
1225
|
+
| Value | CSS Output |
|
|
1226
|
+
|-------|------------|
|
|
1227
|
+
| `0` | `opacity: 0;` |
|
|
1228
|
+
| `25` | `opacity: 0.25;` |
|
|
1229
|
+
| `50` | `opacity: 0.5;` |
|
|
1230
|
+
| `75` | `opacity: 0.75;` |
|
|
1231
|
+
| `100` | `opacity: 1;` |
|
|
1232
|
+
|
|
1233
|
+
#### pointer-events
|
|
1234
|
+
|
|
1235
|
+
| Value | CSS Output |
|
|
1236
|
+
|-------|------------|
|
|
1237
|
+
| `none` | `pointer-events: none;` |
|
|
1238
|
+
| `auto` | `pointer-events: auto;` |
|
|
1239
|
+
|
|
1240
|
+
#### resize
|
|
1241
|
+
|
|
1242
|
+
| Value | CSS Output |
|
|
1243
|
+
|-------|------------|
|
|
1244
|
+
| `none` | `resize: none;` |
|
|
1245
|
+
| `both` | `resize: both;` |
|
|
1246
|
+
| `x` | `resize: horizontal;` |
|
|
1247
|
+
| `y` | `resize: vertical;` |
|
|
1248
|
+
|
|
1249
|
+
#### ring
|
|
1250
|
+
|
|
1251
|
+
| Value | CSS Output |
|
|
1252
|
+
|-------|------------|
|
|
1253
|
+
| `none` | `box-shadow: 0 0 0 0 transparent;` |
|
|
1254
|
+
| `thin` | `box-shadow: 0 0 0 1px var(--ring-color);` |
|
|
1255
|
+
| `regular` | `box-shadow: 0 0 0 2px var(--ring-color);` |
|
|
1256
|
+
| `small` | `box-shadow: 0 0 0 4px var(--ring-color);` |
|
|
1257
|
+
| `medium` | `box-shadow: 0 0 0 6px var(--ring-color);` |
|
|
1258
|
+
| `big` | `box-shadow: 0 0 0 8px var(--ring-color);` |
|
|
1259
|
+
|
|
1260
|
+
#### ring-color
|
|
1261
|
+
|
|
1262
|
+
| Value | CSS Output |
|
|
1263
|
+
|-------|------------|
|
|
1264
|
+
| `primary` | `--ring-color: var(--c-primary);` |
|
|
1265
|
+
| `blue-500` | `--ring-color: var(--c-blue-500);` |
|
|
1266
|
+
|
|
1267
|
+
#### ring-offset
|
|
1268
|
+
|
|
1269
|
+
| Value | CSS Output |
|
|
1270
|
+
|-------|------------|
|
|
1271
|
+
| `0` | `--ring-offset: 0px;` |
|
|
1272
|
+
| `2` | `--ring-offset: 2px;` |
|
|
1273
|
+
| `4` | `--ring-offset: 4px;` |
|
|
1274
|
+
|
|
1275
|
+
#### scroll-behavior
|
|
1276
|
+
|
|
1277
|
+
| Value | CSS Output |
|
|
1278
|
+
|-------|------------|
|
|
1279
|
+
| `auto` | `scroll-behavior: auto;` |
|
|
1280
|
+
| `smooth` | `scroll-behavior: smooth;` |
|
|
1281
|
+
|
|
1282
|
+
#### scroll-margin
|
|
1283
|
+
|
|
1284
|
+
| Value | CSS Output |
|
|
1285
|
+
|-------|------------|
|
|
1286
|
+
| `scroll-m` | `scroll-margin: {value};` |
|
|
1287
|
+
| `scroll-m-t` | `scroll-margin-top: {value};` |
|
|
1288
|
+
| `scroll-m-r` | `scroll-margin-right: {value};` |
|
|
1289
|
+
| `scroll-m-b` | `scroll-margin-bottom: {value};` |
|
|
1290
|
+
| `scroll-m-l` | `scroll-margin-left: {value};` |
|
|
1291
|
+
|
|
1292
|
+
#### scroll-padding
|
|
1293
|
+
|
|
1294
|
+
| Value | CSS Output |
|
|
1295
|
+
|-------|------------|
|
|
1296
|
+
| `scroll-p` | `scroll-padding: {value};` |
|
|
1297
|
+
| `scroll-p-t` | `scroll-padding-top: {value};` |
|
|
1298
|
+
| `scroll-p-r` | `scroll-padding-right: {value};` |
|
|
1299
|
+
| `scroll-p-b` | `scroll-padding-bottom: {value};` |
|
|
1300
|
+
| `scroll-p-l` | `scroll-padding-left: {value};` |
|
|
1301
|
+
|
|
1302
|
+
#### scroll-snap-align
|
|
1303
|
+
|
|
1304
|
+
| Value | CSS Output |
|
|
1305
|
+
|-------|------------|
|
|
1306
|
+
| `start` | `scroll-snap-align: start;` |
|
|
1307
|
+
| `end` | `scroll-snap-align: end;` |
|
|
1308
|
+
| `center` | `scroll-snap-align: center;` |
|
|
1309
|
+
| `none` | `scroll-snap-align: none;` |
|
|
1310
|
+
|
|
1311
|
+
#### scroll-snap-stop
|
|
1312
|
+
|
|
1313
|
+
| Value | CSS Output |
|
|
1314
|
+
|-------|------------|
|
|
1315
|
+
| `normal` | `scroll-snap-stop: normal;` |
|
|
1316
|
+
| `always` | `scroll-snap-stop: always;` |
|
|
1317
|
+
|
|
1318
|
+
#### scroll-snap-type
|
|
1319
|
+
|
|
1320
|
+
| Value | CSS Output |
|
|
1321
|
+
|-------|------------|
|
|
1322
|
+
| `none` | `scroll-snap-type: none;` |
|
|
1323
|
+
| `x` | `scroll-snap-type: x mandatory;` |
|
|
1324
|
+
| `y` | `scroll-snap-type: y mandatory;` |
|
|
1325
|
+
| `both` | `scroll-snap-type: both mandatory;` |
|
|
1326
|
+
| `x-proximity` | `scroll-snap-type: x proximity;` |
|
|
1327
|
+
| `y-proximity` | `scroll-snap-type: y proximity;` |
|
|
1328
|
+
|
|
1329
|
+
#### state-prefixes
|
|
1330
|
+
|
|
1331
|
+
| Value | CSS Output |
|
|
1332
|
+
|-------|------------|
|
|
1333
|
+
| `hover:` | `:hover` |
|
|
1334
|
+
| `focus:` | `:focus` |
|
|
1335
|
+
| `active:` | `:active` |
|
|
1336
|
+
| `disabled:` | `:disabled` |
|
|
1337
|
+
| `visited:` | `:visited` |
|
|
1338
|
+
| `first:` | `:first-child` |
|
|
1339
|
+
| `last:` | `:last-child` |
|
|
1340
|
+
| `odd:` | `:nth-child(odd)` |
|
|
1341
|
+
| `even:` | `:nth-child(even)` |
|
|
1342
|
+
|
|
1343
|
+
#### stroke
|
|
1344
|
+
|
|
1345
|
+
| Value | CSS Output |
|
|
1346
|
+
|-------|------------|
|
|
1347
|
+
| `none` | `stroke: none;` |
|
|
1348
|
+
| `current` | `stroke: currentColor;` |
|
|
1349
|
+
|
|
1350
|
+
#### stroke-width
|
|
1351
|
+
|
|
1352
|
+
| Value | CSS Output |
|
|
1353
|
+
|-------|------------|
|
|
1354
|
+
| `0` | `stroke-width: 0;` |
|
|
1355
|
+
| `1` | `stroke-width: 1px;` |
|
|
1356
|
+
| `2` | `stroke-width: 2px;` |
|
|
1357
|
+
|
|
1358
|
+
#### text-alignment
|
|
1359
|
+
|
|
1360
|
+
| Value | CSS Output |
|
|
1361
|
+
|-------|------------|
|
|
1362
|
+
| `left` | `text-align: left;` |
|
|
1363
|
+
| `center` | `text-align: center;` |
|
|
1364
|
+
| `right` | `text-align: right;` |
|
|
1365
|
+
| `justify` | `text-align: justify;` |
|
|
1366
|
+
|
|
1367
|
+
#### text-color
|
|
1368
|
+
|
|
1369
|
+
| Value | CSS Output |
|
|
1370
|
+
|-------|------------|
|
|
1371
|
+
| `left` | `text-align: left;` |
|
|
1372
|
+
| `center` | `text-align: center;` |
|
|
1373
|
+
| `right` | `text-align: right;` |
|
|
1374
|
+
| `justify` | `text-align: justify;` |
|
|
1375
|
+
|
|
1376
|
+
#### text-decoration
|
|
1377
|
+
|
|
1378
|
+
| Value | CSS Output |
|
|
1379
|
+
|-------|------------|
|
|
1380
|
+
| `underline` | `text-decoration-line: underline;` |
|
|
1381
|
+
| `overline` | `text-decoration-line: overline;` |
|
|
1382
|
+
| `line-through` | `text-decoration-line: line-through;` |
|
|
1383
|
+
| `no-underline` | `text-decoration-line: none;` |
|
|
1384
|
+
|
|
1385
|
+
#### text-indent
|
|
1386
|
+
|
|
1387
|
+
| Value | CSS Output |
|
|
1388
|
+
|-------|------------|
|
|
1389
|
+
| `0` | `text-indent: 0;` |
|
|
1390
|
+
|
|
1391
|
+
#### text-overflow
|
|
1392
|
+
|
|
1393
|
+
| Value | CSS Output |
|
|
1394
|
+
|-------|------------|
|
|
1395
|
+
| `truncate` | `overflow: hidden; text-overflow: ellipsis; white-space: nowrap;` |
|
|
1396
|
+
| `text-ellipsis` | `text-overflow: ellipsis;` |
|
|
1397
|
+
| `text-clip` | `text-overflow: clip;` |
|
|
1398
|
+
|
|
1399
|
+
#### text-shadow
|
|
1400
|
+
|
|
1401
|
+
| Value | CSS Output |
|
|
1402
|
+
|-------|------------|
|
|
1403
|
+
| `none` | `text-shadow: none;` |
|
|
1404
|
+
| `small` | `text-shadow: 0 1px 2px rgba(0,0,0,0.1);` |
|
|
1405
|
+
| `medium` | `text-shadow: 0 2px 4px rgba(0,0,0,0.1);` |
|
|
1406
|
+
| `big` | `text-shadow: 0 4px 8px rgba(0,0,0,0.1);` |
|
|
1407
|
+
|
|
1408
|
+
#### text-size
|
|
1409
|
+
|
|
1410
|
+
| Value | CSS Output |
|
|
1411
|
+
|-------|------------|
|
|
1412
|
+
| `mini` | `font-size: var(--font-mini); line-height: var(--font-lh-mini);` |
|
|
1413
|
+
| `small` | `font-size: var(--font-small); line-height: var(--font-lh-small);` |
|
|
1414
|
+
| `base` | `font-size: var(--font-base); line-height: var(--font-lh-base);` |
|
|
1415
|
+
| `large` | `font-size: var(--font-large); line-height: var(--font-lh-large);` |
|
|
1416
|
+
| `big` | `font-size: var(--font-big); line-height: var(--font-lh-big);` |
|
|
1417
|
+
| `huge` | `font-size: var(--font-huge); line-height: var(--font-lh-huge);` |
|
|
1418
|
+
| `grand` | `font-size: var(--font-grand); line-height: var(--font-lh-grand);` |
|
|
1419
|
+
| `giant` | `font-size: var(--font-giant); line-height: var(--font-lh-giant);` |
|
|
1420
|
+
| `mount` | `font-size: var(--font-mount); line-height: var(--font-lh-mount);` |
|
|
1421
|
+
| `mega` | `font-size: var(--font-mega); line-height: var(--font-lh-mega);` |
|
|
1422
|
+
| `giga` | `font-size: var(--font-giga); line-height: var(--font-lh-giga);` |
|
|
1423
|
+
| `tera` | `font-size: var(--font-tera); line-height: var(--font-lh-tera);` |
|
|
1424
|
+
| `hero` | `font-size: var(--font-hero); line-height: var(--font-lh-hero);` |
|
|
1425
|
+
|
|
1426
|
+
#### text-transform
|
|
1427
|
+
|
|
1428
|
+
| Value | CSS Output |
|
|
1429
|
+
|-------|------------|
|
|
1430
|
+
| `uppercase` | `text-transform: uppercase;` |
|
|
1431
|
+
| `lowercase` | `text-transform: lowercase;` |
|
|
1432
|
+
| `capitalize` | `text-transform: capitalize;` |
|
|
1433
|
+
| `normal-case` | `text-transform: none;` |
|
|
1434
|
+
|
|
1435
|
+
#### text-wrap
|
|
1436
|
+
|
|
1437
|
+
| Value | CSS Output |
|
|
1438
|
+
|-------|------------|
|
|
1439
|
+
| `text-wrap` | `text-wrap: wrap;` |
|
|
1440
|
+
| `text-nowrap` | `text-wrap: nowrap;` |
|
|
1441
|
+
| `text-balance` | `text-wrap: balance;` |
|
|
1442
|
+
| `text-pretty` | `text-wrap: pretty;` |
|
|
1443
|
+
|
|
1444
|
+
#### touch-action
|
|
1445
|
+
|
|
1446
|
+
| Value | CSS Output |
|
|
1447
|
+
|-------|------------|
|
|
1448
|
+
| `auto` | `touch-action: auto;` |
|
|
1449
|
+
| `none` | `touch-action: none;` |
|
|
1450
|
+
| `pan-x` | `touch-action: pan-x;` |
|
|
1451
|
+
| `pan-y` | `touch-action: pan-y;` |
|
|
1452
|
+
| `pan-left` | `touch-action: pan-left;` |
|
|
1453
|
+
| `pan-right` | `touch-action: pan-right;` |
|
|
1454
|
+
| `pinch-zoom` | `touch-action: pinch-zoom;` |
|
|
1455
|
+
| `manipulation` | `touch-action: manipulation;` |
|
|
1456
|
+
|
|
1457
|
+
#### transform-backface
|
|
1458
|
+
|
|
1459
|
+
| Value | CSS Output |
|
|
1460
|
+
|-------|------------|
|
|
1461
|
+
| `visible` | `backface-visibility: visible;` |
|
|
1462
|
+
| `hidden` | `backface-visibility: hidden;` |
|
|
1463
|
+
|
|
1464
|
+
#### transform-origin
|
|
1465
|
+
|
|
1466
|
+
| Value | CSS Output |
|
|
1467
|
+
|-------|------------|
|
|
1468
|
+
| `center` | `transform-origin: center;` |
|
|
1469
|
+
| `top` | `transform-origin: top;` |
|
|
1470
|
+
| `top-right` | `transform-origin: top right;` |
|
|
1471
|
+
| `right` | `transform-origin: right;` |
|
|
1472
|
+
| `bottom-right` | `transform-origin: bottom right;` |
|
|
1473
|
+
| `bottom` | `transform-origin: bottom;` |
|
|
1474
|
+
| `bottom-left` | `transform-origin: bottom left;` |
|
|
1475
|
+
| `left` | `transform-origin: left;` |
|
|
1476
|
+
| `top-left` | `transform-origin: top left;` |
|
|
1477
|
+
|
|
1478
|
+
#### transform-perspective
|
|
1479
|
+
|
|
1480
|
+
| Value | CSS Output |
|
|
1481
|
+
|-------|------------|
|
|
1482
|
+
| `none` | `perspective: none;` |
|
|
1483
|
+
| `dramatic` | `perspective: 100px;` |
|
|
1484
|
+
| `near` | `perspective: 300px;` |
|
|
1485
|
+
| `normal` | `perspective: 500px;` |
|
|
1486
|
+
| `midrange` | `perspective: 800px;` |
|
|
1487
|
+
| `far` | `perspective: 1000px;` |
|
|
1488
|
+
| `distant` | `perspective: 1200px;` |
|
|
1489
|
+
|
|
1490
|
+
#### transform-perspective-origin
|
|
1491
|
+
|
|
1492
|
+
| Value | CSS Output |
|
|
1493
|
+
|-------|------------|
|
|
1494
|
+
| `center` | `perspective-origin: center;` |
|
|
1495
|
+
| `top` | `perspective-origin: top;` |
|
|
1496
|
+
| `bottom` | `perspective-origin: bottom;` |
|
|
1497
|
+
| `left` | `perspective-origin: left;` |
|
|
1498
|
+
| `right` | `perspective-origin: right;` |
|
|
1499
|
+
| `top-left` | `perspective-origin: top left;` |
|
|
1500
|
+
| `top-right` | `perspective-origin: top right;` |
|
|
1501
|
+
| `bottom-left` | `perspective-origin: bottom left;` |
|
|
1502
|
+
| `bottom-right` | `perspective-origin: bottom right;` |
|
|
1503
|
+
|
|
1504
|
+
#### transform-rotate
|
|
1505
|
+
|
|
1506
|
+
| Value | CSS Output |
|
|
1507
|
+
|-------|------------|
|
|
1508
|
+
| `0` | `transform: rotate(0deg);` |
|
|
1509
|
+
| `45` | `transform: rotate(45deg);` |
|
|
1510
|
+
| `90` | `transform: rotate(90deg);` |
|
|
1511
|
+
| `180` | `transform: rotate(180deg);` |
|
|
1512
|
+
|
|
1513
|
+
#### transform-rotate-3d
|
|
1514
|
+
|
|
1515
|
+
| Value | CSS Output |
|
|
1516
|
+
|-------|------------|
|
|
1517
|
+
| `0` | `transform: rotateX(0deg);` |
|
|
1518
|
+
| `45` | `transform: rotateX(45deg);` |
|
|
1519
|
+
| `90` | `transform: rotateX(90deg);` |
|
|
1520
|
+
| `180` | `transform: rotateX(180deg);` |
|
|
1521
|
+
|
|
1522
|
+
#### transform-scale
|
|
1523
|
+
|
|
1524
|
+
| Value | CSS Output |
|
|
1525
|
+
|-------|------------|
|
|
1526
|
+
| `0` | `transform: scale(0);` |
|
|
1527
|
+
| `50` | `transform: scale(0.5);` |
|
|
1528
|
+
| `75` | `transform: scale(0.75);` |
|
|
1529
|
+
| `100` | `transform: scale(1);` |
|
|
1530
|
+
| `110` | `transform: scale(1.1);` |
|
|
1531
|
+
| `125` | `transform: scale(1.25);` |
|
|
1532
|
+
| `150` | `transform: scale(1.5);` |
|
|
1533
|
+
|
|
1534
|
+
#### transform-skew
|
|
1535
|
+
|
|
1536
|
+
| Value | CSS Output |
|
|
1537
|
+
|-------|------------|
|
|
1538
|
+
| `0` | `transform: skewX(0deg);` |
|
|
1539
|
+
| `3` | `transform: skewX(3deg);` |
|
|
1540
|
+
| `6` | `transform: skewX(6deg);` |
|
|
1541
|
+
| `12` | `transform: skewX(12deg);` |
|
|
1542
|
+
|
|
1543
|
+
#### transform-style
|
|
1544
|
+
|
|
1545
|
+
| Value | CSS Output |
|
|
1546
|
+
|-------|------------|
|
|
1547
|
+
| `flat` | `transform-style: flat;` |
|
|
1548
|
+
| `preserve-3d` | `transform-style: preserve-3d;` |
|
|
1549
|
+
|
|
1550
|
+
#### transform-translate
|
|
1551
|
+
|
|
1552
|
+
| Value | CSS Output |
|
|
1553
|
+
|-------|------------|
|
|
1554
|
+
| `0` | `transform: translateX(0);` |
|
|
1555
|
+
| `tiny` | `transform: translateX(var(--sp-tiny));` |
|
|
1556
|
+
| `small` | `transform: translateX(var(--sp-small));` |
|
|
1557
|
+
| `medium` | `transform: translateX(var(--sp-medium));` |
|
|
1558
|
+
| `big` | `transform: translateX(var(--sp-big));` |
|
|
1559
|
+
| `full` | `transform: translateX(100%);` |
|
|
1560
|
+
| `1/2` | `transform: translateX(50%);` |
|
|
1561
|
+
| `-full` | `transform: translateX(-100%);` |
|
|
1562
|
+
| `-1/2` | `transform: translateX(-50%);` |
|
|
1563
|
+
|
|
1564
|
+
#### transform-translate-z
|
|
1565
|
+
|
|
1566
|
+
| Value | CSS Output |
|
|
1567
|
+
|-------|------------|
|
|
1568
|
+
| `0` | `transform: translateZ(0);` |
|
|
1569
|
+
| `near` | `transform: translateZ(50px);` |
|
|
1570
|
+
| `far` | `transform: translateZ(-50px);` |
|
|
1571
|
+
|
|
1572
|
+
#### transition-delay
|
|
1573
|
+
|
|
1574
|
+
| Value | CSS Output |
|
|
1575
|
+
|-------|------------|
|
|
1576
|
+
| `instant` | `transition-delay: 75ms;` |
|
|
1577
|
+
| `quick` | `transition-delay: 100ms;` |
|
|
1578
|
+
| `fast` | `transition-delay: 150ms;` |
|
|
1579
|
+
| `normal` | `transition-delay: 200ms;` |
|
|
1580
|
+
| `slow` | `transition-delay: 300ms;` |
|
|
1581
|
+
|
|
1582
|
+
#### transition-duration
|
|
1583
|
+
|
|
1584
|
+
| Value | CSS Output |
|
|
1585
|
+
|-------|------------|
|
|
1586
|
+
| `instant` | `transition-duration: 75ms;` |
|
|
1587
|
+
| `quick` | `transition-duration: 100ms;` |
|
|
1588
|
+
| `fast` | `transition-duration: 150ms;` |
|
|
1589
|
+
| `normal` | `transition-duration: 200ms;` |
|
|
1590
|
+
| `slow` | `transition-duration: 300ms;` |
|
|
1591
|
+
| `slower` | `transition-duration: 500ms;` |
|
|
1592
|
+
| `lazy` | `transition-duration: 700ms;` |
|
|
1593
|
+
|
|
1594
|
+
#### transition-property
|
|
1595
|
+
|
|
1596
|
+
| Value | CSS Output |
|
|
1597
|
+
|-------|------------|
|
|
1598
|
+
| `none` | `transition-property: none;` |
|
|
1599
|
+
| `all` | `transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
|
|
1600
|
+
| `colors` | `transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
|
|
1601
|
+
| `opacity` | `transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
|
|
1602
|
+
| `shadow` | `transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
|
|
1603
|
+
| `transform` | `transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms;` |
|
|
1604
|
+
|
|
1605
|
+
#### transition-timing
|
|
1606
|
+
|
|
1607
|
+
| Value | CSS Output |
|
|
1608
|
+
|-------|------------|
|
|
1609
|
+
| `linear` | `transition-timing-function: linear;` |
|
|
1610
|
+
| `in` | `transition-timing-function: cubic-bezier(0.4, 0, 1, 1);` |
|
|
1611
|
+
| `out` | `transition-timing-function: cubic-bezier(0, 0, 0.2, 1);` |
|
|
1612
|
+
| `in-out` | `transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);` |
|
|
1613
|
+
|
|
1614
|
+
#### typography-keywords
|
|
1615
|
+
|
|
1616
|
+
| Value | CSS Output |
|
|
1617
|
+
|-------|------------|
|
|
1618
|
+
| `italic` | `font-style: italic;` |
|
|
1619
|
+
| `not-italic` | `font-style: normal;` |
|
|
1620
|
+
| `antialiased` | `-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;` |
|
|
1621
|
+
| `subpixel-antialiased` | `-webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto;` |
|
|
1622
|
+
| `uppercase` | `text-transform: uppercase;` |
|
|
1623
|
+
| `lowercase` | `text-transform: lowercase;` |
|
|
1624
|
+
| `capitalize` | `text-transform: capitalize;` |
|
|
1625
|
+
| `normal-case` | `text-transform: none;` |
|
|
1626
|
+
| `underline` | `text-decoration-line: underline;` |
|
|
1627
|
+
| `overline` | `text-decoration-line: overline;` |
|
|
1628
|
+
| `line-through` | `text-decoration-line: line-through;` |
|
|
1629
|
+
| `no-underline` | `text-decoration-line: none;` |
|
|
1630
|
+
| `decoration-solid` | `text-decoration-style: solid;` |
|
|
1631
|
+
| `decoration-double` | `text-decoration-style: double;` |
|
|
1632
|
+
| `decoration-dotted` | `text-decoration-style: dotted;` |
|
|
1633
|
+
| `decoration-dashed` | `text-decoration-style: dashed;` |
|
|
1634
|
+
| `decoration-wavy` | `text-decoration-style: wavy;` |
|
|
1635
|
+
| `truncate` | `overflow: hidden; text-overflow: ellipsis; white-space: nowrap;` |
|
|
1636
|
+
| `text-ellipsis` | `text-overflow: ellipsis;` |
|
|
1637
|
+
| `text-clip` | `text-overflow: clip;` |
|
|
1638
|
+
| `text-wrap` | `text-wrap: wrap;` |
|
|
1639
|
+
| `text-nowrap` | `text-wrap: nowrap;` |
|
|
1640
|
+
| `text-balance` | `text-wrap: balance;` |
|
|
1641
|
+
| `text-pretty` | `text-wrap: pretty;` |
|
|
1642
|
+
| `whitespace-normal` | `white-space: normal;` |
|
|
1643
|
+
| `whitespace-nowrap` | `white-space: nowrap;` |
|
|
1644
|
+
| `whitespace-pre` | `white-space: pre;` |
|
|
1645
|
+
| `whitespace-pre-line` | `white-space: pre-line;` |
|
|
1646
|
+
| `whitespace-pre-wrap` | `white-space: pre-wrap;` |
|
|
1647
|
+
| `whitespace-break-spaces` | `white-space: break-spaces;` |
|
|
1648
|
+
| `break-normal` | `overflow-wrap: normal; word-break: normal;` |
|
|
1649
|
+
| `break-words` | `overflow-wrap: break-word;` |
|
|
1650
|
+
| `break-all` | `word-break: break-all;` |
|
|
1651
|
+
| `break-keep` | `word-break: keep-all;` |
|
|
1652
|
+
| `hyphens-none` | `hyphens: none;` |
|
|
1653
|
+
| `hyphens-manual` | `hyphens: manual;` |
|
|
1654
|
+
| `hyphens-auto` | `hyphens: auto;` |
|
|
1655
|
+
| `align-baseline` | `vertical-align: baseline;` |
|
|
1656
|
+
| `align-top` | `vertical-align: top;` |
|
|
1657
|
+
| `align-middle` | `vertical-align: middle;` |
|
|
1658
|
+
| `align-bottom` | `vertical-align: bottom;` |
|
|
1659
|
+
| `align-text-top` | `vertical-align: text-top;` |
|
|
1660
|
+
| `align-text-bottom` | `vertical-align: text-bottom;` |
|
|
1661
|
+
| `align-sub` | `vertical-align: sub;` |
|
|
1662
|
+
| `align-super` | `vertical-align: super;` |
|
|
1663
|
+
| `list-none` | `list-style-type: none;` |
|
|
1664
|
+
| `list-disc` | `list-style-type: disc;` |
|
|
1665
|
+
| `list-decimal` | `list-style-type: decimal;` |
|
|
1666
|
+
| `list-square` | `list-style-type: square;` |
|
|
1667
|
+
| `list-inside` | `list-style-position: inside;` |
|
|
1668
|
+
| `list-outside` | `list-style-position: outside;` |
|
|
1669
|
+
|
|
1670
|
+
#### user-select
|
|
1671
|
+
|
|
1672
|
+
| Value | CSS Output |
|
|
1673
|
+
|-------|------------|
|
|
1674
|
+
| `none` | `user-select: none;` |
|
|
1675
|
+
| `text` | `user-select: text;` |
|
|
1676
|
+
| `all` | `user-select: all;` |
|
|
1677
|
+
| `auto` | `user-select: auto;` |
|
|
1678
|
+
|
|
1679
|
+
#### vertical-align
|
|
1680
|
+
|
|
1681
|
+
| Value | CSS Output |
|
|
1682
|
+
|-------|------------|
|
|
1683
|
+
| `baseline` | `vertical-align: baseline;` |
|
|
1684
|
+
| `top` | `vertical-align: top;` |
|
|
1685
|
+
| `middle` | `vertical-align: middle;` |
|
|
1686
|
+
| `bottom` | `vertical-align: bottom;` |
|
|
1687
|
+
| `text-top` | `vertical-align: text-top;` |
|
|
1688
|
+
| `text-bottom` | `vertical-align: text-bottom;` |
|
|
1689
|
+
| `sub` | `vertical-align: sub;` |
|
|
1690
|
+
| `super` | `vertical-align: super;` |
|
|
1691
|
+
|
|
1692
|
+
#### whitespace
|
|
1693
|
+
|
|
1694
|
+
| Value | CSS Output |
|
|
1695
|
+
|-------|------------|
|
|
1696
|
+
| `normal` | `white-space: normal;` |
|
|
1697
|
+
| `nowrap` | `white-space: nowrap;` |
|
|
1698
|
+
| `pre` | `white-space: pre;` |
|
|
1699
|
+
| `pre-line` | `white-space: pre-line;` |
|
|
1700
|
+
| `pre-wrap` | `white-space: pre-wrap;` |
|
|
1701
|
+
| `break-spaces` | `white-space: break-spaces;` |
|
|
1702
|
+
|
|
1703
|
+
#### will-change
|
|
1704
|
+
|
|
1705
|
+
| Value | CSS Output |
|
|
1706
|
+
|-------|------------|
|
|
1707
|
+
| `auto` | `will-change: auto;` |
|
|
1708
|
+
| `scroll` | `will-change: scroll-position;` |
|
|
1709
|
+
| `contents` | `will-change: contents;` |
|
|
1710
|
+
| `transform` | `will-change: transform;` |
|
|
1711
|
+
| `opacity` | `will-change: opacity;` |
|
|
1712
|
+
|
|
1713
|
+
#### word-break
|
|
1714
|
+
|
|
1715
|
+
| Value | CSS Output |
|
|
1716
|
+
|-------|------------|
|
|
1717
|
+
| `break-normal` | `overflow-wrap: normal; word-break: normal;` |
|
|
1718
|
+
| `break-words` | `overflow-wrap: break-word;` |
|
|
1719
|
+
| `break-all` | `word-break: break-all;` |
|
|
1720
|
+
| `break-keep` | `word-break: keep-all;` |
|
|
1721
|
+
|
|
1722
|
+
#### writing-mode
|
|
1723
|
+
|
|
1724
|
+
| Value | CSS Output |
|
|
1725
|
+
|-------|------------|
|
|
1726
|
+
| `horizontal-tb` | `writing-mode: horizontal-tb;` |
|
|
1727
|
+
| `vertical-rl` | `writing-mode: vertical-rl;` |
|
|
1728
|
+
| `vertical-lr` | `writing-mode: vertical-lr;` |
|
|
1729
|
+
| `sideways-rl` | `writing-mode: sideways-rl;` |
|
|
1730
|
+
| `sideways-lr` | `writing-mode: sideways-lr;` |
|
|
1731
|
+
|