Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_variables.scss « scss « fork-awesome « assets « src - github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d944ce3af8a00611faca8e883e68fe699ffabe9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
---
// 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-font-family:      {{ site.fontawesome.font_family }} !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 %}