1
0
mirror of https://github.com/simple-icons/simple-icons.git synced 2024-12-16 01:10:30 +02:00

Added basic README

This commit is contained in:
Dan Leech 2015-08-25 16:04:09 +01:00
parent 9b0b1b5aa7
commit 5ddffc6f0f

19
README.md Normal file
View File

@ -0,0 +1,19 @@
# Simple Icons
## Usage
To include the coloured icons simple include the SVG. If you’d like to use colour the SVGs yourself you can add CSS to define `si-solid`, `si-translucent` and `si-transparent` classes. For example to set all icons to be white:
```css
.si-solid {
fill: white;
}
.si-translucent {
fill: white;
opacity: 0.5;
}
.si-transparent {
opacity: 0;
}
```