font-awesome-sass 3.2.1.1

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