magic_stylez 0.0.0.88 → 0.0.0.89

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,13 @@
1
1
  @to_currency = ( number ) ->
2
2
  unless isNaN number
3
- (Math.round( parseFloat( number ) * 100 ) / 100).toFixed(2)
3
+ nmbr = (Math.round( parseFloat( number ) * 100 ) / 100).toFixed(2)
4
4
  else
5
- (0).toFixed(2)
5
+ nmbr = (0).toFixed(2)
6
+ if nmbr >= 1000.0
7
+ end = "#{nmbr}".split(".")[1]
8
+ "#{(parseInt(nmbr) / 1000).toFixed(3)},#{end}"
9
+ else
10
+ "#{nmbr}".replace(/\./, ",")
6
11
 
7
12
  @to_euro = (number) ->
8
13
  "#{to_currency(number)} €"
@@ -17,27 +17,27 @@
17
17
  //
18
18
  // F O N T S
19
19
  //
20
- $sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
21
- $serifFontFamily: Georgia, "Times New Roman", Times, serif !default;
22
- $monoFontFamily: Monaco, Menlo, Consolas, "Courier New", monospace !default;
20
+ $sansFontFamily: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
21
+ $serifFontFamily: Georgia, "Times New Roman", Times, serif;
22
+ $monoFontFamily: Monaco, Menlo, Consolas, "Courier New", monospace;
23
23
 
24
- $magicSans: $sansFontFamily !default;
25
- $magicCondensedSans: $sansFontFamily !default;
26
- $magicHandwritten: 'Gloria Hallelujah', cursive !default;
24
+ $magicSans: $sansFontFamily;
25
+ $magicCondensedSans: $sansFontFamily;
26
+ $magicHandwritten: 'Gloria Hallelujah', cursive;
27
27
 
28
28
  // variable
29
- $smallReadFont: $magicCondensedSans !default;
30
- $readFont: $magicSans !default;
31
- $bigFont: $magicSans !default;
32
- $alternateBigFont: $magicSans !default;
33
- $dekoFont: $magicHandwritten !default;
29
+ $smallReadFont: $sansFontFamily;
30
+ $readFont: $sansFontFamily;
31
+ $bigFont: $sansFontFamily;
32
+ $alternateBigFont: $sansFontFamily;
33
+ $dekoFont: $magicHandwritten;
34
34
 
35
35
 
36
- $font-family-sans-serif: $readFont !default;
37
- $font-family-serif: $serifFontFamily !default;
38
- $font-family-base: $smallReadFont !default;
39
- $font-family-monospace: $monoFontFamily !default;
40
- $font-family-handwriten: $magicHandwritten !default;
36
+ $font-family-sans-serif: $sansFontFamily;
37
+ $font-family-serif: $sansFontFamily;
38
+ $font-family-base: $sansFontFamily;
39
+ $font-family-monospace: $monoFontFamily;
40
+ $font-family-handwriten: $magicHandwritten;
41
41
 
42
42
 
43
43
  // Short-Forms
@@ -103,11 +103,11 @@ $headings-font-weight: 500 !default;
103
103
  //== Buttons
104
104
  $btn-font-weight: normal !default;
105
105
 
106
- $magicSans-font-weight-thin: 300 !default;
107
- $magicSans-font-weight-regular: 400 !default;
108
- $magicSans-font-weight-semi: 600 !default;
106
+ $magicSans-font-weight-thin: 100 !default;
107
+ $magicSans-font-weight-regular: 300 !default;
108
+ $magicSans-font-weight-semi: 400 !default;
109
109
  $magicSans-font-weight-bold: 700 !default;
110
- $magicSans-font-weight-extra: 800 !default;
110
+ $magicSans-font-weight-extra: 900 !default;
111
111
 
112
112
  $magicCondensedSans-font-weight-thin: 300 !default;
113
113
  $magicCondensedSans-font-weight-regular: 400 !default;
@@ -30,6 +30,7 @@
30
30
  // @import "magic/icons/icomoon";
31
31
  // @import "magic/icons/magicons";
32
32
  // @import "magic/icons/orderlifticons";
33
+ // @import "magic/icons/bettericons";
33
34
 
34
35
 
35
36
  // load layout helper
@@ -30,6 +30,7 @@
30
30
  @import "magic/icons/icomoon";
31
31
  @import "magic/icons/magicons";
32
32
  @import "magic/icons/orderlifticons";
33
+ @import "magic/icons/bettericons";
33
34
 
34
35
 
35
36
  // load layout helper
@@ -0,0 +1,412 @@
1
+ //** Load fonts from this directory.
2
+ $bettericons-font-path: "magic/";
3
+ //** File name for all font files.
4
+ $bettericons-font-name: "betterwork-icons";
5
+ //** Element ID within SVG icon file.
6
+ $bettericons-font-svg-id: "betterwork-icons";
7
+
8
+ $bettericons-class-name: "bettericon";
9
+
10
+
11
+ @font-face {
12
+ font-family: 'betterwork-icons';
13
+ src: url(if($magic-asset-helper, twbs-font-path('#{$bettericons-font-path}#{$bettericons-font-name}.eot'), '#{$bettericons-font-path}#{$bettericons-font-name}.eot'));
14
+ }
15
+
16
+ @font-face {
17
+ font-family: 'betterwork-icons';
18
+ src: url(if($magic-asset-helper, twbs-font-path('#{$bettericons-font-path}#{$bettericons-font-name}.woff'), '#{$bettericons-font-path}#{$bettericons-font-name}.woff')) format('woff'),
19
+ url(if($magic-asset-helper, twbs-font-path('#{$bettericons-font-path}#{$bettericons-font-name}.ttf'), '#{$bettericons-font-path}#{$bettericons-font-name}.ttf')) format('truetype'),
20
+ url(if($magic-asset-helper, twbs-font-path('#{$bettericons-font-path}#{$bettericons-font-name}.svg##{$bettericons-font-svg-id}'), '#{$bettericons-font-path}#{$bettericons-font-name}.svg##{$bettericons-font-svg-id}')) format('svg');
21
+ font-weight: normal;
22
+ font-style: normal;
23
+
24
+ }
25
+
26
+
27
+
28
+ [class^="#{$bettericons-class-name}-"]:before,
29
+ [class*=" #{$bettericons-class-name}-"]:before {
30
+ font-family: 'betterwork-icons';
31
+ font-weight: normal;
32
+ font-style: normal;
33
+ font-size: 1.4em; // make them bigger
34
+ display: block;
35
+ position: relative;
36
+ // top: 0; right: 0; bottom: 0; left: 0;
37
+ text-decoration: inherit;
38
+ vertical-align: middle;
39
+ line-height: .9em;
40
+ color: inherit;
41
+
42
+ // make icons thinner in webkit (white icons on dark background)
43
+ text-shadow: 0 0 0 rgba(0,0,0,.01);
44
+ -webkit-font-smoothing: antialiased;
45
+ text-rendering: optimizelegibility;
46
+
47
+ outline: none;
48
+ border: none;
49
+ }
50
+
51
+
52
+
53
+ // i {
54
+ // /* use !important to prevent issues with browser extensions that change fonts */
55
+ // font-family: 'betterwork-icons' !important;
56
+ // speak: none;
57
+ // font-style: normal;
58
+ // font-weight: normal;
59
+ // font-variant: normal;
60
+ // text-transform: none;
61
+ // line-height: 1;
62
+ // /* Better Font Rendering =========== */
63
+ // -webkit-font-smoothing: antialiased;
64
+ // -moz-osx-font-smoothing: grayscale;
65
+ // }
66
+
67
+
68
+
69
+ .#{$bettericons-class-name}-eye:before { content: "\e900"; }
70
+ .#{$bettericons-class-name}-eye-blind:before { content: "\e901"; }
71
+ .#{$bettericons-class-name}-lightbulb:before { content: "\e902"; }
72
+ .#{$bettericons-class-name}-bell:before { content: "\e903"; }
73
+ .#{$bettericons-class-name}-alarm:before { content: "\e904"; }
74
+ .#{$bettericons-class-name}-watch:before { content: "\e905"; }
75
+ .#{$bettericons-class-name}-clock:before { content: "\e906"; }
76
+ .#{$bettericons-class-name}-clock2:before { content: "\e907"; }
77
+ .#{$bettericons-class-name}-sandglas:before { content: "\e908"; }
78
+ .#{$bettericons-class-name}-briefcase:before { content: "\e909"; }
79
+ .#{$bettericons-class-name}-bookmark:before { content: "\e90a"; }
80
+ .#{$bettericons-class-name}-cap-academic:before { content: "\e90b"; }
81
+ .#{$bettericons-class-name}-support:before { content: "\e90c"; }
82
+ .#{$bettericons-class-name}-camera:before { content: "\e90d"; }
83
+ .#{$bettericons-class-name}-camera-front:before { content: "\e90e"; }
84
+ .#{$bettericons-class-name}-camera-selfi:before { content: "\e90f"; }
85
+ .#{$bettericons-class-name}-camera-plus:before { content: "\e910"; }
86
+ .#{$bettericons-class-name}-analytics-bars:before { content: "\e911"; }
87
+ .#{$bettericons-class-name}-analytics-bars2:before { content: "\e912"; }
88
+ .#{$bettericons-class-name}-analytics-pie:before { content: "\e913"; }
89
+ .#{$bettericons-class-name}-analytics:before { content: "\e914"; }
90
+ .#{$bettericons-class-name}-app-icon-badge:before { content: "\e915"; }
91
+ .#{$bettericons-class-name}-arrow1-up:before { content: "\e916"; }
92
+ .#{$bettericons-class-name}-arrow1-down:before { content: "\e917"; }
93
+ .#{$bettericons-class-name}-arrow1-right:before { content: "\e918"; }
94
+ .#{$bettericons-class-name}-arrow1-left:before { content: "\e919"; }
95
+ .#{$bettericons-class-name}-arrow1-up-right:before { content: "\e91a"; }
96
+ .#{$bettericons-class-name}-arrow1-down-right:before { content: "\e91b"; }
97
+ .#{$bettericons-class-name}-arrow1-down-left:before { content: "\e91c"; }
98
+ .#{$bettericons-class-name}-arrow1-up-left:before { content: "\e91d"; }
99
+ .#{$bettericons-class-name}-arrow2-up:before { content: "\e91e"; }
100
+ .#{$bettericons-class-name}-arrow2-down:before { content: "\e91f"; }
101
+ .#{$bettericons-class-name}-arrow2-right:before { content: "\e920"; }
102
+ .#{$bettericons-class-name}-arrow2-left:before { content: "\e921"; }
103
+ .#{$bettericons-class-name}-arrow2-up-right:before { content: "\e922"; }
104
+ .#{$bettericons-class-name}-arrow2-down-right:before { content: "\e923"; }
105
+ .#{$bettericons-class-name}-arrow2-down-left:before { content: "\e924"; }
106
+ .#{$bettericons-class-name}-arrow2-up-left:before { content: "\e925"; }
107
+ .#{$bettericons-class-name}-arrow3-up:before { content: "\e926"; }
108
+ .#{$bettericons-class-name}-arrow3-down:before { content: "\e927"; }
109
+ .#{$bettericons-class-name}-arrow3-right:before { content: "\e928"; }
110
+ .#{$bettericons-class-name}-arrow3-left:before { content: "\e929"; }
111
+ .#{$bettericons-class-name}-plus:before { content: "\e92a"; }
112
+ .#{$bettericons-class-name}-minus:before { content: "\e92b"; }
113
+ .#{$bettericons-class-name}-close:before { content: "\e92c"; }
114
+ .#{$bettericons-class-name}-checked:before { content: "\e92d"; }
115
+ .#{$bettericons-class-name}-information:before { content: "\e92e"; }
116
+ .#{$bettericons-class-name}-exclamation:before { content: "\e92f"; }
117
+ .#{$bettericons-class-name}-question:before { content: "\e930"; }
118
+ .#{$bettericons-class-name}-arrow1-up-half:before { content: "\e931"; }
119
+ .#{$bettericons-class-name}-arrow1-down-half:before { content: "\e932"; }
120
+ .#{$bettericons-class-name}-arrow1-right-half:before { content: "\e933"; }
121
+ .#{$bettericons-class-name}-arrow1-left-half:before { content: "\e934"; }
122
+ .#{$bettericons-class-name}-arrow1-up-right-half:before { content: "\e935"; }
123
+ .#{$bettericons-class-name}-arrow1-down-right-half:before { content: "\e936"; }
124
+ .#{$bettericons-class-name}-arrow1-down-left-half:before { content: "\e937"; }
125
+ .#{$bettericons-class-name}-arrow1-up-left-half:before { content: "\e938"; }
126
+ .#{$bettericons-class-name}-arrow2-up-half:before { content: "\e939"; }
127
+ .#{$bettericons-class-name}-arrow2-down-half:before { content: "\e93a"; }
128
+ .#{$bettericons-class-name}-arrow2-right-half:before { content: "\e93b"; }
129
+ .#{$bettericons-class-name}-arrow2-left-half:before { content: "\e93c"; }
130
+ .#{$bettericons-class-name}-arrow2-up-right-half:before { content: "\e93d"; }
131
+ .#{$bettericons-class-name}-arrow2-down-right-half:before { content: "\e93e"; }
132
+ .#{$bettericons-class-name}-arrow2-down-left-half:before { content: "\e93f"; }
133
+ .#{$bettericons-class-name}-arrow2-up-left-half:before { content: "\e940"; }
134
+ .#{$bettericons-class-name}-arrow3-up-half:before { content: "\e941"; }
135
+ .#{$bettericons-class-name}-arrow3-down-half:before { content: "\e942"; }
136
+ .#{$bettericons-class-name}-arrow3-right-half:before { content: "\e943"; }
137
+ .#{$bettericons-class-name}-arrow3-left-half:before { content: "\e944"; }
138
+ .#{$bettericons-class-name}-plus-half:before { content: "\e945"; }
139
+ .#{$bettericons-class-name}-minus-half:before { content: "\e946"; }
140
+ .#{$bettericons-class-name}-checked-half:before { content: "\e947"; }
141
+ .#{$bettericons-class-name}-close-half:before { content: "\e948"; }
142
+ .#{$bettericons-class-name}-information-half:before { content: "\e949"; }
143
+ .#{$bettericons-class-name}-exclamation-half:before { content: "\e94a"; }
144
+ .#{$bettericons-class-name}-question-half:before { content: "\e94b"; }
145
+ .#{$bettericons-class-name}-arrow1-up-circle:before { content: "\e94c"; }
146
+ .#{$bettericons-class-name}-arrow1-down-circle:before { content: "\e94d"; }
147
+ .#{$bettericons-class-name}-arrow1-right-circle:before { content: "\e94e"; }
148
+ .#{$bettericons-class-name}-arrow1-left-circle:before { content: "\e94f"; }
149
+ .#{$bettericons-class-name}-arrow1-up-right-circle:before { content: "\e950"; }
150
+ .#{$bettericons-class-name}-arrow1-down-right-circle:before { content: "\e951"; }
151
+ .#{$bettericons-class-name}-arrow1-down-left-circle:before { content: "\e952"; }
152
+ .#{$bettericons-class-name}-arrow1-up-left-circle:before { content: "\e953"; }
153
+ .#{$bettericons-class-name}-arrow2-up-circle:before { content: "\e954"; }
154
+ .#{$bettericons-class-name}-arrow2-down-circle:before { content: "\e955"; }
155
+ .#{$bettericons-class-name}-arrow2-right-circle:before { content: "\e956"; }
156
+ .#{$bettericons-class-name}-arrow2-left-circle:before { content: "\e957"; }
157
+ .#{$bettericons-class-name}-arrow2-up-right-circle:before { content: "\e958"; }
158
+ .#{$bettericons-class-name}-arrow2-down-right-circle:before { content: "\e959"; }
159
+ .#{$bettericons-class-name}-arrow2-down-left-circle:before { content: "\e95a"; }
160
+ .#{$bettericons-class-name}-arrow2-up-left-circle:before { content: "\e95b"; }
161
+ .#{$bettericons-class-name}-arrow3-up-circle:before { content: "\e95c"; }
162
+ .#{$bettericons-class-name}-arrow3-down-circle:before { content: "\e95d"; }
163
+ .#{$bettericons-class-name}-arrow3-right-circle:before { content: "\e95e"; }
164
+ .#{$bettericons-class-name}-arrow3-left-circle:before { content: "\e95f"; }
165
+ .#{$bettericons-class-name}-plus-circle:before { content: "\e960"; }
166
+ .#{$bettericons-class-name}-minus-circle:before { content: "\e961"; }
167
+ .#{$bettericons-class-name}-close-circle:before { content: "\e962"; }
168
+ .#{$bettericons-class-name}-checked-circle:before { content: "\e963"; }
169
+ .#{$bettericons-class-name}-information-circle:before { content: "\e964"; }
170
+ .#{$bettericons-class-name}-exclamation-circle:before { content: "\e965"; }
171
+ .#{$bettericons-class-name}-question-circle:before { content: "\e966"; }
172
+ .#{$bettericons-class-name}-calender:before { content: "\e967"; }
173
+ .#{$bettericons-class-name}-calender-day:before { content: "\e968"; }
174
+ .#{$bettericons-class-name}-calender-week:before { content: "\e969"; }
175
+ .#{$bettericons-class-name}-calender-month:before { content: "\e96a"; }
176
+ .#{$bettericons-class-name}-calender-list:before { content: "\e96b"; }
177
+ .#{$bettericons-class-name}-calender-month-checked:before { content: "\e96c"; }
178
+ .#{$bettericons-class-name}-calender-checked:before { content: "\e96d"; }
179
+ .#{$bettericons-class-name}-at-circle:before { content: "\e96e"; }
180
+ .#{$bettericons-class-name}-at:before { content: "\e96f"; }
181
+ .#{$bettericons-class-name}-battery:before { content: "\e970"; }
182
+ .#{$bettericons-class-name}-battery-low:before { content: "\e971"; }
183
+ .#{$bettericons-class-name}-battery-half:before { content: "\e972"; }
184
+ .#{$bettericons-class-name}-battery-full:before { content: "\e973"; }
185
+ .#{$bettericons-class-name}-book:before { content: "\e974"; }
186
+ .#{$bettericons-class-name}-book2-bookmark:before { content: "\e975"; }
187
+ .#{$bettericons-class-name}-book2:before { content: "\e976"; }
188
+ .#{$bettericons-class-name}-book3-bookmark:before { content: "\e977"; }
189
+ .#{$bettericons-class-name}-book3:before { content: "\e978"; }
190
+ .#{$bettericons-class-name}-calculator:before { content: "\e979"; }
191
+ .#{$bettericons-class-name}-calculator2:before { content: "\e97a"; }
192
+ .#{$bettericons-class-name}-calculator3:before { content: "\e97b"; }
193
+ .#{$bettericons-class-name}-phone:before { content: "\e97c"; }
194
+ .#{$bettericons-class-name}-call-end:before { content: "\e97d"; }
195
+ .#{$bettericons-class-name}-call-answer:before { content: "\e97e"; }
196
+ .#{$bettericons-class-name}-phone2:before { content: "\e97f"; }
197
+ .#{$bettericons-class-name}-call-end-circle:before { content: "\e980"; }
198
+ .#{$bettericons-class-name}-call-answer-circle:before { content: "\e981"; }
199
+ .#{$bettericons-class-name}-catalog2:before { content: "\e982"; }
200
+ .#{$bettericons-class-name}-catalog:before { content: "\e983"; }
201
+ .#{$bettericons-class-name}-change:before { content: "\e984"; }
202
+ .#{$bettericons-class-name}-change2:before { content: "\e985"; }
203
+ .#{$bettericons-class-name}-change3:before { content: "\e986"; }
204
+ .#{$bettericons-class-name}-cloud-checked:before { content: "\e987"; }
205
+ .#{$bettericons-class-name}-cloud-lock:before { content: "\e988"; }
206
+ .#{$bettericons-class-name}-cloud-sync:before { content: "\e989"; }
207
+ .#{$bettericons-class-name}-cloud:before { content: "\e98a"; }
208
+ .#{$bettericons-class-name}-house:before { content: "\e98b"; }
209
+ .#{$bettericons-class-name}-company-office:before { content: "\e98c"; }
210
+ .#{$bettericons-class-name}-company-producer:before { content: "\e98d"; }
211
+ .#{$bettericons-class-name}-company-shop:before { content: "\e98e"; }
212
+ .#{$bettericons-class-name}-envelope2:before { content: "\e98f"; }
213
+ .#{$bettericons-class-name}-envelope-open:before { content: "\e990"; }
214
+ .#{$bettericons-class-name}-envelope:before { content: "\e991"; }
215
+ .#{$bettericons-class-name}-email-send:before { content: "\e992"; }
216
+ .#{$bettericons-class-name}-euro:before { content: "\e993"; }
217
+ .#{$bettericons-class-name}-exit-in:before { content: "\e994"; }
218
+ .#{$bettericons-class-name}-exit-out:before { content: "\e995"; }
219
+ .#{$bettericons-class-name}-exit:before { content: "\e996"; }
220
+ .#{$bettericons-class-name}-exit2:before { content: "\e997"; }
221
+ .#{$bettericons-class-name}-figure-run-left:before { content: "\e998"; }
222
+ .#{$bettericons-class-name}-figure-run-right:before { content: "\e999"; }
223
+ .#{$bettericons-class-name}-file-ai:before { content: "\e99a"; }
224
+ .#{$bettericons-class-name}-file-cdr:before { content: "\e99b"; }
225
+ .#{$bettericons-class-name}-file-eps:before { content: "\e99c"; }
226
+ .#{$bettericons-class-name}-file-image:before { content: "\e99d"; }
227
+ .#{$bettericons-class-name}-file-jpg:before { content: "\e99e"; }
228
+ .#{$bettericons-class-name}-file-pdf:before { content: "\e99f"; }
229
+ .#{$bettericons-class-name}-file-psd:before { content: "\e9a0"; }
230
+ .#{$bettericons-class-name}-file-svg:before { content: "\e9a1"; }
231
+ .#{$bettericons-class-name}-folder:before { content: "\e9a2"; }
232
+ .#{$bettericons-class-name}-flag:before { content: "\e9a3"; }
233
+ .#{$bettericons-class-name}-label:before { content: "\e9a4"; }
234
+ .#{$bettericons-class-name}-gift:before { content: "\e9a5"; }
235
+ .#{$bettericons-class-name}-earth:before { content: "\e9a6"; }
236
+ .#{$bettericons-class-name}-globe:before { content: "\e9a7"; }
237
+ .#{$bettericons-class-name}-globe2:before { content: "\e9a8"; }
238
+ .#{$bettericons-class-name}-hand-inside-down:before { content: "\e9a9"; }
239
+ .#{$bettericons-class-name}-hand-inside-fuck:before { content: "\e9aa"; }
240
+ .#{$bettericons-class-name}-hand-inside-fuck2:before { content: "\e9ab"; }
241
+ .#{$bettericons-class-name}-hand-inside-left:before { content: "\e9ac"; }
242
+ .#{$bettericons-class-name}-hand-inside-right:before { content: "\e9ad"; }
243
+ .#{$bettericons-class-name}-hand-inside-rock:before { content: "\e9ae"; }
244
+ .#{$bettericons-class-name}-hand-inside-rock2:before { content: "\e9af"; }
245
+ .#{$bettericons-class-name}-hand-inside-up:before { content: "\e9b0"; }
246
+ .#{$bettericons-class-name}-hand-ouside-fuck:before { content: "\e9b1"; }
247
+ .#{$bettericons-class-name}-hand-ouside-fuck2:before { content: "\e9b2"; }
248
+ .#{$bettericons-class-name}-hearth:before { content: "\e9b3"; }
249
+ .#{$bettericons-class-name}-identification:before { content: "\e9b4"; }
250
+ .#{$bettericons-class-name}-layers:before { content: "\e9b5"; }
251
+ .#{$bettericons-class-name}-link-in:before { content: "\e9b6"; }
252
+ .#{$bettericons-class-name}-link-out:before { content: "\e9b7"; }
253
+ .#{$bettericons-class-name}-location:before { content: "\e9b8"; }
254
+ .#{$bettericons-class-name}-location-off:before { content: "\e9b9"; }
255
+ .#{$bettericons-class-name}-map:before { content: "\e9ba"; }
256
+ .#{$bettericons-class-name}-lock:before { content: "\e9bb"; }
257
+ .#{$bettericons-class-name}-lock-open:before { content: "\e9bc"; }
258
+ .#{$bettericons-class-name}-lock-open2:before { content: "\e9bd"; }
259
+ .#{$bettericons-class-name}-log-out:before { content: "\e9be"; }
260
+ .#{$bettericons-class-name}-log-out2:before { content: "\e9bf"; }
261
+ .#{$bettericons-class-name}-loop:before { content: "\e9c0"; }
262
+ .#{$bettericons-class-name}-loop2:before { content: "\e9c1"; }
263
+ .#{$bettericons-class-name}-loop3:before { content: "\e9c2"; }
264
+ .#{$bettericons-class-name}-message:before { content: "\e9c3"; }
265
+ .#{$bettericons-class-name}-messages:before { content: "\e9c4"; }
266
+ .#{$bettericons-class-name}-message-photo:before { content: "\e9c5"; }
267
+ .#{$bettericons-class-name}-message-checked:before { content: "\e9c6"; }
268
+ .#{$bettericons-class-name}-comment:before { content: "\e9c7"; }
269
+ .#{$bettericons-class-name}-comments:before { content: "\e9c8"; }
270
+ .#{$bettericons-class-name}-money-euro:before { content: "\e9c9"; }
271
+ .#{$bettericons-class-name}-money-dollar:before { content: "\e9ca"; }
272
+ .#{$bettericons-class-name}-more-horizontal-small:before { content: "\e9cb"; }
273
+ .#{$bettericons-class-name}-more-vertical-small:before { content: "\e9cc"; }
274
+ .#{$bettericons-class-name}-more-horizontal-large:before { content: "\e9cd"; }
275
+ .#{$bettericons-class-name}-more-vertical-large:before { content: "\e9ce"; }
276
+ .#{$bettericons-class-name}-on-off:before { content: "\e9cf"; }
277
+ .#{$bettericons-class-name}-paper:before { content: "\e9d0"; }
278
+ .#{$bettericons-class-name}-papers:before { content: "\e9d1"; }
279
+ .#{$bettericons-class-name}-paper-checked:before { content: "\e9d2"; }
280
+ .#{$bettericons-class-name}-paper-text:before { content: "\e9d3"; }
281
+ .#{$bettericons-class-name}-paper-men:before { content: "\e9d4"; }
282
+ .#{$bettericons-class-name}-paper-men2:before { content: "\e9d5"; }
283
+ .#{$bettericons-class-name}-paper-question:before { content: "\e9d6"; }
284
+ .#{$bettericons-class-name}-paper-star:before { content: "\e9d7"; }
285
+ .#{$bettericons-class-name}-paper-sync:before { content: "\e9d8"; }
286
+ .#{$bettericons-class-name}-paper-euro:before { content: "\e9d9"; }
287
+ .#{$bettericons-class-name}-paperclip:before { content: "\e9da"; }
288
+ .#{$bettericons-class-name}-paperclip2:before { content: "\e9db"; }
289
+ .#{$bettericons-class-name}-paperplane:before { content: "\e9dc"; }
290
+ .#{$bettericons-class-name}-paperplane2:before { content: "\e9dd"; }
291
+ .#{$bettericons-class-name}-pencil:before { content: "\e9de"; }
292
+ .#{$bettericons-class-name}-pencil-star:before { content: "\e9df"; }
293
+ .#{$bettericons-class-name}-pencil-magic:before { content: "\e9e0"; }
294
+ .#{$bettericons-class-name}-pencil-plus:before { content: "\e9e1"; }
295
+ .#{$bettericons-class-name}-pin:before { content: "\e9e2"; }
296
+ .#{$bettericons-class-name}-pin2:before { content: "\e9e3"; }
297
+ .#{$bettericons-class-name}-picture:before { content: "\e9e4"; }
298
+ .#{$bettericons-class-name}-picture-plus:before { content: "\e9e5"; }
299
+ .#{$bettericons-class-name}-flash-on:before { content: "\e9e6"; }
300
+ .#{$bettericons-class-name}-flash-off:before { content: "\e9e7"; }
301
+ .#{$bettericons-class-name}-printer:before { content: "\e9e8"; }
302
+ .#{$bettericons-class-name}-laptop:before { content: "\e9e9"; }
303
+ .#{$bettericons-class-name}-printer2:before { content: "\e9ea"; }
304
+ .#{$bettericons-class-name}-smartphone:before { content: "\e9eb"; }
305
+ .#{$bettericons-class-name}-mouse:before { content: "\e9ec"; }
306
+ .#{$bettericons-class-name}-product-highlights:before { content: "\e9ed"; }
307
+ .#{$bettericons-class-name}-product-page:before { content: "\e9ee"; }
308
+ .#{$bettericons-class-name}-product-page2:before { content: "\e9ef"; }
309
+ .#{$bettericons-class-name}-product-pages:before { content: "\e9f0"; }
310
+ .#{$bettericons-class-name}-product:before { content: "\e9f1"; }
311
+ .#{$bettericons-class-name}-product2:before { content: "\e9f2"; }
312
+ .#{$bettericons-class-name}-user:before { content: "\e9f3"; }
313
+ .#{$bettericons-class-name}-user-plus:before { content: "\e9f4"; }
314
+ .#{$bettericons-class-name}-user-minus:before { content: "\e9f5"; }
315
+ .#{$bettericons-class-name}-user-arrow:before { content: "\e9f6"; }
316
+ .#{$bettericons-class-name}-user-king:before { content: "\e9f7"; }
317
+ .#{$bettericons-class-name}-user-basecap:before { content: "\e9f8"; }
318
+ .#{$bettericons-class-name}-user-student:before { content: "\e9f9"; }
319
+ .#{$bettericons-class-name}-user-team:before { content: "\e9fa"; }
320
+ .#{$bettericons-class-name}-user-group:before { content: "\e9fb"; }
321
+ .#{$bettericons-class-name}-user-chef:before { content: "\e9fc"; }
322
+ .#{$bettericons-class-name}-product3:before { content: "\e9fd"; }
323
+ .#{$bettericons-class-name}-product4:before { content: "\e9fe"; }
324
+ .#{$bettericons-class-name}-resize-full:before { content: "\e9ff"; }
325
+ .#{$bettericons-class-name}-resize-small:before { content: "\ea00"; }
326
+ .#{$bettericons-class-name}-resize-full2:before { content: "\ea01"; }
327
+ .#{$bettericons-class-name}-resize-small2:before { content: "\ea02"; }
328
+ .#{$bettericons-class-name}-search:before { content: "\ea03"; }
329
+ .#{$bettericons-class-name}-zoom-in:before { content: "\ea04"; }
330
+ .#{$bettericons-class-name}-zoom-out:before { content: "\ea05"; }
331
+ .#{$bettericons-class-name}-select-up:before { content: "\ea06"; }
332
+ .#{$bettericons-class-name}-select-down:before { content: "\ea07"; }
333
+ .#{$bettericons-class-name}-select-duo:before { content: "\ea08"; }
334
+ .#{$bettericons-class-name}-select-up-half:before { content: "\ea09"; }
335
+ .#{$bettericons-class-name}-select-down-half:before { content: "\ea0a"; }
336
+ .#{$bettericons-class-name}-select-duo-half:before { content: "\ea0b"; }
337
+ .#{$bettericons-class-name}-select-up-circle:before { content: "\ea0c"; }
338
+ .#{$bettericons-class-name}-select-down-circle:before { content: "\ea0d"; }
339
+ .#{$bettericons-class-name}-select-duo-circle:before { content: "\ea0e"; }
340
+ .#{$bettericons-class-name}-stacker-in:before { content: "\ea0f"; }
341
+ .#{$bettericons-class-name}-stacker:before { content: "\ea10"; }
342
+ .#{$bettericons-class-name}-stacker-full:before { content: "\ea11"; }
343
+ .#{$bettericons-class-name}-stacker-out:before { content: "\ea12"; }
344
+ .#{$bettericons-class-name}-settings-edit:before { content: "\ea13"; }
345
+ .#{$bettericons-class-name}-settings-edit2:before { content: "\ea14"; }
346
+ .#{$bettericons-class-name}-settings-edit3:before { content: "\ea15"; }
347
+ .#{$bettericons-class-name}-settings:before { content: "\ea16"; }
348
+ .#{$bettericons-class-name}-sex-female:before { content: "\ea17"; }
349
+ .#{$bettericons-class-name}-sex-male:before { content: "\ea18"; }
350
+ .#{$bettericons-class-name}-share:before { content: "\ea19"; }
351
+ .#{$bettericons-class-name}-share2:before { content: "\ea1a"; }
352
+ .#{$bettericons-class-name}-shield:before { content: "\ea1b"; }
353
+ .#{$bettericons-class-name}-shield-men:before { content: "\ea1c"; }
354
+ .#{$bettericons-class-name}-shield-checked:before { content: "\ea1d"; }
355
+ .#{$bettericons-class-name}-shield-star:before { content: "\ea1e"; }
356
+ .#{$bettericons-class-name}-shield-lock:before { content: "\ea1f"; }
357
+ .#{$bettericons-class-name}-star:before { content: "\ea20"; }
358
+ .#{$bettericons-class-name}-star-half:before { content: "\ea21"; }
359
+ .#{$bettericons-class-name}-star-full:before { content: "\ea22"; }
360
+ .#{$bettericons-class-name}-sync:before { content: "\ea23"; }
361
+ .#{$bettericons-class-name}-sync2:before { content: "\ea24"; }
362
+ .#{$bettericons-class-name}-text-left:before { content: "\ea25"; }
363
+ .#{$bettericons-class-name}-text-block:before { content: "\ea26"; }
364
+ .#{$bettericons-class-name}-text-right:before { content: "\ea27"; }
365
+ .#{$bettericons-class-name}-text-edit:before { content: "\ea28"; }
366
+ .#{$bettericons-class-name}-text-list-plus:before { content: "\ea29"; }
367
+ .#{$bettericons-class-name}-text-list:before { content: "\ea2a"; }
368
+ .#{$bettericons-class-name}-text-left-small:before { content: "\ea2b"; }
369
+ .#{$bettericons-class-name}-text:before { content: "\ea2c"; }
370
+ .#{$bettericons-class-name}-timer:before { content: "\ea2d"; }
371
+ .#{$bettericons-class-name}-trash:before { content: "\ea2e"; }
372
+ .#{$bettericons-class-name}-umbrella:before { content: "\ea2f"; }
373
+ .#{$bettericons-class-name}-van-delivery:before { content: "\ea30"; }
374
+ .#{$bettericons-class-name}-view-list-circle:before { content: "\ea31"; }
375
+ .#{$bettericons-class-name}-view-block-circle:before { content: "\ea32"; }
376
+ .#{$bettericons-class-name}-view-block-circle2:before { content: "\ea33"; }
377
+ .#{$bettericons-class-name}-view-list-square:before { content: "\ea34"; }
378
+ .#{$bettericons-class-name}-view-block-square:before { content: "\ea35"; }
379
+ .#{$bettericons-class-name}-wrench:before { content: "\ea36"; }
380
+ .#{$bettericons-class-name}-wrench2:before { content: "\ea37"; }
381
+ .#{$bettericons-class-name}-social-facebook-circle-half:before { content: "\ea38"; }
382
+ .#{$bettericons-class-name}-social-google-circle-half:before { content: "\ea39"; }
383
+ .#{$bettericons-class-name}-social-google2-circle-half:before { content: "\ea3a"; }
384
+ .#{$bettericons-class-name}-social-instagram-circle-half:before { content: "\ea3b"; }
385
+ .#{$bettericons-class-name}-social-github-circle-half:before { content: "\ea3c"; }
386
+ .#{$bettericons-class-name}-social-linkedin-circle-half:before { content: "\ea3d"; }
387
+ .#{$bettericons-class-name}-social-xing-circle-half:before { content: "\ea3e"; }
388
+ .#{$bettericons-class-name}-social-mail-circle-half:before { content: "\ea3f"; }
389
+ .#{$bettericons-class-name}-social-paypal-circle-half:before { content: "\ea40"; }
390
+ .#{$bettericons-class-name}-social-pinterest-circle-half:before { content: "\ea41"; }
391
+ .#{$bettericons-class-name}-social-pocket-circle-half:before { content: "\ea42"; }
392
+ .#{$bettericons-class-name}-social-spotify-circle-half:before { content: "\ea43"; }
393
+ .#{$bettericons-class-name}-social-tumblr-circle-half:before { content: "\ea44"; }
394
+ .#{$bettericons-class-name}-social-twitter-circle-half:before { content: "\ea45"; }
395
+ .#{$bettericons-class-name}-social-youtube-circle-half:before { content: "\ea46"; }
396
+ .#{$bettericons-class-name}-social-facebook-circle:before { content: "\ea47"; }
397
+ .#{$bettericons-class-name}-social-google-circle:before { content: "\ea48"; }
398
+ .#{$bettericons-class-name}-social-google2-circle:before { content: "\ea49"; }
399
+ .#{$bettericons-class-name}-social-instagram-circle:before { content: "\ea4a"; }
400
+ .#{$bettericons-class-name}-social-github-circle:before { content: "\ea4b"; }
401
+ .#{$bettericons-class-name}-social-linkedin-circle:before { content: "\ea4c"; }
402
+ .#{$bettericons-class-name}-social-xing-circle:before { content: "\ea4d"; }
403
+ .#{$bettericons-class-name}-social-mail-circle:before { content: "\ea4e"; }
404
+ .#{$bettericons-class-name}-social-paypal-circle:before { content: "\ea4f"; }
405
+ .#{$bettericons-class-name}-social-pinterest-circle:before { content: "\ea50"; }
406
+ .#{$bettericons-class-name}-social-pocket-circle:before { content: "\ea51"; }
407
+ .#{$bettericons-class-name}-social-spotify-circle:before { content: "\ea52"; }
408
+ .#{$bettericons-class-name}-social-tumblr-circle:before { content: "\ea53"; }
409
+ .#{$bettericons-class-name}-social-twitter-circle:before { content: "\ea54"; }
410
+ .#{$bettericons-class-name}-social-youtube-circle:before { content: "\ea55"; }
411
+
412
+