font-awesome-middleman 0.0.1 → 1.0

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: 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');
11
+ // src: font-url('FontAwesome.otf') format('opentype'); // used when developing fonts
12
+ font-weight: normal;
13
+ font-style: normal;
14
+ }
@@ -0,0 +1,732 @@
1
+ // Variables
2
+ // --------------------------
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";