font-awesome-sass 3.2.1.4 → 4.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,13 @@
1
+ // Icon Sizes
2
+ // -------------------------
3
+
4
+ /* makes the font 33% larger relative to the icon container */
5
+ .#{$fa-css-prefix}-lg {
6
+ font-size: (4em / 3);
7
+ line-height: (3em / 4);
8
+ vertical-align: -15%;
9
+ }
10
+ .#{$fa-css-prefix}-2x { font-size: 2em; }
11
+ .#{$fa-css-prefix}-3x { font-size: 3em; }
12
+ .#{$fa-css-prefix}-4x { font-size: 4em; }
13
+ .#{$fa-css-prefix}-5x { font-size: 5em; }
@@ -0,0 +1,19 @@
1
+ // List Icons
2
+ // -------------------------
3
+
4
+ .#{$fa-css-prefix}-ul {
5
+ padding-left: 0;
6
+ margin-left: $fa-li-width;
7
+ list-style-type: none;
8
+ > li { position: relative; }
9
+ }
10
+ .#{$fa-css-prefix}-li {
11
+ position: absolute;
12
+ left: -$fa-li-width;
13
+ width: $fa-li-width;
14
+ top: (2em / 14);
15
+ text-align: center;
16
+ &.#{$fa-css-prefix}-lg {
17
+ left: -$fa-li-width + (4em / 14);
18
+ }
19
+ }
@@ -1,48 +1,20 @@
1
1
  // Mixins
2
2
  // --------------------------
3
3
 
4
- @mixin icon($icon) {
5
- @include icon-FontAwesome();
6
- content: $icon;
4
+ @mixin fa-icon-rotate($degrees, $rotation) {
5
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
6
+ -webkit-transform: rotate($degrees);
7
+ -moz-transform: rotate($degrees);
8
+ -ms-transform: rotate($degrees);
9
+ -o-transform: rotate($degrees);
10
+ transform: rotate($degrees);
7
11
  }
8
12
 
9
- @mixin icon-FontAwesome() {
10
- font-family: FontAwesome;
11
- font-weight: normal;
12
- font-style: normal;
13
- text-decoration: inherit;
14
- -webkit-font-smoothing: antialiased;
15
- *margin-right: .3em; // fixes ie7 issues
16
- }
17
-
18
- @mixin border-radius($radius) {
19
- -webkit-border-radius: $radius;
20
- -moz-border-radius: $radius;
21
- border-radius: $radius;
22
- }
23
-
24
- @mixin icon-stack($width: 2em, $height: 2em, $top-font-size: 1em, $base-font-size: 2em) {
25
- .icon-stack {
26
- position: relative;
27
- display: inline-block;
28
- width: $width;
29
- height: $height;
30
- line-height: $width;
31
- vertical-align: -35%;
32
- [class^="icon-"],
33
- [class*=" icon-"] {
34
- display: block;
35
- text-align: center;
36
- position: absolute;
37
- width: 100%;
38
- height: 100%;
39
- font-size: $top-font-size;
40
- line-height: inherit;
41
- *line-height: $height;
42
- }
43
- .icon-stack-base {
44
- font-size: $base-font-size;
45
- *line-height: #{$height / $base-font-size}em;
46
- }
47
- }
13
+ @mixin fa-icon-flip($horiz, $vert, $rotation) {
14
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
15
+ -webkit-transform: scale($horiz, $vert);
16
+ -moz-transform: scale($horiz, $vert);
17
+ -ms-transform: scale($horiz, $vert);
18
+ -o-transform: scale($horiz, $vert);
19
+ transform: scale($horiz, $vert);
48
20
  }
@@ -3,11 +3,11 @@
3
3
 
4
4
  @font-face {
5
5
  font-family: 'FontAwesome';
6
- src: font-url('fontawesome-webfont.eot?v=#{$FontAwesomeVersion}');
7
- src: font-url('fontawesome-webfont.eot?#iefix&v=#{$FontAwesomeVersion}') format('embedded-opentype'),
8
- font-url('fontawesome-webfont.woff?v=#{$FontAwesomeVersion}') format('woff'),
9
- font-url('fontawesome-webfont.ttf?v=#{$FontAwesomeVersion}') format('truetype'),
10
- font-url('fontawesome-webfont.svg#fontawesomeregular?v=#{$FontAwesomeVersion}') format('svg');
6
+ src: font-url('fontawesome-webfont.eot?v=#{$fa-version}');
7
+ src: font-url('fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
8
+ font-url('fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
9
+ font-url('fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
10
+ font-url('fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
11
11
  font-weight: normal;
12
12
  font-style: normal;
13
13
  }
@@ -0,0 +1,9 @@
1
+ // Rotated & Flipped Icons
2
+ // -------------------------
3
+
4
+ .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5
+ .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6
+ .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7
+
8
+ .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9
+ .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
@@ -0,0 +1,30 @@
1
+ // Spinning Icons
2
+ // --------------------------
3
+
4
+ .#{$fa-css-prefix}-spin {
5
+ -webkit-animation: spin 2s infinite linear;
6
+ -moz-animation: spin 2s infinite linear;
7
+ -o-animation: spin 2s infinite linear;
8
+ animation: spin 2s infinite linear;
9
+ }
10
+
11
+ @-moz-keyframes spin {
12
+ 0% { -moz-transform: rotate(0deg); }
13
+ 100% { -moz-transform: rotate(359deg); }
14
+ }
15
+ @-webkit-keyframes spin {
16
+ 0% { -webkit-transform: rotate(0deg); }
17
+ 100% { -webkit-transform: rotate(359deg); }
18
+ }
19
+ @-o-keyframes spin {
20
+ 0% { -o-transform: rotate(0deg); }
21
+ 100% { -o-transform: rotate(359deg); }
22
+ }
23
+ @-ms-keyframes spin {
24
+ 0% { -ms-transform: rotate(0deg); }
25
+ 100% { -ms-transform: rotate(359deg); }
26
+ }
27
+ @keyframes spin {
28
+ 0% { transform: rotate(0deg); }
29
+ 100% { transform: rotate(359deg); }
30
+ }
@@ -0,0 +1,20 @@
1
+ // Stacked Icons
2
+ // -------------------------
3
+
4
+ .#{$fa-css-prefix}-stack {
5
+ position: relative;
6
+ display: inline-block;
7
+ width: 2em;
8
+ height: 2em;
9
+ line-height: 2em;
10
+ vertical-align: middle;
11
+ }
12
+ .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13
+ position: absolute;
14
+ left: 0;
15
+ width: 100%;
16
+ text-align: center;
17
+ }
18
+ .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19
+ .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20
+ .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
@@ -1,733 +1,380 @@
1
1
  // Variables
2
2
  // --------------------------
3
3
 
4
- $FontAwesomeVersion: "3.2.1" !default;
5
- $borderColor: #eeeeee !default;
6
- $iconMuted: #eeeeee !default;
7
- $iconLight: white !default;
8
- $iconDark: #333333 !default;
9
- $icons-li-width: (30em/14);
10
-
11
-
12
- $glass: "\f000";
13
-
14
- $music: "\f001";
15
-
16
- $search: "\f002";
17
-
18
- $envelope-alt: "\f003";
19
-
20
- $heart: "\f004";
21
-
22
- $star: "\f005";
23
-
24
- $star-empty: "\f006";
25
-
26
- $user: "\f007";
27
-
28
- $film: "\f008";
29
-
30
- $th-large: "\f009";
31
-
32
- $th: "\f00a";
33
-
34
- $th-list: "\f00b";
35
-
36
- $ok: "\f00c";
37
-
38
- $remove: "\f00d";
39
-
40
- $zoom-in: "\f00e";
41
-
42
- $zoom-out: "\f010";
43
-
44
- $off: "\f011";
45
-
46
- $signal: "\f012";
47
-
48
- $cog: "\f013";
49
-
50
- $trash: "\f014";
51
-
52
- $home: "\f015";
53
-
54
- $file-alt: "\f016";
55
-
56
- $time: "\f017";
57
-
58
- $road: "\f018";
59
-
60
- $download-alt: "\f019";
61
-
62
- $download: "\f01a";
63
-
64
- $upload: "\f01b";
65
-
66
- $inbox: "\f01c";
67
-
68
- $play-circle: "\f01d";
69
-
70
- $repeat: "\f01e";
71
-
72
- $refresh: "\f021";
73
-
74
- $list-alt: "\f022";
75
-
76
- $lock: "\f023";
77
-
78
- $flag: "\f024";
79
-
80
- $headphones: "\f025";
81
-
82
- $volume-off: "\f026";
83
-
84
- $volume-down: "\f027";
85
-
86
- $volume-up: "\f028";
87
-
88
- $qrcode: "\f029";
89
-
90
- $barcode: "\f02a";
91
-
92
- $tag: "\f02b";
93
-
94
- $tags: "\f02c";
95
-
96
- $book: "\f02d";
97
-
98
- $bookmark: "\f02e";
99
-
100
- $print: "\f02f";
101
-
102
- $camera: "\f030";
103
-
104
- $font: "\f031";
105
-
106
- $bold: "\f032";
107
-
108
- $italic: "\f033";
109
-
110
- $text-height: "\f034";
111
-
112
- $text-width: "\f035";
113
-
114
- $align-left: "\f036";
115
-
116
- $align-center: "\f037";
117
-
118
- $align-right: "\f038";
119
-
120
- $align-justify: "\f039";
121
-
122
- $list: "\f03a";
123
-
124
- $indent-left: "\f03b";
125
-
126
- $indent-right: "\f03c";
127
-
128
- $facetime-video: "\f03d";
129
-
130
- $picture: "\f03e";
131
-
132
- $pencil: "\f040";
133
-
134
- $map-marker: "\f041";
135
-
136
- $adjust: "\f042";
137
-
138
- $tint: "\f043";
139
-
140
- $edit: "\f044";
141
-
142
- $share: "\f045";
143
-
144
- $check: "\f046";
145
-
146
- $move: "\f047";
147
-
148
- $step-backward: "\f048";
149
-
150
- $fast-backward: "\f049";
151
-
152
- $backward: "\f04a";
153
-
154
- $play: "\f04b";
155
-
156
- $pause: "\f04c";
157
-
158
- $stop: "\f04d";
159
-
160
- $forward: "\f04e";
161
-
162
- $fast-forward: "\f050";
163
-
164
- $step-forward: "\f051";
165
-
166
- $eject: "\f052";
167
-
168
- $chevron-left: "\f053";
169
-
170
- $chevron-right: "\f054";
171
-
172
- $plus-sign: "\f055";
173
-
174
- $minus-sign: "\f056";
175
-
176
- $remove-sign: "\f057";
177
-
178
- $ok-sign: "\f058";
179
-
180
- $question-sign: "\f059";
181
-
182
- $info-sign: "\f05a";
183
-
184
- $screenshot: "\f05b";
185
-
186
- $remove-circle: "\f05c";
187
-
188
- $ok-circle: "\f05d";
189
-
190
- $ban-circle: "\f05e";
191
-
192
- $arrow-left: "\f060";
193
-
194
- $arrow-right: "\f061";
195
-
196
- $arrow-up: "\f062";
197
-
198
- $arrow-down: "\f063";
199
-
200
- $share-alt: "\f064";
201
-
202
- $resize-full: "\f065";
203
-
204
- $resize-small: "\f066";
205
-
206
- $plus: "\f067";
207
-
208
- $minus: "\f068";
209
-
210
- $asterisk: "\f069";
211
-
212
- $exclamation-sign: "\f06a";
213
-
214
- $gift: "\f06b";
215
-
216
- $leaf: "\f06c";
217
-
218
- $fire: "\f06d";
219
-
220
- $eye-open: "\f06e";
221
-
222
- $eye-close: "\f070";
223
-
224
- $warning-sign: "\f071";
225
-
226
- $plane: "\f072";
227
-
228
- $calendar: "\f073";
229
-
230
- $random: "\f074";
231
-
232
- $comment: "\f075";
233
-
234
- $magnet: "\f076";
235
-
236
- $chevron-up: "\f077";
237
-
238
- $chevron-down: "\f078";
239
-
240
- $retweet: "\f079";
241
-
242
- $shopping-cart: "\f07a";
243
-
244
- $folder-close: "\f07b";
245
-
246
- $folder-open: "\f07c";
247
-
248
- $resize-vertical: "\f07d";
249
-
250
- $resize-horizontal: "\f07e";
251
-
252
- $bar-chart: "\f080";
253
-
254
- $twitter-sign: "\f081";
255
-
256
- $facebook-sign: "\f082";
257
-
258
- $camera-retro: "\f083";
259
-
260
- $key: "\f084";
261
-
262
- $cogs: "\f085";
263
-
264
- $comments: "\f086";
265
-
266
- $thumbs-up-alt: "\f087";
267
-
268
- $thumbs-down-alt: "\f088";
269
-
270
- $star-half: "\f089";
271
-
272
- $heart-empty: "\f08a";
273
-
274
- $signout: "\f08b";
275
-
276
- $linkedin-sign: "\f08c";
277
-
278
- $pushpin: "\f08d";
279
-
280
- $external-link: "\f08e";
281
-
282
- $signin: "\f090";
283
-
284
- $trophy: "\f091";
285
-
286
- $github-sign: "\f092";
287
-
288
- $upload-alt: "\f093";
289
-
290
- $lemon: "\f094";
291
-
292
- $phone: "\f095";
293
-
294
- $check-empty: "\f096";
295
-
296
- $bookmark-empty: "\f097";
297
-
298
- $phone-sign: "\f098";
299
-
300
- $twitter: "\f099";
301
-
302
- $facebook: "\f09a";
303
-
304
- $github: "\f09b";
305
-
306
- $unlock: "\f09c";
307
-
308
- $credit-card: "\f09d";
309
-
310
- $rss: "\f09e";
311
-
312
- $hdd: "\f0a0";
313
-
314
- $bullhorn: "\f0a1";
315
-
316
- $bell: "\f0a2";
317
-
318
- $certificate: "\f0a3";
319
-
320
- $hand-right: "\f0a4";
321
-
322
- $hand-left: "\f0a5";
323
-
324
- $hand-up: "\f0a6";
325
-
326
- $hand-down: "\f0a7";
327
-
328
- $circle-arrow-left: "\f0a8";
329
-
330
- $circle-arrow-right: "\f0a9";
331
-
332
- $circle-arrow-up: "\f0aa";
333
-
334
- $circle-arrow-down: "\f0ab";
335
-
336
- $globe: "\f0ac";
337
-
338
- $wrench: "\f0ad";
339
-
340
- $tasks: "\f0ae";
341
-
342
- $filter: "\f0b0";
343
-
344
- $briefcase: "\f0b1";
345
-
346
- $fullscreen: "\f0b2";
347
-
348
- $group: "\f0c0";
349
-
350
- $link: "\f0c1";
351
-
352
- $cloud: "\f0c2";
353
-
354
- $beaker: "\f0c3";
355
-
356
- $cut: "\f0c4";
357
-
358
- $copy: "\f0c5";
359
-
360
- $paper-clip: "\f0c6";
361
-
362
- $save: "\f0c7";
363
-
364
- $sign-blank: "\f0c8";
365
-
366
- $reorder: "\f0c9";
367
-
368
- $list-ul: "\f0ca";
369
-
370
- $list-ol: "\f0cb";
371
-
372
- $strikethrough: "\f0cc";
373
-
374
- $underline: "\f0cd";
375
-
376
- $table: "\f0ce";
377
-
378
- $magic: "\f0d0";
379
-
380
- $truck: "\f0d1";
381
-
382
- $pinterest: "\f0d2";
383
-
384
- $pinterest-sign: "\f0d3";
385
-
386
- $google-plus-sign: "\f0d4";
387
-
388
- $google-plus: "\f0d5";
389
-
390
- $money: "\f0d6";
391
-
392
- $caret-down: "\f0d7";
393
-
394
- $caret-up: "\f0d8";
395
-
396
- $caret-left: "\f0d9";
397
-
398
- $caret-right: "\f0da";
399
-
400
- $columns: "\f0db";
401
-
402
- $sort: "\f0dc";
403
-
404
- $sort-down: "\f0dd";
405
-
406
- $sort-up: "\f0de";
407
-
408
- $envelope: "\f0e0";
409
-
410
- $linkedin: "\f0e1";
411
-
412
- $undo: "\f0e2";
413
-
414
- $legal: "\f0e3";
415
-
416
- $dashboard: "\f0e4";
417
-
418
- $comment-alt: "\f0e5";
419
-
420
- $comments-alt: "\f0e6";
421
-
422
- $bolt: "\f0e7";
423
-
424
- $sitemap: "\f0e8";
425
-
426
- $umbrella: "\f0e9";
427
-
428
- $paste: "\f0ea";
429
-
430
- $lightbulb: "\f0eb";
431
-
432
- $exchange: "\f0ec";
433
-
434
- $cloud-download: "\f0ed";
435
-
436
- $cloud-upload: "\f0ee";
437
-
438
- $user-md: "\f0f0";
439
-
440
- $stethoscope: "\f0f1";
441
-
442
- $suitcase: "\f0f2";
443
-
444
- $bell-alt: "\f0f3";
445
-
446
- $coffee: "\f0f4";
447
-
448
- $food: "\f0f5";
449
-
450
- $file-text-alt: "\f0f6";
451
-
452
- $building: "\f0f7";
453
-
454
- $hospital: "\f0f8";
455
-
456
- $ambulance: "\f0f9";
457
-
458
- $medkit: "\f0fa";
459
-
460
- $fighter-jet: "\f0fb";
461
-
462
- $beer: "\f0fc";
463
-
464
- $h-sign: "\f0fd";
465
-
466
- $plus-sign-alt: "\f0fe";
467
-
468
- $double-angle-left: "\f100";
469
-
470
- $double-angle-right: "\f101";
471
-
472
- $double-angle-up: "\f102";
473
-
474
- $double-angle-down: "\f103";
475
-
476
- $angle-left: "\f104";
477
-
478
- $angle-right: "\f105";
479
-
480
- $angle-up: "\f106";
481
-
482
- $angle-down: "\f107";
483
-
484
- $desktop: "\f108";
485
-
486
- $laptop: "\f109";
487
-
488
- $tablet: "\f10a";
489
-
490
- $mobile-phone: "\f10b";
491
-
492
- $circle-blank: "\f10c";
493
-
494
- $quote-left: "\f10d";
495
-
496
- $quote-right: "\f10e";
497
-
498
- $spinner: "\f110";
499
-
500
- $circle: "\f111";
501
-
502
- $reply: "\f112";
503
-
504
- $github-alt: "\f113";
505
-
506
- $folder-close-alt: "\f114";
507
-
508
- $folder-open-alt: "\f115";
509
-
510
- $expand-alt: "\f116";
511
-
512
- $collapse-alt: "\f117";
513
-
514
- $smile: "\f118";
515
-
516
- $frown: "\f119";
517
-
518
- $meh: "\f11a";
519
-
520
- $gamepad: "\f11b";
521
-
522
- $keyboard: "\f11c";
523
-
524
- $flag-alt: "\f11d";
525
-
526
- $flag-checkered: "\f11e";
527
-
528
- $terminal: "\f120";
529
-
530
- $code: "\f121";
531
-
532
- $reply-all: "\f122";
533
-
534
- $mail-reply-all: "\f122";
535
-
536
- $star-half-empty: "\f123";
537
-
538
- $location-arrow: "\f124";
539
-
540
- $crop: "\f125";
541
-
542
- $code-fork: "\f126";
543
-
544
- $unlink: "\f127";
545
-
546
- $question: "\f128";
547
-
548
- $info: "\f129";
549
-
550
- $exclamation: "\f12a";
551
-
552
- $superscript: "\f12b";
553
-
554
- $subscript: "\f12c";
555
-
556
- $eraser: "\f12d";
557
-
558
- $puzzle-piece: "\f12e";
559
-
560
- $microphone: "\f130";
561
-
562
- $microphone-off: "\f131";
563
-
564
- $shield: "\f132";
565
-
566
- $calendar-empty: "\f133";
567
-
568
- $fire-extinguisher: "\f134";
569
-
570
- $rocket: "\f135";
571
-
572
- $maxcdn: "\f136";
573
-
574
- $chevron-sign-left: "\f137";
575
-
576
- $chevron-sign-right: "\f138";
577
-
578
- $chevron-sign-up: "\f139";
579
-
580
- $chevron-sign-down: "\f13a";
581
-
582
- $html5: "\f13b";
583
-
584
- $css3: "\f13c";
585
-
586
- $anchor: "\f13d";
587
-
588
- $unlock-alt: "\f13e";
589
-
590
- $bullseye: "\f140";
591
-
592
- $ellipsis-horizontal: "\f141";
593
-
594
- $ellipsis-vertical: "\f142";
595
-
596
- $rss-sign: "\f143";
597
-
598
- $play-sign: "\f144";
599
-
600
- $ticket: "\f145";
601
-
602
- $minus-sign-alt: "\f146";
603
-
604
- $check-minus: "\f147";
605
-
606
- $level-up: "\f148";
607
-
608
- $level-down: "\f149";
609
-
610
- $check-sign: "\f14a";
611
-
612
- $edit-sign: "\f14b";
613
-
614
- $external-link-sign: "\f14c";
615
-
616
- $share-sign: "\f14d";
617
-
618
- $compass: "\f14e";
619
-
620
- $collapse: "\f150";
621
-
622
- $collapse-top: "\f151";
623
-
624
- $expand: "\f152";
625
-
626
- $eur: "\f153";
627
-
628
- $gbp: "\f154";
629
-
630
- $usd: "\f155";
631
-
632
- $inr: "\f156";
633
-
634
- $jpy: "\f157";
635
-
636
- $cny: "\f158";
637
-
638
- $krw: "\f159";
639
-
640
- $btc: "\f15a";
641
-
642
- $file: "\f15b";
643
-
644
- $file-text: "\f15c";
645
-
646
- $sort-by-alphabet: "\f15d";
647
-
648
- $sort-by-alphabet-alt: "\f15e";
649
-
650
- $sort-by-attributes: "\f160";
651
-
652
- $sort-by-attributes-alt: "\f161";
653
-
654
- $sort-by-order: "\f162";
655
-
656
- $sort-by-order-alt: "\f163";
657
-
658
- $thumbs-up: "\f164";
659
-
660
- $thumbs-down: "\f165";
661
-
662
- $youtube-sign: "\f166";
663
-
664
- $youtube: "\f167";
665
-
666
- $xing: "\f168";
667
-
668
- $xing-sign: "\f169";
669
-
670
- $youtube-play: "\f16a";
671
-
672
- $dropbox: "\f16b";
673
-
674
- $stackexchange: "\f16c";
675
-
676
- $instagram: "\f16d";
677
-
678
- $flickr: "\f16e";
679
-
680
- $adn: "\f170";
681
-
682
- $bitbucket: "\f171";
683
-
684
- $bitbucket-sign: "\f172";
685
-
686
- $tumblr: "\f173";
687
-
688
- $tumblr-sign: "\f174";
689
-
690
- $long-arrow-down: "\f175";
691
-
692
- $long-arrow-up: "\f176";
693
-
694
- $long-arrow-left: "\f177";
695
-
696
- $long-arrow-right: "\f178";
697
-
698
- $apple: "\f179";
699
-
700
- $windows: "\f17a";
701
-
702
- $android: "\f17b";
703
-
704
- $linux: "\f17c";
705
-
706
- $dribbble: "\f17d";
707
-
708
- $skype: "\f17e";
709
-
710
- $foursquare: "\f180";
711
-
712
- $trello: "\f181";
713
-
714
- $female: "\f182";
715
-
716
- $male: "\f183";
717
-
718
- $gittip: "\f184";
719
-
720
- $sun: "\f185";
721
-
722
- $moon: "\f186";
723
-
724
- $archive: "\f187";
725
-
726
- $bug: "\f188";
727
-
728
- $vk: "\f189";
729
-
730
- $weibo: "\f18a";
731
-
732
- $renren: "\f18b";
4
+ $fa-css-prefix: fa !default;
5
+ $fa-version: "4.0.1" !default;
6
+ $fa-border-color: #eee !default;
7
+ $fa-inverse: #fff !default;
8
+ $fa-li-width: (30em / 14) !default;
9
+
10
+ $fa-var-glass: "\f000";
11
+ $fa-var-music: "\f001";
12
+ $fa-var-search: "\f002";
13
+ $fa-var-envelope-o: "\f003";
14
+ $fa-var-heart: "\f004";
15
+ $fa-var-star: "\f005";
16
+ $fa-var-star-o: "\f006";
17
+ $fa-var-user: "\f007";
18
+ $fa-var-film: "\f008";
19
+ $fa-var-th-large: "\f009";
20
+ $fa-var-th: "\f00a";
21
+ $fa-var-th-list: "\f00b";
22
+ $fa-var-check: "\f00c";
23
+ $fa-var-times: "\f00d";
24
+ $fa-var-search-plus: "\f00e";
25
+ $fa-var-search-minus: "\f010";
26
+ $fa-var-power-off: "\f011";
27
+ $fa-var-signal: "\f012";
28
+ $fa-var-cog: "\f013";
29
+ $fa-var-trash-o: "\f014";
30
+ $fa-var-home: "\f015";
31
+ $fa-var-file-o: "\f016";
32
+ $fa-var-clock-o: "\f017";
33
+ $fa-var-road: "\f018";
34
+ $fa-var-download: "\f019";
35
+ $fa-var-arrow-circle-o-down: "\f01a";
36
+ $fa-var-arrow-circle-o-up: "\f01b";
37
+ $fa-var-inbox: "\f01c";
38
+ $fa-var-play-circle-o: "\f01d";
39
+ $fa-var-repeat: "\f01e";
40
+ $fa-var-refresh: "\f021";
41
+ $fa-var-list-alt: "\f022";
42
+ $fa-var-lock: "\f023";
43
+ $fa-var-flag: "\f024";
44
+ $fa-var-headphones: "\f025";
45
+ $fa-var-volume-off: "\f026";
46
+ $fa-var-volume-down: "\f027";
47
+ $fa-var-volume-up: "\f028";
48
+ $fa-var-qrcode: "\f029";
49
+ $fa-var-barcode: "\f02a";
50
+ $fa-var-tag: "\f02b";
51
+ $fa-var-tags: "\f02c";
52
+ $fa-var-book: "\f02d";
53
+ $fa-var-bookmark: "\f02e";
54
+ $fa-var-print: "\f02f";
55
+ $fa-var-camera: "\f030";
56
+ $fa-var-font: "\f031";
57
+ $fa-var-bold: "\f032";
58
+ $fa-var-italic: "\f033";
59
+ $fa-var-text-height: "\f034";
60
+ $fa-var-text-width: "\f035";
61
+ $fa-var-align-left: "\f036";
62
+ $fa-var-align-center: "\f037";
63
+ $fa-var-align-right: "\f038";
64
+ $fa-var-align-justify: "\f039";
65
+ $fa-var-list: "\f03a";
66
+ $fa-var-outdent: "\f03b";
67
+ $fa-var-indent: "\f03c";
68
+ $fa-var-video-camera: "\f03d";
69
+ $fa-var-picture-o: "\f03e";
70
+ $fa-var-pencil: "\f040";
71
+ $fa-var-map-marker: "\f041";
72
+ $fa-var-adjust: "\f042";
73
+ $fa-var-tint: "\f043";
74
+ $fa-var-pencil-square-o: "\f044";
75
+ $fa-var-share-square-o: "\f045";
76
+ $fa-var-check-square-o: "\f046";
77
+ $fa-var-move: "\f047";
78
+ $fa-var-step-backward: "\f048";
79
+ $fa-var-fast-backward: "\f049";
80
+ $fa-var-backward: "\f04a";
81
+ $fa-var-play: "\f04b";
82
+ $fa-var-pause: "\f04c";
83
+ $fa-var-stop: "\f04d";
84
+ $fa-var-forward: "\f04e";
85
+ $fa-var-fast-forward: "\f050";
86
+ $fa-var-step-forward: "\f051";
87
+ $fa-var-eject: "\f052";
88
+ $fa-var-chevron-left: "\f053";
89
+ $fa-var-chevron-right: "\f054";
90
+ $fa-var-plus-circle: "\f055";
91
+ $fa-var-minus-circle: "\f056";
92
+ $fa-var-times-circle: "\f057";
93
+ $fa-var-check-circle: "\f058";
94
+ $fa-var-question-circle: "\f059";
95
+ $fa-var-info-circle: "\f05a";
96
+ $fa-var-crosshairs: "\f05b";
97
+ $fa-var-times-circle-o: "\f05c";
98
+ $fa-var-check-circle-o: "\f05d";
99
+ $fa-var-ban: "\f05e";
100
+ $fa-var-arrow-left: "\f060";
101
+ $fa-var-arrow-right: "\f061";
102
+ $fa-var-arrow-up: "\f062";
103
+ $fa-var-arrow-down: "\f063";
104
+ $fa-var-share: "\f064";
105
+ $fa-var-resize-full: "\f065";
106
+ $fa-var-resize-small: "\f066";
107
+ $fa-var-plus: "\f067";
108
+ $fa-var-minus: "\f068";
109
+ $fa-var-asterisk: "\f069";
110
+ $fa-var-exclamation-circle: "\f06a";
111
+ $fa-var-gift: "\f06b";
112
+ $fa-var-leaf: "\f06c";
113
+ $fa-var-fire: "\f06d";
114
+ $fa-var-eye: "\f06e";
115
+ $fa-var-eye-slash: "\f070";
116
+ $fa-var-exclamation-triangle: "\f071";
117
+ $fa-var-plane: "\f072";
118
+ $fa-var-calendar: "\f073";
119
+ $fa-var-random: "\f074";
120
+ $fa-var-comment: "\f075";
121
+ $fa-var-magnet: "\f076";
122
+ $fa-var-chevron-up: "\f077";
123
+ $fa-var-chevron-down: "\f078";
124
+ $fa-var-retweet: "\f079";
125
+ $fa-var-shopping-cart: "\f07a";
126
+ $fa-var-folder: "\f07b";
127
+ $fa-var-folder-open: "\f07c";
128
+ $fa-var-resize-vertical: "\f07d";
129
+ $fa-var-resize-horizontal: "\f07e";
130
+ $fa-var-bar-chart-o: "\f080";
131
+ $fa-var-twitter-square: "\f081";
132
+ $fa-var-facebook-square: "\f082";
133
+ $fa-var-camera-retro: "\f083";
134
+ $fa-var-key: "\f084";
135
+ $fa-var-cogs: "\f085";
136
+ $fa-var-comments: "\f086";
137
+ $fa-var-thumbs-o-up: "\f087";
138
+ $fa-var-thumbs-o-down: "\f088";
139
+ $fa-var-star-half: "\f089";
140
+ $fa-var-heart-o: "\f08a";
141
+ $fa-var-sign-out: "\f08b";
142
+ $fa-var-linkedin-square: "\f08c";
143
+ $fa-var-thumb-tack: "\f08d";
144
+ $fa-var-external-link: "\f08e";
145
+ $fa-var-sign-in: "\f090";
146
+ $fa-var-trophy: "\f091";
147
+ $fa-var-github-square: "\f092";
148
+ $fa-var-upload: "\f093";
149
+ $fa-var-lemon-o: "\f094";
150
+ $fa-var-phone: "\f095";
151
+ $fa-var-square-o: "\f096";
152
+ $fa-var-bookmark-o: "\f097";
153
+ $fa-var-phone-square: "\f098";
154
+ $fa-var-twitter: "\f099";
155
+ $fa-var-facebook: "\f09a";
156
+ $fa-var-github: "\f09b";
157
+ $fa-var-unlock: "\f09c";
158
+ $fa-var-credit-card: "\f09d";
159
+ $fa-var-rss: "\f09e";
160
+ $fa-var-hdd-o: "\f0a0";
161
+ $fa-var-bullhorn: "\f0a1";
162
+ $fa-var-bell: "\f0f3";
163
+ $fa-var-certificate: "\f0a3";
164
+ $fa-var-hand-o-right: "\f0a4";
165
+ $fa-var-hand-o-left: "\f0a5";
166
+ $fa-var-hand-o-up: "\f0a6";
167
+ $fa-var-hand-o-down: "\f0a7";
168
+ $fa-var-arrow-circle-left: "\f0a8";
169
+ $fa-var-arrow-circle-right: "\f0a9";
170
+ $fa-var-arrow-circle-up: "\f0aa";
171
+ $fa-var-arrow-circle-down: "\f0ab";
172
+ $fa-var-globe: "\f0ac";
173
+ $fa-var-wrench: "\f0ad";
174
+ $fa-var-tasks: "\f0ae";
175
+ $fa-var-filter: "\f0b0";
176
+ $fa-var-briefcase: "\f0b1";
177
+ $fa-var-fullscreen: "\f0b2";
178
+ $fa-var-group: "\f0c0";
179
+ $fa-var-link: "\f0c1";
180
+ $fa-var-cloud: "\f0c2";
181
+ $fa-var-flask: "\f0c3";
182
+ $fa-var-scissors: "\f0c4";
183
+ $fa-var-files-o: "\f0c5";
184
+ $fa-var-paperclip: "\f0c6";
185
+ $fa-var-floppy-o: "\f0c7";
186
+ $fa-var-square: "\f0c8";
187
+ $fa-var-reorder: "\f0c9";
188
+ $fa-var-list-ul: "\f0ca";
189
+ $fa-var-list-ol: "\f0cb";
190
+ $fa-var-strikethrough: "\f0cc";
191
+ $fa-var-underline: "\f0cd";
192
+ $fa-var-table: "\f0ce";
193
+ $fa-var-magic: "\f0d0";
194
+ $fa-var-truck: "\f0d1";
195
+ $fa-var-pinterest: "\f0d2";
196
+ $fa-var-pinterest-square: "\f0d3";
197
+ $fa-var-google-plus-square: "\f0d4";
198
+ $fa-var-google-plus: "\f0d5";
199
+ $fa-var-money: "\f0d6";
200
+ $fa-var-caret-down: "\f0d7";
201
+ $fa-var-caret-up: "\f0d8";
202
+ $fa-var-caret-left: "\f0d9";
203
+ $fa-var-caret-right: "\f0da";
204
+ $fa-var-columns: "\f0db";
205
+ $fa-var-sort: "\f0dc";
206
+ $fa-var-sort-asc: "\f0dd";
207
+ $fa-var-sort-desc: "\f0de";
208
+ $fa-var-envelope: "\f0e0";
209
+ $fa-var-linkedin: "\f0e1";
210
+ $fa-var-undo: "\f0e2";
211
+ $fa-var-gavel: "\f0e3";
212
+ $fa-var-tachometer: "\f0e4";
213
+ $fa-var-comment-o: "\f0e5";
214
+ $fa-var-comments-o: "\f0e6";
215
+ $fa-var-bolt: "\f0e7";
216
+ $fa-var-sitemap: "\f0e8";
217
+ $fa-var-umbrella: "\f0e9";
218
+ $fa-var-clipboard: "\f0ea";
219
+ $fa-var-lightbulb-o: "\f0eb";
220
+ $fa-var-exchange: "\f0ec";
221
+ $fa-var-cloud-download: "\f0ed";
222
+ $fa-var-cloud-upload: "\f0ee";
223
+ $fa-var-user-md: "\f0f0";
224
+ $fa-var-stethoscope: "\f0f1";
225
+ $fa-var-suitcase: "\f0f2";
226
+ $fa-var-bell-o: "\f0a2";
227
+ $fa-var-coffee: "\f0f4";
228
+ $fa-var-cutlery: "\f0f5";
229
+ $fa-var-file-text-o: "\f0f6";
230
+ $fa-var-building: "\f0f7";
231
+ $fa-var-hospital: "\f0f8";
232
+ $fa-var-ambulance: "\f0f9";
233
+ $fa-var-medkit: "\f0fa";
234
+ $fa-var-fighter-jet: "\f0fb";
235
+ $fa-var-beer: "\f0fc";
236
+ $fa-var-h-square: "\f0fd";
237
+ $fa-var-plus-square: "\f0fe";
238
+ $fa-var-angle-double-left: "\f100";
239
+ $fa-var-angle-double-right: "\f101";
240
+ $fa-var-angle-double-up: "\f102";
241
+ $fa-var-angle-double-down: "\f103";
242
+ $fa-var-angle-left: "\f104";
243
+ $fa-var-angle-right: "\f105";
244
+ $fa-var-angle-up: "\f106";
245
+ $fa-var-angle-down: "\f107";
246
+ $fa-var-desktop: "\f108";
247
+ $fa-var-laptop: "\f109";
248
+ $fa-var-tablet: "\f10a";
249
+ $fa-var-mobile: "\f10b";
250
+ $fa-var-circle-o: "\f10c";
251
+ $fa-var-quote-left: "\f10d";
252
+ $fa-var-quote-right: "\f10e";
253
+ $fa-var-spinner: "\f110";
254
+ $fa-var-circle: "\f111";
255
+ $fa-var-reply: "\f112";
256
+ $fa-var-github-alt: "\f113";
257
+ $fa-var-folder-o: "\f114";
258
+ $fa-var-folder-open-o: "\f115";
259
+ $fa-var-expand-o: "\f116";
260
+ $fa-var-collapse-o: "\f117";
261
+ $fa-var-smile-o: "\f118";
262
+ $fa-var-frown-o: "\f119";
263
+ $fa-var-meh-o: "\f11a";
264
+ $fa-var-gamepad: "\f11b";
265
+ $fa-var-keyboard-o: "\f11c";
266
+ $fa-var-flag-o: "\f11d";
267
+ $fa-var-flag-checkered: "\f11e";
268
+ $fa-var-terminal: "\f120";
269
+ $fa-var-code: "\f121";
270
+ $fa-var-reply-all: "\f122";
271
+ $fa-var-mail-reply-all: "\f122";
272
+ $fa-var-star-half-o: "\f123";
273
+ $fa-var-location-arrow: "\f124";
274
+ $fa-var-crop: "\f125";
275
+ $fa-var-code-fork: "\f126";
276
+ $fa-var-chain-broken: "\f127";
277
+ $fa-var-question: "\f128";
278
+ $fa-var-info: "\f129";
279
+ $fa-var-exclamation: "\f12a";
280
+ $fa-var-superscript: "\f12b";
281
+ $fa-var-subscript: "\f12c";
282
+ $fa-var-eraser: "\f12d";
283
+ $fa-var-puzzle-piece: "\f12e";
284
+ $fa-var-microphone: "\f130";
285
+ $fa-var-microphone-slash: "\f131";
286
+ $fa-var-shield: "\f132";
287
+ $fa-var-calendar-o: "\f133";
288
+ $fa-var-fire-extinguisher: "\f134";
289
+ $fa-var-rocket: "\f135";
290
+ $fa-var-maxcdn: "\f136";
291
+ $fa-var-chevron-circle-left: "\f137";
292
+ $fa-var-chevron-circle-right: "\f138";
293
+ $fa-var-chevron-circle-up: "\f139";
294
+ $fa-var-chevron-circle-down: "\f13a";
295
+ $fa-var-html5: "\f13b";
296
+ $fa-var-css3: "\f13c";
297
+ $fa-var-anchor: "\f13d";
298
+ $fa-var-unlock-o: "\f13e";
299
+ $fa-var-bullseye: "\f140";
300
+ $fa-var-ellipsis-horizontal: "\f141";
301
+ $fa-var-ellipsis-vertical: "\f142";
302
+ $fa-var-rss-square: "\f143";
303
+ $fa-var-play-circle: "\f144";
304
+ $fa-var-ticket: "\f145";
305
+ $fa-var-minus-square: "\f146";
306
+ $fa-var-minus-square-o: "\f147";
307
+ $fa-var-level-up: "\f148";
308
+ $fa-var-level-down: "\f149";
309
+ $fa-var-check-square: "\f14a";
310
+ $fa-var-pencil-square: "\f14b";
311
+ $fa-var-external-link-square: "\f14c";
312
+ $fa-var-share-square: "\f14d";
313
+ $fa-var-compass: "\f14e";
314
+ $fa-var-caret-square-o-down: "\f150";
315
+ $fa-var-caret-square-o-up: "\f151";
316
+ $fa-var-caret-square-o-right: "\f152";
317
+ $fa-var-eur: "\f153";
318
+ $fa-var-gbp: "\f154";
319
+ $fa-var-usd: "\f155";
320
+ $fa-var-inr: "\f156";
321
+ $fa-var-jpy: "\f157";
322
+ $fa-var-rub: "\f158";
323
+ $fa-var-krw: "\f159";
324
+ $fa-var-btc: "\f15a";
325
+ $fa-var-file: "\f15b";
326
+ $fa-var-file-text: "\f15c";
327
+ $fa-var-sort-alpha-asc: "\f15d";
328
+ $fa-var-sort-alpha-desc: "\f15e";
329
+ $fa-var-sort-amount-asc: "\f160";
330
+ $fa-var-sort-amount-desc: "\f161";
331
+ $fa-var-sort-numeric-asc: "\f162";
332
+ $fa-var-sort-numeric-desc: "\f163";
333
+ $fa-var-thumbs-up: "\f164";
334
+ $fa-var-thumbs-down: "\f165";
335
+ $fa-var-youtube-square: "\f166";
336
+ $fa-var-youtube: "\f167";
337
+ $fa-var-xing: "\f168";
338
+ $fa-var-xing-square: "\f169";
339
+ $fa-var-youtube-play: "\f16a";
340
+ $fa-var-dropbox: "\f16b";
341
+ $fa-var-stack-overflow: "\f16c";
342
+ $fa-var-instagram: "\f16d";
343
+ $fa-var-flickr: "\f16e";
344
+ $fa-var-adn: "\f170";
345
+ $fa-var-bitbucket: "\f171";
346
+ $fa-var-bitbucket-square: "\f172";
347
+ $fa-var-tumblr: "\f173";
348
+ $fa-var-tumblr-square: "\f174";
349
+ $fa-var-long-arrow-down: "\f175";
350
+ $fa-var-long-arrow-up: "\f176";
351
+ $fa-var-long-arrow-left: "\f177";
352
+ $fa-var-long-arrow-right: "\f178";
353
+ $fa-var-apple: "\f179";
354
+ $fa-var-windows: "\f17a";
355
+ $fa-var-android: "\f17b";
356
+ $fa-var-linux: "\f17c";
357
+ $fa-var-dribbble: "\f17d";
358
+ $fa-var-skype: "\f17e";
359
+ $fa-var-foursquare: "\f180";
360
+ $fa-var-trello: "\f181";
361
+ $fa-var-female: "\f182";
362
+ $fa-var-male: "\f183";
363
+ $fa-var-gittip: "\f184";
364
+ $fa-var-sun-o: "\f185";
365
+ $fa-var-moon-o: "\f186";
366
+ $fa-var-archive: "\f187";
367
+ $fa-var-bug: "\f188";
368
+ $fa-var-vk: "\f189";
369
+ $fa-var-weibo: "\f18a";
370
+ $fa-var-renren: "\f18b";
371
+ $fa-var-pagelines: "\f18c";
372
+ $fa-var-stack-exchange: "\f18d";
373
+ $fa-var-arrow-circle-o-right: "\f18e";
374
+ $fa-var-arrow-circle-o-left: "\f190";
375
+ $fa-var-caret-square-o-left: "\f191";
376
+ $fa-var-dot-circle-o: "\f192";
377
+ $fa-var-wheelchair: "\f193";
378
+ $fa-var-vimeo-square: "\f194";
379
+ $fa-var-try: "\f195";
733
380