Skip to content

Commit 32c15b0

Browse files
committed
update: organization of patterns
1 parent b037981 commit 32c15b0

File tree

6 files changed

+38
-5
lines changed

6 files changed

+38
-5
lines changed

css/README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,36 @@
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+
```

css/css-font-face.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
}
2424
]]></content>
2525
<tabTrigger>cssff</tabTrigger>
26-
<description>Basic HTML document</description>
26+
<description>@font-face structure</description>
2727
</snippet>

external/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Analytics
44

5-
### [ga] Google Analytics Object
5+
### [extga] Google Analytics Object
66

77
```html
88
<script>

external/ga.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
ga('send', 'pageview');
1010
1111
</script>$2]]></content>
12-
<tabTrigger>ga</tabTrigger>
12+
<tabTrigger>extga</tabTrigger>
1313
<description>Google Analytics</description>
1414
</snippet>

html/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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>

html/html-document.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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>

0 commit comments

Comments
 (0)