Skip to content

Commit 5eb7485

Browse files
committed
feat: add styling and restructure api docs
1 parent 1a8e8f9 commit 5eb7485

File tree

3 files changed

+537
-138
lines changed

3 files changed

+537
-138
lines changed

.csscomb.json

+208
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
{
2+
"exclude": [
3+
"**/_*.*",
4+
".git/**",
5+
"node_modules/**",
6+
"bower_components/**"
7+
],
8+
"always-semicolon": true,
9+
"block-indent": true,
10+
"colon-space": true,
11+
"color-case": "lower",
12+
"color-shorthand": true,
13+
"combinator-space": true,
14+
"element-case": "lower",
15+
"eof-newline": true,
16+
"leading-zero": true,
17+
"rule-indent": true,
18+
"stick-brace": "\n",
19+
"strip-spaces": true,
20+
"unitless-zero": true,
21+
"sort-order": [
22+
[
23+
"font",
24+
"font-family",
25+
"font-size",
26+
"font-weight",
27+
"font-style",
28+
"font-variant",
29+
"font-size-adjust",
30+
"font-stretch",
31+
"font-effect",
32+
"font-emphasize",
33+
"font-emphasize-position",
34+
"font-emphasize-style",
35+
"font-smooth",
36+
"line-height"
37+
],
38+
[
39+
"position",
40+
"z-index",
41+
"top",
42+
"right",
43+
"bottom",
44+
"left"
45+
],
46+
[
47+
"display",
48+
"visibility",
49+
"float",
50+
"clear",
51+
"overflow",
52+
"overflow-x",
53+
"overflow-y",
54+
"clip",
55+
"zoom",
56+
"flex-direction",
57+
"flex-wrap",
58+
"flex-order",
59+
"flex-pack",
60+
"flex-align",
61+
"justify-content",
62+
"align-items",
63+
"align-content",
64+
"order",
65+
"flex-grow",
66+
"flex-shrink",
67+
"flex-basis",
68+
"flex"
69+
],
70+
[
71+
"box-sizing",
72+
"width",
73+
"min-width",
74+
"max-width",
75+
"height",
76+
"min-height",
77+
"max-height",
78+
"margin",
79+
"margin-top",
80+
"margin-right",
81+
"margin-bottom",
82+
"margin-left",
83+
"padding",
84+
"padding-top",
85+
"padding-right",
86+
"padding-bottom",
87+
"padding-left"
88+
],
89+
[
90+
"table-layout",
91+
"empty-cells",
92+
"caption-side",
93+
"border-spacing",
94+
"border-collapse",
95+
"list-style",
96+
"list-style-position",
97+
"list-style-type",
98+
"list-style-image"
99+
],
100+
[
101+
"content",
102+
"quotes",
103+
"counter-reset",
104+
"counter-increment",
105+
"resize",
106+
"cursor",
107+
"user-select",
108+
"nav-index",
109+
"nav-up",
110+
"nav-right",
111+
"nav-down",
112+
"nav-left",
113+
"transition",
114+
"transition-delay",
115+
"transition-timing-function",
116+
"transition-duration",
117+
"transition-property",
118+
"transform",
119+
"transform-origin",
120+
"animation",
121+
"animation-name",
122+
"animation-duration",
123+
"animation-play-state",
124+
"animation-timing-function",
125+
"animation-delay",
126+
"animation-iteration-count",
127+
"animation-direction",
128+
"text-align",
129+
"text-align-last",
130+
"vertical-align",
131+
"white-space",
132+
"text-decoration",
133+
"text-emphasis",
134+
"text-emphasis-color",
135+
"text-emphasis-style",
136+
"text-emphasis-position",
137+
"text-indent",
138+
"text-justify",
139+
"letter-spacing",
140+
"word-spacing",
141+
"text-outline",
142+
"text-transform",
143+
"text-wrap",
144+
"text-overflow",
145+
"text-overflow-ellipsis",
146+
"text-overflow-mode",
147+
"word-wrap",
148+
"word-break",
149+
"tab-size",
150+
"hyphens",
151+
"pointer-events"
152+
],
153+
[
154+
"opacity",
155+
"color",
156+
"border",
157+
"border-width",
158+
"border-style",
159+
"border-color",
160+
"border-top",
161+
"border-top-width",
162+
"border-top-style",
163+
"border-top-color",
164+
"border-right",
165+
"border-right-width",
166+
"border-right-style",
167+
"border-right-color",
168+
"border-bottom",
169+
"border-bottom-width",
170+
"border-bottom-style",
171+
"border-bottom-color",
172+
"border-left",
173+
"border-left-width",
174+
"border-left-style",
175+
"border-left-color",
176+
"border-radius",
177+
"border-top-left-radius",
178+
"border-top-right-radius",
179+
"border-bottom-right-radius",
180+
"border-bottom-left-radius",
181+
"border-image",
182+
"border-image-source",
183+
"border-image-slice",
184+
"border-image-width",
185+
"border-image-outset",
186+
"border-image-repeat",
187+
"outline",
188+
"outline-width",
189+
"outline-style",
190+
"outline-color",
191+
"outline-offset",
192+
"background",
193+
"background-color",
194+
"background-image",
195+
"background-repeat",
196+
"background-attachment",
197+
"background-position",
198+
"background-position-x",
199+
"background-position-y",
200+
"background-clip",
201+
"background-origin",
202+
"background-size",
203+
"box-decoration-break",
204+
"box-shadow",
205+
"text-shadow"
206+
]
207+
]
208+
}

0 commit comments

Comments
 (0)