mirror of
https://github.com/ForkAwesome/Fork-Awesome.git
synced 2025-04-03 23:29:16 +08:00
16 lines
585 B
Plaintext
16 lines
585 B
Plaintext
---
|
|
---
|
|
// Variables
|
|
// --------------------------
|
|
|
|
@fa-font-path: "../fonts";
|
|
//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/{{site.fontawesome.version}}/fonts"; // for referencing Bootstrap CDN font files directly
|
|
@fa-css-prefix: {{ site.fontawesome.css_prefix }};
|
|
@fa-version: "{{ site.fontawesome.version }}";
|
|
@fa-border-color: #eee;
|
|
@fa-inverse: #fff;
|
|
@fa-li-width: (30em / 14);
|
|
|
|
{% assign sorted_icons = icons | sort_by:'class' %}{% for icon in sorted_icons %}@fa-var-{{ icon.id }}: "\{{ icon.unicode }}";
|
|
{% endfor %}
|