Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,17 @@
1
+---
2
+---
3
+// Variables
4
+// --------------------------
5
+
6
+$fa-font-path:        "../fonts" !default;
7
+$fa-font-size-base:   14px !default;
8
+$fa-line-height-base: 1 !default;
9
+//$fa-font-path:        "//netdna.bootstrapcdn.com/font-awesome/{{site.fontawesome.version}}/fonts" !default; // for referencing Bootstrap CDN font files directly
10
+$fa-css-prefix:       {{ site.fontawesome.css_prefix }} !default;
11
+$fa-version:          "{{ site.fontawesome.version }}" !default;
12
+$fa-border-color:     #eee !default;
13
+$fa-inverse:          #fff !default;
14
+$fa-li-width:         (30em / 14) !default;
15
+
16
+{% assign sorted_icons = icons | expand_aliases | sort_by:'class' %}{% for icon in sorted_icons %}$fa-var-{{ icon.class }}: "\{{ icon.unicode }}";
17
+{% endfor %}