Skip to content

Commit cd12a3c

Browse files
committed
Initial commit
0 parents  commit cd12a3c

11 files changed

+2899
-0
lines changed

.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# editorconfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
end_of_line = lf
8+
indent_style = space
9+
indent_size = 4
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true
13+
14+
[*.md]
15+
trim_trailing_whitespace = false
16+
17+
[*.yml]
18+
indent_size = 2

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.github/contributing.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Contribution Guidelines
2+
3+
Please note that this project is released with a [Contributor Code of Conduct](../code-of-conduct.md). By participating in this project you agree to abide by its terms.
4+
5+
## Guidelines
6+
7+
We would like to keep the list small and focused to the best resources. Reason: We don’t want to frustrate people who like to learn CSS with a list that:
8+
9+
- is too long to get through
10+
- offers too many possibilities
11+
12+
Ensure your pull request adheres to the following guidelines, if you would like to add something that must be on that list:
13+
14+
- Search previous suggestions before making a new one, as yours may be a duplicate.
15+
- If you just created something, wait at least a couple of weeks before submitting.
16+
- You should of course have read, watched or used the thing you're submitting.
17+
- Make an individual pull request for each suggestion.
18+
- Use the following format: `[name](link) - Description.`
19+
- Keep descriptions short and simple, but descriptive.
20+
- Start the description with a capital and end with a full stop/period.
21+
- Check your spelling and grammar.
22+
- Make sure your text editor is set to remove trailing whitespace.
23+
- Link additions should be added to the bottom of the relevant section.
24+
- New categories or improvements to the existing categorization are welcome.
25+
- To regenerate the table of contents:
26+
- ```shell
27+
npm install
28+
npm run toc
29+
```
30+
- Pull requests should have a useful title and include a link to the resource and why it should be included.
31+
32+
Thank you for your suggestion!
33+
34+
### Updating your PR
35+
36+
A lot of times, making a PR adhere to the standards above can be difficult. If the maintainers notice anything that we'd like changed, we'll ask you to edit your PR before we merge it. There's no need to open a new PR, just edit the existing one. If you're not sure how to do that, [here is a guide](https://github.com/RichardLitt/docs/blob/master/amending-a-commit-guide.md) on the different ways you can update your PR so that we can merge it.

.github/pull_request_template.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
---
3+
4+
By submitting this pull request, I promise that:
5+
6+
- [ ] I have read the [contribution guidelines](https://github.com/micromata/awesome-css-learning/blob/master/.github/contributing.md) thoroughly.
7+
- [ ] I ensure my submission follows each and every point.

.gitignore

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
2+
# Created by https://www.gitignore.io/api/windows,macos,linux
3+
4+
### Windows ###
5+
# Windows image file caches
6+
Thumbs.db
7+
ehthumbs.db
8+
9+
# Folder config file
10+
Desktop.ini
11+
12+
# Recycle Bin used on file shares
13+
$RECYCLE.BIN/
14+
15+
# Windows Installer files
16+
*.cab
17+
*.msi
18+
*.msm
19+
*.msp
20+
21+
# Windows shortcuts
22+
*.lnk
23+
24+
25+
### macOS ###
26+
*.DS_Store
27+
.AppleDouble
28+
.LSOverride
29+
30+
# Icon must end with two \r
31+
Icon
32+
# Thumbnails
33+
._*
34+
# Files that might appear in the root of a volume
35+
.DocumentRevisions-V100
36+
.fseventsd
37+
.Spotlight-V100
38+
.TemporaryItems
39+
.Trashes
40+
.VolumeIcon.icns
41+
.com.apple.timemachine.donotpresent
42+
# Directories potentially created on remote AFP share
43+
.AppleDB
44+
.AppleDesktop
45+
Network Trash Folder
46+
Temporary Items
47+
.apdisk
48+
49+
50+
### Linux ###
51+
*~
52+
53+
# temporary files which can be created if a process still has a handle open of a deleted file
54+
.fuse_hidden*
55+
56+
# KDE directory preferences
57+
.directory
58+
59+
# Linux trash folder which might appear on any partition or disk
60+
.Trash-*
61+
62+
# .nfs files are created when an open file is removed but is still being accessed
63+
.nfs*
64+
65+
### Node ###
66+
# Logs
67+
logs
68+
*.log
69+
npm-debug.log*
70+
71+
# Runtime data
72+
pids
73+
*.pid
74+
*.seed
75+
*.pid.lock
76+
77+
# Directory for instrumented libs generated by jscoverage/JSCover
78+
lib-cov
79+
80+
# Coverage directory used by tools like istanbul
81+
coverage
82+
83+
# nyc test coverage
84+
.nyc_output
85+
86+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
87+
.grunt
88+
89+
# node-waf configuration
90+
.lock-wscript
91+
92+
# Compiled binary addons (http://nodejs.org/api/addons.html)
93+
build/Release
94+
95+
# Dependency directories
96+
node_modules
97+
jspm_packages
98+
99+
# Optional npm cache directory
100+
.npm
101+
102+
# Optional eslint cache
103+
.eslintcache
104+
105+
# Optional REPL history
106+
.node_repl_history
107+
108+
# Output of 'npm pack'
109+
*.tgz
110+
111+
# Yarn Integrity file
112+
.yarn-integrity

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: node_js
2+
node_js:
3+
- 'node'

LICENSE.MD

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# CC0 1.0 Universal (CC0 1.0)
2+
3+
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law.
4+
5+
You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.
6+
7+
- In no way are the patent or trademark rights of any person affected by CC0, nor are the rights that other persons may have in the work or in how the work is used, such as [publicity or privacy](https://wiki.creativecommons.org/Frequently_Asked_Questions#When_are_publicity_rights_relevant.3F) rights.
8+
- Unless expressly stated otherwise, the person who associated a work with this deed makes no warranties about the work, and disclaims liability for all uses of the work, to the fullest extent permitted by applicable law.
9+
- When using or citing the work, you should not imply endorsement by the author or the affirmer.
10+
11+
See <https://creativecommons.org/publicdomain/zero/1.0/> for details.

code-of-conduct.md

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, gender identity and expression, level of experience,
9+
nationality, personal appearance, race, religion, or sexual identity and
10+
orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at [email protected]. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at [http://contributor-covenant.org/version/1/4][version]
72+
73+
[homepage]: http://contributor-covenant.org
74+
[version]: http://contributor-covenant.org/version/1/4/

0 commit comments

Comments
 (0)