File tree Expand file tree Collapse file tree 6 files changed +38
-5
lines changed Expand file tree Collapse file tree 6 files changed +38
-5
lines changed Original file line number Diff line number Diff line change 2727 }
2828}
2929```
30+
31+ ## Media Querie
32+
33+ ### [ cssmq] @media
34+
35+ ``` css
36+ @media ${1:all} and (${2:min-width}: ${3:768px }) {
37+ ${4}
38+ }
39+ ```
40+
41+ ## Keyframes
42+
43+ ### [ cssk] @keyframes
44+
45+ ``` css
46+ @-webkit-keyframes ${1:[animation-name]} {
47+ 0% { ${2} }
48+ 100% { ${3} }
49+ }
50+ @-moz-keyframes ${1} {
51+ 0% { ${2} }
52+ 100% { ${3} }
53+ }
54+ @-o-keyframes ${1} {
55+ 0% { ${2} }
56+ 100% { ${3} }
57+ }
58+ @keyframes ${1} {
59+ 0% { ${2} }
60+ 100% { ${3} }
61+ }
62+ ```
Original file line number Diff line number Diff line change 2323}
2424]]> </content >
2525 <tabTrigger >cssff</tabTrigger >
26- <description >Basic HTML document </description >
26+ <description >@font-face structure </description >
2727</snippet >
Original file line number Diff line number Diff line change 22
33## Analytics
44
5- ### [ ga ] Google Analytics Object
5+ ### [ extga ] Google Analytics Object
66
77``` html
88<script >
Original file line number Diff line number Diff line change 99 ga('send', 'pageview');
1010
1111</script>$2]]> </content >
12- <tabTrigger >ga </tabTrigger >
12+ <tabTrigger >extga </tabTrigger >
1313 <description >Google Analytics</description >
1414</snippet >
Original file line number Diff line number Diff line change 66
77``` html
88<!DOCTYPE html>
9- <html class =" no-js" lang =" pt-BR" xml:lang =" pt-BR" >
9+ <html class =" no-js" lang =" ${2: pt-BR} " xml:lang =" ${2: pt-BR} " >
1010 <head >
1111 <meta charset =" utf-8" >
1212 <title >${1:Document}</title >
Original file line number Diff line number Diff line change 11<snippet >
22 <content ><![CDATA[
33<!DOCTYPE html>
4- <html class="no-js" lang="pt-BR" xml:lang="pt-BR">
4+ <html class="no-js" lang="${2: pt-BR} " xml:lang="${2: pt-BR} ">
55 <head>
66 <meta charset="utf-8">
77 <title>${1:Document}</title>
You can’t perform that action at this time.
0 commit comments