added to npm

This commit is contained in:
arnaucode
2018-03-24 14:13:08 +01:00
parent 7ef44c8a65
commit 6dfc63506d
4 changed files with 43 additions and 3 deletions

View File

@@ -1,11 +1,21 @@
# cssMaterialColors
## Install
## Install with npm
```
npm install --save cssMaterialColors
```
Add to the index.html:
```html
<link href="node_modules/cssMaterialColors/colors.css" rel="stylesheet">
```
## Install with bower
```
bower install --save cssMaterialColors
```
Add to the index.html:
```html
<link href="bower_components/cssMaterialColors/colors.min.css" rel="stylesheet">
<link href="bower_components/cssMaterialColors/colors.css" rel="stylesheet">
```

View File

@@ -341,6 +341,12 @@
color: #4DD0E1!important;
}
.ct_cyan500{
color: #00BCD4!important;
}
.c_cyanG500to300{
background: #00BCD4!important;
background: -moz-linear-gradient(left, #00BCD4 0%, #4DD0E1 100%)!important;

1
colors.min.css vendored

File diff suppressed because one or more lines are too long

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "cssmaterialcolors",
"version": "1.0.0",
"description": "## Install ``` bower install --save cssMaterialColors ```",
"main": "colors.css",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arnaucode/cssMaterialColors.git"
},
"keywords": [
"css",
"material",
"colors",
"cssmaterialcolors"
],
"author": "arnaucode",
"license": "MIT",
"bugs": {
"url": "https://github.com/arnaucode/cssMaterialColors/issues"
},
"homepage": "https://github.com/arnaucode/cssMaterialColors#readme"
}