Browse Source

update

master
arnaucode 5 years ago
parent
commit
ded47fc96f
2 changed files with 31 additions and 3 deletions
  1. +2
    -2
      README.md
  2. +29
    -1
      colors.css

+ 2
- 2
README.md

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

+ 29
- 1
colors.css

@ -231,6 +231,11 @@
border: 2px solid #7986CB!important;
color: #7986CB!important;
}
.c_o_indigo300:hover{
background: #7986CB!important;
border: 2px solid #7986CB!important;
color: #ffffff!important;
}
.c_indigoG500to300{
background: -moz-linear-gradient(219deg, #7986CB 0%, #3F51B5 100%)!important; /* ff3.6+ */
@ -340,7 +345,21 @@
border: 2px solid #4DD0E1!important;
color: #4DD0E1!important;
}
.c_o_cyan400{
background: rgba(0, 0, 0, 0)!important;
border: 2px solid #26C6DA!important;
color: #4DD0E1!important;
}
.c_o_cyan500{
background: rgba(0, 0, 0, 0)!important;
border: 2px solid #00BCD4!important;
color: #4DD0E1!important;
}
.c_o_cyan600{
background: rgba(0, 0, 0, 0)!important;
border: 2px solid #00ACC1!important;
color: #4DD0E1!important;
}
.ct_cyan500{
color: #00BCD4!important;
@ -353,6 +372,15 @@
background: -webkit-linear-gradient(left, #00BCD4 0%,#4DD0E1 100%)!important;
background: linear-gradient(to right, #00BCD4 0%,#4DD0E1 100%)!important;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00BCD4', endColorstr='#4DD0E1',GradientType=1 )!important;
color: #ffffff!important;
}
.c_cyanG300to500{
background: #4DD0E1!important;
background: -moz-linear-gradient(left, #4DD0E1 0%, #00BCD4 100%)!important;
background: -webkit-linear-gradient(left, #4DD0E1 0%,#00BCD4 100%)!important;
background: linear-gradient(to right, #4DD0E1 0%,#00BCD4 100%)!important;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4DD0E1', endColorstr='#00BCD4',GradientType=1 )!important;
color: #ffffff!important;
}

Loading…
Cancel
Save