font-awesome-rails-base64 4.0.3.0 → 4.0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 154d7172f87825af510eb9485a1b0ca9aa613a35
4
- data.tar.gz: bf08cd02b6059e8c04a4705283d35271a4e93bd3
3
+ metadata.gz: f736c14ae2e91b3989ef2072b038127339418d69
4
+ data.tar.gz: 4db9d17cc27214d5fd0b0a02588c9c91adac132c
5
5
  SHA512:
6
- metadata.gz: 232e503ee820feb0c98cf02957233bc4dc1fa68a707ece7c1ad870338bd2b454fc1517099bb5d6c62993b245ed9da5ab456b27badb1af958b235d3a9968c68ec
7
- data.tar.gz: 28a6038cbf718333a4e5608862c8aae06e7400efd63d55bd3fa30b8daec1749e553c6b66d05c7bc2f7497adc9d238635b12f2a23a9f0d6cd3671c6c0d3e7db2b
6
+ metadata.gz: fa04562aa10b9e5513bd114f84669310547a5c4027610a04cfbefdf90a92e300764820395f3d1e81d94293bd0923d4fc61085c5bc6dd2a22646313776e2c788b
7
+ data.tar.gz: 55eb8fafeb5641d4040f27440a380fcc7deedbaf1e17e06c41c3968c86b48c06b555a71cead99043bedcb76f3af486813c0e708539a250310aa9b5d43fab09ae
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # font-awesome-rails [![Gem Version](https://badge.fury.io/rb/font-awesome-rails.png)](http://badge.fury.io/rb/font-awesome-rails) [![Build Status](https://secure.travis-ci.org/bokmann/font-awesome-rails.png)](http://travis-ci.org/bokmann/font-awesome-rails)
1
+ # font-awesome-rails [![Gem Version](https://badge.fury.io/rb/font-awesome-rails-base64.png)](http://badge.fury.io/rb/font-awesome-rails-base64)
2
2
 
3
3
  font-awesome-rails provides the
4
4
  [Font-Awesome](http://fortawesome.github.com/Font-Awesome/) web fonts and
@@ -9,7 +9,7 @@ stylesheets as a Rails engine for use with the asset pipeline.
9
9
  Add this to your Gemfile:
10
10
 
11
11
  ```ruby
12
- gem "font-awesome-rails"
12
+ gem "font-awesome-rails-base64"
13
13
  ```
14
14
 
15
15
  and run `bundle install`.
@@ -46,6 +46,10 @@ If you prefer [SCSS](http://sass-lang.com/docs.html), add this to your
46
46
  ```scss
47
47
  @import "font-awesome";
48
48
  ```
49
+ or
50
+ ```scss
51
+ @import "font-awesome-base64";
52
+ ```
49
53
 
50
54
  If you use the
51
55
  [Sass indented syntax](http://sass-lang.com/docs/yardoc/file.INDENTED_SYNTAX.html),
@@ -54,6 +58,11 @@ add this to your `application.css.sass` file:
54
58
  ```sass
55
59
  @import font-awesome
56
60
  ```
61
+ or
62
+
63
+ ```sass
64
+ @import font-awesome-base64
65
+ ```
57
66
 
58
67
  ### Helpers
59
68
 
@@ -0,0 +1,1341 @@
1
+ /*!
2
+ * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */
5
+ /* FONT PATH
6
+ * -------------------------- */
7
+ @font-face {
8
+ font-family: 'FontAwesome';
9
+ src: url(<%= "data:application/x-font-otf;charset=utf-8;base64,#{Base64.strict_encode64(Rails.application.assets['FontAwesome.otf'].to_s)}" %>) format('otf'),
10
+ url(<%= "data:application/x-font-woff;charset=utf-8;base64,#{Base64.strict_encode64(Rails.application.assets['fontawesome-webfont.woff'].to_s)}" %>) format('woff'),
11
+ url(<%= "data:application/x-font-ttf;charset=utf-8;base64,#{Base64.strict_encode64(Rails.application.assets['fontawesome-webfont.ttf'].to_s)}" %>) format('ttf'),
12
+ url(<%= "data:application/vnd.ms-fontobject;charset=utf-8;base64,#{Base64.strict_encode64(Rails.application.assets['fontawesome-webfont.eot'].to_s)}" %>) format('eot'),
13
+ url(<%= "data:image/svg+xml;charset=utf-8;base64,#{Base64.strict_encode64(Rails.application.assets['fontawesome-webfont.svg'].to_s)}" %>) format('svg');
14
+ font-weight: normal;
15
+ font-style: normal;
16
+ }
17
+ .fa {
18
+ display: inline-block;
19
+ font-family: FontAwesome;
20
+ font-style: normal;
21
+ font-weight: normal;
22
+ line-height: 1;
23
+ -webkit-font-smoothing: antialiased;
24
+ -moz-osx-font-smoothing: grayscale;
25
+ }
26
+ /* makes the font 33% larger relative to the icon container */
27
+ .fa-lg {
28
+ font-size: 1.3333333333333333em;
29
+ line-height: 0.75em;
30
+ vertical-align: -15%;
31
+ }
32
+ .fa-2x {
33
+ font-size: 2em;
34
+ }
35
+ .fa-3x {
36
+ font-size: 3em;
37
+ }
38
+ .fa-4x {
39
+ font-size: 4em;
40
+ }
41
+ .fa-5x {
42
+ font-size: 5em;
43
+ }
44
+ .fa-fw {
45
+ width: 1.2857142857142858em;
46
+ text-align: center;
47
+ }
48
+ .fa-ul {
49
+ padding-left: 0;
50
+ margin-left: 2.142857142857143em;
51
+ list-style-type: none;
52
+ }
53
+ .fa-ul > li {
54
+ position: relative;
55
+ }
56
+ .fa-li {
57
+ position: absolute;
58
+ left: -2.142857142857143em;
59
+ width: 2.142857142857143em;
60
+ top: 0.14285714285714285em;
61
+ text-align: center;
62
+ }
63
+ .fa-li.fa-lg {
64
+ left: -1.8571428571428572em;
65
+ }
66
+ .fa-border {
67
+ padding: .2em .25em .15em;
68
+ border: solid 0.08em #eeeeee;
69
+ border-radius: .1em;
70
+ }
71
+ .pull-right {
72
+ float: right;
73
+ }
74
+ .pull-left {
75
+ float: left;
76
+ }
77
+ .fa.pull-left {
78
+ margin-right: .3em;
79
+ }
80
+ .fa.pull-right {
81
+ margin-left: .3em;
82
+ }
83
+ .fa-spin {
84
+ -webkit-animation: spin 2s infinite linear;
85
+ -moz-animation: spin 2s infinite linear;
86
+ -o-animation: spin 2s infinite linear;
87
+ animation: spin 2s infinite linear;
88
+ }
89
+ @-moz-keyframes spin {
90
+ 0% {
91
+ -moz-transform: rotate(0deg);
92
+ }
93
+ 100% {
94
+ -moz-transform: rotate(359deg);
95
+ }
96
+ }
97
+ @-webkit-keyframes spin {
98
+ 0% {
99
+ -webkit-transform: rotate(0deg);
100
+ }
101
+ 100% {
102
+ -webkit-transform: rotate(359deg);
103
+ }
104
+ }
105
+ @-o-keyframes spin {
106
+ 0% {
107
+ -o-transform: rotate(0deg);
108
+ }
109
+ 100% {
110
+ -o-transform: rotate(359deg);
111
+ }
112
+ }
113
+ @-ms-keyframes spin {
114
+ 0% {
115
+ -ms-transform: rotate(0deg);
116
+ }
117
+ 100% {
118
+ -ms-transform: rotate(359deg);
119
+ }
120
+ }
121
+ @keyframes spin {
122
+ 0% {
123
+ transform: rotate(0deg);
124
+ }
125
+ 100% {
126
+ transform: rotate(359deg);
127
+ }
128
+ }
129
+ .fa-rotate-90 {
130
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
131
+ -webkit-transform: rotate(90deg);
132
+ -moz-transform: rotate(90deg);
133
+ -ms-transform: rotate(90deg);
134
+ -o-transform: rotate(90deg);
135
+ transform: rotate(90deg);
136
+ }
137
+ .fa-rotate-180 {
138
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
139
+ -webkit-transform: rotate(180deg);
140
+ -moz-transform: rotate(180deg);
141
+ -ms-transform: rotate(180deg);
142
+ -o-transform: rotate(180deg);
143
+ transform: rotate(180deg);
144
+ }
145
+ .fa-rotate-270 {
146
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
147
+ -webkit-transform: rotate(270deg);
148
+ -moz-transform: rotate(270deg);
149
+ -ms-transform: rotate(270deg);
150
+ -o-transform: rotate(270deg);
151
+ transform: rotate(270deg);
152
+ }
153
+ .fa-flip-horizontal {
154
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
155
+ -webkit-transform: scale(-1, 1);
156
+ -moz-transform: scale(-1, 1);
157
+ -ms-transform: scale(-1, 1);
158
+ -o-transform: scale(-1, 1);
159
+ transform: scale(-1, 1);
160
+ }
161
+ .fa-flip-vertical {
162
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
163
+ -webkit-transform: scale(1, -1);
164
+ -moz-transform: scale(1, -1);
165
+ -ms-transform: scale(1, -1);
166
+ -o-transform: scale(1, -1);
167
+ transform: scale(1, -1);
168
+ }
169
+ .fa-stack {
170
+ position: relative;
171
+ display: inline-block;
172
+ width: 2em;
173
+ height: 2em;
174
+ line-height: 2em;
175
+ vertical-align: middle;
176
+ }
177
+ .fa-stack-1x,
178
+ .fa-stack-2x {
179
+ position: absolute;
180
+ left: 0;
181
+ width: 100%;
182
+ text-align: center;
183
+ }
184
+ .fa-stack-1x {
185
+ line-height: inherit;
186
+ }
187
+ .fa-stack-2x {
188
+ font-size: 2em;
189
+ }
190
+ .fa-inverse {
191
+ color: #ffffff;
192
+ }
193
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
194
+ readers do not read off random characters that represent icons */
195
+ .fa-glass:before {
196
+ content: "\f000";
197
+ }
198
+ .fa-music:before {
199
+ content: "\f001";
200
+ }
201
+ .fa-search:before {
202
+ content: "\f002";
203
+ }
204
+ .fa-envelope-o:before {
205
+ content: "\f003";
206
+ }
207
+ .fa-heart:before {
208
+ content: "\f004";
209
+ }
210
+ .fa-star:before {
211
+ content: "\f005";
212
+ }
213
+ .fa-star-o:before {
214
+ content: "\f006";
215
+ }
216
+ .fa-user:before {
217
+ content: "\f007";
218
+ }
219
+ .fa-film:before {
220
+ content: "\f008";
221
+ }
222
+ .fa-th-large:before {
223
+ content: "\f009";
224
+ }
225
+ .fa-th:before {
226
+ content: "\f00a";
227
+ }
228
+ .fa-th-list:before {
229
+ content: "\f00b";
230
+ }
231
+ .fa-check:before {
232
+ content: "\f00c";
233
+ }
234
+ .fa-times:before {
235
+ content: "\f00d";
236
+ }
237
+ .fa-search-plus:before {
238
+ content: "\f00e";
239
+ }
240
+ .fa-search-minus:before {
241
+ content: "\f010";
242
+ }
243
+ .fa-power-off:before {
244
+ content: "\f011";
245
+ }
246
+ .fa-signal:before {
247
+ content: "\f012";
248
+ }
249
+ .fa-gear:before,
250
+ .fa-cog:before {
251
+ content: "\f013";
252
+ }
253
+ .fa-trash-o:before {
254
+ content: "\f014";
255
+ }
256
+ .fa-home:before {
257
+ content: "\f015";
258
+ }
259
+ .fa-file-o:before {
260
+ content: "\f016";
261
+ }
262
+ .fa-clock-o:before {
263
+ content: "\f017";
264
+ }
265
+ .fa-road:before {
266
+ content: "\f018";
267
+ }
268
+ .fa-download:before {
269
+ content: "\f019";
270
+ }
271
+ .fa-arrow-circle-o-down:before {
272
+ content: "\f01a";
273
+ }
274
+ .fa-arrow-circle-o-up:before {
275
+ content: "\f01b";
276
+ }
277
+ .fa-inbox:before {
278
+ content: "\f01c";
279
+ }
280
+ .fa-play-circle-o:before {
281
+ content: "\f01d";
282
+ }
283
+ .fa-rotate-right:before,
284
+ .fa-repeat:before {
285
+ content: "\f01e";
286
+ }
287
+ .fa-refresh:before {
288
+ content: "\f021";
289
+ }
290
+ .fa-list-alt:before {
291
+ content: "\f022";
292
+ }
293
+ .fa-lock:before {
294
+ content: "\f023";
295
+ }
296
+ .fa-flag:before {
297
+ content: "\f024";
298
+ }
299
+ .fa-headphones:before {
300
+ content: "\f025";
301
+ }
302
+ .fa-volume-off:before {
303
+ content: "\f026";
304
+ }
305
+ .fa-volume-down:before {
306
+ content: "\f027";
307
+ }
308
+ .fa-volume-up:before {
309
+ content: "\f028";
310
+ }
311
+ .fa-qrcode:before {
312
+ content: "\f029";
313
+ }
314
+ .fa-barcode:before {
315
+ content: "\f02a";
316
+ }
317
+ .fa-tag:before {
318
+ content: "\f02b";
319
+ }
320
+ .fa-tags:before {
321
+ content: "\f02c";
322
+ }
323
+ .fa-book:before {
324
+ content: "\f02d";
325
+ }
326
+ .fa-bookmark:before {
327
+ content: "\f02e";
328
+ }
329
+ .fa-print:before {
330
+ content: "\f02f";
331
+ }
332
+ .fa-camera:before {
333
+ content: "\f030";
334
+ }
335
+ .fa-font:before {
336
+ content: "\f031";
337
+ }
338
+ .fa-bold:before {
339
+ content: "\f032";
340
+ }
341
+ .fa-italic:before {
342
+ content: "\f033";
343
+ }
344
+ .fa-text-height:before {
345
+ content: "\f034";
346
+ }
347
+ .fa-text-width:before {
348
+ content: "\f035";
349
+ }
350
+ .fa-align-left:before {
351
+ content: "\f036";
352
+ }
353
+ .fa-align-center:before {
354
+ content: "\f037";
355
+ }
356
+ .fa-align-right:before {
357
+ content: "\f038";
358
+ }
359
+ .fa-align-justify:before {
360
+ content: "\f039";
361
+ }
362
+ .fa-list:before {
363
+ content: "\f03a";
364
+ }
365
+ .fa-dedent:before,
366
+ .fa-outdent:before {
367
+ content: "\f03b";
368
+ }
369
+ .fa-indent:before {
370
+ content: "\f03c";
371
+ }
372
+ .fa-video-camera:before {
373
+ content: "\f03d";
374
+ }
375
+ .fa-picture-o:before {
376
+ content: "\f03e";
377
+ }
378
+ .fa-pencil:before {
379
+ content: "\f040";
380
+ }
381
+ .fa-map-marker:before {
382
+ content: "\f041";
383
+ }
384
+ .fa-adjust:before {
385
+ content: "\f042";
386
+ }
387
+ .fa-tint:before {
388
+ content: "\f043";
389
+ }
390
+ .fa-edit:before,
391
+ .fa-pencil-square-o:before {
392
+ content: "\f044";
393
+ }
394
+ .fa-share-square-o:before {
395
+ content: "\f045";
396
+ }
397
+ .fa-check-square-o:before {
398
+ content: "\f046";
399
+ }
400
+ .fa-arrows:before {
401
+ content: "\f047";
402
+ }
403
+ .fa-step-backward:before {
404
+ content: "\f048";
405
+ }
406
+ .fa-fast-backward:before {
407
+ content: "\f049";
408
+ }
409
+ .fa-backward:before {
410
+ content: "\f04a";
411
+ }
412
+ .fa-play:before {
413
+ content: "\f04b";
414
+ }
415
+ .fa-pause:before {
416
+ content: "\f04c";
417
+ }
418
+ .fa-stop:before {
419
+ content: "\f04d";
420
+ }
421
+ .fa-forward:before {
422
+ content: "\f04e";
423
+ }
424
+ .fa-fast-forward:before {
425
+ content: "\f050";
426
+ }
427
+ .fa-step-forward:before {
428
+ content: "\f051";
429
+ }
430
+ .fa-eject:before {
431
+ content: "\f052";
432
+ }
433
+ .fa-chevron-left:before {
434
+ content: "\f053";
435
+ }
436
+ .fa-chevron-right:before {
437
+ content: "\f054";
438
+ }
439
+ .fa-plus-circle:before {
440
+ content: "\f055";
441
+ }
442
+ .fa-minus-circle:before {
443
+ content: "\f056";
444
+ }
445
+ .fa-times-circle:before {
446
+ content: "\f057";
447
+ }
448
+ .fa-check-circle:before {
449
+ content: "\f058";
450
+ }
451
+ .fa-question-circle:before {
452
+ content: "\f059";
453
+ }
454
+ .fa-info-circle:before {
455
+ content: "\f05a";
456
+ }
457
+ .fa-crosshairs:before {
458
+ content: "\f05b";
459
+ }
460
+ .fa-times-circle-o:before {
461
+ content: "\f05c";
462
+ }
463
+ .fa-check-circle-o:before {
464
+ content: "\f05d";
465
+ }
466
+ .fa-ban:before {
467
+ content: "\f05e";
468
+ }
469
+ .fa-arrow-left:before {
470
+ content: "\f060";
471
+ }
472
+ .fa-arrow-right:before {
473
+ content: "\f061";
474
+ }
475
+ .fa-arrow-up:before {
476
+ content: "\f062";
477
+ }
478
+ .fa-arrow-down:before {
479
+ content: "\f063";
480
+ }
481
+ .fa-mail-forward:before,
482
+ .fa-share:before {
483
+ content: "\f064";
484
+ }
485
+ .fa-expand:before {
486
+ content: "\f065";
487
+ }
488
+ .fa-compress:before {
489
+ content: "\f066";
490
+ }
491
+ .fa-plus:before {
492
+ content: "\f067";
493
+ }
494
+ .fa-minus:before {
495
+ content: "\f068";
496
+ }
497
+ .fa-asterisk:before {
498
+ content: "\f069";
499
+ }
500
+ .fa-exclamation-circle:before {
501
+ content: "\f06a";
502
+ }
503
+ .fa-gift:before {
504
+ content: "\f06b";
505
+ }
506
+ .fa-leaf:before {
507
+ content: "\f06c";
508
+ }
509
+ .fa-fire:before {
510
+ content: "\f06d";
511
+ }
512
+ .fa-eye:before {
513
+ content: "\f06e";
514
+ }
515
+ .fa-eye-slash:before {
516
+ content: "\f070";
517
+ }
518
+ .fa-warning:before,
519
+ .fa-exclamation-triangle:before {
520
+ content: "\f071";
521
+ }
522
+ .fa-plane:before {
523
+ content: "\f072";
524
+ }
525
+ .fa-calendar:before {
526
+ content: "\f073";
527
+ }
528
+ .fa-random:before {
529
+ content: "\f074";
530
+ }
531
+ .fa-comment:before {
532
+ content: "\f075";
533
+ }
534
+ .fa-magnet:before {
535
+ content: "\f076";
536
+ }
537
+ .fa-chevron-up:before {
538
+ content: "\f077";
539
+ }
540
+ .fa-chevron-down:before {
541
+ content: "\f078";
542
+ }
543
+ .fa-retweet:before {
544
+ content: "\f079";
545
+ }
546
+ .fa-shopping-cart:before {
547
+ content: "\f07a";
548
+ }
549
+ .fa-folder:before {
550
+ content: "\f07b";
551
+ }
552
+ .fa-folder-open:before {
553
+ content: "\f07c";
554
+ }
555
+ .fa-arrows-v:before {
556
+ content: "\f07d";
557
+ }
558
+ .fa-arrows-h:before {
559
+ content: "\f07e";
560
+ }
561
+ .fa-bar-chart-o:before {
562
+ content: "\f080";
563
+ }
564
+ .fa-twitter-square:before {
565
+ content: "\f081";
566
+ }
567
+ .fa-facebook-square:before {
568
+ content: "\f082";
569
+ }
570
+ .fa-camera-retro:before {
571
+ content: "\f083";
572
+ }
573
+ .fa-key:before {
574
+ content: "\f084";
575
+ }
576
+ .fa-gears:before,
577
+ .fa-cogs:before {
578
+ content: "\f085";
579
+ }
580
+ .fa-comments:before {
581
+ content: "\f086";
582
+ }
583
+ .fa-thumbs-o-up:before {
584
+ content: "\f087";
585
+ }
586
+ .fa-thumbs-o-down:before {
587
+ content: "\f088";
588
+ }
589
+ .fa-star-half:before {
590
+ content: "\f089";
591
+ }
592
+ .fa-heart-o:before {
593
+ content: "\f08a";
594
+ }
595
+ .fa-sign-out:before {
596
+ content: "\f08b";
597
+ }
598
+ .fa-linkedin-square:before {
599
+ content: "\f08c";
600
+ }
601
+ .fa-thumb-tack:before {
602
+ content: "\f08d";
603
+ }
604
+ .fa-external-link:before {
605
+ content: "\f08e";
606
+ }
607
+ .fa-sign-in:before {
608
+ content: "\f090";
609
+ }
610
+ .fa-trophy:before {
611
+ content: "\f091";
612
+ }
613
+ .fa-github-square:before {
614
+ content: "\f092";
615
+ }
616
+ .fa-upload:before {
617
+ content: "\f093";
618
+ }
619
+ .fa-lemon-o:before {
620
+ content: "\f094";
621
+ }
622
+ .fa-phone:before {
623
+ content: "\f095";
624
+ }
625
+ .fa-square-o:before {
626
+ content: "\f096";
627
+ }
628
+ .fa-bookmark-o:before {
629
+ content: "\f097";
630
+ }
631
+ .fa-phone-square:before {
632
+ content: "\f098";
633
+ }
634
+ .fa-twitter:before {
635
+ content: "\f099";
636
+ }
637
+ .fa-facebook:before {
638
+ content: "\f09a";
639
+ }
640
+ .fa-github:before {
641
+ content: "\f09b";
642
+ }
643
+ .fa-unlock:before {
644
+ content: "\f09c";
645
+ }
646
+ .fa-credit-card:before {
647
+ content: "\f09d";
648
+ }
649
+ .fa-rss:before {
650
+ content: "\f09e";
651
+ }
652
+ .fa-hdd-o:before {
653
+ content: "\f0a0";
654
+ }
655
+ .fa-bullhorn:before {
656
+ content: "\f0a1";
657
+ }
658
+ .fa-bell:before {
659
+ content: "\f0f3";
660
+ }
661
+ .fa-certificate:before {
662
+ content: "\f0a3";
663
+ }
664
+ .fa-hand-o-right:before {
665
+ content: "\f0a4";
666
+ }
667
+ .fa-hand-o-left:before {
668
+ content: "\f0a5";
669
+ }
670
+ .fa-hand-o-up:before {
671
+ content: "\f0a6";
672
+ }
673
+ .fa-hand-o-down:before {
674
+ content: "\f0a7";
675
+ }
676
+ .fa-arrow-circle-left:before {
677
+ content: "\f0a8";
678
+ }
679
+ .fa-arrow-circle-right:before {
680
+ content: "\f0a9";
681
+ }
682
+ .fa-arrow-circle-up:before {
683
+ content: "\f0aa";
684
+ }
685
+ .fa-arrow-circle-down:before {
686
+ content: "\f0ab";
687
+ }
688
+ .fa-globe:before {
689
+ content: "\f0ac";
690
+ }
691
+ .fa-wrench:before {
692
+ content: "\f0ad";
693
+ }
694
+ .fa-tasks:before {
695
+ content: "\f0ae";
696
+ }
697
+ .fa-filter:before {
698
+ content: "\f0b0";
699
+ }
700
+ .fa-briefcase:before {
701
+ content: "\f0b1";
702
+ }
703
+ .fa-arrows-alt:before {
704
+ content: "\f0b2";
705
+ }
706
+ .fa-group:before,
707
+ .fa-users:before {
708
+ content: "\f0c0";
709
+ }
710
+ .fa-chain:before,
711
+ .fa-link:before {
712
+ content: "\f0c1";
713
+ }
714
+ .fa-cloud:before {
715
+ content: "\f0c2";
716
+ }
717
+ .fa-flask:before {
718
+ content: "\f0c3";
719
+ }
720
+ .fa-cut:before,
721
+ .fa-scissors:before {
722
+ content: "\f0c4";
723
+ }
724
+ .fa-copy:before,
725
+ .fa-files-o:before {
726
+ content: "\f0c5";
727
+ }
728
+ .fa-paperclip:before {
729
+ content: "\f0c6";
730
+ }
731
+ .fa-save:before,
732
+ .fa-floppy-o:before {
733
+ content: "\f0c7";
734
+ }
735
+ .fa-square:before {
736
+ content: "\f0c8";
737
+ }
738
+ .fa-bars:before {
739
+ content: "\f0c9";
740
+ }
741
+ .fa-list-ul:before {
742
+ content: "\f0ca";
743
+ }
744
+ .fa-list-ol:before {
745
+ content: "\f0cb";
746
+ }
747
+ .fa-strikethrough:before {
748
+ content: "\f0cc";
749
+ }
750
+ .fa-underline:before {
751
+ content: "\f0cd";
752
+ }
753
+ .fa-table:before {
754
+ content: "\f0ce";
755
+ }
756
+ .fa-magic:before {
757
+ content: "\f0d0";
758
+ }
759
+ .fa-truck:before {
760
+ content: "\f0d1";
761
+ }
762
+ .fa-pinterest:before {
763
+ content: "\f0d2";
764
+ }
765
+ .fa-pinterest-square:before {
766
+ content: "\f0d3";
767
+ }
768
+ .fa-google-plus-square:before {
769
+ content: "\f0d4";
770
+ }
771
+ .fa-google-plus:before {
772
+ content: "\f0d5";
773
+ }
774
+ .fa-money:before {
775
+ content: "\f0d6";
776
+ }
777
+ .fa-caret-down:before {
778
+ content: "\f0d7";
779
+ }
780
+ .fa-caret-up:before {
781
+ content: "\f0d8";
782
+ }
783
+ .fa-caret-left:before {
784
+ content: "\f0d9";
785
+ }
786
+ .fa-caret-right:before {
787
+ content: "\f0da";
788
+ }
789
+ .fa-columns:before {
790
+ content: "\f0db";
791
+ }
792
+ .fa-unsorted:before,
793
+ .fa-sort:before {
794
+ content: "\f0dc";
795
+ }
796
+ .fa-sort-down:before,
797
+ .fa-sort-asc:before {
798
+ content: "\f0dd";
799
+ }
800
+ .fa-sort-up:before,
801
+ .fa-sort-desc:before {
802
+ content: "\f0de";
803
+ }
804
+ .fa-envelope:before {
805
+ content: "\f0e0";
806
+ }
807
+ .fa-linkedin:before {
808
+ content: "\f0e1";
809
+ }
810
+ .fa-rotate-left:before,
811
+ .fa-undo:before {
812
+ content: "\f0e2";
813
+ }
814
+ .fa-legal:before,
815
+ .fa-gavel:before {
816
+ content: "\f0e3";
817
+ }
818
+ .fa-dashboard:before,
819
+ .fa-tachometer:before {
820
+ content: "\f0e4";
821
+ }
822
+ .fa-comment-o:before {
823
+ content: "\f0e5";
824
+ }
825
+ .fa-comments-o:before {
826
+ content: "\f0e6";
827
+ }
828
+ .fa-flash:before,
829
+ .fa-bolt:before {
830
+ content: "\f0e7";
831
+ }
832
+ .fa-sitemap:before {
833
+ content: "\f0e8";
834
+ }
835
+ .fa-umbrella:before {
836
+ content: "\f0e9";
837
+ }
838
+ .fa-paste:before,
839
+ .fa-clipboard:before {
840
+ content: "\f0ea";
841
+ }
842
+ .fa-lightbulb-o:before {
843
+ content: "\f0eb";
844
+ }
845
+ .fa-exchange:before {
846
+ content: "\f0ec";
847
+ }
848
+ .fa-cloud-download:before {
849
+ content: "\f0ed";
850
+ }
851
+ .fa-cloud-upload:before {
852
+ content: "\f0ee";
853
+ }
854
+ .fa-user-md:before {
855
+ content: "\f0f0";
856
+ }
857
+ .fa-stethoscope:before {
858
+ content: "\f0f1";
859
+ }
860
+ .fa-suitcase:before {
861
+ content: "\f0f2";
862
+ }
863
+ .fa-bell-o:before {
864
+ content: "\f0a2";
865
+ }
866
+ .fa-coffee:before {
867
+ content: "\f0f4";
868
+ }
869
+ .fa-cutlery:before {
870
+ content: "\f0f5";
871
+ }
872
+ .fa-file-text-o:before {
873
+ content: "\f0f6";
874
+ }
875
+ .fa-building-o:before {
876
+ content: "\f0f7";
877
+ }
878
+ .fa-hospital-o:before {
879
+ content: "\f0f8";
880
+ }
881
+ .fa-ambulance:before {
882
+ content: "\f0f9";
883
+ }
884
+ .fa-medkit:before {
885
+ content: "\f0fa";
886
+ }
887
+ .fa-fighter-jet:before {
888
+ content: "\f0fb";
889
+ }
890
+ .fa-beer:before {
891
+ content: "\f0fc";
892
+ }
893
+ .fa-h-square:before {
894
+ content: "\f0fd";
895
+ }
896
+ .fa-plus-square:before {
897
+ content: "\f0fe";
898
+ }
899
+ .fa-angle-double-left:before {
900
+ content: "\f100";
901
+ }
902
+ .fa-angle-double-right:before {
903
+ content: "\f101";
904
+ }
905
+ .fa-angle-double-up:before {
906
+ content: "\f102";
907
+ }
908
+ .fa-angle-double-down:before {
909
+ content: "\f103";
910
+ }
911
+ .fa-angle-left:before {
912
+ content: "\f104";
913
+ }
914
+ .fa-angle-right:before {
915
+ content: "\f105";
916
+ }
917
+ .fa-angle-up:before {
918
+ content: "\f106";
919
+ }
920
+ .fa-angle-down:before {
921
+ content: "\f107";
922
+ }
923
+ .fa-desktop:before {
924
+ content: "\f108";
925
+ }
926
+ .fa-laptop:before {
927
+ content: "\f109";
928
+ }
929
+ .fa-tablet:before {
930
+ content: "\f10a";
931
+ }
932
+ .fa-mobile-phone:before,
933
+ .fa-mobile:before {
934
+ content: "\f10b";
935
+ }
936
+ .fa-circle-o:before {
937
+ content: "\f10c";
938
+ }
939
+ .fa-quote-left:before {
940
+ content: "\f10d";
941
+ }
942
+ .fa-quote-right:before {
943
+ content: "\f10e";
944
+ }
945
+ .fa-spinner:before {
946
+ content: "\f110";
947
+ }
948
+ .fa-circle:before {
949
+ content: "\f111";
950
+ }
951
+ .fa-mail-reply:before,
952
+ .fa-reply:before {
953
+ content: "\f112";
954
+ }
955
+ .fa-github-alt:before {
956
+ content: "\f113";
957
+ }
958
+ .fa-folder-o:before {
959
+ content: "\f114";
960
+ }
961
+ .fa-folder-open-o:before {
962
+ content: "\f115";
963
+ }
964
+ .fa-smile-o:before {
965
+ content: "\f118";
966
+ }
967
+ .fa-frown-o:before {
968
+ content: "\f119";
969
+ }
970
+ .fa-meh-o:before {
971
+ content: "\f11a";
972
+ }
973
+ .fa-gamepad:before {
974
+ content: "\f11b";
975
+ }
976
+ .fa-keyboard-o:before {
977
+ content: "\f11c";
978
+ }
979
+ .fa-flag-o:before {
980
+ content: "\f11d";
981
+ }
982
+ .fa-flag-checkered:before {
983
+ content: "\f11e";
984
+ }
985
+ .fa-terminal:before {
986
+ content: "\f120";
987
+ }
988
+ .fa-code:before {
989
+ content: "\f121";
990
+ }
991
+ .fa-reply-all:before {
992
+ content: "\f122";
993
+ }
994
+ .fa-mail-reply-all:before {
995
+ content: "\f122";
996
+ }
997
+ .fa-star-half-empty:before,
998
+ .fa-star-half-full:before,
999
+ .fa-star-half-o:before {
1000
+ content: "\f123";
1001
+ }
1002
+ .fa-location-arrow:before {
1003
+ content: "\f124";
1004
+ }
1005
+ .fa-crop:before {
1006
+ content: "\f125";
1007
+ }
1008
+ .fa-code-fork:before {
1009
+ content: "\f126";
1010
+ }
1011
+ .fa-unlink:before,
1012
+ .fa-chain-broken:before {
1013
+ content: "\f127";
1014
+ }
1015
+ .fa-question:before {
1016
+ content: "\f128";
1017
+ }
1018
+ .fa-info:before {
1019
+ content: "\f129";
1020
+ }
1021
+ .fa-exclamation:before {
1022
+ content: "\f12a";
1023
+ }
1024
+ .fa-superscript:before {
1025
+ content: "\f12b";
1026
+ }
1027
+ .fa-subscript:before {
1028
+ content: "\f12c";
1029
+ }
1030
+ .fa-eraser:before {
1031
+ content: "\f12d";
1032
+ }
1033
+ .fa-puzzle-piece:before {
1034
+ content: "\f12e";
1035
+ }
1036
+ .fa-microphone:before {
1037
+ content: "\f130";
1038
+ }
1039
+ .fa-microphone-slash:before {
1040
+ content: "\f131";
1041
+ }
1042
+ .fa-shield:before {
1043
+ content: "\f132";
1044
+ }
1045
+ .fa-calendar-o:before {
1046
+ content: "\f133";
1047
+ }
1048
+ .fa-fire-extinguisher:before {
1049
+ content: "\f134";
1050
+ }
1051
+ .fa-rocket:before {
1052
+ content: "\f135";
1053
+ }
1054
+ .fa-maxcdn:before {
1055
+ content: "\f136";
1056
+ }
1057
+ .fa-chevron-circle-left:before {
1058
+ content: "\f137";
1059
+ }
1060
+ .fa-chevron-circle-right:before {
1061
+ content: "\f138";
1062
+ }
1063
+ .fa-chevron-circle-up:before {
1064
+ content: "\f139";
1065
+ }
1066
+ .fa-chevron-circle-down:before {
1067
+ content: "\f13a";
1068
+ }
1069
+ .fa-html5:before {
1070
+ content: "\f13b";
1071
+ }
1072
+ .fa-css3:before {
1073
+ content: "\f13c";
1074
+ }
1075
+ .fa-anchor:before {
1076
+ content: "\f13d";
1077
+ }
1078
+ .fa-unlock-alt:before {
1079
+ content: "\f13e";
1080
+ }
1081
+ .fa-bullseye:before {
1082
+ content: "\f140";
1083
+ }
1084
+ .fa-ellipsis-h:before {
1085
+ content: "\f141";
1086
+ }
1087
+ .fa-ellipsis-v:before {
1088
+ content: "\f142";
1089
+ }
1090
+ .fa-rss-square:before {
1091
+ content: "\f143";
1092
+ }
1093
+ .fa-play-circle:before {
1094
+ content: "\f144";
1095
+ }
1096
+ .fa-ticket:before {
1097
+ content: "\f145";
1098
+ }
1099
+ .fa-minus-square:before {
1100
+ content: "\f146";
1101
+ }
1102
+ .fa-minus-square-o:before {
1103
+ content: "\f147";
1104
+ }
1105
+ .fa-level-up:before {
1106
+ content: "\f148";
1107
+ }
1108
+ .fa-level-down:before {
1109
+ content: "\f149";
1110
+ }
1111
+ .fa-check-square:before {
1112
+ content: "\f14a";
1113
+ }
1114
+ .fa-pencil-square:before {
1115
+ content: "\f14b";
1116
+ }
1117
+ .fa-external-link-square:before {
1118
+ content: "\f14c";
1119
+ }
1120
+ .fa-share-square:before {
1121
+ content: "\f14d";
1122
+ }
1123
+ .fa-compass:before {
1124
+ content: "\f14e";
1125
+ }
1126
+ .fa-toggle-down:before,
1127
+ .fa-caret-square-o-down:before {
1128
+ content: "\f150";
1129
+ }
1130
+ .fa-toggle-up:before,
1131
+ .fa-caret-square-o-up:before {
1132
+ content: "\f151";
1133
+ }
1134
+ .fa-toggle-right:before,
1135
+ .fa-caret-square-o-right:before {
1136
+ content: "\f152";
1137
+ }
1138
+ .fa-euro:before,
1139
+ .fa-eur:before {
1140
+ content: "\f153";
1141
+ }
1142
+ .fa-gbp:before {
1143
+ content: "\f154";
1144
+ }
1145
+ .fa-dollar:before,
1146
+ .fa-usd:before {
1147
+ content: "\f155";
1148
+ }
1149
+ .fa-rupee:before,
1150
+ .fa-inr:before {
1151
+ content: "\f156";
1152
+ }
1153
+ .fa-cny:before,
1154
+ .fa-rmb:before,
1155
+ .fa-yen:before,
1156
+ .fa-jpy:before {
1157
+ content: "\f157";
1158
+ }
1159
+ .fa-ruble:before,
1160
+ .fa-rouble:before,
1161
+ .fa-rub:before {
1162
+ content: "\f158";
1163
+ }
1164
+ .fa-won:before,
1165
+ .fa-krw:before {
1166
+ content: "\f159";
1167
+ }
1168
+ .fa-bitcoin:before,
1169
+ .fa-btc:before {
1170
+ content: "\f15a";
1171
+ }
1172
+ .fa-file:before {
1173
+ content: "\f15b";
1174
+ }
1175
+ .fa-file-text:before {
1176
+ content: "\f15c";
1177
+ }
1178
+ .fa-sort-alpha-asc:before {
1179
+ content: "\f15d";
1180
+ }
1181
+ .fa-sort-alpha-desc:before {
1182
+ content: "\f15e";
1183
+ }
1184
+ .fa-sort-amount-asc:before {
1185
+ content: "\f160";
1186
+ }
1187
+ .fa-sort-amount-desc:before {
1188
+ content: "\f161";
1189
+ }
1190
+ .fa-sort-numeric-asc:before {
1191
+ content: "\f162";
1192
+ }
1193
+ .fa-sort-numeric-desc:before {
1194
+ content: "\f163";
1195
+ }
1196
+ .fa-thumbs-up:before {
1197
+ content: "\f164";
1198
+ }
1199
+ .fa-thumbs-down:before {
1200
+ content: "\f165";
1201
+ }
1202
+ .fa-youtube-square:before {
1203
+ content: "\f166";
1204
+ }
1205
+ .fa-youtube:before {
1206
+ content: "\f167";
1207
+ }
1208
+ .fa-xing:before {
1209
+ content: "\f168";
1210
+ }
1211
+ .fa-xing-square:before {
1212
+ content: "\f169";
1213
+ }
1214
+ .fa-youtube-play:before {
1215
+ content: "\f16a";
1216
+ }
1217
+ .fa-dropbox:before {
1218
+ content: "\f16b";
1219
+ }
1220
+ .fa-stack-overflow:before {
1221
+ content: "\f16c";
1222
+ }
1223
+ .fa-instagram:before {
1224
+ content: "\f16d";
1225
+ }
1226
+ .fa-flickr:before {
1227
+ content: "\f16e";
1228
+ }
1229
+ .fa-adn:before {
1230
+ content: "\f170";
1231
+ }
1232
+ .fa-bitbucket:before {
1233
+ content: "\f171";
1234
+ }
1235
+ .fa-bitbucket-square:before {
1236
+ content: "\f172";
1237
+ }
1238
+ .fa-tumblr:before {
1239
+ content: "\f173";
1240
+ }
1241
+ .fa-tumblr-square:before {
1242
+ content: "\f174";
1243
+ }
1244
+ .fa-long-arrow-down:before {
1245
+ content: "\f175";
1246
+ }
1247
+ .fa-long-arrow-up:before {
1248
+ content: "\f176";
1249
+ }
1250
+ .fa-long-arrow-left:before {
1251
+ content: "\f177";
1252
+ }
1253
+ .fa-long-arrow-right:before {
1254
+ content: "\f178";
1255
+ }
1256
+ .fa-apple:before {
1257
+ content: "\f179";
1258
+ }
1259
+ .fa-windows:before {
1260
+ content: "\f17a";
1261
+ }
1262
+ .fa-android:before {
1263
+ content: "\f17b";
1264
+ }
1265
+ .fa-linux:before {
1266
+ content: "\f17c";
1267
+ }
1268
+ .fa-dribbble:before {
1269
+ content: "\f17d";
1270
+ }
1271
+ .fa-skype:before {
1272
+ content: "\f17e";
1273
+ }
1274
+ .fa-foursquare:before {
1275
+ content: "\f180";
1276
+ }
1277
+ .fa-trello:before {
1278
+ content: "\f181";
1279
+ }
1280
+ .fa-female:before {
1281
+ content: "\f182";
1282
+ }
1283
+ .fa-male:before {
1284
+ content: "\f183";
1285
+ }
1286
+ .fa-gittip:before {
1287
+ content: "\f184";
1288
+ }
1289
+ .fa-sun-o:before {
1290
+ content: "\f185";
1291
+ }
1292
+ .fa-moon-o:before {
1293
+ content: "\f186";
1294
+ }
1295
+ .fa-archive:before {
1296
+ content: "\f187";
1297
+ }
1298
+ .fa-bug:before {
1299
+ content: "\f188";
1300
+ }
1301
+ .fa-vk:before {
1302
+ content: "\f189";
1303
+ }
1304
+ .fa-weibo:before {
1305
+ content: "\f18a";
1306
+ }
1307
+ .fa-renren:before {
1308
+ content: "\f18b";
1309
+ }
1310
+ .fa-pagelines:before {
1311
+ content: "\f18c";
1312
+ }
1313
+ .fa-stack-exchange:before {
1314
+ content: "\f18d";
1315
+ }
1316
+ .fa-arrow-circle-o-right:before {
1317
+ content: "\f18e";
1318
+ }
1319
+ .fa-arrow-circle-o-left:before {
1320
+ content: "\f190";
1321
+ }
1322
+ .fa-toggle-left:before,
1323
+ .fa-caret-square-o-left:before {
1324
+ content: "\f191";
1325
+ }
1326
+ .fa-dot-circle-o:before {
1327
+ content: "\f192";
1328
+ }
1329
+ .fa-wheelchair:before {
1330
+ content: "\f193";
1331
+ }
1332
+ .fa-vimeo-square:before {
1333
+ content: "\f194";
1334
+ }
1335
+ .fa-turkish-lira:before,
1336
+ .fa-try:before {
1337
+ content: "\f195";
1338
+ }
1339
+ .fa-plus-square-o:before {
1340
+ content: "\f196";
1341
+ }