Skip to content

Commit be8f161

Browse files
committed
separate html into pug and stylus
1 parent df55717 commit be8f161

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+14330
-1095
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.*.swp

basic.styl

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
vendors = official
2+
3+
transition()
4+
if index(vendors, 'ms') != null && index(vendors, 'ms') >= 0
5+
-ms-transition arguments
6+
if index(vendors, 'moz') != null && index(vendors, 'moz') >= 0
7+
-moz-transition arguments
8+
if index(vendors, 'webkit') != null && index(vendors, 'webkit') >= 0
9+
-webkit-transition arguments
10+
if index(vendors, 'o') != null && index(vendors, 'o') >= 0
11+
-o-transition arguments
12+
if index(vendors, 'official') != null && index(vendors, 'official') >= 0
13+
transition arguments
14+
15+
transform()
16+
if index(vendors, 'ms') != null && index(vendors, 'ms') >= 0
17+
-ms-transform arguments
18+
if index(vendors, 'moz') != null && index(vendors, 'moz') >= 0
19+
-moz-transform arguments
20+
if index(vendors, 'webkit') != null && index(vendors, 'webkit') >= 0
21+
-webkit-transform arguments
22+
if index(vendors, 'o') != null && index(vendors, 'o') >= 0
23+
-o-transform arguments
24+
if index(vendors, 'official') != null && index(vendors, 'official') >= 0
25+
transform arguments
26+
27+
transform-origin()
28+
if index(vendors, 'ms') != null && index(vendors, 'ms') >= 0
29+
-ms-transform-origin arguments
30+
if index(vendors, 'moz') != null && index(vendors, 'moz') >= 0
31+
-moz-transform-origin arguments
32+
if index(vendors, 'webkit') != null && index(vendors, 'webkit') >= 0
33+
-webkit-transform-origin arguments
34+
if index(vendors, 'o') != null && index(vendors, 'o') >= 0
35+
-o-transform-origin arguments
36+
if index(vendors, 'official') != null && index(vendors, 'official') >= 0
37+
transform-origin arguments
38+
39+
animation()
40+
if index(vendors, 'ms') != null && index(vendors, 'ms') >= 0
41+
-ms-animation arguments
42+
if index(vendors, 'moz') != null && index(vendors, 'moz') >= 0
43+
-moz-animation arguments
44+
if index(vendors, 'webkit') != null && index(vendors, 'webkit') >= 0
45+
-webkit-animation arguments
46+
if index(vendors, 'o') != null && index(vendors, 'o') >= 0
47+
-o-animation arguments
48+
if index(vendors, 'official') != null && index(vendors, 'official') >= 0
49+
animation arguments
50+
51+
animation-delay()
52+
if index(vendors, 'ms') != null && index(vendors, 'ms') >= 0
53+
-ms-animation-delay arguments
54+
if index(vendors, 'moz') != null && index(vendors, 'moz') >= 0
55+
-moz-animation-delay arguments
56+
if index(vendors, 'webkit') != null && index(vendors, 'webkit') >= 0
57+
-webkit-animation-delay arguments
58+
if index(vendors, 'o') != null && index(vendors, 'o') >= 0
59+
-o-animation-delay arguments
60+
if index(vendors, 'official') != null && index(vendors, 'official') >= 0
61+
animation-delay arguments
62+
63+
animation-timing-function()
64+
if index(vendors, 'ms') != null && index(vendors, 'ms') >= 0
65+
-ms-animation-timing-function arguments
66+
if index(vendors, 'moz') != null && index(vendors, 'moz') >= 0
67+
-moz-animation-timing-function arguments
68+
if index(vendors, 'webkit') != null && index(vendors, 'webkit') >= 0
69+
-webkit-animation-timing-function arguments
70+
if index(vendors, 'o') != null && index(vendors, 'o') >= 0
71+
-o-animation-timing-function arguments
72+
if index(vendors, 'official') != null && index(vendors, 'official') >= 0
73+
animation-timing-function arguments

circle.html

Lines changed: 0 additions & 54 deletions
This file was deleted.

default.html

Lines changed: 0 additions & 140 deletions
This file was deleted.

dual-ring.html

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)