Skip to content

Commit 29f9ad8

Browse files
author
Cody Reeves
committed
Installation stuff
1 parent de68cf5 commit 29f9ad8

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

README.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
![Travis Ci](https://travis-ci.org/CodyReeves/css-grid-system-library.svg?branch=production)
2+
[![GitHub version](https://badge.fury.io/gh/CodyReeves%2Fcss-grid-system-library.svg)](https://badge.fury.io/gh/CodyReeves%2Fcss-grid-system-library)
3+
[![Bower version](https://badge.fury.io/bo/css-grid-system-library.svg)](https://badge.fury.io/bo/css-grid-system-library)
4+
25
# CSS Grid Library
36
### The only css grid package you will ever need.
47

@@ -9,6 +12,34 @@ Three grid systems in one package! Each is fully responsive and mobile ready. Ea
912
- CSS Grid system
1013
- Flexbox Masonry Grid System
1114

15+
## Instillation:
16+
17+
### NPM/YARN:
18+
Add to your package.json:
19+
20+
```
21+
"dependencies": {
22+
"css-grid-system-library": "git://github.com/CodyReeves/css-grid-system-library.git"
23+
},
24+
```
25+
26+
Add to your SCSS:
27+
```
28+
@import "PATH-TO-NODE_MODULES/node_modules/css-grid-system-library/scss/main";
29+
```
30+
### Bower
31+
Add to your bower.json:
32+
33+
```
34+
"dependencies": {
35+
"css-grid-system-library": >=1.0.0,
36+
},
37+
```
38+
Add to your SCSS:
39+
```
40+
@import "PATH-TO-BOWER_DIR/bower/css-grid-system-library/scss/main";
41+
```
42+
1243
## Example config
1344

1445
```

bower.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "css-grid-system-library",
3+
"description": "A lightweight CSS grid system library. Includes a flexbox grid, a CSS Grid system, and a flexbox masonry grid with each grid being optional. Written in SCSS. Available in SCSS and CSS.",
4+
"main": "scss/main.scss",
5+
"authors": [
6+
"Cody Reeves<[email protected]>"
7+
],
8+
"license": "MIT",
9+
"keywords": [
10+
"SCSS",
11+
"Breakpoints",
12+
"Media",
13+
"Queries",
14+
"CSS",
15+
"Screen",
16+
"Mobile",
17+
"Desktop"
18+
],
19+
"homepage": "https://github.com/CodyReeves/css-grid-system-library",
20+
"ignore": [
21+
"**/.*",
22+
"node_modules",
23+
"bower_components",
24+
"test",
25+
"tests",
26+
"scss/test"
27+
],
28+
"dependencies": {}
29+
}

0 commit comments

Comments
 (0)