Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/build
/node_modules
/*.log
/*.iws
.idea/workspace.xml
.idea/tasks.xml
.idea/profiles_settings.xml
.idea/inspectionProfiles/Project_Default.xml
.idea/inspectionProfiles/profiles_settings.xml

node_modules/.yarn-integrity
package-lock.json

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/stackicons.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/.idea
/artifacts
/build
/test
/node_modules
/*.iml
/*.ipr
/*.iws
/.travis.yml
/.scrutinizer.yml
/Gruntfile.js
/*.lock
*.log
/corifeus-boot.json
*.rb
**/*.
/_source
/img
/js
/*.png
/*.rb
/*.ico
/bower_components
/test
/tests
/css/fontviewer.css
/css/normalize.css
/css/stackicons-branding.css
/css/stackicons-branding.min.css
/css/style.css
/fonts/Stackicons/Desktop Fonts
/fonts/Stackicons/Stackicons-Branding*
/*.html
/*.txt
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,19 @@ Stackicons
Icon font and Sass-based construction kit for Stackicons-Social, which supports multiple button shapes and a unique "multi-color" option in CSS for over 60 social brands.

For more information visit <http://stackicons.com>

# Bower
```bash
bower install p3x-stackicons --save
```

# NPM

```bash
npm i p3x-stackicons --save
# or
yarn add p3x-stackicons
```

# Original
[Parker Bennett Stackicons](https://github.com/parkerbennett/stackicons)
42 changes: 42 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"name": "p3x-stackicons",
"homepage": "https://github.com/patrikx3/stackicons",
"authors": [
"Parker Bennett <parker@stackicons.com>",
"Patrik Laszlo <alabard@gmail.com>"
],
"description": "Stackicons are icon fonts for the web, designed to do more — with multiple button shapes and a unique “multi-color” option.",
"main": [
"css/stackicons-social.css"
],
"keywords": [
"social",
"icon",
"stack",
"colorful"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"_source",
"img",
"js",
"scss",
"*.png",
"*.rb",
"*.ico",
"bower_components",
"test",
"tests",
"css/fontviewer.css",
"css/normalize.css",
"css/stackicons-branding.css",
"css/stackicons-branding.min.css",
"css/style.css",
"fonts/Stackicons/Desktop Fonts",
"fonts/Stackicons/Stackicons-Branding*",
"*.html",
"*.txt"
]
}
29 changes: 29 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "p3x-stackicons",
"version": "1.0.0",
"description": "Icon font and Sass-based construction kit for Stackicons-Social, which supports multiple button shapes and a unique \"multi-color\" option in CSS for over 60 social brands.",
"main": "css/stackicons-social.css",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrikx3/stackicons.git"
},
"keywords": [
"social",
"icon",
"stack",
"colorful",
"brand"
],
"author": "Parker Bennett <parker@stackicons.com>",
"contributors": [
"Patrik Laszlo <alabard@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/patrikx3/stackicons/issues"
},
"homepage": "https://github.com/patrikx3/stackicons#readme"
}