├── .gitignore ├── .prettierrc.json ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── ffab-preview.jpg ├── gulpfile.js ├── index.html ├── package.json ├── preview.html ├── preview ├── _settings.scss └── preview.scss └── src ├── _ffab-active.scss ├── _ffab-base.scss ├── _ffab-bordered.scss ├── _ffab-functions.scss ├── _ffab-hollow.scss ├── _ffab-icon.scss ├── _ffab-overlay.scss ├── _ffab-position.scss ├── _ffab-transitions.scss ├── _ffab-utilities.scss ├── _ffab-variables.scss └── _ffab.scss /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | css 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/README.md -------------------------------------------------------------------------------- /ffab-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/ffab-preview.jpg -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/package.json -------------------------------------------------------------------------------- /preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/preview.html -------------------------------------------------------------------------------- /preview/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/preview/_settings.scss -------------------------------------------------------------------------------- /preview/preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/preview/preview.scss -------------------------------------------------------------------------------- /src/_ffab-active.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab-active.scss -------------------------------------------------------------------------------- /src/_ffab-base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab-base.scss -------------------------------------------------------------------------------- /src/_ffab-bordered.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab-bordered.scss -------------------------------------------------------------------------------- /src/_ffab-functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab-functions.scss -------------------------------------------------------------------------------- /src/_ffab-hollow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab-hollow.scss -------------------------------------------------------------------------------- /src/_ffab-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab-icon.scss -------------------------------------------------------------------------------- /src/_ffab-overlay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab-overlay.scss -------------------------------------------------------------------------------- /src/_ffab-position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab-position.scss -------------------------------------------------------------------------------- /src/_ffab-transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab-transitions.scss -------------------------------------------------------------------------------- /src/_ffab-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab-utilities.scss -------------------------------------------------------------------------------- /src/_ffab-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab-variables.scss -------------------------------------------------------------------------------- /src/_ffab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshmedeski/foundation-font-awesome-buttons/HEAD/src/_ffab.scss --------------------------------------------------------------------------------