mirror of
https://github.com/ForkAwesome/Fork-Awesome.git
synced 2025-04-07 00:47:18 +08:00
18 lines
739 B
SCSS
18 lines
739 B
SCSS
---
|
|
---
|
|
// Variables
|
|
// --------------------------
|
|
|
|
$fa-font-path: "../fonts" !default;
|
|
$fa-font-size-base: 14px !default;
|
|
$fa-line-height-base: 1 !default;
|
|
//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/{{site.fontawesome.version}}/fonts" !default; // for referencing Bootstrap CDN font files directly
|
|
$fa-css-prefix: {{ site.fontawesome.css_prefix }} !default;
|
|
$fa-version: "{{ site.fontawesome.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 %}
|