mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-snippets/snippets/css.snippets

1248 lines
24 KiB
Plaintext
Raw Normal View History

2017-02-11 08:01:38 -05:00
snippet . "selector { }"
2012-08-16 23:41:25 -04:00
${1} {
2019-03-08 06:04:56 -05:00
${2:${VISUAL}}
}${0}
2017-02-11 08:01:38 -05:00
snippet ! "!important"
2012-08-16 23:41:25 -04:00
!important
snippet bdi:m+
2019-03-08 06:04:56 -05:00
-moz-border-image: url(${1}) ${2:0} ${3:0} ${4:0} ${5:0} ${6:stretch} ${7:stretch};${0}
2012-08-16 23:41:25 -04:00
snippet bdi:m
2019-03-08 06:04:56 -05:00
-moz-border-image: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdrz:m
2019-03-08 06:04:56 -05:00
-moz-border-radius: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bxsh:m+
2019-03-08 06:04:56 -05:00
-moz-box-shadow: ${1:0} ${2:0} ${3:0} #${4:000};${0}
2012-08-16 23:41:25 -04:00
snippet bxsh:m
2019-03-08 06:04:56 -05:00
-moz-box-shadow: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdi:w+
2019-03-08 06:04:56 -05:00
-webkit-border-image: url(${1}) ${2:0} ${3:0} ${4:0} ${5:0} ${6:stretch} ${7:stretch};${0}
2012-08-16 23:41:25 -04:00
snippet bdi:w
2019-03-08 06:04:56 -05:00
-webkit-border-image: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdrz:w
2019-03-08 06:04:56 -05:00
-webkit-border-radius: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bxsh:w+
2019-03-08 06:04:56 -05:00
-webkit-box-shadow: ${1:0} ${2:0} ${3:0} #${4:000};${0}
2012-08-16 23:41:25 -04:00
snippet bxsh:w
2019-03-08 06:04:56 -05:00
-webkit-box-shadow: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet @f
@font-face {
font-family: ${1};
2019-03-08 06:04:56 -05:00
src: url(${2});
}${0}
2012-08-16 23:41:25 -04:00
snippet @i
2019-03-08 06:04:56 -05:00
@import url(${1});${0}
2017-02-11 08:01:38 -05:00
snippet @m "@media mediatype { }"
2012-08-16 23:41:25 -04:00
@media ${1:print} {
2019-03-08 06:04:56 -05:00
${2:${VISUAL}}
}${0}
snippet ac
2019-08-22 11:36:17 -04:00
align-content: ${1:stretch};
snippet ac:s
align-content: start;
snippet ac:e
align-content: end;
2019-03-08 06:04:56 -05:00
snippet ac:c
align-content: center;
snippet ac:fs
align-content: flex-start;
2019-08-22 11:36:17 -04:00
snippet ac:fe
align-content: flex-end;
2019-03-08 06:04:56 -05:00
snippet ac:sb
align-content: space-between;
2019-08-22 11:36:17 -04:00
snippet ac:sa
align-content: space-around;
snippet ac:se
align-content: space-evenly;
snippet ac:st
2019-03-08 06:04:56 -05:00
align-content: stretch;
2019-08-22 11:36:17 -04:00
snippet ac:b
align-content: baseline;
snippet ac:fb
align-content: first baseline;
snippet ac:lb
align-content: last baseline;
2019-03-08 06:04:56 -05:00
snippet ai
2019-08-22 11:36:17 -04:00
align-items: ${1:stretch};
snippet ai:s
align-items: start;
snippet ai:e
align-items: end;
2019-03-08 06:04:56 -05:00
snippet ai:c
align-items: center;
snippet ai:fs
align-items: flex-start;
2019-08-22 11:36:17 -04:00
snippet ai:fe
align-items: flex-end;
snippet ai:st
2019-03-08 06:04:56 -05:00
align-items: stretch;
2019-08-22 11:36:17 -04:00
snippet ai:b
align-items: baseline;
snippet ai:fb
align-items: first baseline;
snippet ai:lb
align-items: last baseline;
2019-03-08 06:04:56 -05:00
snippet as
2019-08-22 11:36:17 -04:00
align-self: ${1:stretch};
snippet as:s
align-self: start;
snippet as:e
align-self: end;
2019-03-08 06:04:56 -05:00
snippet as:c
align-self: center;
2019-08-22 11:36:17 -04:00
snippet as:st
align-self: stretch;
2019-03-08 06:04:56 -05:00
snippet as:fs
align-self: flex-start;
2019-08-22 11:36:17 -04:00
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;
2012-08-16 23:41:25 -04:00
snippet bg+
2019-03-08 06:04:56 -05:00
background: #${1:fff} url(${2}) ${3:0} ${4:0} ${5:no-repeat};${0}
2012-08-16 23:41:25 -04:00
snippet bga
2019-03-08 06:04:56 -05:00
background-attachment: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bga:f
background-attachment: fixed;
snippet bga:s
background-attachment: scroll;
snippet bgbk
2019-03-08 06:04:56 -05:00
background-break: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bgbk:bb
background-break: bounding-box;
snippet bgbk:c
background-break: continuous;
snippet bgbk:eb
background-break: each-box;
snippet bgcp
2019-03-08 06:04:56 -05:00
background-clip: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
background-color: #${1:fff};${0}
2012-08-16 23:41:25 -04:00
snippet bgc:t
background-color: transparent;
snippet bgi
2019-03-08 06:04:56 -05:00
background-image: url(${1});${0}
2012-08-16 23:41:25 -04:00
snippet bgi:n
background-image: none;
snippet bgo
2019-03-08 06:04:56 -05:00
background-origin: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bgo:bb
background-origin: border-box;
snippet bgo:cb
background-origin: content-box;
snippet bgo:pb
background-origin: padding-box;
snippet bgpx
2019-03-08 06:04:56 -05:00
background-position-x: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bgpy
2019-03-08 06:04:56 -05:00
background-position-y: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bgp
2019-03-08 06:04:56 -05:00
background-position: ${1:0} ${2:0};${0}
2012-08-16 23:41:25 -04:00
snippet bgr
2019-03-08 06:04:56 -05:00
background-repeat: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
background-size: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bgz:a
background-size: auto;
snippet bgz:ct
background-size: contain;
snippet bgz:cv
background-size: cover;
snippet bg
2019-03-08 06:04:56 -05:00
background: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bg:ie
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='${1}',sizingMethod='${0:crop}');
2012-08-16 23:41:25 -04:00
snippet bg:n
background: none;
snippet bd+
2019-03-08 06:04:56 -05:00
border: ${1:1px} ${2:solid} #${3:000};${0}
2012-08-16 23:41:25 -04:00
snippet bdb+
2019-03-08 06:04:56 -05:00
border-bottom: ${1:1px} ${2:solid} #${3:000};${0}
2012-08-16 23:41:25 -04:00
snippet bdbc
2019-03-08 06:04:56 -05:00
border-bottom-color: #${1:000};${0}
2012-08-16 23:41:25 -04:00
snippet bdbi
2019-03-08 06:04:56 -05:00
border-bottom-image: url(${1});${0}
2012-08-16 23:41:25 -04:00
snippet bdbi:n
border-bottom-image: none;
snippet bdbli
2019-03-08 06:04:56 -05:00
border-bottom-left-image: url(${1});${0}
2012-08-16 23:41:25 -04:00
snippet bdbli:c
border-bottom-left-image: continue;
snippet bdbli:n
border-bottom-left-image: none;
snippet bdblrz
2019-03-08 06:04:56 -05:00
border-bottom-left-radius: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdbri
2019-03-08 06:04:56 -05:00
border-bottom-right-image: url(${1});${0}
2012-08-16 23:41:25 -04:00
snippet bdbri:c
border-bottom-right-image: continue;
snippet bdbri:n
border-bottom-right-image: none;
snippet bdbrrz
2019-03-08 06:04:56 -05:00
border-bottom-right-radius: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdbs
2019-03-08 06:04:56 -05:00
border-bottom-style: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdbs:n
border-bottom-style: none;
snippet bdbw
2019-03-08 06:04:56 -05:00
border-bottom-width: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdb
2019-03-08 06:04:56 -05:00
border-bottom: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdb:n
border-bottom: none;
snippet bdbk
2019-03-08 06:04:56 -05:00
border-break: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdbk:c
border-break: close;
snippet bdcl
2019-03-08 06:04:56 -05:00
border-collapse: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdcl:c
border-collapse: collapse;
snippet bdcl:s
border-collapse: separate;
snippet bdc
2019-03-08 06:04:56 -05:00
border-color: #${1:000};${0}
2012-08-16 23:41:25 -04:00
snippet bdci
2019-03-08 06:04:56 -05:00
border-corner-image: url(${1});${0}
2012-08-16 23:41:25 -04:00
snippet bdci:c
border-corner-image: continue;
snippet bdci:n
border-corner-image: none;
snippet bdf
2019-03-08 06:04:56 -05:00
border-fit: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
border-image: url(${1}) ${2:0} ${3:0} ${4:0} ${5:0} ${6:stretch} ${7:stretch};${0}
2012-08-16 23:41:25 -04:00
snippet bdi:n
border-image: none;
snippet bdl+
2019-03-08 06:04:56 -05:00
border-left: ${1:1px} ${2:solid} #${3:000};${0}
2012-08-16 23:41:25 -04:00
snippet bdlc
2019-03-08 06:04:56 -05:00
border-left-color: #${1:000};${0}
2012-08-16 23:41:25 -04:00
snippet bdli
2019-03-08 06:04:56 -05:00
border-left-image: url(${1});${0}
2012-08-16 23:41:25 -04:00
snippet bdli:n
border-left-image: none;
snippet bdls
2019-03-08 06:04:56 -05:00
border-left-style: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdls:n
border-left-style: none;
snippet bdlw
2019-03-08 06:04:56 -05:00
border-left-width: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdl
2019-03-08 06:04:56 -05:00
border-left: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdl:n
border-left: none;
snippet bdlt
2019-03-08 06:04:56 -05:00
border-length: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdlt:a
border-length: auto;
snippet bdrz
2019-03-08 06:04:56 -05:00
border-radius: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdr+
2019-03-08 06:04:56 -05:00
border-right: ${1:1px} ${2:solid} #${3:000};${0}
2012-08-16 23:41:25 -04:00
snippet bdrc
2019-03-08 06:04:56 -05:00
border-right-color: #${1:000};${0}
2012-08-16 23:41:25 -04:00
snippet bdri
2019-03-08 06:04:56 -05:00
border-right-image: url(${1});${0}
2012-08-16 23:41:25 -04:00
snippet bdri:n
border-right-image: none;
snippet bdrs
2019-03-08 06:04:56 -05:00
border-right-style: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdrs:n
border-right-style: none;
snippet bdrw
2019-03-08 06:04:56 -05:00
border-right-width: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdr
2019-03-08 06:04:56 -05:00
border-right: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdr:n
border-right: none;
snippet bdsp
2019-03-08 06:04:56 -05:00
border-spacing: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bds
2019-03-08 06:04:56 -05:00
border-style: ${1};${0}
2012-08-16 23:41:25 -04:00
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+
2019-03-08 06:04:56 -05:00
border-top: ${1:1px} ${2:solid} #${3:000};${0}
2012-08-16 23:41:25 -04:00
snippet bdtc
2019-03-08 06:04:56 -05:00
border-top-color: #${1:000};${0}
2012-08-16 23:41:25 -04:00
snippet bdti
2019-03-08 06:04:56 -05:00
border-top-image: url(${1});${0}
2012-08-16 23:41:25 -04:00
snippet bdti:n
border-top-image: none;
snippet bdtli
2019-03-08 06:04:56 -05:00
border-top-left-image: url(${1});${0}
2012-08-16 23:41:25 -04:00
snippet bdtli:c
border-corner-image: continue;
snippet bdtli:n
border-corner-image: none;
snippet bdtlrz
2019-03-08 06:04:56 -05:00
border-top-left-radius: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdtri
2019-03-08 06:04:56 -05:00
border-top-right-image: url(${1});${0}
2012-08-16 23:41:25 -04:00
snippet bdtri:c
border-top-right-image: continue;
snippet bdtri:n
border-top-right-image: none;
snippet bdtrrz
2019-03-08 06:04:56 -05:00
border-top-right-radius: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdts
2019-03-08 06:04:56 -05:00
border-top-style: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdts:n
border-top-style: none;
snippet bdtw
2019-03-08 06:04:56 -05:00
border-top-width: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdt
2019-03-08 06:04:56 -05:00
border-top: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bdt:n
border-top: none;
snippet bdw
2019-03-08 06:04:56 -05:00
border-width: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bd
2019-03-08 06:04:56 -05:00
border: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bd:n
border: none;
snippet b
2019-03-08 06:04:56 -05:00
bottom: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet b:a
bottom: auto;
snippet bxsh+
2019-03-08 06:04:56 -05:00
box-shadow: ${1:0} ${2:0} ${3:0} #${4:000};${0}
2012-08-16 23:41:25 -04:00
snippet bxsh
2019-03-08 06:04:56 -05:00
box-shadow: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bxsh:n
box-shadow: none;
snippet bxz
2019-03-08 06:04:56 -05:00
box-sizing: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet bxz:bb
box-sizing: border-box;
snippet bxz:cb
box-sizing: content-box;
snippet cps
2019-03-08 06:04:56 -05:00
caption-side: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet cps:b
caption-side: bottom;
snippet cps:t
caption-side: top;
snippet cl
2019-03-08 06:04:56 -05:00
clear: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet cl:b
clear: both;
snippet cl:l
clear: left;
snippet cl:n
clear: none;
snippet cl:r
clear: right;
snippet cp
2019-03-08 06:04:56 -05:00
clip: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet cp:a
clip: auto;
snippet cp:r
2019-03-08 06:04:56 -05:00
clip: rect(${1:0} ${2:0} ${3:0} ${4:0});${0}
2012-08-16 23:41:25 -04:00
snippet c
2019-03-08 06:04:56 -05:00
color: #${1:000};${0}
2012-08-16 23:41:25 -04:00
snippet ct
2019-03-08 06:04:56 -05:00
content: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet ct:a
2019-03-08 06:04:56 -05:00
content: attr(${1});${0}
2012-08-16 23:41:25 -04:00
snippet ct:cq
content: close-quote;
snippet ct:c
2019-03-08 06:04:56 -05:00
content: counter(${1});${0}
2012-08-16 23:41:25 -04:00
snippet ct:cs
2019-03-08 06:04:56 -05:00
content: counters(${1});${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
counter-increment: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet cor
2019-03-08 06:04:56 -05:00
counter-reset: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet cur
2019-03-08 06:04:56 -05:00
cursor: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
display: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet d:mib
display: -moz-inline-box;
snippet d:mis
display: -moz-inline-stack;
snippet d:b
display: block;
snippet d:cp
display: compact;
2019-08-22 11:36:17 -04:00
snippet d:g
display: grid;
2019-03-08 06:04:56 -05:00
snippet d:f
display: flex;
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
empty-cells: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet ec:h
empty-cells: hide;
snippet ec:s
empty-cells: show;
snippet exp
expression()
2019-03-08 06:04:56 -05:00
snippet fx
flex: ${1:0} ${2:1} ${0:auto};
snippet fxb
flex-basis: ${0:auto};
snippet fxb:a
flex-basis: auto;
snippet fxd
flex-direction: ${0:row};
snippet fxd:c
flex-direction: column;
snippet fxd:cr
flex-direction: column-reverse;
snippet fxd:r
flex-direction: row;
snippet fxd:rr
flex-direction: row-reverse;
snippet fxf
flex-flow: ${1:row} ${0:nowrap};
snippet fxg
flex-grow: ${0:0};
snippet fxs
flex-shrink: ${0:1};
snippet fxw
flex-wrap: ${0:nowrap};
snippet fxw:n
flex-wrap: nowrap;
snippet fxw:w
flex-wrap: wrap;
snippet fxw:wr
flex-wrap: wrap-reverse;
2012-08-16 23:41:25 -04:00
snippet fl
2019-03-08 06:04:56 -05:00
float: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet fl:l
float: left;
snippet fl:n
float: none;
snippet fl:r
float: right;
snippet f+
2019-03-08 06:04:56 -05:00
font: ${1:1em} ${2:Arial},${3:sans-serif};${0}
2012-08-16 23:41:25 -04:00
snippet fef
2019-03-08 06:04:56 -05:00
font-effect: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
font-emphasize-position: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet femp:a
font-emphasize-position: after;
snippet femp:b
font-emphasize-position: before;
snippet fems
2019-03-08 06:04:56 -05:00
font-emphasize-style: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
font-emphasize: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet ff
2019-03-08 06:04:56 -05:00
font-family: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet ff:c
font-family: ${0:'Monotype Corsiva','Comic Sans MS'},cursive;
2012-08-16 23:41:25 -04:00
snippet ff:f
font-family: ${0:Capitals,Impact},fantasy;
2012-08-16 23:41:25 -04:00
snippet ff:m
font-family: ${0:Monaco,'Courier New'},monospace;
2012-08-16 23:41:25 -04:00
snippet ff:ss
font-family: ${0:Helvetica,Arial},sans-serif;
2012-08-16 23:41:25 -04:00
snippet ff:s
font-family: ${0:Georgia,'Times New Roman'},serif;
2012-08-16 23:41:25 -04:00
snippet fza
2019-03-08 06:04:56 -05:00
font-size-adjust: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet fza:n
font-size-adjust: none;
snippet fz
2019-03-08 06:04:56 -05:00
font-size: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet fsm
2019-03-08 06:04:56 -05:00
font-smooth: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet fsm:aw
font-smooth: always;
snippet fsm:a
font-smooth: auto;
snippet fsm:n
font-smooth: never;
snippet fst
2019-03-08 06:04:56 -05:00
font-stretch: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
font-style: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet fs:i
font-style: italic;
snippet fs:n
font-style: normal;
snippet fs:o
font-style: oblique;
snippet fv
2019-03-08 06:04:56 -05:00
font-variant: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet fv:n
font-variant: normal;
snippet fv:sc
font-variant: small-caps;
snippet fw
2019-03-08 06:04:56 -05:00
font-weight: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
font: ${1};${0}
2019-08-22 11:36:17 -04:00
snippet g
grid: ${1};
snippet gaf
grid-auto-flow: ${1:row};
snippet gaf+
grid-auto-flow: ${1:row} ${2: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: ${1};
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: ${1};
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: ${1};
snippet gt+
grid-template: ${1} / ${2};
snippet gtr
grid-template-rows: ${1};
snippet gtc
grid-template-columns: ${1};
snippet gta
grid-template-areas: ${1};
snippet gg
grid-gap: ${1};
snippet gg+
grid-gap: ${1} ${2};
snippet gg:0
grid-gap: 0;
snippet grg
grid-row-gap: ${1};
snippet grg:0
grid-row-gap: 0;
snippet gcg
grid-column-gap: ${1};
snippet gcg:0
grid-column-gap: 0;
snippet gr
grid-row: ${1} / ${2};
snippet grs
grid-row-start: ${1};
snippet gre
grid-row-end: ${1};
snippet gc
grid-column: ${1} / ${2};
snippet gcs
grid-column-start: ${1};
snippet gce
grid-column-end: ${1};
2012-08-16 23:41:25 -04:00
snippet h
2019-03-08 06:04:56 -05:00
height: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet h:a
height: auto;
2019-03-08 06:04:56 -05:00
snippet jc
2019-08-22 11:36:17 -04:00
justify-content: ${1};
snippet jc:s
justify-content: start;
snippet jc:e
justify-content: end;
2019-03-08 06:04:56 -05:00
snippet jc:c
justify-content: center;
snippet jc:fs
justify-content: flex-start;
2019-08-22 11:36:17 -04:00
snippet jc:fe
justify-content: flex-end;
2019-03-08 06:04:56 -05:00
snippet jc:sb
justify-content: space-between;
2019-08-22 11:36:17 -04:00
snippet jc:sa
justify-content: space-around;
2019-03-08 06:04:56 -05:00
snippet jc:se
justify-content: space-evenly;
2019-08-22 11:36:17 -04:00
snippet jc:st
2019-11-16 10:28:42 -05:00
justify-content: stretch;
2019-08-22 11:36:17 -04:00
snippet jc:l
justify-content: left;
snippet jc:r
justify-content: right;
snippet ji
justify-items: ${1:stretch};
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: ${1:stretch};
snippet js:s
justify-self: start;
snippet js:e
justify-self: end;
snippet js:c
justify-self: center;
snippet js:st
justify-self: stretch;
2012-08-16 23:41:25 -04:00
snippet l
2019-03-08 06:04:56 -05:00
left: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet l:a
left: auto;
snippet lts
2019-03-08 06:04:56 -05:00
letter-spacing: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet lh
2019-03-08 06:04:56 -05:00
line-height: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet lisi
2019-03-08 06:04:56 -05:00
list-style-image: url(${1});${0}
2012-08-16 23:41:25 -04:00
snippet lisi:n
list-style-image: none;
snippet lisp
2019-03-08 06:04:56 -05:00
list-style-position: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet lisp:i
list-style-position: inside;
snippet lisp:o
list-style-position: outside;
snippet list
2019-03-08 06:04:56 -05:00
list-style-type: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
list-style: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet lis:n
list-style: none;
snippet mb
2019-03-08 06:04:56 -05:00
margin-bottom: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet mb:a
margin-bottom: auto;
snippet ml
2019-03-08 06:04:56 -05:00
margin-left: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet ml:a
margin-left: auto;
snippet mr
2019-03-08 06:04:56 -05:00
margin-right: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet mr:a
margin-right: auto;
snippet mt
2019-03-08 06:04:56 -05:00
margin-top: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet mt:a
margin-top: auto;
snippet m
2019-03-08 06:04:56 -05:00
margin: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet m:4
2019-03-08 06:04:56 -05:00
margin: ${1:0} ${2:0} ${3:0} ${4:0};${0}
2012-08-16 23:41:25 -04:00
snippet m:3
2019-03-08 06:04:56 -05:00
margin: ${1:0} ${2:0} ${3:0};${0}
2012-08-16 23:41:25 -04:00
snippet m:2
2019-03-08 06:04:56 -05:00
margin: ${1:0} ${2:0};${0}
2012-08-16 23:41:25 -04:00
snippet m:0
margin: 0;
snippet m:a
margin: auto;
snippet mah
2019-03-08 06:04:56 -05:00
max-height: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet mah:n
max-height: none;
snippet maw
2019-03-08 06:04:56 -05:00
max-width: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet maw:n
max-width: none;
snippet mih
2019-03-08 06:04:56 -05:00
min-height: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet miw
2019-03-08 06:04:56 -05:00
min-width: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet op
2019-03-08 06:04:56 -05:00
opacity: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet op:ie
2019-03-08 06:04:56 -05:00
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=${1:100});${0}
2012-08-16 23:41:25 -04:00
snippet op:ms
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=${0:100})';
2012-08-16 23:41:25 -04:00
snippet orp
2019-03-08 06:04:56 -05:00
orphans: ${1};${0}
snippet or
order: ${0:0};
2012-08-16 23:41:25 -04:00
snippet o+
2019-03-08 06:04:56 -05:00
outline: ${1:1px} ${2:solid} #${3:000};${0}
2012-08-16 23:41:25 -04:00
snippet oc
2019-03-08 06:04:56 -05:00
outline-color: ${1:#000};${0}
2012-08-16 23:41:25 -04:00
snippet oc:i
outline-color: invert;
snippet oo
2019-03-08 06:04:56 -05:00
outline-offset: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet os
2019-03-08 06:04:56 -05:00
outline-style: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet ow
2019-03-08 06:04:56 -05:00
outline-width: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet o
2019-03-08 06:04:56 -05:00
outline: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet o:n
outline: none;
snippet ovs
2019-03-08 06:04:56 -05:00
overflow-style: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
overflow-x: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
overflow-y: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
overflow: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet ov:a
overflow: auto;
snippet ov:h
overflow: hidden;
snippet ov:s
overflow: scroll;
snippet ov:v
overflow: visible;
snippet pb
2019-03-08 06:04:56 -05:00
padding-bottom: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet pl
2019-03-08 06:04:56 -05:00
padding-left: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet pr
2019-03-08 06:04:56 -05:00
padding-right: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet pt
2019-03-08 06:04:56 -05:00
padding-top: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet p
2019-03-08 06:04:56 -05:00
padding: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet p:4
2019-03-08 06:04:56 -05:00
padding: ${1:0} ${2:0} ${3:0} ${4:0};${0}
2012-08-16 23:41:25 -04:00
snippet p:3
2019-03-08 06:04:56 -05:00
padding: ${1:0} ${2:0} ${3:0};${0}
2012-08-16 23:41:25 -04:00
snippet p:2
2019-03-08 06:04:56 -05:00
padding: ${1:0} ${2:0};${0}
2012-08-16 23:41:25 -04:00
snippet p:0
padding: 0;
2019-08-22 11:36:17 -04:00
snippet pc
place-content: ${1};
snippet pc+
place-content: ${1} ${2};
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;
2012-08-16 23:41:25 -04:00
snippet pgba
2019-03-08 06:04:56 -05:00
page-break-after: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
page-break-before: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
page-break-inside: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet pgbi:a
page-break-inside: auto;
snippet pgbi:av
page-break-inside: avoid;
2019-08-22 11:36:17 -04:00
snippet pi
place-items: ${1:stretch};
snippet pi+
place-items: ${1:stretch} ${2:stretch};
snippet pi:s
place-items: start;
snippet pi:e
place-items: end;
snippet pi:c
place-items: center;
snippet pi:st
2021-10-28 15:48:21 -04:00
place-items: stretch;
2012-08-16 23:41:25 -04:00
snippet pos
2019-03-08 06:04:56 -05:00
position: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet pos:a
position: absolute;
snippet pos:f
position: fixed;
snippet pos:r
position: relative;
snippet pos:s
position: static;
2019-08-22 11:36:17 -04:00
snippet ps
place-self: ${1:stretch};
snippet ps+
place-self: ${1:stretch} ${2: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;
2012-08-16 23:41:25 -04:00
snippet q
2019-03-08 06:04:56 -05:00
quotes: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet q:en
quotes: '\201C' '\201D' '\2018' '\2019';
snippet q:n
quotes: none;
snippet q:ru
quotes: '\00AB' '\00BB' '\201E' '\201C';
snippet rz
2019-03-08 06:04:56 -05:00
resize: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet rz:b
resize: both;
snippet rz:h
resize: horizontal;
snippet rz:n
resize: none;
snippet rz:v
resize: vertical;
snippet r
2019-03-08 06:04:56 -05:00
right: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet r:a
right: auto;
snippet tbl
2019-03-08 06:04:56 -05:00
table-layout: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet tbl:a
table-layout: auto;
snippet tbl:f
table-layout: fixed;
snippet tal
2019-03-08 06:04:56 -05:00
text-align-last: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
text-align: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet ta:c
text-align: center;
snippet ta:l
text-align: left;
snippet ta:r
text-align: right;
snippet td
2019-03-08 06:04:56 -05:00
text-decoration: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
text-emphasis: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
text-height: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
text-indent: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet ti:-
text-indent: -9999px;
snippet tj
2019-03-08 06:04:56 -05:00
text-justify: ${1};${0}
2012-08-16 23:41:25 -04:00
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+
2019-03-08 06:04:56 -05:00
text-outline: ${1:0} ${2:0} #${3:000};${0}
2012-08-16 23:41:25 -04:00
snippet to
2019-03-08 06:04:56 -05:00
text-outline: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet to:n
text-outline: none;
snippet tr
2019-03-08 06:04:56 -05:00
text-replace: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet tr:n
text-replace: none;
snippet tsh+
2019-03-08 06:04:56 -05:00
text-shadow: ${1:0} ${2:0} ${3:0} #${4:000};${0}
2012-08-16 23:41:25 -04:00
snippet tsh
2019-03-08 06:04:56 -05:00
text-shadow: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet tsh:n
text-shadow: none;
snippet tt
2019-03-08 06:04:56 -05:00
text-transform: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
text-wrap: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
top: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet t:a
top: auto;
snippet va
2019-03-08 06:04:56 -05:00
vertical-align: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
visibility: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet v:c
visibility: collapse;
snippet v:h
visibility: hidden;
snippet v:v
visibility: visible;
snippet whsc
2019-03-08 06:04:56 -05:00
white-space-collapse: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
white-space: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
widows: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet w
2019-03-08 06:04:56 -05:00
width: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet w:a
width: auto;
snippet wob
2019-03-08 06:04:56 -05:00
word-break: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
word-spacing: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet wow
2019-03-08 06:04:56 -05:00
word-wrap: ${1};${0}
2012-08-16 23:41:25 -04:00
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
2019-03-08 06:04:56 -05:00
z-index: ${1};${0}
2012-08-16 23:41:25 -04:00
snippet z:a
z-index: auto;
snippet zoo
zoom: 1;
2014-07-02 07:18:18 -04:00
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