mirror of
https://github.com/ForkAwesome/Fork-Awesome.git
synced 2025-03-31 05:45:56 +08:00
18 lines
647 B
SCSS
18 lines
647 B
SCSS
---
|
|
---
|
|
// 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 %}
|