-
Notifications
You must be signed in to change notification settings - Fork 1
/
.snippets_custom.json
688 lines (688 loc) · 27.6 KB
/
.snippets_custom.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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
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
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
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
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
{
"variables": {
"lang": "en",
"locale": "en-US",
"charset": "UTF-8",
"indentation": "\t",
"newline": "\n"
},
"html": {
"filters": "html",
"profile": "html",
"snippets": {
"todo": "<!--\nTODO: ${1:todo item} \n-->",
"fixme": "<!--\nFIXME: ${1:fix item} \n-->",
"note": "<!--\nNOTE: ${1:note} \n-->"
}
},
"css": {
"filters": "css",
"profile": "css",
"snippets": {
"@i": "@import url(|);",
"@import": "@import url(|);",
"@m": "@media ${1:screen} {\n\t|\n}",
"@media": "@media ${1:screen} {\n\t|\n}",
"@f": "@font-face {\n\tfont-family:|;\n\tsrc:url(|);\n}",
"@f+": "@font-face {\n\tfont-family: '${1:FontName}';\n\tsrc: url('${2:FileName}.eot');\n\tsrc: url('${2:FileName}.eot?#iefix') format('embedded-opentype'),\n\t\t url('${2:FileName}.woff') format('woff'),\n\t\t url('${2:FileName}.ttf') format('truetype'),\n\t\t url('${2:FileName}.svg#${1:FontName}') format('svg');\n\tfont-style: ${3:normal};\n\tfont-weight: ${4:normal};\n}",
"@kf": "@-webkit-keyframes ${1:identifier} {\n\t${2:from} { ${3} }${6}\n\t${4:to} { ${5} }\n}\n@-o-keyframes ${1:identifier} {\n\t${2:from} { ${3} }${6}\n\t${4:to} { ${5} }\n}\n@-moz-keyframes ${1:identifier} {\n\t${2:from} { ${3} }${6}\n\t${4:to} { ${5} }\n}\n@keyframes ${1:identifier} {\n\t${2:from} { ${3} }${6}\n\t${4:to} { ${5} }\n}",
"a": "animation: |;",
"a-": "animation: ${1:name} ${2:duration} ${3:timing-function} ${4:delay} ${5:iteration-count} ${6:direction} ${7:fill-mode};",
"ad": "animation-delay: ${1:time};",
"adi": "animation-direction: ${1:normal};",
"adin": "animation-direction: normal;",
"adir": "animation-direction: reverse;",
"adia": "animation-direction: alternate;",
"adiar": "animation-direction: alternate-reverse;",
"adu": "animation-duration: ${1:0}s;",
"afm": "animation-fill-mode: ${1:both};",
"afmf": "animation-fill-mode: forwards;",
"afmb": "animation-fill-mode: backwards;",
"afmbo": "animation-fill-mode: both;",
"aitc": "animation-iteration-count: ${1:1};",
"aitci": "animation-iteration-count: jinfinite;",
"an": "animation-name: ${1:none};",
"aps": "animation-play-state: ${1:running};",
"apsp": "animation-play-state: paused;",
"apsr": "animation-play-state: running;",
"atf": "animation-timing-function: ${1:linear};",
"atfe": "animation-timing-function: ease;",
"atfei": "animation-timing-function: ease-in;",
"atf:eo": "animation-timing-function: ease-out;",
"atfeio": "animation-timing-function: ease-in-out;",
"atfl": "animation-timing-function: linear;",
"atfc": "animation-timing-function: cubic-bezier(${1:0.1}, ${2:0.7}, ${3:1.0}, ${3:0.1});",
"ap": "appearance: ${none};",
"!": "!important",
"po": "position: ${1:relative};",
"pos": "position: static;",
"poa": "position: absolute;",
"por": "position: relative;",
"pof": "position: fixed;",
"t": "top: |;",
"ta": "top: auto;",
"r": "right: |;",
"ra": "right: auto;",
"b": "bottom: |;",
"ba": "bottom: auto;",
"l": "left: |;",
"la": "left: auto;",
"z": "z-index: |;",
"za": "z-index: auto;",
"fl": "float: ${1:left};",
"fln": "float: none;",
"fll": "float: left;",
"flr": "float: right;",
"cl": "clear: ${1:both};",
"cln": "clear: none;",
"cll": "clear: left;",
"clr": "clear: right;",
"clb": "clear: both;",
"colu": "columns: |;",
"colc": "column-count: |;",
"colf": "column-fill: |;",
"colg": "column-gap: |;",
"colr": "column-rule: |;",
"colrc": "column-rule-color: |;",
"colrs": "column-rule-style: |;",
"colrw": "column-rule-width: |;",
"cols": "column-span: |;",
"colw": "column-width: |;",
"d": "display: ${1:block};",
"dn": "display: none;",
"db": "display: block;",
"df": "display: flex;",
"dg": "display: grid;",
"dig": "display: inline-grid;",
"dsg": "display: subgrid;",
"di": "display: inline;",
"dib": "display: inline-block;",
"dib+": "display: inline-block;\n*display: inline;\n*zoom: 1;",
"dli": "display: list-item;",
"dri": "display: run-in;",
"dc": "display: compact;",
"dt": "display: table;",
"dit": "display: inline-table;",
"dtca": "display: table-caption;",
"dtcol": "display: table-column;",
"dtcg": "display: table-column-group;",
"dthg": "display: table-header-group;",
"dtfg": "display: table-footer-group;",
"dtr": "display: table-row;",
"dtrg": "display: table-row-group;",
"dtc": "display: table-cell;",
"dr": "display: ruby;",
"drb": "display: ruby-base;",
"drbg": "display: ruby-base-group;",
"drt": "display: ruby-text;",
"drtg": "display: ruby-text-group;",
"v": "visibility: ${1:hidden};",
"vv": "visibility: visible;",
"vh": "visibility: hidden;",
"vc": "visibility: collapse;",
"o": "overflow: ${1:hidden};",
"ov": "overflow: visible;",
"oh": "overflow: hidden;",
"os": "overflow: scroll;",
"oa": "overflow: auto;",
"ox": "overflow-x: ${1:hidden};",
"oxv": "overflow-x: visible;",
"oxh": "overflow-x: hidden;",
"oxs": "overflow-x: scroll;",
"oxa": "overflow-x: auto;",
"oy": "overflow-y: ${1:hidden};",
"oyv": "overflow-y: visible;",
"oyh": "overflow-y: hidden;",
"oys": "overflow-y: scroll;",
"oya": "overflow-y: auto;",
"ovs": "overflow-style: ${1:scrollbar};",
"ovsa": "overflow-style: auto;",
"ovss": "overflow-style: scrollbar;",
"ovsp": "overflow-style: panner;",
"ovsm": "overflow-style: move;",
"ovsmq": "overflow-style: marquee;",
"zo": "zoom: 1;",
"cli": "clip: |;",
"clia": "clip: auto;",
"clir": "clip: rect(${1:top} ${2:right} ${3:bottom} ${4:left});",
"bos": "box-sizing: ${1:border-box};",
"boscb": "box-sizing: content-box;",
"bosbb": "box-sizing: border-box;",
"bosh": "box-shadow: ${1:inset }${2:hoff} ${3:voff} ${4:blur} ${5:color};",
"boshr": "box-shadow: ${1:inset }${2:hoff} ${3:voff} ${4:blur} ${5:spread }rgb(${6:0}, ${7:0}, ${8:0});",
"boshn": "box-shadow: none;",
"m": "margin: |;",
"ma": "margin: auto;",
"mt": "margin-top: |;",
"mta": "margin-top: auto;",
"mr": "margin-right: |;",
"mra": "margin-right: auto;",
"mb": "margin-bottom: |;",
"mba": "margin-bottom: auto;",
"ml": "margin-left: |;",
"mla": "margin-left: auto;",
"p": "padding: |;",
"pt": "padding-top: |;",
"pr": "padding-right: |;",
"pb": "padding-bottom: |;",
"pl": "padding-left: |;",
"w": "width: |;",
"wa": "width: auto;",
"h": "height: |;",
"ha": "height: auto;",
"maw": "max-width: |;",
"mawn": "max-width: none;",
"mah": "max-height: |;",
"mahn": "max-height: none;",
"miw": "min-width: |;",
"mih": "min-height: |;",
"mar": "max-resolution: ${1:res};",
"mir": "min-resolution: ${1:res};",
"ori": "orientation: |;",
"oril": "orientation: landscape;",
"orip": "orientation: portrait;",
"ou": "outline: |;",
"oun": "outline: none;",
"ouo": "outline-offset: |;",
"ouw": "outline-width: |;",
"ouwt": "outline-width: thin;",
"ouwm": "outline-width: medium;",
"ouwth": "outline-width: thick;",
"ous": "outline-style: |;",
"ousn": "outline-style: none;",
"ousdo": "outline-style: dotted;",
"ousda": "outline-style: dashed;",
"ouss": "outline-style: solid;",
"ousdb": "outline-style: double;",
"ousg": "outline-style: groove;",
"ousr": "outline-style: ridge;",
"ousi": "outline-style: inset;",
"ouso": "outline-style: outset;",
"ouc": "outline-color: #${1:000};",
"ouci": "outline-color: invert;",
"bav": "backface-visibility: |;",
"bavh": "backface-visibility: hidden;",
"bavv": "backface-visibility: visible;",
"bd": "border: |;",
"bd+": "border: ${1:1px} ${2:solid} ${3:#000};",
"bdn": "border: none;",
"bdbr": "border-break: ${1:close};",
"bdbrc": "border-break: close;",
"bdco": "border-collapse: |;",
"bdcoco": "border-collapse: collapse;",
"bdcos": "border-collapse: separate;",
"bdc": "border-color: #${1:000};",
"bdct": "border-color: transparent;",
"bdi": "border-image: url(|);",
"bdin": "border-image: none;",
"bdti": "border-top-image: url(|);",
"bdtin": "border-top-image: none;",
"bdri": "border-right-image: url(|);",
"bdrin": "border-right-image: none;",
"bdbi": "border-bottom-image: url(|);",
"bdbin": "border-bottom-image: none;",
"bdli": "border-left-image: url(|);",
"bdlin": "border-left-image: none;",
"bdci": "border-corner-image: url(|);",
"bdcin": "border-corner-image: none;",
"bdcic": "border-corner-image: continue;",
"bdtli": "border-top-left-image: url(|);",
"bdtlin": "border-top-left-image: none;",
"bdtlic": "border-top-left-image: continue;",
"bdtri": "border-top-right-image: url(|);",
"bdtrin": "border-top-right-image: none;",
"bdtric": "border-top-right-image: continue;",
"bdbri": "border-bottom-right-image: url(|);",
"bdbrin": "border-bottom-right-image: none;",
"bdbric": "border-bottom-right-image: continue;",
"bdbli": "border-bottom-left-image: url(|);",
"bdblin": "border-bottom-left-image: none;",
"bdblic": "border-bottom-left-image: continue;",
"bdf": "border-fit: ${1:repeat};",
"bdfc": "border-fit: clip;",
"bdfr": "border-fit: repeat;",
"bdfs": "border-fit: scale;",
"bdfst": "border-fit: stretch;",
"bdfo": "border-fit: overwrite;",
"bdfof": "border-fit: overflow;",
"bdfsp": "border-fit: space;",
"bdle": "border-length: |;",
"bdlea": "border-length: auto;",
"bdsp": "border-spacing: |;",
"bds": "border-style: |;",
"bdsn": "border-style: none;",
"bdsh": "border-style: hidden;",
"bsd": "border-style: dotted;",
"bdsda": "border-style: dashed;",
"bdss": "border-style: solid;",
"bdsdb": "border-style: double;",
"bdsdd": "border-style: dot-dash;",
"bdsddd": "border-style: dot-dot-dash;",
"bdsw": "border-style: wave;",
"bdsg": "border-style: groove;",
"bdsr": "border-style: ridge;",
"bdsi": "border-style: inset;",
"bdso": "border-style: outset;",
"bdw": "border-width: |;",
"bdtw": "border-top-width: |;",
"bdrw": "border-right-width: |;",
"bdbw": "border-bottom-width: |;",
"bdlw": "border-left-width: |;",
"bdt": "border-top: |;",
"bdt+": "border-top: ${1:1px} ${2:solid} ${3:#000};",
"bdtn": "border-top: none;",
"bdts": "border-top-style: |;",
"bdtsn": "border-top-style: none;",
"bdtc": "border-top-color: #${1:000};",
"bdtct": "border-top-color: transparent;",
"bdr": "border-right: |;",
"bdr+": "border-right: ${1:1px} ${2:solid} ${3:#000};",
"bdrn": "border-right: none;",
"bdrs": "border-right-style: |;",
"bdrsn": "border-right-style: none;",
"bdrc": "border-right-color: #${1:000};",
"bdrct": "border-right-color: transparent;",
"bdb": "border-bottom: |;",
"bdb+": "border-bottom: ${1:1px} ${2:solid} ${3:#000};",
"bddb:n": "border-bottom: none;",
"bdbs": "border-bottom-style: |;",
"bdbsn": "border-bottom-style: none;",
"bdbc": "border-bottom-color: #${1:000};",
"bdbct": "border-bottom-color: transparent;",
"bdl": "border-left: |;",
"bdl+": "border-left: ${1:1px} ${2:solid} ${3:#000};",
"bdln": "border-left: none;",
"bdls": "border-left-style: |;",
"bdlsn": "border-left-style: none;",
"bdlc": "border-left-color: #${1:000};",
"bdlct": "border-left-color: transparent;",
"bdra": "border-radius: |;",
"bdtrra": "border-top-right-radius: |;",
"bdtlra": "border-top-left-radius: |;",
"bdbrra": "border-bottom-right-radius: |;",
"bdblra": "border-bottom-left-radius: |;",
"bg": "background: #${1:000};",
"bg+": "background: ${1:#fff} url(${2}) ${3:0} ${4:0} ${5:no-repeat};",
"bgn": "background: none;",
"bgie": "filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='${1:x}.png',sizingMethod='${2:crop}');",
"bgc": "background-color: #${1:fff};",
"bgct": "background-color: transparent;",
"bgi": "background-image: url(|);",
"bgin": "background-image: none;",
"bgr": "background-repeat: |;",
"bgrn": "background-repeat: no-repeat;",
"bgrx": "background-repeat: repeat-x;",
"bgry": "background-repeat: repeat-y;",
"bgrs": "background-repeat: space;",
"bgrr": "background-repeat: round;",
"bga": "background-attachment: |;",
"bgaf": "background-attachment: fixed;",
"bgas": "background-attachment: scroll;",
"bgp": "background-position: ${1:0} ${2:0};",
"bgpx": "background-position-x: |;",
"bgpy": "background-position-y: |;",
"bgb": "background-break: |;",
"bgbbb": "background-break: bounding-box;",
"bgbeb": "background-break: each-box;",
"bgbc": "background-break: continuous;",
"bgcl": "background-clip: ${1:padding-box};",
"bgclbb": "background-clip: border-box;",
"bgclpb": "background-clip: padding-box;",
"bgclcb": "background-clip: content-box;",
"bgclnc": "background-clip: no-clip;",
"bgo": "background-origin: |;",
"bgopb": "background-origin: padding-box;",
"bgobb": "background-origin: border-box;",
"bgocb": "background-origin: content-box;",
"bgs": "background-size: |;",
"bgsa": "background-size: auto;",
"bgsc": "background-size: contain;",
"bgsco": "background-size: cover;",
"c": "color: #${1:000};",
"cr": "color: rgb(${1:0}, ${2:0}, ${3:0});",
"cra": "color: rgba(${1:0}, ${2:0}, ${3:0}, .${4:5});",
"cm": "/* |${child} */",
"co": "content: '|';",
"con": "content: normal;",
"cooq": "content: open-quote;",
"conoq": "content: no-open-quote;",
"cocq": "content: close-quote;",
"concq": "content: no-close-quote;",
"coa": "content: attr(|);",
"coc": "content: counter(|);",
"cocs": "content: counters(|);",
"tl": "table-layout: |;",
"tla": "table-layout: auto;",
"tlf": "table-layout: fixed;",
"cs": "caption-side: |;",
"cst": "caption-side: top;",
"csb": "caption-side: bottom;",
"ec": "empty-cells: |;",
"ecs": "empty-cells: show;",
"ech": "empty-cells: hide;",
"list": "list-style: |;",
"lsn": "list-style: none;",
"lsp": "list-style-position: |;",
"lspi": "list-style-position: inside;",
"lspo": "list-style-position: outside;",
"lst": "list-style-type: |;",
"lstn": "list-style-type: none;",
"lstd": "list-style-type: disc;",
"lstc": "list-style-type: circle;",
"lsts": "list-style-type: square;",
"lstde": "list-style-type: decimal;",
"lst:dlz": "list-style-type: decimal-leading-zero;",
"lstlr": "list-style-type: lower-roman;",
"lstur": "list-style-type: upper-roman;",
"lsi": "list-style-image: |;",
"lsin": "list-style-image: none;",
"q": "quotes: |;",
"qn": "quotes: none;",
"qru": "quotes: '\\00AB' '\\00BB' '\\201E' '\\201C';",
"qen": "quotes: '\\201C' '\\201D' '\\2018' '\\2019';",
"coi": "counter-increment: |;",
"cor": "counter-reset: |;",
"va": "vertical-align: ${1:top};",
"vas": "vertical-align: super;",
"vat": "vertical-align: top;",
"vatt": "vertical-align: text-top;",
"vam": "vertical-align: middle;",
"vaba": "vertical-align: baseline;",
"vab": "vertical-align: bottom;",
"vatb": "vertical-align: text-bottom;",
"vasub": "vertical-align: sub;",
"tea": "text-align: ${1:left};",
"tal": "text-align: left;",
"tac": "text-align: center;",
"tar": "text-align: right;",
"taj": "text-align: justify;",
"talast": "text-align-last: |;",
"tala": "text-align-last: auto;",
"tall": "text-align-last: left;",
"talc": "text-align-last: center;",
"talr": "text-align-last: right;",
"td": "text-decoration: ${1:none};",
"tdn": "text-decoration: none;",
"tdu": "text-decoration: underline;",
"tdo": "text-decoration: overline;",
"tdlt": "text-decoration: line-through;",
"te": "text-emphasis: |;",
"ten": "text-emphasis: none;",
"teac": "text-emphasis: accent;",
"ted": "text-emphasis: dot;",
"tec": "text-emphasis: circle;",
"teds": "text-emphasis: disc;",
"teb": "text-emphasis: before;",
"teaf": "text-emphasis: after;",
"th": "text-height: |;",
"tha": "text-height: auto;",
"thfs": "text-height: font-size;",
"thts": "text-height: text-size;",
"thms": "text-height: max-size;",
"ti": "text-indent: |;",
"ti-": "text-indent: -9999px;",
"tj": "text-justify: |;",
"tja": "text-justify: auto;",
"tjiw": "text-justify: inter-word;",
"tjii": "text-justify: inter-ideograph;",
"tjic": "text-justify: inter-cluster;",
"tjd": "text-justify: distribute;",
"tjk": "text-justify: kashida;",
"tjt": "text-justify: tibetan;",
"to": "text-overflow: ${ellipsis};",
"toe": "text-overflow: ellipsis;",
"tocl": "text-overflow: clip;",
"tou": "text-outline: |;",
"tou+": "text-outline: ${1:0} ${2:0} ${3:#000};",
"toun": "text-outline: none;",
"tr": "text-replace: |;",
"trn": "text-replace: none;",
"tt": "text-transform: ${1:uppercase};",
"ttn": "text-transform: none;",
"ttc": "text-transform: capitalize;",
"ttu": "text-transform: uppercase;",
"ttl": "text-transform: lowercase;",
"tw": "text-wrap: |;",
"twn": "text-wrap: normal;",
"twno": "text-wrap: none;",
"twu": "text-wrap: unrestricted;",
"tws": "text-wrap: suppress;",
"ts": "text-shadow: ${1:hoff} ${2:voff} ${3:blur} ${4:#000};",
"tsr": "text-shadow: ${1:h} ${2:v} ${3:blur} rgb(${4:0}, ${5:0}, ${6:0});",
"tsra": "text-shadow: ${1:h} ${2:v} ${3:blur} rgba(${4:0}, ${5:0}, ${6:0}, .${7:5});",
"ts+": "text-shadow: ${1:0} ${2:0} ${3:0} ${4:#000};",
"tsn": "text-shadow: none;",
"tra": "transform: |;",
"traskx": "transform: skewX(${1:angle});",
"trasky": "transform: skewY(${1:angle});",
"trasc": "transform: scale(${1:x}, ${2:y});",
"trascx": "transform: scaleX(${1:x});",
"trascy": "transform: scaleY(${1:y});",
"trascz": "transform: scaleZ(${1:z});",
"trasc3": "transform: scale3d(${1:x}, ${2:y}, ${3:z});",
"trar": "transform: rotate(${1:angle});",
"trarx": "transform: rotateX(${1:angle});",
"trary": "transform: rotateY(${1:angle});",
"trarz": "transform: rotateZ(${1:angle});",
"trat": "transform: translate(${1:x}, ${2:y});",
"tratx": "transform: translateX(${1:x});",
"traty": "transform: translateY(${1:y});",
"tratz": "transform: translateZ(${1:z});",
"trat3": "transform: translate3d(${1:tx}, ${2:ty}, ${3:tz});",
"trao": "transform-origin: |;",
"tras": "transform-style: ${1:preserve-3d};",
"trans": "transition: ${1:prop} ${2:time};",
"transd": "transition-delay: ${1:time};",
"transdu": "transition-duration: ${1:time};",
"transp": "transition-property: ${1:prop};",
"transtf": "transition-timing-function: ${1:tfunc};",
"lh": "line-height: |;",
"ws": "white-space: |;",
"wsn": "white-space: normal;",
"wsp": "white-space: pre;",
"wsnw": "white-space: nowrap;",
"wspw": "white-space: pre-wrap;",
"wspl": "white-space: pre-line;",
"wsc": "white-space-collapse: |;",
"wscn": "white-space-collapse: normal;",
"wscka": "white-space-collapse: keep-all;",
"wscl": "white-space-collapse: loose;",
"wscbs": "white-space-collapse: break-strict;",
"wscba": "white-space-collapse: break-all;",
"wb": "word-break: |;",
"wbn": "word-break: normal;",
"wbka": "word-break: keep-all;",
"wbba": "word-break: break-all;",
"wos": "word-spacing: |;",
"ww": "word-wrap: |;",
"wwn": "word-wrap: normal;",
"wwno": "word-wrap: none;",
"wwu": "word-wrap: unrestricted;",
"wws": "word-wrap: suppress;",
"wwbw": "word-wrap: break-word;",
"wm": "writing-mode: ${1:lr-tb};",
"wmlrt": "writing-mode: lr-tb;",
"wmlrb": "writing-mode: lr-bt;",
"wmrlt": "writing-mode: rl-tb;",
"wmrlb": "writing-mode: rl-bt;",
"wmtbr": "writing-mode: tb-rl;",
"wmtbl": "writing-mode: tb-lr;",
"wmbtl": "writing-mode: bt-lr;",
"wmbtr": "writing-mode: bt-rl;",
"ls": "letter-spacing: |;",
"lesn": "letter-spacing: normal;",
"fo": "font: |;",
"f+": "font: ${1:1em} ${2:Arial,sans-serif};",
"fw": "font-weight: |;",
"fwn": "font-weight: normal;",
"fwb": "font-weight: bold;",
"fwbo": "font-weight: bolder;",
"fwl": "font-weight: lighter;",
"fst": "font-style: ${italic};",
"fsn": "font-style: normal;",
"fsi": "font-style: italic;",
"fso": "font-style: oblique;",
"fv": "font-variant: |;",
"fvn": "font-variant: normal;",
"fvsc": "font-variant: small-caps;",
"fs": "font-size: |;",
"fsa": "font-size-adjust: |;",
"fsan": "font-size-adjust: none;",
"ff": "font-family: |;",
"ffs": "font-family: serif;",
"ffss": "font-family: sans-serif;",
"ffc": "font-family: cursive;",
"fff": "font-family: fantasy;",
"ffm": "font-family: monospace;",
"ffa": "font-family: Arial, \"Helvetica Neue\", Helvetica, sans-serif;",
"fft": "font-family: \"Times New Roman\", Times, Baskerville, Georgia, serif;",
"ffv": "font-family: Verdana, Geneva, sans-serif;",
"foe": "font-effect: |;",
"foen": "font-effect: none;",
"foee": "font-effect: engrave;",
"foeeb": "font-effect: emboss;",
"foeo": "font-effect: outline;",
"fe": "font-emphasize: |;",
"fep": "font-emphasize-position: |;",
"fepb": "font-emphasize-position: before;",
"fepa": "font-emphasize-position: after;",
"fes": "font-emphasize-style: |;",
"fesn": "font-emphasize-style: none;",
"fesa": "font-emphasize-style: accent;",
"fesdo": "font-emphasize-style: dot;",
"fesc": "font-emphasize-style: circle;",
"fesd": "font-emphasize-style: disc;",
"fos": "font-smooth: |;",
"fosa": "font-smooth: auto;",
"fosn": "font-smooth: never;",
"fsal": "font-smooth: always;",
"fost": "font-stretch: |;",
"fosno": "font-stretch: normal;",
"fsuc": "font-stretch: ultra-condensed;",
"fsec": "font-stretch: extra-condensed;",
"fsc": "font-stretch: condensed;",
"fssc": "font-stretch: semi-condensed;",
"fsse": "font-stretch: semi-expanded;",
"fse": "font-stretch: expanded;",
"fsee": "font-stretch: extra-expanded;",
"fsue": "font-stretch: ultra-expanded;",
"op": "opacity: |;",
"op+": "opacity: $1;\nfilter: alpha(opacity=$2);",
"opie": "filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);",
"opms": "-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';",
"re": "resize: |;",
"ren": "resize: none;",
"reb": "resize: both;",
"reh": "resize: horizontal;",
"rev": "resize: vertical;",
"cu": "cursor: ${pointer};",
"cua": "cursor: auto;",
"cud": "cursor: default;",
"cuc": "cursor: crosshair;",
"cuha": "cursor: hand;",
"cuh": "cursor: help;",
"cum": "cursor: move;",
"cup": "cursor: pointer;",
"cut": "cursor: text;",
"pbb": "page-break-before: |;",
"pbba": "page-break-before: auto;",
"pbbal": "page-break-before: always;",
"pbbl": "page-break-before: left;",
"pbbr": "page-break-before: right;",
"pbi": "page-break-inside: |;",
"pbia": "page-break-inside: auto;",
"pbiav": "page-break-inside: avoid;",
"pba": "page-break-after: |;",
"pbaa": "page-break-after: auto;",
"pbaal": "page-break-after: always;",
"pbal": "page-break-after: left;",
"pbar": "page-break-after: right;",
"orp": "orphans: |;",
"us": "user-select: ${none};",
"wid": "widows: |;",
"fd": "flex-direction: |",
"fdr": "flex-direction: row;",
"fdrr": "flex-direction: row-reverse;",
"fdc": "flex-direction: column;",
"fdcr": "flex-direction: column-reverse;",
"fwr": "flex-wrap: |;",
"fwrn": "flex-wrap: nowrap;",
"fwrw": "flex-wrap: wrap;",
"fwrwr": "flex-wrap: wrap-reverse;",
"or": "order: |;",
"fg": "flex-grow: |;",
"fsh": "flex-shrink: |;",
"fb": "flex-basis: |;",
"f": "flex: |;",
"gtc": "grid-template-columns: |",
"gtr": "grid-template-rows: |;",
"gta": "grid-template-areas: |;",
"gt": "grid-template: |;",
"gcg": "grid-column-gap: |;",
"grg": "grid-row-gap: |;",
"gg": "grid-gap: |;",
"ji": "justify-items: |;",
"jis": "justify-items: start;",
"jie": "justify-items: end;",
"jic": "justify-items: center;",
"jist": "justify-items: stretch;",
"ai": "align-items: |;",
"ais": "align-items: start;",
"aifs": "align-items: flex-start;",
"aie": "align-items: end;",
"aife": "align-items: flex-end;",
"aic": "align-items: center;",
"aist": "align-items: stretch;",
"jc": "justify-content: |;",
"jcs": "justify-content: start;",
"jcfs": "justify-content: flex-start;",
"jce": "justify-content: end;",
"jcfe": "justify-content: flex-end;",
"jcc": "justify-content: center;",
"jcst": "justify-content: stretch;",
"jcsa": "justify-content: space-around;",
"jcsb": "justify-content: space-between;",
"jcse": "justify-content: space-evenly;",
"ac": "align-content: |;",
"acs": "align-content: start;",
"acfs": "align-content: flex-start;",
"ace": "align-content: end;",
"acfe": "align-content: flex-end;",
"acc": "align-content: center;",
"acst": "align-content: stretch;",
"acsp": "align-content: space-around;",
"acsb": "align-content: space-between;",
"acse": "align-content: space-evenly;",
"gac": "grid-auto-columns: |;",
"gar": "grid-auto-rows: |;",
"gaf": "grid-auto-flow: |;",
"gafr": "grid-auto-flow: row;",
"gafc": "grid-auto-flow: column;",
"gafd": "grid-auto-flow: dense;",
"g": "grid: |;",
"gcs": "grid-column-start: |;",
"gce": "grid-column-end: |;",
"grs": "grid-row-start: |;",
"gre": "grid-row-end: |;",
"gc": "grid-column: |;",
"gr": "grid-row: |;",
"ga": "grid-area: |;",
"js": "justify-self: |;",
"jss": "justify-self: start;",
"jse": "justify-self: end;",
"jsc": "justify-self: center;",
"jsst": "justify-self: stretch;",
"as": "align-self: |;",
"asa": "align-self: auto;",
"ass": "align-self: start;",
"asfs": "align-self: flex-start;",
"ase": "align-self: end;",
"asfe": "align-self: flex-end;",
"asc": "align-self: center;",
"asst": "align-self: stretch;",
"@toc": "/*------------------------------------*\\\n CONTENTS\n\\*------------------------------------*/\n\n/**\n * |\n *\n*/",
"@st": "/*------------------------------------*\\\n !|\n\\*------------------------------------*/",
"@comm": "/**\n * ^|\n*/"
}
}
}