mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-04-06 08:33:18 +08:00
39 lines
1.2 KiB
SCSS
39 lines
1.2 KiB
SCSS
---
|
|
---
|
|
|
|
// variables
|
|
// --------------------------
|
|
|
|
$fa-font-path: "../fonts" !default;
|
|
$fa-font-size-base: 14px !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;
|
|
$fa-rotation-increment: 45 !default;
|
|
|
|
{% capture glyph_count %}{{ sorted_icons | size }}{% endcapture %}
|
|
|
|
$fa-var-glyphs: (
|
|
{% assign sorted_icons = icons | expand_aliases | sort_by:'class' %}{% for icon in sorted_icons %}"{{ icon.class }}": "\{{ icon.unicode }}"{% if forloop.index != glyph_count %},{% endif %}
|
|
{% endfor %}
|
|
);
|
|
// icon sizes - these scale font size and line height
|
|
$fa-var-scales: (
|
|
"default": 1.000,
|
|
"lg": 1.333,
|
|
"sm": 0.666,
|
|
"xl": 1.666,
|
|
"xs": 0.333
|
|
) !default;
|
|
|
|
// icon size multipliers - these scale font size
|
|
$fa-var-multipliers: (
|
|
"2x": 2,
|
|
"3x": 3,
|
|
"4x": 4,
|
|
"5x": 5
|
|
) !default;
|