mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-03-14 21:34:39 +08:00
18 lines
646 B
SCSS
18 lines
646 B
SCSS
---
|
|
---
|
|
// Variables
|
|
// --------------------------
|
|
|
|
$fa-font-path: "../fonts" !default;
|
|
//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/{{ site.fontawesome.version}}/font" !default; // for referencing Bootstrap CDN font files directly
|
|
$fa-css-prefix: {{ site.fontawesome.css_prefix }};
|
|
$fa-version: "{{ site.fontawesome.version }}" !default;
|
|
$fa-border-color: #eee !default;
|
|
$fa-icon-muted: #eee !default;
|
|
$fa-icon-light: #fff !default;
|
|
$fa-icon-dark: #333 !default;
|
|
$fa-icon-li-width: (30em / 14);
|
|
|
|
{% for icon in icons %}$fa-var-{{ icon.id }}: "\{{ icon.unicode }}";
|
|
{% endfor %}
|