Skip to content

Commit 59fea59

Browse files
committed
Add CNAME for GitHub Pages
1 parent b906819 commit 59fea59

Some content is hidden

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

92 files changed

+12685
-1
lines changed

themes/mainroad

Lines changed: 0 additions & 1 deletion
This file was deleted.

themes/mainroad/.browserslistrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
> 0.25%
2+
not dead
3+
IE >= 11
4+
iOS >= 7

themes/mainroad/.editorconfig

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = tab
7+
end_of_line = lf
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{json,yaml,yml,toml,md,babelrc,eslintrc,postcssrc,stylelintrc}]
15+
indent_style = space
16+
indent_size = 2
17+
18+
[layouts/**.{html,svg}]
19+
insert_final_newline = false

themes/mainroad/.eslintrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "airbnb-base/legacy",
3+
"rules": {
4+
"indent": [2, "tab"],
5+
"no-tabs": 0,
6+
"no-unused-vars": 0,
7+
"no-shadow-restricted-names": 0
8+
}
9+
}

themes/mainroad/.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# NPM
2+
node_modules/
3+
npm-debug.log
4+
5+
# IDE
6+
.idea
7+
*.sublime-project
8+
*.sublime-workspace
9+
.vscode/*
10+
11+
# OS
12+
._*
13+
Thumbs.db
14+
.DS_Store
15+
.Trashes
16+
.Spotlight-V100
17+
.AppleDouble
18+
.LSOverride
19+
Desktop.ini

themes/mainroad/.postcssrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"plugins": {
3+
"autoprefixer": {
4+
cascade: false
5+
}
6+
}
7+
}

themes/mainroad/.stylelintrc

Lines changed: 319 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,319 @@
1+
{
2+
"plugins": [
3+
"stylelint-order"
4+
],
5+
"rules": {
6+
"at-rule-empty-line-before": [
7+
"always",
8+
{
9+
"except": [
10+
"blockless-after-same-name-blockless",
11+
"first-nested"
12+
],
13+
"ignore": [
14+
"after-comment"
15+
]
16+
}
17+
],
18+
"at-rule-name-case": "lower",
19+
"at-rule-name-space-after": "always-single-line",
20+
"at-rule-semicolon-newline-after": "always",
21+
"block-closing-brace-newline-after": "always",
22+
"block-closing-brace-empty-line-before": "never",
23+
"block-no-empty": true,
24+
"block-opening-brace-newline-after": "always-multi-line",
25+
"color-hex-case": "lower",
26+
"color-hex-length": "short",
27+
"color-no-invalid-hex": true,
28+
"comment-no-empty": true,
29+
"declaration-bang-space-after": "never",
30+
"declaration-bang-space-before": "always",
31+
"declaration-block-no-duplicate-properties": [
32+
true,
33+
{
34+
"ignore": [
35+
"consecutive-duplicates-with-different-values"
36+
]
37+
}
38+
],
39+
"declaration-block-no-shorthand-property-overrides": true,
40+
"declaration-block-semicolon-newline-after": "always-multi-line",
41+
"declaration-block-semicolon-space-after": "always-single-line",
42+
"declaration-block-semicolon-space-before": "never",
43+
"declaration-block-single-line-max-declarations": 1,
44+
"declaration-block-trailing-semicolon": "always",
45+
"declaration-colon-newline-after": "always-multi-line",
46+
"declaration-colon-space-after": "always-single-line",
47+
"declaration-colon-space-before": "never",
48+
"font-family-no-duplicate-names": true,
49+
"function-calc-no-unspaced-operator": true,
50+
"function-comma-newline-after": "always-multi-line",
51+
"function-comma-space-after": "always-single-line",
52+
"function-comma-space-before": "never",
53+
"function-linear-gradient-no-nonstandard-direction": true,
54+
"function-max-empty-lines": 0,
55+
"function-name-case": "lower",
56+
"function-parentheses-newline-inside": "always-multi-line",
57+
"function-parentheses-space-inside": "never-single-line",
58+
"function-whitespace-after": "always",
59+
"indentation": "tab",
60+
"keyframe-declaration-no-important": true,
61+
"length-zero-no-unit": true,
62+
"max-empty-lines": 1,
63+
"media-feature-colon-space-after": "always",
64+
"media-feature-colon-space-before": "never",
65+
"media-feature-name-case": "lower",
66+
"media-feature-name-no-unknown": true,
67+
"media-feature-parentheses-space-inside": "never",
68+
"media-feature-range-operator-space-after": "always",
69+
"media-feature-range-operator-space-before": "always",
70+
"media-query-list-comma-newline-after": "always-multi-line",
71+
"media-query-list-comma-space-after": "always-single-line",
72+
"media-query-list-comma-space-before": "never",
73+
"no-empty-source": true,
74+
"no-eol-whitespace": true,
75+
"no-extra-semicolons": true,
76+
"no-invalid-double-slash-comments": true,
77+
"no-missing-end-of-source-newline": true,
78+
"number-no-trailing-zeros": true,
79+
"property-case": "lower",
80+
"property-no-unknown": true,
81+
"selector-attribute-brackets-space-inside": "never",
82+
"selector-attribute-operator-space-after": "never",
83+
"selector-attribute-operator-space-before": "never",
84+
"selector-combinator-space-after": "always",
85+
"selector-combinator-space-before": "always",
86+
"selector-descendant-combinator-no-non-space": true,
87+
"selector-list-comma-newline-after": "always",
88+
"selector-list-comma-space-before": "never",
89+
"selector-pseudo-class-case": "lower",
90+
"selector-pseudo-class-no-unknown": true,
91+
"selector-pseudo-class-parentheses-space-inside": "never",
92+
"selector-pseudo-element-case": "lower",
93+
"selector-pseudo-element-colon-notation": "double",
94+
"selector-pseudo-element-no-unknown": true,
95+
"selector-type-case": "lower",
96+
"selector-type-no-unknown": true,
97+
"shorthand-property-no-redundant-values": true,
98+
"string-no-newline": true,
99+
"unit-case": "lower",
100+
"unit-no-unknown": true,
101+
"value-list-comma-newline-after": "always-multi-line",
102+
"value-list-comma-space-after": "always-single-line",
103+
"value-list-comma-space-before": "never",
104+
"value-list-max-empty-lines": 0,
105+
"order/properties-order": [
106+
"position",
107+
"top",
108+
"right",
109+
"bottom",
110+
"left",
111+
"z-index",
112+
"box-sizing",
113+
"display",
114+
"flex",
115+
"flex-align",
116+
"flex-basis",
117+
"flex-direction",
118+
"flex-wrap",
119+
"flex-flow",
120+
"flex-shrink",
121+
"flex-grow",
122+
"flex-wrap",
123+
"align-content",
124+
"align-items",
125+
"align-self",
126+
"justify-content",
127+
"order",
128+
"float",
129+
"width",
130+
"min-width",
131+
"max-width",
132+
"height",
133+
"min-height",
134+
"max-height",
135+
"padding",
136+
"padding-top",
137+
"padding-right",
138+
"padding-bottom",
139+
"padding-left",
140+
"margin",
141+
"margin-top",
142+
"margin-right",
143+
"margin-bottom",
144+
"margin-left",
145+
"overflow",
146+
"overflow-x",
147+
"overflow-y",
148+
"-webkit-overflow-scrolling",
149+
"-ms-overflow-x",
150+
"-ms-overflow-y",
151+
"-ms-overflow-style",
152+
"columns",
153+
"column-count",
154+
"column-fill",
155+
"column-gap",
156+
"column-rule",
157+
"column-rule-width",
158+
"column-rule-style",
159+
"column-rule-color",
160+
"column-span",
161+
"column-width",
162+
"orphans",
163+
"widows",
164+
"clip",
165+
"clear",
166+
"font",
167+
"font-family",
168+
"font-size",
169+
"font-style",
170+
"font-weight",
171+
"font-variant",
172+
"font-size-adjust",
173+
"font-stretch",
174+
"font-effect",
175+
"font-emphasize",
176+
"font-emphasize-position",
177+
"font-emphasize-style",
178+
"font-smooth",
179+
"src",
180+
"hyphens",
181+
"line-height",
182+
"color",
183+
"text-align",
184+
"text-align-last",
185+
"text-emphasis",
186+
"text-emphasis-color",
187+
"text-emphasis-style",
188+
"text-emphasis-position",
189+
"text-decoration",
190+
"text-indent",
191+
"text-justify",
192+
"text-outline",
193+
"-ms-text-overflow",
194+
"text-overflow",
195+
"text-overflow-ellipsis",
196+
"text-overflow-mode",
197+
"text-shadow",
198+
"text-transform",
199+
"text-wrap",
200+
"-webkit-text-size-adjust",
201+
"-ms-text-size-adjust",
202+
"letter-spacing",
203+
"-ms-word-break",
204+
"word-break",
205+
"word-spacing",
206+
"-ms-word-wrap",
207+
"word-wrap",
208+
"overflow-wrap",
209+
"tab-size",
210+
"white-space",
211+
"vertical-align",
212+
"direction",
213+
"unicode-bidi",
214+
"list-style",
215+
"list-style-position",
216+
"list-style-type",
217+
"list-style-image",
218+
"pointer-events",
219+
"-ms-touch-action",
220+
"touch-action",
221+
"cursor",
222+
"visibility",
223+
"zoom",
224+
"table-layout",
225+
"empty-cells",
226+
"caption-side",
227+
"border-spacing",
228+
"border-collapse",
229+
"content",
230+
"quotes",
231+
"counter-reset",
232+
"counter-increment",
233+
"resize",
234+
"user-select",
235+
"nav-index",
236+
"nav-up",
237+
"nav-right",
238+
"nav-down",
239+
"nav-left",
240+
"background",
241+
"background-color",
242+
"background-image",
243+
"filter",
244+
"background-repeat",
245+
"background-attachment",
246+
"background-position",
247+
"background-position-x",
248+
"background-position-y",
249+
"background-clip",
250+
"background-origin",
251+
"background-size",
252+
"border",
253+
"border-color",
254+
"border-style",
255+
"border-width",
256+
"border-top",
257+
"border-top-color",
258+
"border-top-style",
259+
"border-top-width",
260+
"border-right",
261+
"border-right-color",
262+
"border-right-style",
263+
"border-right-width",
264+
"border-bottom",
265+
"border-bottom-color",
266+
"border-bottom-style",
267+
"border-bottom-width",
268+
"border-left",
269+
"border-left-color",
270+
"border-left-style",
271+
"border-left-width",
272+
"border-radius",
273+
"border-top-left-radius",
274+
"border-top-right-radius",
275+
"border-bottom-right-radius",
276+
"border-bottom-left-radius",
277+
"border-image",
278+
"border-image-source",
279+
"border-image-slice",
280+
"border-image-width",
281+
"border-image-outset",
282+
"border-image-repeat",
283+
"outline",
284+
"outline-width",
285+
"outline-style",
286+
"outline-color",
287+
"outline-offset",
288+
"box-shadow",
289+
"opacity",
290+
"-ms-interpolation-mode",
291+
"page-break-after",
292+
"page-break-before",
293+
"page-break-inside",
294+
"transition",
295+
"transition-delay",
296+
"transition-timing-function",
297+
"transition-duration",
298+
"transition-property",
299+
"transform",
300+
"transform-origin",
301+
"perspective",
302+
"appearance",
303+
"animation",
304+
"animation-name",
305+
"animation-duration",
306+
"animation-play-state",
307+
"animation-timing-function",
308+
"animation-delay",
309+
"animation-iteration-count",
310+
"animation-direction",
311+
"animation-fill-mode",
312+
"quotes",
313+
"will-change",
314+
"fill",
315+
"fill-rule",
316+
"stroke"
317+
]
318+
}
319+
}

0 commit comments

Comments
 (0)