compass_radix 2.0.1 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/stylesheets/_compass_radix.scss +3 -5
  3. data/stylesheets/compass_radix/_comment.scss +1 -1
  4. data/stylesheets/compass_radix/_form.scss +117 -64
  5. data/stylesheets/compass_radix/_layout.scss +3 -27
  6. data/stylesheets/compass_radix/_menu.scss +0 -187
  7. data/stylesheets/compass_radix/_mixin.scss +45 -45
  8. data/stylesheets/compass_radix/_node.scss +39 -41
  9. data/stylesheets/compass_radix/_panel.scss +17 -6
  10. data/stylesheets/compass_radix/_structure.scss +198 -50
  11. data/stylesheets/compass_radix/_variable.scss +523 -179
  12. data/stylesheets/fontawesome/_bordered-pulled.scss +16 -0
  13. data/stylesheets/fontawesome/_core.scss +9 -126
  14. data/stylesheets/fontawesome/_extras.scss +9 -58
  15. data/stylesheets/fontawesome/_fixed-width.scss +6 -0
  16. data/stylesheets/fontawesome/_icons.scss +410 -379
  17. data/stylesheets/fontawesome/_larger.scss +13 -0
  18. data/stylesheets/fontawesome/_list.scss +19 -0
  19. data/stylesheets/fontawesome/_mixins.scss +14 -42
  20. data/stylesheets/fontawesome/_path.scss +6 -6
  21. data/stylesheets/fontawesome/_rotated-flipped.scss +9 -0
  22. data/stylesheets/fontawesome/_spinning.scss +30 -0
  23. data/stylesheets/fontawesome/_stacked.scss +20 -0
  24. data/stylesheets/fontawesome/_variables.scss +377 -730
  25. data/stylesheets/fontawesome/font-awesome.scss +9 -25
  26. data/templates/project/_compass_radix.scss +0 -1
  27. data/templates/project/manifest.rb +0 -1
  28. metadata +12 -10
  29. data/stylesheets/_compass_radix_responsive.scss +0 -13
  30. data/stylesheets/compass_radix/_responsive_form.scss +0 -80
  31. data/stylesheets/compass_radix/_responsive_menu.scss +0 -75
  32. data/stylesheets/fontawesome/_bootstrap.scss +0 -84
  33. data/stylesheets/fontawesome/font-awesome-ie7.scss +0 -1953
@@ -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,12 +3,12 @@
3
3
 
4
4
  @font-face {
5
5
  font-family: 'FontAwesome';
6
- src: url('#{$FontAwesomePath}/fontawesome-webfont.eot?v=#{$FontAwesomeVersion}');
7
- src: url('#{$FontAwesomePath}/fontawesome-webfont.eot?#iefix&v=#{$FontAwesomeVersion}') format('embedded-opentype'),
8
- url('#{$FontAwesomePath}/fontawesome-webfont.woff?v=#{$FontAwesomeVersion}') format('woff'),
9
- url('#{$FontAwesomePath}/fontawesome-webfont.ttf?v=#{$FontAwesomeVersion}') format('truetype'),
10
- url('#{$FontAwesomePath}/fontawesome-webfont.svg#fontawesomeregular?v=#{$FontAwesomeVersion}') format('svg');
11
- // src: url('#{$FontAwesomePath}/FontAwesome.otf') format('opentype'); // used when developing fonts
6
+ src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
7
+ src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
8
+ url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
9
+ url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
10
+ url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
11
+ //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
12
12
  font-weight: normal;
13
13
  font-style: normal;
14
14
  }
@@ -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,734 +1,381 @@
1
1
  // Variables
2
2
  // --------------------------
3
3
 
4
- $FontAwesomePath: "../fonts" !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";
4
+ $fa-font-path: "../fonts" !default;
5
+ //$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.0.3/fonts" !default; // for referencing Bootstrap CDN font files directly
6
+ $fa-css-prefix: fa !default;
7
+ $fa-version: "4.0.3" !default;
8
+ $fa-border-color: #eee !default;
9
+ $fa-inverse: #fff !default;
10
+ $fa-li-width: (30em / 14) !default;
11
+
12
+ $fa-var-glass: "\f000";
13
+ $fa-var-music: "\f001";
14
+ $fa-var-search: "\f002";
15
+ $fa-var-envelope-o: "\f003";
16
+ $fa-var-heart: "\f004";
17
+ $fa-var-star: "\f005";
18
+ $fa-var-star-o: "\f006";
19
+ $fa-var-user: "\f007";
20
+ $fa-var-film: "\f008";
21
+ $fa-var-th-large: "\f009";
22
+ $fa-var-th: "\f00a";
23
+ $fa-var-th-list: "\f00b";
24
+ $fa-var-check: "\f00c";
25
+ $fa-var-times: "\f00d";
26
+ $fa-var-search-plus: "\f00e";
27
+ $fa-var-search-minus: "\f010";
28
+ $fa-var-power-off: "\f011";
29
+ $fa-var-signal: "\f012";
30
+ $fa-var-cog: "\f013";
31
+ $fa-var-trash-o: "\f014";
32
+ $fa-var-home: "\f015";
33
+ $fa-var-file-o: "\f016";
34
+ $fa-var-clock-o: "\f017";
35
+ $fa-var-road: "\f018";
36
+ $fa-var-download: "\f019";
37
+ $fa-var-arrow-circle-o-down: "\f01a";
38
+ $fa-var-arrow-circle-o-up: "\f01b";
39
+ $fa-var-inbox: "\f01c";
40
+ $fa-var-play-circle-o: "\f01d";
41
+ $fa-var-repeat: "\f01e";
42
+ $fa-var-refresh: "\f021";
43
+ $fa-var-list-alt: "\f022";
44
+ $fa-var-lock: "\f023";
45
+ $fa-var-flag: "\f024";
46
+ $fa-var-headphones: "\f025";
47
+ $fa-var-volume-off: "\f026";
48
+ $fa-var-volume-down: "\f027";
49
+ $fa-var-volume-up: "\f028";
50
+ $fa-var-qrcode: "\f029";
51
+ $fa-var-barcode: "\f02a";
52
+ $fa-var-tag: "\f02b";
53
+ $fa-var-tags: "\f02c";
54
+ $fa-var-book: "\f02d";
55
+ $fa-var-bookmark: "\f02e";
56
+ $fa-var-print: "\f02f";
57
+ $fa-var-camera: "\f030";
58
+ $fa-var-font: "\f031";
59
+ $fa-var-bold: "\f032";
60
+ $fa-var-italic: "\f033";
61
+ $fa-var-text-height: "\f034";
62
+ $fa-var-text-width: "\f035";
63
+ $fa-var-align-left: "\f036";
64
+ $fa-var-align-center: "\f037";
65
+ $fa-var-align-right: "\f038";
66
+ $fa-var-align-justify: "\f039";
67
+ $fa-var-list: "\f03a";
68
+ $fa-var-outdent: "\f03b";
69
+ $fa-var-indent: "\f03c";
70
+ $fa-var-video-camera: "\f03d";
71
+ $fa-var-picture-o: "\f03e";
72
+ $fa-var-pencil: "\f040";
73
+ $fa-var-map-marker: "\f041";
74
+ $fa-var-adjust: "\f042";
75
+ $fa-var-tint: "\f043";
76
+ $fa-var-pencil-square-o: "\f044";
77
+ $fa-var-share-square-o: "\f045";
78
+ $fa-var-check-square-o: "\f046";
79
+ $fa-var-arrows: "\f047";
80
+ $fa-var-step-backward: "\f048";
81
+ $fa-var-fast-backward: "\f049";
82
+ $fa-var-backward: "\f04a";
83
+ $fa-var-play: "\f04b";
84
+ $fa-var-pause: "\f04c";
85
+ $fa-var-stop: "\f04d";
86
+ $fa-var-forward: "\f04e";
87
+ $fa-var-fast-forward: "\f050";
88
+ $fa-var-step-forward: "\f051";
89
+ $fa-var-eject: "\f052";
90
+ $fa-var-chevron-left: "\f053";
91
+ $fa-var-chevron-right: "\f054";
92
+ $fa-var-plus-circle: "\f055";
93
+ $fa-var-minus-circle: "\f056";
94
+ $fa-var-times-circle: "\f057";
95
+ $fa-var-check-circle: "\f058";
96
+ $fa-var-question-circle: "\f059";
97
+ $fa-var-info-circle: "\f05a";
98
+ $fa-var-crosshairs: "\f05b";
99
+ $fa-var-times-circle-o: "\f05c";
100
+ $fa-var-check-circle-o: "\f05d";
101
+ $fa-var-ban: "\f05e";
102
+ $fa-var-arrow-left: "\f060";
103
+ $fa-var-arrow-right: "\f061";
104
+ $fa-var-arrow-up: "\f062";
105
+ $fa-var-arrow-down: "\f063";
106
+ $fa-var-share: "\f064";
107
+ $fa-var-expand: "\f065";
108
+ $fa-var-compress: "\f066";
109
+ $fa-var-plus: "\f067";
110
+ $fa-var-minus: "\f068";
111
+ $fa-var-asterisk: "\f069";
112
+ $fa-var-exclamation-circle: "\f06a";
113
+ $fa-var-gift: "\f06b";
114
+ $fa-var-leaf: "\f06c";
115
+ $fa-var-fire: "\f06d";
116
+ $fa-var-eye: "\f06e";
117
+ $fa-var-eye-slash: "\f070";
118
+ $fa-var-exclamation-triangle: "\f071";
119
+ $fa-var-plane: "\f072";
120
+ $fa-var-calendar: "\f073";
121
+ $fa-var-random: "\f074";
122
+ $fa-var-comment: "\f075";
123
+ $fa-var-magnet: "\f076";
124
+ $fa-var-chevron-up: "\f077";
125
+ $fa-var-chevron-down: "\f078";
126
+ $fa-var-retweet: "\f079";
127
+ $fa-var-shopping-cart: "\f07a";
128
+ $fa-var-folder: "\f07b";
129
+ $fa-var-folder-open: "\f07c";
130
+ $fa-var-arrows-v: "\f07d";
131
+ $fa-var-arrows-h: "\f07e";
132
+ $fa-var-bar-chart-o: "\f080";
133
+ $fa-var-twitter-square: "\f081";
134
+ $fa-var-facebook-square: "\f082";
135
+ $fa-var-camera-retro: "\f083";
136
+ $fa-var-key: "\f084";
137
+ $fa-var-cogs: "\f085";
138
+ $fa-var-comments: "\f086";
139
+ $fa-var-thumbs-o-up: "\f087";
140
+ $fa-var-thumbs-o-down: "\f088";
141
+ $fa-var-star-half: "\f089";
142
+ $fa-var-heart-o: "\f08a";
143
+ $fa-var-sign-out: "\f08b";
144
+ $fa-var-linkedin-square: "\f08c";
145
+ $fa-var-thumb-tack: "\f08d";
146
+ $fa-var-external-link: "\f08e";
147
+ $fa-var-sign-in: "\f090";
148
+ $fa-var-trophy: "\f091";
149
+ $fa-var-github-square: "\f092";
150
+ $fa-var-upload: "\f093";
151
+ $fa-var-lemon-o: "\f094";
152
+ $fa-var-phone: "\f095";
153
+ $fa-var-square-o: "\f096";
154
+ $fa-var-bookmark-o: "\f097";
155
+ $fa-var-phone-square: "\f098";
156
+ $fa-var-twitter: "\f099";
157
+ $fa-var-facebook: "\f09a";
158
+ $fa-var-github: "\f09b";
159
+ $fa-var-unlock: "\f09c";
160
+ $fa-var-credit-card: "\f09d";
161
+ $fa-var-rss: "\f09e";
162
+ $fa-var-hdd-o: "\f0a0";
163
+ $fa-var-bullhorn: "\f0a1";
164
+ $fa-var-bell: "\f0f3";
165
+ $fa-var-certificate: "\f0a3";
166
+ $fa-var-hand-o-right: "\f0a4";
167
+ $fa-var-hand-o-left: "\f0a5";
168
+ $fa-var-hand-o-up: "\f0a6";
169
+ $fa-var-hand-o-down: "\f0a7";
170
+ $fa-var-arrow-circle-left: "\f0a8";
171
+ $fa-var-arrow-circle-right: "\f0a9";
172
+ $fa-var-arrow-circle-up: "\f0aa";
173
+ $fa-var-arrow-circle-down: "\f0ab";
174
+ $fa-var-globe: "\f0ac";
175
+ $fa-var-wrench: "\f0ad";
176
+ $fa-var-tasks: "\f0ae";
177
+ $fa-var-filter: "\f0b0";
178
+ $fa-var-briefcase: "\f0b1";
179
+ $fa-var-arrows-alt: "\f0b2";
180
+ $fa-var-users: "\f0c0";
181
+ $fa-var-link: "\f0c1";
182
+ $fa-var-cloud: "\f0c2";
183
+ $fa-var-flask: "\f0c3";
184
+ $fa-var-scissors: "\f0c4";
185
+ $fa-var-files-o: "\f0c5";
186
+ $fa-var-paperclip: "\f0c6";
187
+ $fa-var-floppy-o: "\f0c7";
188
+ $fa-var-square: "\f0c8";
189
+ $fa-var-bars: "\f0c9";
190
+ $fa-var-list-ul: "\f0ca";
191
+ $fa-var-list-ol: "\f0cb";
192
+ $fa-var-strikethrough: "\f0cc";
193
+ $fa-var-underline: "\f0cd";
194
+ $fa-var-table: "\f0ce";
195
+ $fa-var-magic: "\f0d0";
196
+ $fa-var-truck: "\f0d1";
197
+ $fa-var-pinterest: "\f0d2";
198
+ $fa-var-pinterest-square: "\f0d3";
199
+ $fa-var-google-plus-square: "\f0d4";
200
+ $fa-var-google-plus: "\f0d5";
201
+ $fa-var-money: "\f0d6";
202
+ $fa-var-caret-down: "\f0d7";
203
+ $fa-var-caret-up: "\f0d8";
204
+ $fa-var-caret-left: "\f0d9";
205
+ $fa-var-caret-right: "\f0da";
206
+ $fa-var-columns: "\f0db";
207
+ $fa-var-sort: "\f0dc";
208
+ $fa-var-sort-asc: "\f0dd";
209
+ $fa-var-sort-desc: "\f0de";
210
+ $fa-var-envelope: "\f0e0";
211
+ $fa-var-linkedin: "\f0e1";
212
+ $fa-var-undo: "\f0e2";
213
+ $fa-var-gavel: "\f0e3";
214
+ $fa-var-tachometer: "\f0e4";
215
+ $fa-var-comment-o: "\f0e5";
216
+ $fa-var-comments-o: "\f0e6";
217
+ $fa-var-bolt: "\f0e7";
218
+ $fa-var-sitemap: "\f0e8";
219
+ $fa-var-umbrella: "\f0e9";
220
+ $fa-var-clipboard: "\f0ea";
221
+ $fa-var-lightbulb-o: "\f0eb";
222
+ $fa-var-exchange: "\f0ec";
223
+ $fa-var-cloud-download: "\f0ed";
224
+ $fa-var-cloud-upload: "\f0ee";
225
+ $fa-var-user-md: "\f0f0";
226
+ $fa-var-stethoscope: "\f0f1";
227
+ $fa-var-suitcase: "\f0f2";
228
+ $fa-var-bell-o: "\f0a2";
229
+ $fa-var-coffee: "\f0f4";
230
+ $fa-var-cutlery: "\f0f5";
231
+ $fa-var-file-text-o: "\f0f6";
232
+ $fa-var-building-o: "\f0f7";
233
+ $fa-var-hospital-o: "\f0f8";
234
+ $fa-var-ambulance: "\f0f9";
235
+ $fa-var-medkit: "\f0fa";
236
+ $fa-var-fighter-jet: "\f0fb";
237
+ $fa-var-beer: "\f0fc";
238
+ $fa-var-h-square: "\f0fd";
239
+ $fa-var-plus-square: "\f0fe";
240
+ $fa-var-angle-double-left: "\f100";
241
+ $fa-var-angle-double-right: "\f101";
242
+ $fa-var-angle-double-up: "\f102";
243
+ $fa-var-angle-double-down: "\f103";
244
+ $fa-var-angle-left: "\f104";
245
+ $fa-var-angle-right: "\f105";
246
+ $fa-var-angle-up: "\f106";
247
+ $fa-var-angle-down: "\f107";
248
+ $fa-var-desktop: "\f108";
249
+ $fa-var-laptop: "\f109";
250
+ $fa-var-tablet: "\f10a";
251
+ $fa-var-mobile: "\f10b";
252
+ $fa-var-circle-o: "\f10c";
253
+ $fa-var-quote-left: "\f10d";
254
+ $fa-var-quote-right: "\f10e";
255
+ $fa-var-spinner: "\f110";
256
+ $fa-var-circle: "\f111";
257
+ $fa-var-reply: "\f112";
258
+ $fa-var-github-alt: "\f113";
259
+ $fa-var-folder-o: "\f114";
260
+ $fa-var-folder-open-o: "\f115";
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-alt: "\f13e";
299
+ $fa-var-bullseye: "\f140";
300
+ $fa-var-ellipsis-h: "\f141";
301
+ $fa-var-ellipsis-v: "\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";
380
+ $fa-var-plus-square-o: "\f196";
734
381