Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peterekjs/sass-font-awesome
Sass only shim for Font-Fwesome project with additional features
https://github.com/peterekjs/sass-font-awesome
List: sass-font-awesome
awesome font font-awesome fontawesome icon sass
Last synced: 3 months ago
JSON representation
Sass only shim for Font-Fwesome project with additional features
- Host: GitHub
- URL: https://github.com/peterekjs/sass-font-awesome
- Owner: peterekjs
- License: mit
- Created: 2017-02-26T19:16:35.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-02T23:13:31.000Z (almost 8 years ago)
- Last Synced: 2024-11-06T11:51:42.346Z (3 months ago)
- Topics: awesome, font, font-awesome, fontawesome, icon, sass
- Language: CSS
- Size: 529 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
sass-font-awesome
======Sass-only package for the iconic [Font Awesome](http://fontawesome.io) project with additional features
Currently using [Font Awesome](http://fontawesome.io) v4.7.0
## Additional features
### Silent classes
All icon classes have their silent equivalents e.g. `.fa-check` => `%fa-check`### Allowed icons
You can specify icon classes to be compiled into the final css style by defining a list of icon names into variable `$fa-allowed-icons`.#### Example
```sass
$fa-allowed-icons: check times;
```
Will result in generating only `.fa-check` and `.fa-times` classes along with all feature classes (e.g. `.fa-fw`, `.fa-3x` etc.). Silent classes will be available for all the rest of icons.