-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathfeathericon.css
More file actions
37 lines (32 loc) · 1018 Bytes
/
feathericon.css
File metadata and controls
37 lines (32 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@charset "utf-8";
/*---------------------------------------------------------------------------*/
/* <%= font_name %>
/*---------------------------------------------------------------------------*/
/**
* font path
*/
@font-face {
font-family: '<%= font_name %>';
src: url('<%= @options[:preprocessor_path] %><%= font_name %>.eot');
src: url('<%= @options[:preprocessor_path] %><%= font_name %>.eot?#iefix') format('embedded-opentype'),
url('<%= @options[:preprocessor_path] %><%= font_name %>.woff') format('woff'),
url('<%= @options[:preprocessor_path] %><%= font_name %>.ttf') format('truetype'),
url('<%= @options[:preprocessor_path] %><%= font_name %>.svg') format('svg');
font-weight: normal;
font-style: normal;
}
/**
* feathericon
*/
.fe {
display: inline-block;
font: normal normal normal 16px <%= font_name %>;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/**
* all icons
*/
<%= glyphs %>