Skip to content

Commit 379077a

Browse files
author
Fengyuan Chen
committed
Init
0 parents  commit 379077a

Some content is hidden

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

83 files changed

+8458
-0
lines changed

.csscomb.json

+328
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,328 @@
1+
{
2+
"exclude": [
3+
".git/**",
4+
"node_modules/**",
5+
"bower_components/**"
6+
],
7+
"always-semicolon": true,
8+
"block-indent": " ",
9+
"color-case": "lower",
10+
"color-shorthand": true,
11+
"element-case": "lower",
12+
"eof-newline": true,
13+
"leading-zero": false,
14+
"quotes": "single",
15+
"remove-empty-rulesets": true,
16+
"space-after-colon": " ",
17+
"space-after-combinator": " ",
18+
"space-after-opening-brace": "\n",
19+
"space-after-selector-delimiter": "\n",
20+
"space-before-closing-brace": "\n",
21+
"space-before-colon": "",
22+
"space-before-combinator": " ",
23+
"space-before-opening-brace": " ",
24+
"space-before-selector-delimiter": "",
25+
"strip-spaces": true,
26+
"unitless-zero": true,
27+
"vendor-prefix-align": true,
28+
"sort-order": [
29+
[
30+
"font",
31+
"font-family",
32+
"font-size",
33+
"font-weight",
34+
"font-style",
35+
"font-variant",
36+
"font-size-adjust",
37+
"font-stretch",
38+
"font-effect",
39+
"font-emphasize",
40+
"font-emphasize-position",
41+
"font-emphasize-style",
42+
"font-smooth",
43+
"line-height"
44+
],
45+
[
46+
"position",
47+
"z-index",
48+
"top",
49+
"right",
50+
"bottom",
51+
"left"
52+
],
53+
[
54+
"display",
55+
"visibility",
56+
"float",
57+
"clear",
58+
"overflow",
59+
"overflow-x",
60+
"overflow-y",
61+
"-ms-overflow-x",
62+
"-ms-overflow-y",
63+
"clip",
64+
"zoom",
65+
"flex-direction",
66+
"flex-order",
67+
"flex-pack",
68+
"flex-align"
69+
],
70+
[
71+
"-webkit-box-sizing",
72+
"-moz-box-sizing",
73+
"box-sizing",
74+
"width",
75+
"min-width",
76+
"max-width",
77+
"height",
78+
"min-height",
79+
"max-height",
80+
"margin",
81+
"margin-top",
82+
"margin-right",
83+
"margin-bottom",
84+
"margin-left",
85+
"padding",
86+
"padding-top",
87+
"padding-right",
88+
"padding-bottom",
89+
"padding-left"
90+
],
91+
[
92+
"table-layout",
93+
"empty-cells",
94+
"caption-side",
95+
"border-spacing",
96+
"border-collapse",
97+
"list-style",
98+
"list-style-position",
99+
"list-style-type",
100+
"list-style-image"
101+
],
102+
[
103+
"content",
104+
"quotes",
105+
"counter-reset",
106+
"counter-increment",
107+
"resize",
108+
"cursor",
109+
"-webkit-user-select",
110+
"-moz-user-select",
111+
"-ms-user-select",
112+
"user-select",
113+
"nav-index",
114+
"nav-up",
115+
"nav-right",
116+
"nav-down",
117+
"nav-left",
118+
"-webkit-transition",
119+
"-moz-transition",
120+
"-ms-transition",
121+
"-o-transition",
122+
"transition",
123+
"-webkit-transition-delay",
124+
"-moz-transition-delay",
125+
"-ms-transition-delay",
126+
"-o-transition-delay",
127+
"transition-delay",
128+
"-webkit-transition-timing-function",
129+
"-moz-transition-timing-function",
130+
"-ms-transition-timing-function",
131+
"-o-transition-timing-function",
132+
"transition-timing-function",
133+
"-webkit-transition-duration",
134+
"-moz-transition-duration",
135+
"-ms-transition-duration",
136+
"-o-transition-duration",
137+
"transition-duration",
138+
"-webkit-transition-property",
139+
"-moz-transition-property",
140+
"-ms-transition-property",
141+
"-o-transition-property",
142+
"transition-property",
143+
"-webkit-transform",
144+
"-moz-transform",
145+
"-ms-transform",
146+
"-o-transform",
147+
"transform",
148+
"-webkit-transform-origin",
149+
"-moz-transform-origin",
150+
"-ms-transform-origin",
151+
"-o-transform-origin",
152+
"transform-origin",
153+
"-webkit-animation",
154+
"-moz-animation",
155+
"-ms-animation",
156+
"-o-animation",
157+
"animation",
158+
"-webkit-animation-name",
159+
"-moz-animation-name",
160+
"-ms-animation-name",
161+
"-o-animation-name",
162+
"animation-name",
163+
"-webkit-animation-duration",
164+
"-moz-animation-duration",
165+
"-ms-animation-duration",
166+
"-o-animation-duration",
167+
"animation-duration",
168+
"-webkit-animation-play-state",
169+
"-moz-animation-play-state",
170+
"-ms-animation-play-state",
171+
"-o-animation-play-state",
172+
"animation-play-state",
173+
"-webkit-animation-timing-function",
174+
"-moz-animation-timing-function",
175+
"-ms-animation-timing-function",
176+
"-o-animation-timing-function",
177+
"animation-timing-function",
178+
"-webkit-animation-delay",
179+
"-moz-animation-delay",
180+
"-ms-animation-delay",
181+
"-o-animation-delay",
182+
"animation-delay",
183+
"-webkit-animation-iteration-count",
184+
"-moz-animation-iteration-count",
185+
"-ms-animation-iteration-count",
186+
"-o-animation-iteration-count",
187+
"animation-iteration-count",
188+
"-webkit-animation-direction",
189+
"-moz-animation-direction",
190+
"-ms-animation-direction",
191+
"-o-animation-direction",
192+
"animation-direction",
193+
"text-align",
194+
"-webkit-text-align-last",
195+
"-moz-text-align-last",
196+
"-ms-text-align-last",
197+
"text-align-last",
198+
"vertical-align",
199+
"white-space",
200+
"text-decoration",
201+
"text-emphasis",
202+
"text-emphasis-color",
203+
"text-emphasis-style",
204+
"text-emphasis-position",
205+
"text-indent",
206+
"-ms-text-justify",
207+
"text-justify",
208+
"letter-spacing",
209+
"word-spacing",
210+
"-ms-writing-mode",
211+
"text-outline",
212+
"text-transform",
213+
"text-wrap",
214+
"text-overflow",
215+
"-ms-text-overflow",
216+
"text-overflow-ellipsis",
217+
"text-overflow-mode",
218+
"-ms-word-wrap",
219+
"word-wrap",
220+
"word-break",
221+
"-ms-word-break",
222+
"-moz-tab-size",
223+
"-o-tab-size",
224+
"tab-size",
225+
"-webkit-hyphens",
226+
"-moz-hyphens",
227+
"hyphens",
228+
"pointer-events"
229+
],
230+
[
231+
"opacity",
232+
"filter:progid:DXImageTransform.Microsoft.Alpha(Opacity",
233+
"-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha",
234+
"-ms-interpolation-mode",
235+
"color",
236+
"border",
237+
"border-width",
238+
"border-style",
239+
"border-color",
240+
"border-top",
241+
"border-top-width",
242+
"border-top-style",
243+
"border-top-color",
244+
"border-right",
245+
"border-right-width",
246+
"border-right-style",
247+
"border-right-color",
248+
"border-bottom",
249+
"border-bottom-width",
250+
"border-bottom-style",
251+
"border-bottom-color",
252+
"border-left",
253+
"border-left-width",
254+
"border-left-style",
255+
"border-left-color",
256+
"-webkit-border-radius",
257+
"-moz-border-radius",
258+
"border-radius",
259+
"-webkit-border-top-left-radius",
260+
"-moz-border-radius-topleft",
261+
"border-top-left-radius",
262+
"-webkit-border-top-right-radius",
263+
"-moz-border-radius-topright",
264+
"border-top-right-radius",
265+
"-webkit-border-bottom-right-radius",
266+
"-moz-border-radius-bottomright",
267+
"border-bottom-right-radius",
268+
"-webkit-border-bottom-left-radius",
269+
"-moz-border-radius-bottomleft",
270+
"border-bottom-left-radius",
271+
"-webkit-border-image",
272+
"-moz-border-image",
273+
"-o-border-image",
274+
"border-image",
275+
"-webkit-border-image-source",
276+
"-moz-border-image-source",
277+
"-o-border-image-source",
278+
"border-image-source",
279+
"-webkit-border-image-slice",
280+
"-moz-border-image-slice",
281+
"-o-border-image-slice",
282+
"border-image-slice",
283+
"-webkit-border-image-width",
284+
"-moz-border-image-width",
285+
"-o-border-image-width",
286+
"border-image-width",
287+
"-webkit-border-image-outset",
288+
"-moz-border-image-outset",
289+
"-o-border-image-outset",
290+
"border-image-outset",
291+
"-webkit-border-image-repeat",
292+
"-moz-border-image-repeat",
293+
"-o-border-image-repeat",
294+
"border-image-repeat",
295+
"outline",
296+
"outline-width",
297+
"outline-style",
298+
"outline-color",
299+
"outline-offset",
300+
"background",
301+
"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader",
302+
"background-color",
303+
"background-image",
304+
"background-repeat",
305+
"background-attachment",
306+
"background-position",
307+
"background-position-x",
308+
"-ms-background-position-x",
309+
"background-position-y",
310+
"-ms-background-position-y",
311+
"-webkit-background-clip",
312+
"-moz-background-clip",
313+
"background-clip",
314+
"background-origin",
315+
"-webkit-background-size",
316+
"-moz-background-size",
317+
"-o-background-size",
318+
"background-size",
319+
"box-decoration-break",
320+
"-webkit-box-shadow",
321+
"-moz-box-shadow",
322+
"box-shadow",
323+
"filter:progid:DXImageTransform.Microsoft.gradient",
324+
"-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient",
325+
"text-shadow"
326+
]
327+
]
328+
}

.csslintrc

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"adjoining-classes": false,
3+
"box-sizing": false,
4+
"box-model": false,
5+
"compatible-vendor-prefixes": false,
6+
"floats": false,
7+
"font-sizes": false,
8+
"gradients": false,
9+
"important": false,
10+
"known-properties": false,
11+
"outline-none": false,
12+
"qualified-headings": false,
13+
"regex-selectors": false,
14+
"shorthand": false,
15+
"text-indent": false,
16+
"zero-units": false,
17+
"unique-headings": false,
18+
"universal-selector": false,
19+
"unqualified-attributes": false
20+
}

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true

.gitattributes

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Automatically normalize line endings for all text-based files
2+
# http://git-scm.com/docs/gitattributes#_end_of_line_conversion
3+
* text=auto
4+
5+
# For the following file types, normalize line endings to LF on
6+
# checkin and prevent conversion to CRLF when they are checked out
7+
# (this is required in order to prevent newline related issues like,
8+
# for example, after the build script is run)
9+
.* text eol=lf
10+
*.css text eol=lf
11+
*.html text eol=lf
12+
*.js text eol=lf
13+
*.json text eol=lf
14+
*.md text eol=lf
15+
*.sh text eol=lf
16+
*.txt text eol=lf
17+
*.xml text eol=lf

0 commit comments

Comments
 (0)