Skip to content

Commit 23f9254

Browse files
committed
Initial commit
0 parents  commit 23f9254

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

+11334
-0
lines changed

.editorconfig

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

.gitignore

+151
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/windows,node,prepros
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,node,prepros
4+
5+
### Node ###
6+
# Logs
7+
logs
8+
*.log
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
lerna-debug.log*
13+
14+
# Diagnostic reports (https://nodejs.org/api/report.html)
15+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
16+
17+
# Runtime data
18+
pids
19+
*.pid
20+
*.seed
21+
*.pid.lock
22+
23+
# Directory for instrumented libs generated by jscoverage/JSCover
24+
lib-cov
25+
26+
# Coverage directory used by tools like istanbul
27+
coverage
28+
*.lcov
29+
30+
# nyc test coverage
31+
.nyc_output
32+
33+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
34+
.grunt
35+
36+
# Bower dependency directory (https://bower.io/)
37+
bower_components
38+
39+
# node-waf configuration
40+
.lock-wscript
41+
42+
# Compiled binary addons (https://nodejs.org/api/addons.html)
43+
build/Release
44+
45+
# Dependency directories
46+
node_modules/
47+
jspm_packages/
48+
49+
# TypeScript v1 declaration files
50+
typings/
51+
52+
# TypeScript cache
53+
*.tsbuildinfo
54+
55+
# Optional npm cache directory
56+
.npm
57+
58+
# Optional eslint cache
59+
.eslintcache
60+
61+
# Microbundle cache
62+
.rpt2_cache/
63+
.rts2_cache_cjs/
64+
.rts2_cache_es/
65+
.rts2_cache_umd/
66+
67+
# Optional REPL history
68+
.node_repl_history
69+
70+
# Output of 'npm pack'
71+
*.tgz
72+
73+
# Yarn Integrity file
74+
.yarn-integrity
75+
76+
# dotenv environment variables file
77+
.env
78+
.env.test
79+
.env*.local
80+
81+
# parcel-bundler cache (https://parceljs.org/)
82+
.cache
83+
.parcel-cache
84+
85+
# Next.js build output
86+
.next
87+
88+
# Nuxt.js build / generate output
89+
.nuxt
90+
dist
91+
92+
# Gatsby files
93+
.cache/
94+
# Comment in the public line in if your project uses Gatsby and not Next.js
95+
# https://nextjs.org/blog/next-9-1#public-directory-support
96+
# public
97+
98+
# vuepress build output
99+
.vuepress/dist
100+
101+
# Serverless directories
102+
.serverless/
103+
104+
# FuseBox cache
105+
.fusebox/
106+
107+
# DynamoDB Local files
108+
.dynamodb/
109+
110+
# TernJS port file
111+
.tern-port
112+
113+
# Stores VSCode versions used for testing VSCode extensions
114+
.vscode-test
115+
116+
### Prepros ###
117+
# Config Prepros files to ignore
118+
prepros.cfg
119+
prepros-6.config
120+
prepros.config
121+
122+
### Windows ###
123+
# Windows thumbnail cache files
124+
Thumbs.db
125+
Thumbs.db:encryptable
126+
ehthumbs.db
127+
ehthumbs_vista.db
128+
129+
# Dump file
130+
*.stackdump
131+
132+
# Folder config file
133+
[Dd]esktop.ini
134+
135+
# Recycle Bin used on file shares
136+
$RECYCLE.BIN/
137+
138+
# Windows Installer files
139+
*.cab
140+
*.msi
141+
*.msix
142+
*.msm
143+
*.msp
144+
145+
# Windows shortcuts
146+
*.lnk
147+
148+
# Compiled CSS
149+
css
150+
151+
# End of https://www.toptal.com/developers/gitignore/api/windows,node,prepros

.stylelintrc.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"extends": "stylelint-config-sass-guidelines",
3+
"rules": {
4+
"function-parentheses-space-inside": "never-single-line",
5+
"max-nesting-depth": 4,
6+
"selector-no-vendor-prefix": [true,
7+
{
8+
"ignoreSelectors": ["/-moz-.*/", "/-ms-.*/", "/-webkit-.*/"]
9+
}
10+
],
11+
"selector-no-qualifying-type": [true,
12+
{
13+
"ignore": ["attribute"]
14+
}
15+
],
16+
"value-no-vendor-prefix": [true,
17+
{
18+
"ignoreValues": ["box"]
19+
}
20+
]
21+
}
22+
}

.vscode/settings.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"titleBar.activeForeground": "#ffffff",
4+
"titleBar.inactiveForeground": "#ffffff",
5+
"titleBar.activeBackground": "#904ad2",
6+
"titleBar.inactiveBackground": "#642f97"
7+
},
8+
"editor.tabSize": 2
9+
}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Cone Development
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<p align="center">
2+
<a href="https://sprucecss.com">
3+
<br/>
4+
<img src="https://conedevelopment.com/assets/img/spruce-logo.svg?" alt="Spruce CSS" width="160">
5+
<br/>
6+
</a>
7+
</p>
8+
9+
<p align="center">
10+
<a href="https://sprucecss.com/docs/getting-started/introduction">Documentation</a>
11+
<br/>
12+
<br/>
13+
</p>
14+
15+
**Spruce is a simple, base CSS framework to build on. It contains the necessary foundations to create your next UI elements width modern code.**
16+
17+
## License
18+
19+
Spruce CSS is open-sourced software licensed under the [MIT](LICENSE).

0 commit comments

Comments
 (0)