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

variables.less « less « font-awesome « assets « src - github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83207e414e24b71372037fb0d487037148a50b0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
---
// Variables
// --------------------------

@fa-font-path:        "../fonts";
@fa-font-size-base:   14px;
@fa-line-height-base: 1;
//@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 | expand_aliases | sort_by:'class' %}{% for icon in sorted_icons %}@fa-var-{{ icon.class }}: "\{{ icon.unicode }}";
{% endfor %}