Fork-Awesome/src/doc/assets/fork-awesome/scss/variables.scss.txt
todd 6a5ed1863d Renamed .scss files so they are handled properly by Jekyll
Jekyll was ignoring all of the files in src/doc/assets/fork-awesome/scss
that began with an underscore when copying to _site.

Removed the underscore and appended `.txt` so they would be copied to
_site

We put the underscore back and remove the .txt extension in the Makefile
2019-02-25 05:28:41 -05:00

18 lines
647 B
Plaintext

---
---
// Variables
// --------------------------
$fa-font-path: "../fonts" !default;
$fa-font-size-base: 14px !default;
$fa-line-height-base: 1 !default;
$fa-css-prefix: "{{ site.forkawesome.css_prefix }}" !default;
$fa-font-family: "{{ site.forkawesome.font_family }}" !default;
$fa-version: "{{ site.forkawesome.version }}" !default;
$fa-border-color: #eee !default;
$fa-inverse: #fff !default;
$fa-li-width: (30em / 14) !default;
{% assign sorted_icons = icons | expand_aliases | sort_by:'class' %}{% for icon in sorted_icons %}$fa-var-{{ icon.class }}: "\{{ icon.unicode }}";
{% endfor %}