summaryrefslogtreecommitdiff
path: root/snippets/sass.snippets
blob: 30bac6c7e2f1de042fdae7e347c18b0e1ad4a1b8 (plain)
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
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
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
1012
1013
1014
1015
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
1081
1082
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
snippet $
	$${1:variable}: ${0:value}
snippet imp
	@import '${0}'
snippet mix
	=${1:name}(${2})
		${0}
snippet inc
	+${1:mixin}(${2})
snippet ext
	@extend ${0}
snippet fun
	@function ${1:name}(${2:args})
		${0}
snippet if
	@if ${1:condition}
		${0:${VISUAL}}
snippet ife
	@if ${1:condition}
		${2:${VISUAL}}
	@else
		${0}
snippet eif
	@else if ${1:condition}
		${0:${VISUAL}}
snippet for
	@for ${1:$i} from ${2:1} through ${3:3}
		${0}
snippet each
	@each ${1:$item} in ${2:items}
		${0}
snippet while
	@while ${1:$i} ${2:>} ${3:0}
		${0:${VISUAL}}
snippet !
	 !important
snippet ac
	align-content: ${0}
snippet ac:s
	align-content: start
snippet ac:e
	align-content: end
snippet ac:c
	align-content: center
snippet ac:fs
	align-content: flex-start
snippet ac:fe
	align-content: flex-end
snippet ac:sb
	align-content: space-between
snippet ac:sa
	align-content: space-around
snippet ac:se
	align-content: space-evenly
snippet ac:st
	align-content: stretch
snippet ac:b
	align-content: baseline
snippet ac:fb
	align-content: first baseline
snippet ac:lb
	align-content: last baseline
snippet ai
	align-items: ${0}
snippet ai:s
	align-items: start
snippet ai:e
	align-items: end
snippet ai:c
	align-items: center
snippet ai:fs
	align-items: flex-start
snippet ai:fe
	align-items: flex-end
snippet ai:st
	align-items: stretch
snippet ai:b
	align-items: baseline
snippet ai:fb
	align-items: first baseline
snippet ai:lb
	align-items: last baseline
snippet as
	align-self: ${0}
snippet as:s
	align-self: start
snippet as:e
	align-self: end
snippet as:c
	align-self: center
snippet as:st
	align-self: stretch
snippet as:fs
	align-self: flex-start
snippet as:fe
	align-self: flex-end
snippet as:b
	align-self: baseline
snippet as:fb
	align-self: first baseline
snippet as:lb
	align-self: last baseline
snippet bdi:m+
	-moz-border-image: url('${1}') ${2:0} ${3:0} ${4:0} ${5:0} ${6:stretch} ${0:stretch}
snippet bdi:m
	-moz-border-image: ${0}
snippet bdrz:m
	-moz-border-radius: ${0}
snippet bxsh:m+
	-moz-box-shadow: ${1:0} ${2:0} ${3:0} #${0:000}
snippet bxsh:m
	-moz-box-shadow: ${0}
snippet bdi:w+
	-webkit-border-image: url('${1}') ${2:0} ${3:0} ${4:0} ${5:0} ${6:stretch} ${0:stretch}
snippet bdi:w
	-webkit-border-image: ${0}
snippet bdrz:w
	-webkit-border-radius: ${0}
snippet bxsh:w+
	-webkit-box-shadow: ${1:0} ${2:0} ${3:0} #${0:000}
snippet bxsh:w
	-webkit-box-shadow: ${0}
snippet @f
	@font-face
		font-family: ${1}
		src: url('${0}')
snippet @i
	@import url('${0}')
snippet @m
	@media ${1:print}
		${0}
snippet bg+
	background: #${1:fff} url('${2}') ${3:0} ${4:0} ${0:no-repeat}
snippet bga
	background-attachment: ${0}
snippet bga:f
	background-attachment: fixed
snippet bga:s
	background-attachment: scroll
snippet bgbk
	background-break: ${0}
snippet bgbk:bb
	background-break: bounding-box
snippet bgbk:c
	background-break: continuous
snippet bgbk:eb
	background-break: each-box
snippet bgcp
	background-clip: ${0}
snippet bgcp:bb
	background-clip: border-box
snippet bgcp:cb
	background-clip: content-box
snippet bgcp:nc
	background-clip: no-clip
snippet bgcp:pb
	background-clip: padding-box
snippet bgc
	background-color: #${0:fff}
snippet bgc:t
	background-color: transparent
snippet bgi
	background-image: url('${0}')
snippet bgi:n
	background-image: none
snippet bgo
	background-origin: ${0}
snippet bgo:bb
	background-origin: border-box
snippet bgo:cb
	background-origin: content-box
snippet bgo:pb
	background-origin: padding-box
snippet bgpx
	background-position-x: ${0}
snippet bgpy
	background-position-y: ${0}
snippet bgp
	background-position: ${1:0} ${0:0}
snippet bgr
	background-repeat: ${0}
snippet bgr:n
	background-repeat: no-repeat
snippet bgr:x
	background-repeat: repeat-x
snippet bgr:y
	background-repeat: repeat-y
snippet bgr:r
	background-repeat: repeat
snippet bgz
	background-size: ${0}
snippet bgz:a
	background-size: auto
snippet bgz:ct
	background-size: contain
snippet bgz:cv
	background-size: cover
snippet bg
	background: ${0}
snippet bg:ie
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='${1}',sizingMethod='${0:crop}')
snippet bg:n
	background: none
snippet bd+
	border: ${1:1px} ${2:solid} #${0:000}
snippet bdb+
	border-bottom: ${1:1px} ${2:solid} #${0:000}
snippet bdbc
	border-bottom-color: #${0:000}
snippet bdbi
	border-bottom-image: url('${0}')
snippet bdbi:n
	border-bottom-image: none
snippet bdbli
	border-bottom-left-image: url('${0}')
snippet bdbli:c
	border-bottom-left-image: continue
snippet bdbli:n
	border-bottom-left-image: none
snippet bdblrz
	border-bottom-left-radius: ${0}
snippet bdbri
	border-bottom-right-image: url('${0}')
snippet bdbri:c
	border-bottom-right-image: continue
snippet bdbri:n
	border-bottom-right-image: none
snippet bdbrrz
	border-bottom-right-radius: ${0}
snippet bdbs
	border-bottom-style: ${0}
snippet bdbs:n
	border-bottom-style: none
snippet bdbw
	border-bottom-width: ${0}
snippet bdb
	border-bottom: ${0}
snippet bdb:n
	border-bottom: none
snippet bdbk
	border-break: ${0}
snippet bdbk:c
	border-break: close
snippet bdcl
	border-collapse: ${0}
snippet bdcl:c
	border-collapse: collapse
snippet bdcl:s
	border-collapse: separate
snippet bdc
	border-color: #${0:000}
snippet bdci
	border-corner-image: url('${0}')
snippet bdci:c
	border-corner-image: continue
snippet bdci:n
	border-corner-image: none
snippet bdf
	border-fit: ${0}
snippet bdf:c
	border-fit: clip
snippet bdf:of
	border-fit: overwrite
snippet bdf:ow
	border-fit: overwrite
snippet bdf:r
	border-fit: repeat
snippet bdf:sc
	border-fit: scale
snippet bdf:sp
	border-fit: space
snippet bdf:st
	border-fit: stretch
snippet bdi
	border-image: url('${1}') ${2:0} ${3:0} ${4:0} ${5:0} ${6:stretch} ${0:stretch}
snippet bdi:n
	border-image: none
snippet bdl+
	border-left: ${1:1px} ${2:solid} #${0:000}
snippet bdlc
	border-left-color: #${0:000}
snippet bdli
	border-left-image: url('${0}')
snippet bdli:n
	border-left-image: none
snippet bdls
	border-left-style: ${0}
snippet bdls:n
	border-left-style: none
snippet bdlw
	border-left-width: ${0}
snippet bdl
	border-left: ${0}
snippet bdl:n
	border-left: none
snippet bdlt
	border-length: ${0}
snippet bdlt:a
	border-length: auto
snippet bdrz
	border-radius: ${0}
snippet bdr+
	border-right: ${1:1px} ${2:solid} #${0:000}
snippet bdrc
	border-right-color: #${0:000}
snippet bdri
	border-right-image: url('${0}')
snippet bdri:n
	border-right-image: none
snippet bdrs
	border-right-style: ${0}
snippet bdrs:n
	border-right-style: none
snippet bdrw
	border-right-width: ${0}
snippet bdr
	border-right: ${0}
snippet bdr:n
	border-right: none
snippet bdsp
	border-spacing: ${0}
snippet bds
	border-style: ${0}
snippet bds:ds
	border-style: dashed
snippet bds:dtds
	border-style: dot-dash
snippet bds:dtdtds
	border-style: dot-dot-dash
snippet bds:dt
	border-style: dotted
snippet bds:db
	border-style: double
snippet bds:g
	border-style: groove
snippet bds:h
	border-style: hidden
snippet bds:i
	border-style: inset
snippet bds:n
	border-style: none
snippet bds:o
	border-style: outset
snippet bds:r
	border-style: ridge
snippet bds:s
	border-style: solid
snippet bds:w
	border-style: wave
snippet bdt+
	border-top: ${1:1px} ${2:solid} #${0:000}
snippet bdtc
	border-top-color: #${0:000}
snippet bdti
	border-top-image: url('${0}')
snippet bdti:n
	border-top-image: none
snippet bdtli
	border-top-left-image: url('${0}')
snippet bdtli:c
	border-corner-image: continue
snippet bdtli:n
	border-corner-image: none
snippet bdtlrz
	border-top-left-radius: ${0}
snippet bdtri
	border-top-right-image: url('${0}')
snippet bdtri:c
	border-top-right-image: continue
snippet bdtri:n
	border-top-right-image: none
snippet bdtrrz
	border-top-right-radius: ${0}
snippet bdts
	border-top-style: ${0}
snippet bdts:n
	border-top-style: none
snippet bdtw
	border-top-width: ${0}
snippet bdt
	border-top: ${0}
snippet bdt:n
	border-top: none
snippet bdw
	border-width: ${0}
snippet bd
	border: ${0}
snippet bd:n
	border: none
snippet b
	bottom: ${0}
snippet b:a
	bottom: auto
snippet bxsh+
	box-shadow: ${1:0} ${2:0} ${3:0} #${0:000}
snippet bxsh
	box-shadow: ${0}
snippet bxsh:n
	box-shadow: none
snippet bxz
	box-sizing: ${0}
snippet bxz:bb
	box-sizing: border-box
snippet bxz:cb
	box-sizing: content-box
snippet cps
	caption-side: ${0}
snippet cps:b
	caption-side: bottom
snippet cps:t
	caption-side: top
snippet cl
	clear: ${0}
snippet cl:b
	clear: both
snippet cl:l
	clear: left
snippet cl:n
	clear: none
snippet cl:r
	clear: right
snippet cp
	clip: ${0}
snippet cp:a
	clip: auto
snippet cp:r
	clip: rect(${1:0} ${2:0} ${3:0} ${0:0})
snippet c
	color: #${0:000}
snippet ct
	content: ${0}
snippet ct:a
	content: attr(${0})
snippet ct:cq
	content: close-quote
snippet ct:c
	content: counter(${0})
snippet ct:cs
	content: counters(${0})
snippet ct:ncq
	content: no-close-quote
snippet ct:noq
	content: no-open-quote
snippet ct:n
	content: normal
snippet ct:oq
	content: open-quote
snippet coi
	counter-increment: ${0}
snippet cor
	counter-reset: ${0}
snippet cur
	cursor: ${0}
snippet cur:a
	cursor: auto
snippet cur:c
	cursor: crosshair
snippet cur:d
	cursor: default
snippet cur:ha
	cursor: hand
snippet cur:he
	cursor: help
snippet cur:m
	cursor: move
snippet cur:p
	cursor: pointer
snippet cur:t
	cursor: text
snippet d
	display: ${0}
snippet d:mib
	display: -moz-inline-box
snippet d:mis
	display: -moz-inline-stack
snippet d:b
	display: block
snippet d:cp
	display: compact
snippet d:g
	display: grid
snippet d:f
	display: flex
snippet d:ib
	display: inline-block
snippet d:itb
	display: inline-table
snippet d:i
	display: inline
snippet d:li
	display: list-item
snippet d:n
	display: none
snippet d:ri
	display: run-in
snippet d:tbcp
	display: table-caption
snippet d:tbc
	display: table-cell
snippet d:tbclg
	display: table-column-group
snippet d:tbcl
	display: table-column
snippet d:tbfg
	display: table-footer-group
snippet d:tbhg
	display: table-header-group
snippet d:tbrg
	display: table-row-group
snippet d:tbr
	display: table-row
snippet d:tb
	display: table
snippet ec
	empty-cells: ${0}
snippet ec:h
	empty-cells: hide
snippet ec:s
	empty-cells: show
snippet exp
	expression()
snippet fl
	float: ${0}
snippet fl:l
	float: left
snippet fl:n
	float: none
snippet fl:r
	float: right
snippet f+
	font: ${1:1em} ${2:Arial},${0:sans-serif}
snippet fef
	font-effect: ${0}
snippet fef:eb
	font-effect: emboss
snippet fef:eg
	font-effect: engrave
snippet fef:n
	font-effect: none
snippet fef:o
	font-effect: outline
snippet femp
	font-emphasize-position: ${0}
snippet femp:a
	font-emphasize-position: after
snippet femp:b
	font-emphasize-position: before
snippet fems
	font-emphasize-style: ${0}
snippet fems:ac
	font-emphasize-style: accent
snippet fems:c
	font-emphasize-style: circle
snippet fems:ds
	font-emphasize-style: disc
snippet fems:dt
	font-emphasize-style: dot
snippet fems:n
	font-emphasize-style: none
snippet fem
	font-emphasize: ${0}
snippet ff
	font-family: ${0}
snippet ff:c
	font-family: ${0:'Monotype Corsiva','Comic Sans MS'},cursive
snippet ff:f
	font-family: ${0:Capitals,Impact},fantasy
snippet ff:m
	font-family: ${0:Monaco,'Courier New'},monospace
snippet ff:ss
	font-family: ${0:Helvetica,Arial},sans-serif
snippet ff:s
	font-family: ${0:Georgia,'Times New Roman'},serif
snippet fza
	font-size-adjust: ${0}
snippet fza:n
	font-size-adjust: none
snippet fz
	font-size: ${0}
snippet fsm
	font-smooth: ${0}
snippet fsm:aw
	font-smooth: always
snippet fsm:a
	font-smooth: auto
snippet fsm:n
	font-smooth: never
snippet fst
	font-stretch: ${0}
snippet fst:c
	font-stretch: condensed
snippet fst:e
	font-stretch: expanded
snippet fst:ec
	font-stretch: extra-condensed
snippet fst:ee
	font-stretch: extra-expanded
snippet fst:n
	font-stretch: normal
snippet fst:sc
	font-stretch: semi-condensed
snippet fst:se
	font-stretch: semi-expanded
snippet fst:uc
	font-stretch: ultra-condensed
snippet fst:ue
	font-stretch: ultra-expanded
snippet fs
	font-style: ${0}
snippet fs:i
	font-style: italic
snippet fs:n
	font-style: normal
snippet fs:o
	font-style: oblique
snippet fv
	font-variant: ${0}
snippet fv:n
	font-variant: normal
snippet fv:sc
	font-variant: small-caps
snippet fw
	font-weight: ${0}
snippet fw:b
	font-weight: bold
snippet fw:br
	font-weight: bolder
snippet fw:lr
	font-weight: lighter
snippet fw:n
	font-weight: normal
snippet f
	font: ${0}
snippet g
	grid: ${0}
snippet gaf
	grid-auto-flow: ${0}
snippet gaf+
	grid-auto-flow: ${1:row} ${0:dense}
snippet gaf:r
	grid-auto-flow: row
snippet gaf:c
	grid-auto-flow: column
snippet gaf:d
	grid-auto-flow: dense
snippet gaf:rd
	grid-auto-flow: row dense
snippet gaf:cd
	grid-auto-flow: column dense
snippet gar
	grid-auto-rows: ${0}
snippet gar:a
	grid-auto-rows: auto
snippet gar:mac
	grid-auto-rows: max-content
snippet gar:mic
	grid-auto-rows: min-content
snippet gac
	grid-auto-columns: ${0}
snippet gac:a
	grid-auto-columns: auto
snippet gac:mac
	grid-auto-columns: max-content
snippet gac:mic
	grid-auto-columns: min-content
snippet gt
	grid-template: ${0}
snippet gt+
	grid-template: ${1} / ${0}
snippet gtr
	grid-template-rows: ${0}
snippet gtc
	grid-template-columns: ${0}
snippet gta
	grid-template-areas: ${0}
snippet gg
	grid-gap: ${0}
snippet gg+
	grid-gap: ${1} ${0}
snippet gg:0
	grid-gap: 0
snippet grg
	grid-row-gap: ${0}
snippet grg:0
	grid-row-gap: 0
snippet gcg
	grid-column-gap: ${0}
snippet gcg:0
	grid-column-gap: 0
snippet gr
	grid-row: ${1} / ${0}
snippet grs
	grid-row-start: ${0}
snippet gre
	grid-row-end: ${0}
snippet gc
	grid-column: ${1} / ${0}
snippet gcs
	grid-column-start: ${0}
snippet gce
	grid-column-end: ${0}
snippet h
	height: ${0}
snippet h:a
	height: auto
snippet jc
	justify-content: ${0}
snippet jc:s
	justify-content: start
snippet jc:e
	justify-content: end
snippet jc:c
	justify-content: center
snippet jc:fs
	justify-content: flex-start
snippet jc:fe
	justify-content: flex-end
snippet jc:sb
	justify-content: space-between
snippet jc:sa
	justify-content: space-around
snippet jc:se
	justify-content: space-evenly
snippet jc:st
	justify-content: stretch
snippet jc:l
	justify-content: left
snippet jc:r
	justify-content: right
snippet ji
	justify-items: ${0}
snippet ji:s
	justify-items: start
snippet ji:e
	justify-items: end
snippet ji:c
	justify-items: center
snippet ji:st
	justify-items: stretch
snippet js
	justify-self: ${0}
snippet js:s
	justify-self: start
snippet js:e
	justify-self: end
snippet js:c
	justify-self: center
snippet js:st
	justify-self: stretch
snippet l
	left: ${0}
snippet l:a
	left: auto
snippet lts
	letter-spacing: ${0}
snippet lh
	line-height: ${0}
snippet lisi
	list-style-image: url('${0}')
snippet lisi:n
	list-style-image: none
snippet lisp
	list-style-position: ${0}
snippet lisp:i
	list-style-position: inside
snippet lisp:o
	list-style-position: outside
snippet list
	list-style-type: ${0}
snippet list:c
	list-style-type: circle
snippet list:dclz
	list-style-type: decimal-leading-zero
snippet list:dc
	list-style-type: decimal
snippet list:d
	list-style-type: disc
snippet list:lr
	list-style-type: lower-roman
snippet list:n
	list-style-type: none
snippet list:s
	list-style-type: square
snippet list:ur
	list-style-type: upper-roman
snippet lis
	list-style: ${0}
snippet lis:n
	list-style: none
snippet mb
	margin-bottom: ${0}
snippet mb:a
	margin-bottom: auto
snippet ml
	margin-left: ${0}
snippet ml:a
	margin-left: auto
snippet mr
	margin-right: ${0}
snippet mr:a
	margin-right: auto
snippet mt
	margin-top: ${0}
snippet mt:a
	margin-top: auto
snippet m
	margin: ${0}
snippet m:4
	margin: ${1:0} ${2:0} ${3:0} ${0:0}
snippet m:3
	margin: ${1:0} ${2:0} ${0:0}
snippet m:2
	margin: ${1:0} ${0:0}
snippet m:0
	margin: 0
snippet m:a
	margin: auto
snippet mah
	max-height: ${0}
snippet mah:n
	max-height: none
snippet maw
	max-width: ${0}
snippet maw:n
	max-width: none
snippet mih
	min-height: ${0}
snippet miw
	min-width: ${0}
snippet op
	opacity: ${0}
snippet op:ie
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=${0:100})
snippet op:ms
	-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=${0:100})'
snippet orp
	orphans: ${0}
snippet o+
	outline: ${1:1px} ${2:solid} #${0:000}
snippet oc
	outline-color: ${0:#000}
snippet oc:i
	outline-color: invert
snippet oo
	outline-offset: ${0}
snippet os
	outline-style: ${0}
snippet ow
	outline-width: ${0}
snippet o
	outline: ${0}
snippet o:n
	outline: none
snippet ovs
	overflow-style: ${0}
snippet ovs:a
	overflow-style: auto
snippet ovs:mq
	overflow-style: marquee
snippet ovs:mv
	overflow-style: move
snippet ovs:p
	overflow-style: panner
snippet ovs:s
	overflow-style: scrollbar
snippet ovx
	overflow-x: ${0}
snippet ovx:a
	overflow-x: auto
snippet ovx:h
	overflow-x: hidden
snippet ovx:s
	overflow-x: scroll
snippet ovx:v
	overflow-x: visible
snippet ovy
	overflow-y: ${0}
snippet ovy:a
	overflow-y: auto
snippet ovy:h
	overflow-y: hidden
snippet ovy:s
	overflow-y: scroll
snippet ovy:v
	overflow-y: visible
snippet ov
	overflow: ${0}
snippet ov:a
	overflow: auto
snippet ov:h
	overflow: hidden
snippet ov:s
	overflow: scroll
snippet ov:v
	overflow: visible
snippet pb
	padding-bottom: ${0}
snippet pl
	padding-left: ${0}
snippet pr
	padding-right: ${0}
snippet pt
	padding-top: ${0}
snippet p
	padding: ${0}
snippet p:4
	padding: ${1:0} ${2:0} ${3:0} ${0:0}
snippet p:3
	padding: ${1:0} ${2:0} ${0:0}
snippet p:2
	padding: ${1:0} ${0:0}
snippet p:0
	padding: 0
snippet pc
	place-content: ${0}
snippet pc+
	place-content: ${1} ${0}
snippet pc:s
	place-content: start
snippet pc:e
	place-content: end
snippet pc:c
	place-content: center
snippet pc:fs
	place-content: flex-start
snippet pc:fe
	place-content: flex-end
snippet pc:sb
	place-content: space-between
snippet pc:sa
	place-content: space-around
snippet pc:se
	place-content: space-evenly
snippet pc:st
	place-content: stretch
snippet pgba
	page-break-after: ${0}
snippet pgba:aw
	page-break-after: always
snippet pgba:a
	page-break-after: auto
snippet pgba:l
	page-break-after: left
snippet pgba:r
	page-break-after: right
snippet pgbb
	page-break-before: ${0}
snippet pgbb:aw
	page-break-before: always
snippet pgbb:a
	page-break-before: auto
snippet pgbb:l
	page-break-before: left
snippet pgbb:r
	page-break-before: right
snippet pgbi
	page-break-inside: ${0}
snippet pgbi:a
	page-break-inside: auto
snippet pgbi:av
	page-break-inside: avoid
snippet pi
	place-items: ${0}
snippet pi+
	place-items: ${1:stretch} ${0:stretch}
snippet pi:s
	place-items: start
snippet pi:e
	place-items: end
snippet pi:c
	place-items: center
snippet pi:st
	place-items: stretch
snippet pos
	position: ${0}
snippet pos:a
	position: absolute
snippet pos:f
	position: fixed
snippet pos:r
	position: relative
snippet pos:s
	position: static
snippet ps
	place-self: ${0}
snippet ps+
	place-self: ${1:stretch} ${0:stretch}
snippet ps:s
	place-self: start
snippet ps:e
	place-self: end
snippet ps:c
	place-self: center
snippet ps:st
	place-self: stretch
snippet q
	quotes: ${0}
snippet q:en
	quotes: '\201C' '\201D' '\2018' '\2019'
snippet q:n
	quotes: none
snippet q:ru
	quotes: '\00AB' '\00BB' '\201E' '\201C'
snippet rz
	resize: ${0}
snippet rz:b
	resize: both
snippet rz:h
	resize: horizontal
snippet rz:n
	resize: none
snippet rz:v
	resize: vertical
snippet r
	right: ${0}
snippet r:a
	right: auto
snippet tbl
	table-layout: ${0}
snippet tbl:a
	table-layout: auto
snippet tbl:f
	table-layout: fixed
snippet tal
	text-align-last: ${0}
snippet tal:a
	text-align-last: auto
snippet tal:c
	text-align-last: center
snippet tal:l
	text-align-last: left
snippet tal:r
	text-align-last: right
snippet ta
	text-align: ${0}
snippet ta:c
	text-align: center
snippet ta:l
	text-align: left
snippet ta:r
	text-align: right
snippet td
	text-decoration: ${0}
snippet td:l
	text-decoration: line-through
snippet td:n
	text-decoration: none
snippet td:o
	text-decoration: overline
snippet td:u
	text-decoration: underline
snippet te
	text-emphasis: ${0}
snippet te:ac
	text-emphasis: accent
snippet te:a
	text-emphasis: after
snippet te:b
	text-emphasis: before
snippet te:c
	text-emphasis: circle
snippet te:ds
	text-emphasis: disc
snippet te:dt
	text-emphasis: dot
snippet te:n
	text-emphasis: none
snippet th
	text-height: ${0}
snippet th:a
	text-height: auto
snippet th:f
	text-height: font-size
snippet th:m
	text-height: max-size
snippet th:t
	text-height: text-size
snippet ti
	text-indent: ${0}
snippet ti:-
	text-indent: -9999px
snippet tj
	text-justify: ${0}
snippet tj:a
	text-justify: auto
snippet tj:d
	text-justify: distribute
snippet tj:ic
	text-justify: inter-cluster
snippet tj:ii
	text-justify: inter-ideograph
snippet tj:iw
	text-justify: inter-word
snippet tj:k
	text-justify: kashida
snippet tj:t
	text-justify: tibetan
snippet to+
	text-outline: ${1:0} ${2:0} #${0:000}
snippet to
	text-outline: ${0}
snippet to:n
	text-outline: none
snippet tr
	text-replace: ${0}
snippet tr:n
	text-replace: none
snippet tsh+
	text-shadow: ${1:0} ${2:0} ${3:0} #${0:000}
snippet tsh
	text-shadow: ${0}
snippet tsh:n
	text-shadow: none
snippet tt
	text-transform: ${0}
snippet tt:c
	text-transform: capitalize
snippet tt:l
	text-transform: lowercase
snippet tt:n
	text-transform: none
snippet tt:u
	text-transform: uppercase
snippet tw
	text-wrap: ${0}
snippet tw:no
	text-wrap: none
snippet tw:n
	text-wrap: normal
snippet tw:s
	text-wrap: suppress
snippet tw:u
	text-wrap: unrestricted
snippet t
	top: ${0}
snippet t:a
	top: auto
snippet va
	vertical-align: ${0}
snippet va:bl
	vertical-align: baseline
snippet va:b
	vertical-align: bottom
snippet va:m
	vertical-align: middle
snippet va:sub
	vertical-align: sub
snippet va:sup
	vertical-align: super
snippet va:tb
	vertical-align: text-bottom
snippet va:tt
	vertical-align: text-top
snippet va:t
	vertical-align: top
snippet v
	visibility: ${0}
snippet v:c
	visibility: collapse
snippet v:h
	visibility: hidden
snippet v:v
	visibility: visible
snippet whsc
	white-space-collapse: ${0}
snippet whsc:ba
	white-space-collapse: break-all
snippet whsc:bs
	white-space-collapse: break-strict
snippet whsc:k
	white-space-collapse: keep-all
snippet whsc:l
	white-space-collapse: loose
snippet whsc:n
	white-space-collapse: normal
snippet whs
	white-space: ${0}
snippet whs:n
	white-space: normal
snippet whs:nw
	white-space: nowrap
snippet whs:pl
	white-space: pre-line
snippet whs:pw
	white-space: pre-wrap
snippet whs:p
	white-space: pre
snippet wid
	widows: ${0}
snippet w
	width: ${0}
snippet w:a
	width: auto
snippet wob
	word-break: ${0}
snippet wob:ba
	word-break: break-all
snippet wob:bs
	word-break: break-strict
snippet wob:k
	word-break: keep-all
snippet wob:l
	word-break: loose
snippet wob:n
	word-break: normal
snippet wos
	word-spacing: ${0}
snippet wow
	word-wrap: ${0}
snippet wow:no
	word-wrap: none
snippet wow:n
	word-wrap: normal
snippet wow:s
	word-wrap: suppress
snippet wow:u
	word-wrap: unrestricted
snippet z
	z-index: ${0}
snippet z:a
	z-index: auto
snippet zoo
	zoom: 1
snippet :h
	:hover
snippet :fc
	:first-child
snippet :lc
	:last-child
snippet :nc
	:nth-child(${0})
snippet :nlc
	:nth-last-child(${0})
snippet :oc
	:only-child
snippet :a
	:after
snippet :b
	:before
snippet ::a
	::after
snippet ::b
	::before