font-awesome-rails 3.2.1.3 → 4.0.0.0

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: 46dc0cacc99df215abe12e44521708e1aaaf0e4a
4
- data.tar.gz: bfb7b78756e04af7afffa2a437a104f7a4ef3b43
3
+ metadata.gz: b08dd5de2b11c19840d5eb5643647383e5a4655e
4
+ data.tar.gz: 416ce426a02b5c13e597e0d1dbe7cbdf64956ef3
5
5
  SHA512:
6
- metadata.gz: 8acb42429f812cdd59cce465d855f716f28e4f76c55813b1de6720c56c055fe724f68c99907f652118406b1488d08c555ce0d5b4b67394b6f138eca1ec3e6cd8
7
- data.tar.gz: 4e98659049873b39b2815ec07aa4a0df1d2ad56acfe1f926c16330c16145af31db36a8a2391911772c82b5d5952d4281e0340d972bf09302bd5f45d346716d1e
6
+ metadata.gz: 6a6c7e714c523be31ec732dcf83f8cc9a1a60016ed339506ddf5bdd9cfad45f803aef867c353f64c17dd56dcba6ccc8c020cf2abe9a1201b85cd8b98675ac2ef
7
+ data.tar.gz: 641f5e727f84afeef7e2bf5a1b38465ce7d1ea379ef57c48635442e9d3f7f75ab3f8a659c22213c316ba9cd4bb9920ac3350d1d63c044d2ce15398d726cf9c3b
data/README.md CHANGED
@@ -23,6 +23,7 @@ In your `application.css`, include the css file:
23
23
  *= require font-awesome
24
24
  */
25
25
  ```
26
+ Then restart your webserver if it was previously running.
26
27
 
27
28
  Congrats! You now have scalable vector icon support. Pick an icon and check out the
28
29
  [FontAwesome Examples](http://fortawesome.github.io/Font-Awesome/examples/).
@@ -44,41 +45,6 @@ add this to your `application.css.sass` file:
44
45
  @import font-awesome
45
46
  ```
46
47
 
47
- ### IE7 Support
48
-
49
- If you must support IE7, use a
50
- [conditional comment](http://en.wikipedia.org/wiki/Conditional_comment) to
51
- provide the `font-awesome-ie7.min.css` stylesheet to Internet Explorer.
52
-
53
- ```rhtml
54
- <!--[if lt IE 8]>
55
- <%= stylesheet_link_tag "font-awesome-ie7.min.css", media: "all" %>
56
- <![endif]-->
57
- ```
58
-
59
- In haml, that would look like:
60
-
61
- ```haml
62
- /[if lt IE 8]
63
- = stylesheet_link_tag "font-awesome-ie7.min.css", media: "all"
64
- ```
65
-
66
- Either way, Make sure that `font-awesome-ie7.min.css` is part of `config.assets.precompile` in your `environments/production.rb`.
67
-
68
- ```ruby
69
- config.assets.precompile += %w( font-awesome-ie7.min.css )
70
- ```
71
-
72
- Alternatively, if you already have a CSS file provided by a conditional
73
- comment (say, `application-ie.css`), you can include the ie7 styleshet in
74
- that:
75
-
76
- ```css
77
- /*
78
- *= require font-awesome-ie7.min
79
- */
80
- ```
81
-
82
48
  ### Helpers
83
49
 
84
50
  There are also some helpers (`fa_icon` and `fa_stacked_icon`) that make your
@@ -86,33 +52,36 @@ views _icontastic!_.
86
52
 
87
53
  ```ruby
88
54
  fa_icon "camera-retro"
89
- # => <i class="icon-camera-retro"></i>
55
+ # => <i class="fa fa-camera-retro"></i>
90
56
 
91
57
  fa_icon "camera-retro", text: "Take a photo"
92
- # => <i class="icon-camera-retro"></i> Take a photo
58
+ # => <i class="fa fa-camera-retro"></i> Take a photo
93
59
 
94
- fa_icon "quote-left 4x muted", class: "pull-left"
95
- # => <i class="icon-quote-left icon-4x icon-muted pull-left"></i>
60
+ fa_icon "quote-left 4x muted", class: "muted pull-left"
61
+ # => <i class="fa fa-quote-left fa-4x muted pull-left"></i>
96
62
 
97
63
  content_tag(:li, fa_icon("ok li", text: "Bulleted list item"))
98
- # => <li><i class="icon-ok icon-li"></i> Bulleted list item</li>
64
+ # => <li><i class="fa fa-ok fa-li"></i> Bulleted list item</li>
99
65
  ```
100
66
 
101
67
  ```ruby
102
- fa_stacked_icon "twitter", base: "check-empty"
103
- # => <span class="icon-stack">
104
- # => <i class="icon-check-empty icon-stack-base"></i>
105
- # => <i class="icon-twitter"></i>
68
+ fa_stacked_icon "twitter", base: "square-o"
69
+ # => <span class="fa-stack">
70
+ # => <i class="fa fa-square-o fa-stack-2x"></i>
71
+ # => <i class="fa fa-twitter fa-stack-1x"></i>
106
72
  # => </span>
107
73
 
108
- fa_stacked_icon "terminal light", base: "sign-blank", class: "pull-right", text: "Hi!"
109
- # => <span class="icon-stack pull-right">
110
- # => <i class="icon-sign-blank icon-stack-base"></i>
111
- # => <i class="icon-terminal icon-light"></i>
74
+ fa_stacked_icon "terminal inverse", base: "square", class: "pull-right", text: "Hi!"
75
+ # => <span class="fa-stack pull-right">
76
+ # => <i class="fa fa-square fa-stack-2x"></i>
77
+ # => <i class="fa fa-terminal fa-inverse fa-stack-1x"></i>
112
78
  # => </span> Hi!
113
79
 
114
80
  ```
115
81
 
82
+ **Note:** In Rails 3.2, make sure font-awesome-rails is outside the bundler asset group
83
+ so that these helpers are automatically loaded in production environments.
84
+
116
85
  ## Changes
117
86
 
118
87
  | Version | FontAwesome SHA1 | Notes / Other additions |
@@ -135,6 +104,7 @@ fa_stacked_icon "terminal light", base: "sign-blank", class: "pull-right", text:
135
104
  | 3.2.1.1 | b1a8ad4 | renamed Font::Awesome module to FontAwesome to avoid Font name conflicts |
136
105
  | 3.2.1.2 | b1a8ad4 | fixed suffix on svg font url during asset precompilation |
137
106
  | 3.2.1.3 | b1a8ad4 | added `fa_icon` and `fa_stacked_icon` view helpers |
107
+ | 4.0.0.0 | 4e92eeb | 4.0.0 release (new naming conventions, new icons, IE7 support dropped) |
138
108
 
139
109
  **note on version 0.2.0**: FontAwesome now includes scss and sass files, but
140
110
  when I used them instead of the plain ol css file included in the project, it
@@ -310,7 +310,7 @@
310
310
  <glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
311
311
  <glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
312
312
  <glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
313
- <glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1708 881l-188 -881h-304l181 849q4 21 1 43q-4 20 -16 35q-10 14 -28 24q-18 9 -40 9h-197l-205 -960h-303l204 960h-304l-205 -960h-304l272 1280h1139q157 0 245 -118q86 -116 52 -281z" />
313
+ <glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
314
314
  <glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
315
315
  <glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
316
316
  <glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
@@ -342,7 +342,7 @@
342
342
  <glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
343
343
  <glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
344
344
  <glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
345
- <glyph unicode="&#xf158;" horiz-adv-x="1664" d="M1664 352v-32q0 -132 -94 -226t-226 -94h-128q-132 0 -226 94t-94 226v480h-224q-2 -102 -14.5 -190.5t-30.5 -156t-48.5 -126.5t-57 -99.5t-67.5 -77.5t-69.5 -58.5t-74 -44t-69 -32t-65.5 -25.5q-4 -2 -32 -13q-8 -2 -12 -2q-22 0 -30 20l-71 178q-5 13 0 25t17 17 q7 3 20 7.5t18 6.5q31 12 46.5 18.5t44.5 20t45.5 26t42 32.5t40.5 42.5t34.5 53.5t30.5 68.5t22.5 83.5t17 103t6.5 123h-256q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h1216q14 0 23 -9t9 -23v-160q0 -14 -9 -23t-23 -9h-224v-512q0 -26 19 -45t45 -19h128q26 0 45 19t19 45 v64q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1280 1376v-160q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h960q14 0 23 -9t9 -23z" />
345
+ <glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
346
346
  <glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
347
347
  <glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
348
348
  <glyph unicode="&#xf15b;" horiz-adv-x="1280" d="M1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h544v-544q0 -40 28 -68t68 -28h544zM1277 896h-509v509q82 -15 132 -65l312 -312q50 -50 65 -132z" />
@@ -390,10 +390,25 @@
390
390
  <glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
391
391
  <glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
392
392
  <glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
393
- <glyph unicode="&#xf18b;" horiz-adv-x="1920" d="M805 163q-122 -67 -261 -67q-141 0 -261 67q98 61 167 149t94 191q25 -103 94 -191t167 -149zM453 1176v-344q0 -179 -89.5 -326t-234.5 -217q-129 152 -129 351q0 200 129.5 352t323.5 184zM958 991q-128 -152 -128 -351q0 -201 128 -351q-145 70 -234.5 218t-89.5 328 v341q196 -33 324 -185zM1638 163q-122 -67 -261 -67q-141 0 -261 67q98 61 167 149t94 191q25 -103 94 -191t167 -149zM1286 1176v-344q0 -179 -91 -326t-237 -217v0q133 154 133 351q0 195 -133 351q129 151 328 185zM1920 640q0 -201 -129 -351q-145 70 -234.5 218 t-89.5 328v341q194 -32 323.5 -184t129.5 -352z" />
394
- <glyph unicode="&#xf18c;" horiz-adv-x="1792" />
395
- <glyph unicode="&#xf18d;" horiz-adv-x="1792" />
396
- <glyph unicode="&#xf18e;" horiz-adv-x="1792" />
393
+ <glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
394
+ <glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
395
+ <glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
396
+ <glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
397
+ <glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
398
+ <glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
399
+ <glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
400
+ <glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
401
+ <glyph unicode="&#xf194;" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
402
+ <glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
403
+ <glyph unicode="&#xf196;" horiz-adv-x="1792" />
404
+ <glyph unicode="&#xf197;" horiz-adv-x="1792" />
405
+ <glyph unicode="&#xf198;" horiz-adv-x="1792" />
406
+ <glyph unicode="&#xf199;" horiz-adv-x="1792" />
407
+ <glyph unicode="&#xf19a;" horiz-adv-x="1792" />
408
+ <glyph unicode="&#xf19b;" horiz-adv-x="1792" />
409
+ <glyph unicode="&#xf19c;" horiz-adv-x="1792" />
410
+ <glyph unicode="&#xf19d;" horiz-adv-x="1792" />
411
+ <glyph unicode="&#xf19e;" horiz-adv-x="1792" />
397
412
  <glyph unicode="&#xf500;" horiz-adv-x="1792" />
398
413
  </font>
399
414
  </defs></svg>
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Font Awesome 3.2.1
2
+ * Font Awesome 4.0.0
3
3
  * the iconic font designed for Bootstrap
4
4
  * ------------------------------------------------------------------------------
5
5
  * The full suite of pictographic icons, examples, and documentation can be
@@ -20,7 +20,7 @@
20
20
  * Author - Dave Gandy
21
21
  * ------------------------------------------------------------------------------
22
22
  * Email: dave@fontawesome.io
23
- * Twitter: http://twitter.com/byscuits
23
+ * Twitter: http://twitter.com/davegandy
24
24
  * Work: Lead Product Designer @ Kyruus - http://kyruus.com
25
25
  */
26
26
  /* FONT PATH
@@ -32,114 +32,59 @@
32
32
  font-weight: normal;
33
33
  font-style: normal;
34
34
  }
35
- /* FONT AWESOME CORE
36
- * -------------------------- */
37
- [class^="icon-"],
38
- [class*=" icon-"] {
35
+ .fa {
36
+ display: inline-block;
39
37
  font-family: FontAwesome;
40
- font-weight: normal;
41
38
  font-style: normal;
42
- text-decoration: inherit;
39
+ font-weight: normal;
40
+ line-height: 1;
43
41
  -webkit-font-smoothing: antialiased;
44
- *margin-right: .3em;
45
- }
46
- [class^="icon-"]:before,
47
- [class*=" icon-"]:before {
48
- text-decoration: inherit;
49
- display: inline-block;
50
- speak: none;
42
+ -moz-osx-font-smoothing: grayscale;
51
43
  }
52
44
  /* makes the font 33% larger relative to the icon container */
53
- .icon-large:before {
54
- vertical-align: -10%;
45
+ .fa-lg {
55
46
  font-size: 1.3333333333333333em;
47
+ line-height: 0.75em;
48
+ vertical-align: -15%;
56
49
  }
57
- /* makes sure icons active on rollover in links */
58
- a [class^="icon-"],
59
- a [class*=" icon-"] {
60
- display: inline;
50
+ .fa-2x {
51
+ font-size: 2em;
61
52
  }
62
- /* increased font size for icon-large */
63
- [class^="icon-"].icon-fixed-width,
64
- [class*=" icon-"].icon-fixed-width {
65
- display: inline-block;
66
- width: 1.1428571428571428em;
67
- text-align: right;
68
- padding-right: 0.2857142857142857em;
53
+ .fa-3x {
54
+ font-size: 3em;
55
+ }
56
+ .fa-4x {
57
+ font-size: 4em;
69
58
  }
70
- [class^="icon-"].icon-fixed-width.icon-large,
71
- [class*=" icon-"].icon-fixed-width.icon-large {
72
- width: 1.4285714285714286em;
59
+ .fa-5x {
60
+ font-size: 5em;
61
+ }
62
+ .fa-fw {
63
+ width: 1.2857142857142858em;
64
+ text-align: center;
73
65
  }
74
- .icons-ul {
66
+ .fa-ul {
67
+ padding-left: 0;
75
68
  margin-left: 2.142857142857143em;
76
69
  list-style-type: none;
77
70
  }
78
- .icons-ul > li {
71
+ .fa-ul > li {
79
72
  position: relative;
80
73
  }
81
- .icons-ul .icon-li {
74
+ .fa-li {
82
75
  position: absolute;
83
76
  left: -2.142857142857143em;
84
77
  width: 2.142857142857143em;
78
+ top: 0.14285714285714285em;
85
79
  text-align: center;
86
- line-height: inherit;
87
- }
88
- [class^="icon-"].hide,
89
- [class*=" icon-"].hide {
90
- display: none;
91
80
  }
92
- .icon-muted {
93
- color: #eeeeee;
81
+ .fa-li.fa-lg {
82
+ left: -1.8571428571428572em;
94
83
  }
95
- .icon-light {
96
- color: #ffffff;
97
- }
98
- .icon-dark {
99
- color: #333333;
100
- }
101
- .icon-border {
102
- border: solid 1px #eeeeee;
84
+ .fa-border {
103
85
  padding: .2em .25em .15em;
104
- -webkit-border-radius: 3px;
105
- -moz-border-radius: 3px;
106
- border-radius: 3px;
107
- }
108
- .icon-2x {
109
- font-size: 2em;
110
- }
111
- .icon-2x.icon-border {
112
- border-width: 2px;
113
- -webkit-border-radius: 4px;
114
- -moz-border-radius: 4px;
115
- border-radius: 4px;
116
- }
117
- .icon-3x {
118
- font-size: 3em;
119
- }
120
- .icon-3x.icon-border {
121
- border-width: 3px;
122
- -webkit-border-radius: 5px;
123
- -moz-border-radius: 5px;
124
- border-radius: 5px;
125
- }
126
- .icon-4x {
127
- font-size: 4em;
128
- }
129
- .icon-4x.icon-border {
130
- border-width: 4px;
131
- -webkit-border-radius: 6px;
132
- -moz-border-radius: 6px;
133
- border-radius: 6px;
134
- }
135
- .icon-5x {
136
- font-size: 5em;
137
- }
138
- .icon-5x.icon-border {
139
- border-width: 5px;
140
- -webkit-border-radius: 7px;
141
- -moz-border-radius: 7px;
142
- border-radius: 7px;
86
+ border: solid 0.08em #eeeeee;
87
+ border-radius: .1em;
143
88
  }
144
89
  .pull-right {
145
90
  float: right;
@@ -147,147 +92,18 @@ a [class*=" icon-"] {
147
92
  .pull-left {
148
93
  float: left;
149
94
  }
150
- [class^="icon-"].pull-left,
151
- [class*=" icon-"].pull-left {
95
+ .fa.pull-left {
152
96
  margin-right: .3em;
153
97
  }
154
- [class^="icon-"].pull-right,
155
- [class*=" icon-"].pull-right {
98
+ .fa.pull-right {
156
99
  margin-left: .3em;
157
100
  }
158
- /* BOOTSTRAP SPECIFIC CLASSES
159
- * -------------------------- */
160
- /* Bootstrap 2.0 sprites.less reset */
161
- [class^="icon-"],
162
- [class*=" icon-"] {
163
- display: inline;
164
- width: auto;
165
- height: auto;
166
- line-height: normal;
167
- vertical-align: baseline;
168
- background-image: none;
169
- background-position: 0% 0%;
170
- background-repeat: repeat;
171
- margin-top: 0;
172
- }
173
- /* more sprites.less reset */
174
- .icon-white,
175
- .nav-pills > .active > a > [class^="icon-"],
176
- .nav-pills > .active > a > [class*=" icon-"],
177
- .nav-list > .active > a > [class^="icon-"],
178
- .nav-list > .active > a > [class*=" icon-"],
179
- .navbar-inverse .nav > .active > a > [class^="icon-"],
180
- .navbar-inverse .nav > .active > a > [class*=" icon-"],
181
- .dropdown-menu > li > a:hover > [class^="icon-"],
182
- .dropdown-menu > li > a:hover > [class*=" icon-"],
183
- .dropdown-menu > .active > a > [class^="icon-"],
184
- .dropdown-menu > .active > a > [class*=" icon-"],
185
- .dropdown-submenu:hover > a > [class^="icon-"],
186
- .dropdown-submenu:hover > a > [class*=" icon-"] {
187
- background-image: none;
188
- }
189
- /* keeps Bootstrap styles with and without icons the same */
190
- .btn [class^="icon-"].icon-large,
191
- .nav [class^="icon-"].icon-large,
192
- .btn [class*=" icon-"].icon-large,
193
- .nav [class*=" icon-"].icon-large {
194
- line-height: .9em;
195
- }
196
- .btn [class^="icon-"].icon-spin,
197
- .nav [class^="icon-"].icon-spin,
198
- .btn [class*=" icon-"].icon-spin,
199
- .nav [class*=" icon-"].icon-spin {
200
- display: inline-block;
201
- }
202
- .nav-tabs [class^="icon-"],
203
- .nav-pills [class^="icon-"],
204
- .nav-tabs [class*=" icon-"],
205
- .nav-pills [class*=" icon-"],
206
- .nav-tabs [class^="icon-"].icon-large,
207
- .nav-pills [class^="icon-"].icon-large,
208
- .nav-tabs [class*=" icon-"].icon-large,
209
- .nav-pills [class*=" icon-"].icon-large {
210
- line-height: .9em;
211
- }
212
- .btn [class^="icon-"].pull-left.icon-2x,
213
- .btn [class*=" icon-"].pull-left.icon-2x,
214
- .btn [class^="icon-"].pull-right.icon-2x,
215
- .btn [class*=" icon-"].pull-right.icon-2x {
216
- margin-top: .18em;
217
- }
218
- .btn [class^="icon-"].icon-spin.icon-large,
219
- .btn [class*=" icon-"].icon-spin.icon-large {
220
- line-height: .8em;
221
- }
222
- .btn.btn-small [class^="icon-"].pull-left.icon-2x,
223
- .btn.btn-small [class*=" icon-"].pull-left.icon-2x,
224
- .btn.btn-small [class^="icon-"].pull-right.icon-2x,
225
- .btn.btn-small [class*=" icon-"].pull-right.icon-2x {
226
- margin-top: .25em;
227
- }
228
- .btn.btn-large [class^="icon-"],
229
- .btn.btn-large [class*=" icon-"] {
230
- margin-top: 0;
231
- }
232
- .btn.btn-large [class^="icon-"].pull-left.icon-2x,
233
- .btn.btn-large [class*=" icon-"].pull-left.icon-2x,
234
- .btn.btn-large [class^="icon-"].pull-right.icon-2x,
235
- .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
236
- margin-top: .05em;
237
- }
238
- .btn.btn-large [class^="icon-"].pull-left.icon-2x,
239
- .btn.btn-large [class*=" icon-"].pull-left.icon-2x {
240
- margin-right: .2em;
241
- }
242
- .btn.btn-large [class^="icon-"].pull-right.icon-2x,
243
- .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
244
- margin-left: .2em;
245
- }
246
- /* Fixes alignment in nav lists */
247
- .nav-list [class^="icon-"],
248
- .nav-list [class*=" icon-"] {
249
- line-height: inherit;
250
- }
251
- /* EXTRAS
252
- * -------------------------- */
253
- /* Stacked and layered icon */
254
- .icon-stack {
255
- position: relative;
256
- display: inline-block;
257
- width: 2em;
258
- height: 2em;
259
- line-height: 2em;
260
- vertical-align: -35%;
261
- }
262
- .icon-stack [class^="icon-"],
263
- .icon-stack [class*=" icon-"] {
264
- display: block;
265
- text-align: center;
266
- position: absolute;
267
- width: 100%;
268
- height: 100%;
269
- font-size: 1em;
270
- line-height: inherit;
271
- *line-height: 2em;
272
- }
273
- .icon-stack .icon-stack-base {
274
- font-size: 2em;
275
- *line-height: 1em;
276
- }
277
- /* Animated rotating icon */
278
- .icon-spin {
279
- display: inline-block;
101
+ .fa-spin {
102
+ -webkit-animation: spin 2s infinite linear;
280
103
  -moz-animation: spin 2s infinite linear;
281
104
  -o-animation: spin 2s infinite linear;
282
- -webkit-animation: spin 2s infinite linear;
283
105
  animation: spin 2s infinite linear;
284
106
  }
285
- /* Prevent stack and spinners from being taken inline when inside a link */
286
- a .icon-stack,
287
- a .icon-spin {
288
- display: inline-block;
289
- text-decoration: none;
290
- }
291
107
  @-moz-keyframes spin {
292
108
  0% {
293
109
  -moz-transform: rotate(0deg);
@@ -328,1152 +144,1217 @@ a .icon-spin {
328
144
  transform: rotate(359deg);
329
145
  }
330
146
  }
331
- /* Icon rotations and mirroring */
332
- .icon-rotate-90:before {
147
+ .fa-rotate-90 {
148
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
333
149
  -webkit-transform: rotate(90deg);
334
150
  -moz-transform: rotate(90deg);
335
151
  -ms-transform: rotate(90deg);
336
152
  -o-transform: rotate(90deg);
337
153
  transform: rotate(90deg);
338
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
339
154
  }
340
- .icon-rotate-180:before {
155
+ .fa-rotate-180 {
156
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
341
157
  -webkit-transform: rotate(180deg);
342
158
  -moz-transform: rotate(180deg);
343
159
  -ms-transform: rotate(180deg);
344
160
  -o-transform: rotate(180deg);
345
161
  transform: rotate(180deg);
346
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
347
162
  }
348
- .icon-rotate-270:before {
163
+ .fa-rotate-270 {
164
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
349
165
  -webkit-transform: rotate(270deg);
350
166
  -moz-transform: rotate(270deg);
351
167
  -ms-transform: rotate(270deg);
352
168
  -o-transform: rotate(270deg);
353
169
  transform: rotate(270deg);
354
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
355
170
  }
356
- .icon-flip-horizontal:before {
171
+ .fa-flip-horizontal {
172
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
357
173
  -webkit-transform: scale(-1, 1);
358
174
  -moz-transform: scale(-1, 1);
359
175
  -ms-transform: scale(-1, 1);
360
176
  -o-transform: scale(-1, 1);
361
177
  transform: scale(-1, 1);
362
178
  }
363
- .icon-flip-vertical:before {
179
+ .fa-flip-vertical {
180
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
364
181
  -webkit-transform: scale(1, -1);
365
182
  -moz-transform: scale(1, -1);
366
183
  -ms-transform: scale(1, -1);
367
184
  -o-transform: scale(1, -1);
368
185
  transform: scale(1, -1);
369
186
  }
370
- /* ensure rotation occurs inside anchor tags */
371
- a .icon-rotate-90:before,
372
- a .icon-rotate-180:before,
373
- a .icon-rotate-270:before,
374
- a .icon-flip-horizontal:before,
375
- a .icon-flip-vertical:before {
187
+ .fa-stack {
188
+ position: relative;
376
189
  display: inline-block;
190
+ width: 2em;
191
+ height: 2em;
192
+ line-height: 2em;
193
+ vertical-align: middle;
194
+ }
195
+ .fa-stack-1x,
196
+ .fa-stack-2x {
197
+ position: absolute;
198
+ width: 100%;
199
+ text-align: center;
200
+ }
201
+ .fa-stack-1x {
202
+ line-height: inherit;
203
+ }
204
+ .fa-stack-2x {
205
+ font-size: 2em;
206
+ }
207
+ .fa-inverse {
208
+ color: #ffffff;
377
209
  }
378
210
  /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
379
211
  readers do not read off random characters that represent icons */
380
- .icon-glass:before {
212
+ .fa-glass:before {
381
213
  content: "\f000";
382
214
  }
383
- .icon-music:before {
215
+ .fa-music:before {
384
216
  content: "\f001";
385
217
  }
386
- .icon-search:before {
218
+ .fa-search:before {
387
219
  content: "\f002";
388
220
  }
389
- .icon-envelope-alt:before {
221
+ .fa-envelope-o:before {
390
222
  content: "\f003";
391
223
  }
392
- .icon-heart:before {
224
+ .fa-heart:before {
393
225
  content: "\f004";
394
226
  }
395
- .icon-star:before {
227
+ .fa-star:before {
396
228
  content: "\f005";
397
229
  }
398
- .icon-star-empty:before {
230
+ .fa-star-o:before {
399
231
  content: "\f006";
400
232
  }
401
- .icon-user:before {
233
+ .fa-user:before {
402
234
  content: "\f007";
403
235
  }
404
- .icon-film:before {
236
+ .fa-film:before {
405
237
  content: "\f008";
406
238
  }
407
- .icon-th-large:before {
239
+ .fa-th-large:before {
408
240
  content: "\f009";
409
241
  }
410
- .icon-th:before {
242
+ .fa-th:before {
411
243
  content: "\f00a";
412
244
  }
413
- .icon-th-list:before {
245
+ .fa-th-list:before {
414
246
  content: "\f00b";
415
247
  }
416
- .icon-ok:before {
248
+ .fa-check:before {
417
249
  content: "\f00c";
418
250
  }
419
- .icon-remove:before {
251
+ .fa-times:before {
420
252
  content: "\f00d";
421
253
  }
422
- .icon-zoom-in:before {
254
+ .fa-search-plus:before {
423
255
  content: "\f00e";
424
256
  }
425
- .icon-zoom-out:before {
257
+ .fa-search-minus:before {
426
258
  content: "\f010";
427
259
  }
428
- .icon-power-off:before,
429
- .icon-off:before {
260
+ .fa-power-off:before {
430
261
  content: "\f011";
431
262
  }
432
- .icon-signal:before {
263
+ .fa-signal:before {
433
264
  content: "\f012";
434
265
  }
435
- .icon-gear:before,
436
- .icon-cog:before {
266
+ .fa-gear:before,
267
+ .fa-cog:before {
437
268
  content: "\f013";
438
269
  }
439
- .icon-trash:before {
270
+ .fa-trash-o:before {
440
271
  content: "\f014";
441
272
  }
442
- .icon-home:before {
273
+ .fa-home:before {
443
274
  content: "\f015";
444
275
  }
445
- .icon-file-alt:before {
276
+ .fa-file-o:before {
446
277
  content: "\f016";
447
278
  }
448
- .icon-time:before {
279
+ .fa-clock-o:before {
449
280
  content: "\f017";
450
281
  }
451
- .icon-road:before {
282
+ .fa-road:before {
452
283
  content: "\f018";
453
284
  }
454
- .icon-download-alt:before {
285
+ .fa-download:before {
455
286
  content: "\f019";
456
287
  }
457
- .icon-download:before {
288
+ .fa-arrow-circle-o-down:before {
458
289
  content: "\f01a";
459
290
  }
460
- .icon-upload:before {
291
+ .fa-arrow-circle-o-up:before {
461
292
  content: "\f01b";
462
293
  }
463
- .icon-inbox:before {
294
+ .fa-inbox:before {
464
295
  content: "\f01c";
465
296
  }
466
- .icon-play-circle:before {
297
+ .fa-play-circle-o:before {
467
298
  content: "\f01d";
468
299
  }
469
- .icon-rotate-right:before,
470
- .icon-repeat:before {
300
+ .fa-rotate-right:before,
301
+ .fa-repeat:before {
471
302
  content: "\f01e";
472
303
  }
473
- .icon-refresh:before {
304
+ .fa-refresh:before {
474
305
  content: "\f021";
475
306
  }
476
- .icon-list-alt:before {
307
+ .fa-list-alt:before {
477
308
  content: "\f022";
478
309
  }
479
- .icon-lock:before {
310
+ .fa-lock:before {
480
311
  content: "\f023";
481
312
  }
482
- .icon-flag:before {
313
+ .fa-flag:before {
483
314
  content: "\f024";
484
315
  }
485
- .icon-headphones:before {
316
+ .fa-headphones:before {
486
317
  content: "\f025";
487
318
  }
488
- .icon-volume-off:before {
319
+ .fa-volume-off:before {
489
320
  content: "\f026";
490
321
  }
491
- .icon-volume-down:before {
322
+ .fa-volume-down:before {
492
323
  content: "\f027";
493
324
  }
494
- .icon-volume-up:before {
325
+ .fa-volume-up:before {
495
326
  content: "\f028";
496
327
  }
497
- .icon-qrcode:before {
328
+ .fa-qrcode:before {
498
329
  content: "\f029";
499
330
  }
500
- .icon-barcode:before {
331
+ .fa-barcode:before {
501
332
  content: "\f02a";
502
333
  }
503
- .icon-tag:before {
334
+ .fa-tag:before {
504
335
  content: "\f02b";
505
336
  }
506
- .icon-tags:before {
337
+ .fa-tags:before {
507
338
  content: "\f02c";
508
339
  }
509
- .icon-book:before {
340
+ .fa-book:before {
510
341
  content: "\f02d";
511
342
  }
512
- .icon-bookmark:before {
343
+ .fa-bookmark:before {
513
344
  content: "\f02e";
514
345
  }
515
- .icon-print:before {
346
+ .fa-print:before {
516
347
  content: "\f02f";
517
348
  }
518
- .icon-camera:before {
349
+ .fa-camera:before {
519
350
  content: "\f030";
520
351
  }
521
- .icon-font:before {
352
+ .fa-font:before {
522
353
  content: "\f031";
523
354
  }
524
- .icon-bold:before {
355
+ .fa-bold:before {
525
356
  content: "\f032";
526
357
  }
527
- .icon-italic:before {
358
+ .fa-italic:before {
528
359
  content: "\f033";
529
360
  }
530
- .icon-text-height:before {
361
+ .fa-text-height:before {
531
362
  content: "\f034";
532
363
  }
533
- .icon-text-width:before {
364
+ .fa-text-width:before {
534
365
  content: "\f035";
535
366
  }
536
- .icon-align-left:before {
367
+ .fa-align-left:before {
537
368
  content: "\f036";
538
369
  }
539
- .icon-align-center:before {
370
+ .fa-align-center:before {
540
371
  content: "\f037";
541
372
  }
542
- .icon-align-right:before {
373
+ .fa-align-right:before {
543
374
  content: "\f038";
544
375
  }
545
- .icon-align-justify:before {
376
+ .fa-align-justify:before {
546
377
  content: "\f039";
547
378
  }
548
- .icon-list:before {
379
+ .fa-list:before {
549
380
  content: "\f03a";
550
381
  }
551
- .icon-indent-left:before {
382
+ .fa-dedent:before,
383
+ .fa-outdent:before {
552
384
  content: "\f03b";
553
385
  }
554
- .icon-indent-right:before {
386
+ .fa-indent:before {
555
387
  content: "\f03c";
556
388
  }
557
- .icon-facetime-video:before {
389
+ .fa-video-camera:before {
558
390
  content: "\f03d";
559
391
  }
560
- .icon-picture:before {
392
+ .fa-picture-o:before {
561
393
  content: "\f03e";
562
394
  }
563
- .icon-pencil:before {
395
+ .fa-pencil:before {
564
396
  content: "\f040";
565
397
  }
566
- .icon-map-marker:before {
398
+ .fa-map-marker:before {
567
399
  content: "\f041";
568
400
  }
569
- .icon-adjust:before {
401
+ .fa-adjust:before {
570
402
  content: "\f042";
571
403
  }
572
- .icon-tint:before {
404
+ .fa-tint:before {
573
405
  content: "\f043";
574
406
  }
575
- .icon-edit:before {
407
+ .fa-edit:before,
408
+ .fa-pencil-square-o:before {
576
409
  content: "\f044";
577
410
  }
578
- .icon-share:before {
411
+ .fa-share-square-o:before {
579
412
  content: "\f045";
580
413
  }
581
- .icon-check:before {
414
+ .fa-check-square-o:before {
582
415
  content: "\f046";
583
416
  }
584
- .icon-move:before {
417
+ .fa-move:before {
585
418
  content: "\f047";
586
419
  }
587
- .icon-step-backward:before {
420
+ .fa-step-backward:before {
588
421
  content: "\f048";
589
422
  }
590
- .icon-fast-backward:before {
423
+ .fa-fast-backward:before {
591
424
  content: "\f049";
592
425
  }
593
- .icon-backward:before {
426
+ .fa-backward:before {
594
427
  content: "\f04a";
595
428
  }
596
- .icon-play:before {
429
+ .fa-play:before {
597
430
  content: "\f04b";
598
431
  }
599
- .icon-pause:before {
432
+ .fa-pause:before {
600
433
  content: "\f04c";
601
434
  }
602
- .icon-stop:before {
435
+ .fa-stop:before {
603
436
  content: "\f04d";
604
437
  }
605
- .icon-forward:before {
438
+ .fa-forward:before {
606
439
  content: "\f04e";
607
440
  }
608
- .icon-fast-forward:before {
441
+ .fa-fast-forward:before {
609
442
  content: "\f050";
610
443
  }
611
- .icon-step-forward:before {
444
+ .fa-step-forward:before {
612
445
  content: "\f051";
613
446
  }
614
- .icon-eject:before {
447
+ .fa-eject:before {
615
448
  content: "\f052";
616
449
  }
617
- .icon-chevron-left:before {
450
+ .fa-chevron-left:before {
618
451
  content: "\f053";
619
452
  }
620
- .icon-chevron-right:before {
453
+ .fa-chevron-right:before {
621
454
  content: "\f054";
622
455
  }
623
- .icon-plus-sign:before {
456
+ .fa-plus-circle:before {
624
457
  content: "\f055";
625
458
  }
626
- .icon-minus-sign:before {
459
+ .fa-minus-circle:before {
627
460
  content: "\f056";
628
461
  }
629
- .icon-remove-sign:before {
462
+ .fa-times-circle:before {
630
463
  content: "\f057";
631
464
  }
632
- .icon-ok-sign:before {
465
+ .fa-check-circle:before {
633
466
  content: "\f058";
634
467
  }
635
- .icon-question-sign:before {
468
+ .fa-question-circle:before {
636
469
  content: "\f059";
637
470
  }
638
- .icon-info-sign:before {
471
+ .fa-info-circle:before {
639
472
  content: "\f05a";
640
473
  }
641
- .icon-screenshot:before {
474
+ .fa-crosshairs:before {
642
475
  content: "\f05b";
643
476
  }
644
- .icon-remove-circle:before {
477
+ .fa-times-circle-o:before {
645
478
  content: "\f05c";
646
479
  }
647
- .icon-ok-circle:before {
480
+ .fa-check-circle-o:before {
648
481
  content: "\f05d";
649
482
  }
650
- .icon-ban-circle:before {
483
+ .fa-ban:before {
651
484
  content: "\f05e";
652
485
  }
653
- .icon-arrow-left:before {
486
+ .fa-arrow-left:before {
654
487
  content: "\f060";
655
488
  }
656
- .icon-arrow-right:before {
489
+ .fa-arrow-right:before {
657
490
  content: "\f061";
658
491
  }
659
- .icon-arrow-up:before {
492
+ .fa-arrow-up:before {
660
493
  content: "\f062";
661
494
  }
662
- .icon-arrow-down:before {
495
+ .fa-arrow-down:before {
663
496
  content: "\f063";
664
497
  }
665
- .icon-mail-forward:before,
666
- .icon-share-alt:before {
498
+ .fa-mail-forward:before,
499
+ .fa-share:before {
667
500
  content: "\f064";
668
501
  }
669
- .icon-resize-full:before {
502
+ .fa-resize-full:before {
670
503
  content: "\f065";
671
504
  }
672
- .icon-resize-small:before {
505
+ .fa-resize-small:before {
673
506
  content: "\f066";
674
507
  }
675
- .icon-plus:before {
508
+ .fa-plus:before {
676
509
  content: "\f067";
677
510
  }
678
- .icon-minus:before {
511
+ .fa-minus:before {
679
512
  content: "\f068";
680
513
  }
681
- .icon-asterisk:before {
514
+ .fa-asterisk:before {
682
515
  content: "\f069";
683
516
  }
684
- .icon-exclamation-sign:before {
517
+ .fa-exclamation-circle:before {
685
518
  content: "\f06a";
686
519
  }
687
- .icon-gift:before {
520
+ .fa-gift:before {
688
521
  content: "\f06b";
689
522
  }
690
- .icon-leaf:before {
523
+ .fa-leaf:before {
691
524
  content: "\f06c";
692
525
  }
693
- .icon-fire:before {
526
+ .fa-fire:before {
694
527
  content: "\f06d";
695
528
  }
696
- .icon-eye-open:before {
529
+ .fa-eye:before {
697
530
  content: "\f06e";
698
531
  }
699
- .icon-eye-close:before {
532
+ .fa-eye-slash:before {
700
533
  content: "\f070";
701
534
  }
702
- .icon-warning-sign:before {
535
+ .fa-warning:before,
536
+ .fa-exclamation-triangle:before {
703
537
  content: "\f071";
704
538
  }
705
- .icon-plane:before {
539
+ .fa-plane:before {
706
540
  content: "\f072";
707
541
  }
708
- .icon-calendar:before {
542
+ .fa-calendar:before {
709
543
  content: "\f073";
710
544
  }
711
- .icon-random:before {
545
+ .fa-random:before {
712
546
  content: "\f074";
713
547
  }
714
- .icon-comment:before {
548
+ .fa-comment:before {
715
549
  content: "\f075";
716
550
  }
717
- .icon-magnet:before {
551
+ .fa-magnet:before {
718
552
  content: "\f076";
719
553
  }
720
- .icon-chevron-up:before {
554
+ .fa-chevron-up:before {
721
555
  content: "\f077";
722
556
  }
723
- .icon-chevron-down:before {
557
+ .fa-chevron-down:before {
724
558
  content: "\f078";
725
559
  }
726
- .icon-retweet:before {
560
+ .fa-retweet:before {
727
561
  content: "\f079";
728
562
  }
729
- .icon-shopping-cart:before {
563
+ .fa-shopping-cart:before {
730
564
  content: "\f07a";
731
565
  }
732
- .icon-folder-close:before {
566
+ .fa-folder:before {
733
567
  content: "\f07b";
734
568
  }
735
- .icon-folder-open:before {
569
+ .fa-folder-open:before {
736
570
  content: "\f07c";
737
571
  }
738
- .icon-resize-vertical:before {
572
+ .fa-resize-vertical:before {
739
573
  content: "\f07d";
740
574
  }
741
- .icon-resize-horizontal:before {
575
+ .fa-resize-horizontal:before {
742
576
  content: "\f07e";
743
577
  }
744
- .icon-bar-chart:before {
578
+ .fa-bar-chart-o:before {
745
579
  content: "\f080";
746
580
  }
747
- .icon-twitter-sign:before {
581
+ .fa-twitter-square:before {
748
582
  content: "\f081";
749
583
  }
750
- .icon-facebook-sign:before {
584
+ .fa-facebook-square:before {
751
585
  content: "\f082";
752
586
  }
753
- .icon-camera-retro:before {
587
+ .fa-camera-retro:before {
754
588
  content: "\f083";
755
589
  }
756
- .icon-key:before {
590
+ .fa-key:before {
757
591
  content: "\f084";
758
592
  }
759
- .icon-gears:before,
760
- .icon-cogs:before {
593
+ .fa-gears:before,
594
+ .fa-cogs:before {
761
595
  content: "\f085";
762
596
  }
763
- .icon-comments:before {
597
+ .fa-comments:before {
764
598
  content: "\f086";
765
599
  }
766
- .icon-thumbs-up-alt:before {
600
+ .fa-thumbs-o-up:before {
767
601
  content: "\f087";
768
602
  }
769
- .icon-thumbs-down-alt:before {
603
+ .fa-thumbs-o-down:before {
770
604
  content: "\f088";
771
605
  }
772
- .icon-star-half:before {
606
+ .fa-star-half:before {
773
607
  content: "\f089";
774
608
  }
775
- .icon-heart-empty:before {
609
+ .fa-heart-o:before {
776
610
  content: "\f08a";
777
611
  }
778
- .icon-signout:before {
612
+ .fa-sign-out:before {
779
613
  content: "\f08b";
780
614
  }
781
- .icon-linkedin-sign:before {
615
+ .fa-linkedin-square:before {
782
616
  content: "\f08c";
783
617
  }
784
- .icon-pushpin:before {
618
+ .fa-thumb-tack:before {
785
619
  content: "\f08d";
786
620
  }
787
- .icon-external-link:before {
621
+ .fa-external-link:before {
788
622
  content: "\f08e";
789
623
  }
790
- .icon-signin:before {
624
+ .fa-sign-in:before {
791
625
  content: "\f090";
792
626
  }
793
- .icon-trophy:before {
627
+ .fa-trophy:before {
794
628
  content: "\f091";
795
629
  }
796
- .icon-github-sign:before {
630
+ .fa-github-square:before {
797
631
  content: "\f092";
798
632
  }
799
- .icon-upload-alt:before {
633
+ .fa-upload:before {
800
634
  content: "\f093";
801
635
  }
802
- .icon-lemon:before {
636
+ .fa-lemon-o:before {
803
637
  content: "\f094";
804
638
  }
805
- .icon-phone:before {
639
+ .fa-phone:before {
806
640
  content: "\f095";
807
641
  }
808
- .icon-unchecked:before,
809
- .icon-check-empty:before {
642
+ .fa-square-o:before {
810
643
  content: "\f096";
811
644
  }
812
- .icon-bookmark-empty:before {
645
+ .fa-bookmark-o:before {
813
646
  content: "\f097";
814
647
  }
815
- .icon-phone-sign:before {
648
+ .fa-phone-square:before {
816
649
  content: "\f098";
817
650
  }
818
- .icon-twitter:before {
651
+ .fa-twitter:before {
819
652
  content: "\f099";
820
653
  }
821
- .icon-facebook:before {
654
+ .fa-facebook:before {
822
655
  content: "\f09a";
823
656
  }
824
- .icon-github:before {
657
+ .fa-github:before {
825
658
  content: "\f09b";
826
659
  }
827
- .icon-unlock:before {
660
+ .fa-unlock:before {
828
661
  content: "\f09c";
829
662
  }
830
- .icon-credit-card:before {
663
+ .fa-credit-card:before {
831
664
  content: "\f09d";
832
665
  }
833
- .icon-rss:before {
666
+ .fa-rss:before {
834
667
  content: "\f09e";
835
668
  }
836
- .icon-hdd:before {
669
+ .fa-hdd:before {
837
670
  content: "\f0a0";
838
671
  }
839
- .icon-bullhorn:before {
672
+ .fa-bullhorn:before {
840
673
  content: "\f0a1";
841
674
  }
842
- .icon-bell:before {
843
- content: "\f0a2";
675
+ .fa-bell:before {
676
+ content: "\f0f3";
844
677
  }
845
- .icon-certificate:before {
678
+ .fa-certificate:before {
846
679
  content: "\f0a3";
847
680
  }
848
- .icon-hand-right:before {
681
+ .fa-hand-o-right:before {
849
682
  content: "\f0a4";
850
683
  }
851
- .icon-hand-left:before {
684
+ .fa-hand-o-left:before {
852
685
  content: "\f0a5";
853
686
  }
854
- .icon-hand-up:before {
687
+ .fa-hand-o-up:before {
855
688
  content: "\f0a6";
856
689
  }
857
- .icon-hand-down:before {
690
+ .fa-hand-o-down:before {
858
691
  content: "\f0a7";
859
692
  }
860
- .icon-circle-arrow-left:before {
693
+ .fa-arrow-circle-left:before {
861
694
  content: "\f0a8";
862
695
  }
863
- .icon-circle-arrow-right:before {
696
+ .fa-arrow-circle-right:before {
864
697
  content: "\f0a9";
865
698
  }
866
- .icon-circle-arrow-up:before {
699
+ .fa-arrow-circle-up:before {
867
700
  content: "\f0aa";
868
701
  }
869
- .icon-circle-arrow-down:before {
702
+ .fa-arrow-circle-down:before {
870
703
  content: "\f0ab";
871
704
  }
872
- .icon-globe:before {
705
+ .fa-globe:before {
873
706
  content: "\f0ac";
874
707
  }
875
- .icon-wrench:before {
708
+ .fa-wrench:before {
876
709
  content: "\f0ad";
877
710
  }
878
- .icon-tasks:before {
711
+ .fa-tasks:before {
879
712
  content: "\f0ae";
880
713
  }
881
- .icon-filter:before {
714
+ .fa-filter:before {
882
715
  content: "\f0b0";
883
716
  }
884
- .icon-briefcase:before {
717
+ .fa-briefcase:before {
885
718
  content: "\f0b1";
886
719
  }
887
- .icon-fullscreen:before {
720
+ .fa-fullscreen:before {
888
721
  content: "\f0b2";
889
722
  }
890
- .icon-group:before {
723
+ .fa-group:before {
891
724
  content: "\f0c0";
892
725
  }
893
- .icon-link:before {
726
+ .fa-chain:before,
727
+ .fa-link:before {
894
728
  content: "\f0c1";
895
729
  }
896
- .icon-cloud:before {
730
+ .fa-cloud:before {
897
731
  content: "\f0c2";
898
732
  }
899
- .icon-beaker:before {
733
+ .fa-flask:before {
900
734
  content: "\f0c3";
901
735
  }
902
- .icon-cut:before {
736
+ .fa-cut:before,
737
+ .fa-scissors:before {
903
738
  content: "\f0c4";
904
739
  }
905
- .icon-copy:before {
740
+ .fa-copy:before,
741
+ .fa-files-o:before {
906
742
  content: "\f0c5";
907
743
  }
908
- .icon-paperclip:before,
909
- .icon-paper-clip:before {
744
+ .fa-paperclip:before {
910
745
  content: "\f0c6";
911
746
  }
912
- .icon-save:before {
747
+ .fa-save:before,
748
+ .fa-floppy-o:before {
913
749
  content: "\f0c7";
914
750
  }
915
- .icon-sign-blank:before {
751
+ .fa-square:before {
916
752
  content: "\f0c8";
917
753
  }
918
- .icon-reorder:before {
754
+ .fa-reorder:before {
919
755
  content: "\f0c9";
920
756
  }
921
- .icon-list-ul:before {
757
+ .fa-list-ul:before {
922
758
  content: "\f0ca";
923
759
  }
924
- .icon-list-ol:before {
760
+ .fa-list-ol:before {
925
761
  content: "\f0cb";
926
762
  }
927
- .icon-strikethrough:before {
763
+ .fa-strikethrough:before {
928
764
  content: "\f0cc";
929
765
  }
930
- .icon-underline:before {
766
+ .fa-underline:before {
931
767
  content: "\f0cd";
932
768
  }
933
- .icon-table:before {
769
+ .fa-table:before {
934
770
  content: "\f0ce";
935
771
  }
936
- .icon-magic:before {
772
+ .fa-magic:before {
937
773
  content: "\f0d0";
938
774
  }
939
- .icon-truck:before {
775
+ .fa-truck:before {
940
776
  content: "\f0d1";
941
777
  }
942
- .icon-pinterest:before {
778
+ .fa-pinterest:before {
943
779
  content: "\f0d2";
944
780
  }
945
- .icon-pinterest-sign:before {
781
+ .fa-pinterest-square:before {
946
782
  content: "\f0d3";
947
783
  }
948
- .icon-google-plus-sign:before {
784
+ .fa-google-plus-square:before {
949
785
  content: "\f0d4";
950
786
  }
951
- .icon-google-plus:before {
787
+ .fa-google-plus:before {
952
788
  content: "\f0d5";
953
789
  }
954
- .icon-money:before {
790
+ .fa-money:before {
955
791
  content: "\f0d6";
956
792
  }
957
- .icon-caret-down:before {
793
+ .fa-caret-down:before {
958
794
  content: "\f0d7";
959
795
  }
960
- .icon-caret-up:before {
796
+ .fa-caret-up:before {
961
797
  content: "\f0d8";
962
798
  }
963
- .icon-caret-left:before {
799
+ .fa-caret-left:before {
964
800
  content: "\f0d9";
965
801
  }
966
- .icon-caret-right:before {
802
+ .fa-caret-right:before {
967
803
  content: "\f0da";
968
804
  }
969
- .icon-columns:before {
805
+ .fa-columns:before {
970
806
  content: "\f0db";
971
807
  }
972
- .icon-sort:before {
808
+ .fa-unsorted:before,
809
+ .fa-sort:before {
973
810
  content: "\f0dc";
974
811
  }
975
- .icon-sort-down:before {
812
+ .fa-sort-down:before,
813
+ .fa-sort-asc:before {
976
814
  content: "\f0dd";
977
815
  }
978
- .icon-sort-up:before {
816
+ .fa-sort-up:before,
817
+ .fa-sort-desc:before {
979
818
  content: "\f0de";
980
819
  }
981
- .icon-envelope:before {
820
+ .fa-envelope:before {
982
821
  content: "\f0e0";
983
822
  }
984
- .icon-linkedin:before {
823
+ .fa-linkedin:before {
985
824
  content: "\f0e1";
986
825
  }
987
- .icon-rotate-left:before,
988
- .icon-undo:before {
826
+ .fa-rotate-left:before,
827
+ .fa-undo:before {
989
828
  content: "\f0e2";
990
829
  }
991
- .icon-legal:before {
830
+ .fa-legal:before,
831
+ .fa-gavel:before {
992
832
  content: "\f0e3";
993
833
  }
994
- .icon-dashboard:before {
834
+ .fa-dashboard:before,
835
+ .fa-tachometer:before {
995
836
  content: "\f0e4";
996
837
  }
997
- .icon-comment-alt:before {
838
+ .fa-comment-o:before {
998
839
  content: "\f0e5";
999
840
  }
1000
- .icon-comments-alt:before {
841
+ .fa-comments-o:before {
1001
842
  content: "\f0e6";
1002
843
  }
1003
- .icon-bolt:before {
844
+ .fa-flash:before,
845
+ .fa-bolt:before {
1004
846
  content: "\f0e7";
1005
847
  }
1006
- .icon-sitemap:before {
848
+ .fa-sitemap:before {
1007
849
  content: "\f0e8";
1008
850
  }
1009
- .icon-umbrella:before {
851
+ .fa-umbrella:before {
1010
852
  content: "\f0e9";
1011
853
  }
1012
- .icon-paste:before {
854
+ .fa-paste:before,
855
+ .fa-clipboard:before {
1013
856
  content: "\f0ea";
1014
857
  }
1015
- .icon-lightbulb:before {
858
+ .fa-lightbulb-o:before {
1016
859
  content: "\f0eb";
1017
860
  }
1018
- .icon-exchange:before {
861
+ .fa-exchange:before {
1019
862
  content: "\f0ec";
1020
863
  }
1021
- .icon-cloud-download:before {
864
+ .fa-cloud-download:before {
1022
865
  content: "\f0ed";
1023
866
  }
1024
- .icon-cloud-upload:before {
867
+ .fa-cloud-upload:before {
1025
868
  content: "\f0ee";
1026
869
  }
1027
- .icon-user-md:before {
870
+ .fa-user-md:before {
1028
871
  content: "\f0f0";
1029
872
  }
1030
- .icon-stethoscope:before {
873
+ .fa-stethoscope:before {
1031
874
  content: "\f0f1";
1032
875
  }
1033
- .icon-suitcase:before {
876
+ .fa-suitcase:before {
1034
877
  content: "\f0f2";
1035
878
  }
1036
- .icon-bell-alt:before {
1037
- content: "\f0f3";
879
+ .fa-bell-o:before {
880
+ content: "\f0a2";
1038
881
  }
1039
- .icon-coffee:before {
882
+ .fa-coffee:before {
1040
883
  content: "\f0f4";
1041
884
  }
1042
- .icon-food:before {
885
+ .fa-cutlery:before {
1043
886
  content: "\f0f5";
1044
887
  }
1045
- .icon-file-text-alt:before {
888
+ .fa-file-text-o:before {
1046
889
  content: "\f0f6";
1047
890
  }
1048
- .icon-building:before {
891
+ .fa-building:before {
1049
892
  content: "\f0f7";
1050
893
  }
1051
- .icon-hospital:before {
894
+ .fa-hospital:before {
1052
895
  content: "\f0f8";
1053
896
  }
1054
- .icon-ambulance:before {
897
+ .fa-ambulance:before {
1055
898
  content: "\f0f9";
1056
899
  }
1057
- .icon-medkit:before {
900
+ .fa-medkit:before {
1058
901
  content: "\f0fa";
1059
902
  }
1060
- .icon-fighter-jet:before {
903
+ .fa-fighter-jet:before {
1061
904
  content: "\f0fb";
1062
905
  }
1063
- .icon-beer:before {
906
+ .fa-beer:before {
1064
907
  content: "\f0fc";
1065
908
  }
1066
- .icon-h-sign:before {
909
+ .fa-h-square:before {
1067
910
  content: "\f0fd";
1068
911
  }
1069
- .icon-plus-sign-alt:before {
912
+ .fa-plus-square:before {
1070
913
  content: "\f0fe";
1071
914
  }
1072
- .icon-double-angle-left:before {
915
+ .fa-angle-double-left:before {
1073
916
  content: "\f100";
1074
917
  }
1075
- .icon-double-angle-right:before {
918
+ .fa-angle-double-right:before {
1076
919
  content: "\f101";
1077
920
  }
1078
- .icon-double-angle-up:before {
921
+ .fa-angle-double-up:before {
1079
922
  content: "\f102";
1080
923
  }
1081
- .icon-double-angle-down:before {
924
+ .fa-angle-double-down:before {
1082
925
  content: "\f103";
1083
926
  }
1084
- .icon-angle-left:before {
927
+ .fa-angle-left:before {
1085
928
  content: "\f104";
1086
929
  }
1087
- .icon-angle-right:before {
930
+ .fa-angle-right:before {
1088
931
  content: "\f105";
1089
932
  }
1090
- .icon-angle-up:before {
933
+ .fa-angle-up:before {
1091
934
  content: "\f106";
1092
935
  }
1093
- .icon-angle-down:before {
936
+ .fa-angle-down:before {
1094
937
  content: "\f107";
1095
938
  }
1096
- .icon-desktop:before {
939
+ .fa-desktop:before {
1097
940
  content: "\f108";
1098
941
  }
1099
- .icon-laptop:before {
942
+ .fa-laptop:before {
1100
943
  content: "\f109";
1101
944
  }
1102
- .icon-tablet:before {
945
+ .fa-tablet:before {
1103
946
  content: "\f10a";
1104
947
  }
1105
- .icon-mobile-phone:before {
948
+ .fa-mobile-phone:before,
949
+ .fa-mobile:before {
1106
950
  content: "\f10b";
1107
951
  }
1108
- .icon-circle-blank:before {
952
+ .fa-circle-o:before {
1109
953
  content: "\f10c";
1110
954
  }
1111
- .icon-quote-left:before {
955
+ .fa-quote-left:before {
1112
956
  content: "\f10d";
1113
957
  }
1114
- .icon-quote-right:before {
958
+ .fa-quote-right:before {
1115
959
  content: "\f10e";
1116
960
  }
1117
- .icon-spinner:before {
961
+ .fa-spinner:before {
1118
962
  content: "\f110";
1119
963
  }
1120
- .icon-circle:before {
964
+ .fa-circle:before {
1121
965
  content: "\f111";
1122
966
  }
1123
- .icon-mail-reply:before,
1124
- .icon-reply:before {
967
+ .fa-mail-reply:before,
968
+ .fa-reply:before {
1125
969
  content: "\f112";
1126
970
  }
1127
- .icon-github-alt:before {
971
+ .fa-github-alt:before {
1128
972
  content: "\f113";
1129
973
  }
1130
- .icon-folder-close-alt:before {
974
+ .fa-folder-o:before {
1131
975
  content: "\f114";
1132
976
  }
1133
- .icon-folder-open-alt:before {
977
+ .fa-folder-open-o:before {
1134
978
  content: "\f115";
1135
979
  }
1136
- .icon-expand-alt:before {
980
+ .fa-expand-o:before {
1137
981
  content: "\f116";
1138
982
  }
1139
- .icon-collapse-alt:before {
983
+ .fa-collapse-o:before {
1140
984
  content: "\f117";
1141
985
  }
1142
- .icon-smile:before {
986
+ .fa-smile-o:before {
1143
987
  content: "\f118";
1144
988
  }
1145
- .icon-frown:before {
989
+ .fa-frown-o:before {
1146
990
  content: "\f119";
1147
991
  }
1148
- .icon-meh:before {
992
+ .fa-meh-o:before {
1149
993
  content: "\f11a";
1150
994
  }
1151
- .icon-gamepad:before {
995
+ .fa-gamepad:before {
1152
996
  content: "\f11b";
1153
997
  }
1154
- .icon-keyboard:before {
998
+ .fa-keyboard-o:before {
1155
999
  content: "\f11c";
1156
1000
  }
1157
- .icon-flag-alt:before {
1001
+ .fa-flag-o:before {
1158
1002
  content: "\f11d";
1159
1003
  }
1160
- .icon-flag-checkered:before {
1004
+ .fa-flag-checkered:before {
1161
1005
  content: "\f11e";
1162
1006
  }
1163
- .icon-terminal:before {
1007
+ .fa-terminal:before {
1164
1008
  content: "\f120";
1165
1009
  }
1166
- .icon-code:before {
1010
+ .fa-code:before {
1167
1011
  content: "\f121";
1168
1012
  }
1169
- .icon-reply-all:before {
1013
+ .fa-reply-all:before {
1170
1014
  content: "\f122";
1171
1015
  }
1172
- .icon-mail-reply-all:before {
1016
+ .fa-mail-reply-all:before {
1173
1017
  content: "\f122";
1174
1018
  }
1175
- .icon-star-half-full:before,
1176
- .icon-star-half-empty:before {
1019
+ .fa-star-half-empty:before,
1020
+ .fa-star-half-full:before,
1021
+ .fa-star-half-o:before {
1177
1022
  content: "\f123";
1178
1023
  }
1179
- .icon-location-arrow:before {
1024
+ .fa-location-arrow:before {
1180
1025
  content: "\f124";
1181
1026
  }
1182
- .icon-crop:before {
1027
+ .fa-crop:before {
1183
1028
  content: "\f125";
1184
1029
  }
1185
- .icon-code-fork:before {
1030
+ .fa-code-fork:before {
1186
1031
  content: "\f126";
1187
1032
  }
1188
- .icon-unlink:before {
1033
+ .fa-unlink:before,
1034
+ .fa-chain-broken:before {
1189
1035
  content: "\f127";
1190
1036
  }
1191
- .icon-question:before {
1037
+ .fa-question:before {
1192
1038
  content: "\f128";
1193
1039
  }
1194
- .icon-info:before {
1040
+ .fa-info:before {
1195
1041
  content: "\f129";
1196
1042
  }
1197
- .icon-exclamation:before {
1043
+ .fa-exclamation:before {
1198
1044
  content: "\f12a";
1199
1045
  }
1200
- .icon-superscript:before {
1046
+ .fa-superscript:before {
1201
1047
  content: "\f12b";
1202
1048
  }
1203
- .icon-subscript:before {
1049
+ .fa-subscript:before {
1204
1050
  content: "\f12c";
1205
1051
  }
1206
- .icon-eraser:before {
1052
+ .fa-eraser:before {
1207
1053
  content: "\f12d";
1208
1054
  }
1209
- .icon-puzzle-piece:before {
1055
+ .fa-puzzle-piece:before {
1210
1056
  content: "\f12e";
1211
1057
  }
1212
- .icon-microphone:before {
1058
+ .fa-microphone:before {
1213
1059
  content: "\f130";
1214
1060
  }
1215
- .icon-microphone-off:before {
1061
+ .fa-microphone-slash:before {
1216
1062
  content: "\f131";
1217
1063
  }
1218
- .icon-shield:before {
1064
+ .fa-shield:before {
1219
1065
  content: "\f132";
1220
1066
  }
1221
- .icon-calendar-empty:before {
1067
+ .fa-calendar-o:before {
1222
1068
  content: "\f133";
1223
1069
  }
1224
- .icon-fire-extinguisher:before {
1070
+ .fa-fire-extinguisher:before {
1225
1071
  content: "\f134";
1226
1072
  }
1227
- .icon-rocket:before {
1073
+ .fa-rocket:before {
1228
1074
  content: "\f135";
1229
1075
  }
1230
- .icon-maxcdn:before {
1076
+ .fa-maxcdn:before {
1231
1077
  content: "\f136";
1232
1078
  }
1233
- .icon-chevron-sign-left:before {
1079
+ .fa-chevron-circle-left:before {
1234
1080
  content: "\f137";
1235
1081
  }
1236
- .icon-chevron-sign-right:before {
1082
+ .fa-chevron-circle-right:before {
1237
1083
  content: "\f138";
1238
1084
  }
1239
- .icon-chevron-sign-up:before {
1085
+ .fa-chevron-circle-up:before {
1240
1086
  content: "\f139";
1241
1087
  }
1242
- .icon-chevron-sign-down:before {
1088
+ .fa-chevron-circle-down:before {
1243
1089
  content: "\f13a";
1244
1090
  }
1245
- .icon-html5:before {
1091
+ .fa-html5:before {
1246
1092
  content: "\f13b";
1247
1093
  }
1248
- .icon-css3:before {
1094
+ .fa-css3:before {
1249
1095
  content: "\f13c";
1250
1096
  }
1251
- .icon-anchor:before {
1097
+ .fa-anchor:before {
1252
1098
  content: "\f13d";
1253
1099
  }
1254
- .icon-unlock-alt:before {
1100
+ .fa-unlock-o:before {
1255
1101
  content: "\f13e";
1256
1102
  }
1257
- .icon-bullseye:before {
1103
+ .fa-bullseye:before {
1258
1104
  content: "\f140";
1259
1105
  }
1260
- .icon-ellipsis-horizontal:before {
1106
+ .fa-ellipsis-horizontal:before {
1261
1107
  content: "\f141";
1262
1108
  }
1263
- .icon-ellipsis-vertical:before {
1109
+ .fa-ellipsis-vertical:before {
1264
1110
  content: "\f142";
1265
1111
  }
1266
- .icon-rss-sign:before {
1112
+ .fa-rss-square:before {
1267
1113
  content: "\f143";
1268
1114
  }
1269
- .icon-play-sign:before {
1115
+ .fa-play-circle:before {
1270
1116
  content: "\f144";
1271
1117
  }
1272
- .icon-ticket:before {
1118
+ .fa-ticket:before {
1273
1119
  content: "\f145";
1274
1120
  }
1275
- .icon-minus-sign-alt:before {
1121
+ .fa-minus-square:before {
1276
1122
  content: "\f146";
1277
1123
  }
1278
- .icon-check-minus:before {
1124
+ .fa-minus-square-o:before {
1279
1125
  content: "\f147";
1280
1126
  }
1281
- .icon-level-up:before {
1127
+ .fa-level-up:before {
1282
1128
  content: "\f148";
1283
1129
  }
1284
- .icon-level-down:before {
1130
+ .fa-level-down:before {
1285
1131
  content: "\f149";
1286
1132
  }
1287
- .icon-check-sign:before {
1133
+ .fa-check-square:before {
1288
1134
  content: "\f14a";
1289
1135
  }
1290
- .icon-edit-sign:before {
1136
+ .fa-pencil-square:before {
1291
1137
  content: "\f14b";
1292
1138
  }
1293
- .icon-external-link-sign:before {
1139
+ .fa-external-link-square:before {
1294
1140
  content: "\f14c";
1295
1141
  }
1296
- .icon-share-sign:before {
1142
+ .fa-share-square:before {
1297
1143
  content: "\f14d";
1298
1144
  }
1299
- .icon-compass:before {
1145
+ .fa-compass:before {
1300
1146
  content: "\f14e";
1301
1147
  }
1302
- .icon-collapse:before {
1148
+ .fa-toggle-down:before,
1149
+ .fa-caret-square-o-down:before {
1303
1150
  content: "\f150";
1304
1151
  }
1305
- .icon-collapse-top:before {
1152
+ .fa-toggle-up:before,
1153
+ .fa-caret-square-o-up:before {
1306
1154
  content: "\f151";
1307
1155
  }
1308
- .icon-expand:before {
1156
+ .fa-toggle-right:before,
1157
+ .fa-caret-square-o-right:before {
1309
1158
  content: "\f152";
1310
1159
  }
1311
- .icon-euro:before,
1312
- .icon-eur:before {
1160
+ .fa-euro:before,
1161
+ .fa-eur:before {
1313
1162
  content: "\f153";
1314
1163
  }
1315
- .icon-gbp:before {
1164
+ .fa-gbp:before {
1316
1165
  content: "\f154";
1317
1166
  }
1318
- .icon-dollar:before,
1319
- .icon-usd:before {
1167
+ .fa-dollar:before,
1168
+ .fa-usd:before {
1320
1169
  content: "\f155";
1321
1170
  }
1322
- .icon-rupee:before,
1323
- .icon-inr:before {
1171
+ .fa-rupee:before,
1172
+ .fa-inr:before {
1324
1173
  content: "\f156";
1325
1174
  }
1326
- .icon-yen:before,
1327
- .icon-jpy:before {
1175
+ .fa-cny:before,
1176
+ .fa-rmb:before,
1177
+ .fa-yen:before,
1178
+ .fa-jpy:before {
1328
1179
  content: "\f157";
1329
1180
  }
1330
- .icon-renminbi:before,
1331
- .icon-cny:before {
1181
+ .fa-ruble:before,
1182
+ .fa-rouble:before,
1183
+ .fa-rub:before {
1332
1184
  content: "\f158";
1333
1185
  }
1334
- .icon-won:before,
1335
- .icon-krw:before {
1186
+ .fa-won:before,
1187
+ .fa-krw:before {
1336
1188
  content: "\f159";
1337
1189
  }
1338
- .icon-bitcoin:before,
1339
- .icon-btc:before {
1190
+ .fa-bitcoin:before,
1191
+ .fa-btc:before {
1340
1192
  content: "\f15a";
1341
1193
  }
1342
- .icon-file:before {
1194
+ .fa-file:before {
1343
1195
  content: "\f15b";
1344
1196
  }
1345
- .icon-file-text:before {
1197
+ .fa-file-text:before {
1346
1198
  content: "\f15c";
1347
1199
  }
1348
- .icon-sort-by-alphabet:before {
1200
+ .fa-sort-alpha-asc:before {
1349
1201
  content: "\f15d";
1350
1202
  }
1351
- .icon-sort-by-alphabet-alt:before {
1203
+ .fa-sort-alpha-desc:before {
1352
1204
  content: "\f15e";
1353
1205
  }
1354
- .icon-sort-by-attributes:before {
1206
+ .fa-sort-amount-asc:before {
1355
1207
  content: "\f160";
1356
1208
  }
1357
- .icon-sort-by-attributes-alt:before {
1209
+ .fa-sort-amount-desc:before {
1358
1210
  content: "\f161";
1359
1211
  }
1360
- .icon-sort-by-order:before {
1212
+ .fa-sort-numeric-asc:before {
1361
1213
  content: "\f162";
1362
1214
  }
1363
- .icon-sort-by-order-alt:before {
1215
+ .fa-sort-numeric-desc:before {
1364
1216
  content: "\f163";
1365
1217
  }
1366
- .icon-thumbs-up:before {
1218
+ .fa-thumbs-up:before {
1367
1219
  content: "\f164";
1368
1220
  }
1369
- .icon-thumbs-down:before {
1221
+ .fa-thumbs-down:before {
1370
1222
  content: "\f165";
1371
1223
  }
1372
- .icon-youtube-sign:before {
1224
+ .fa-youtube-square:before {
1373
1225
  content: "\f166";
1374
1226
  }
1375
- .icon-youtube:before {
1227
+ .fa-youtube:before {
1376
1228
  content: "\f167";
1377
1229
  }
1378
- .icon-xing:before {
1230
+ .fa-xing:before {
1379
1231
  content: "\f168";
1380
1232
  }
1381
- .icon-xing-sign:before {
1233
+ .fa-xing-square:before {
1382
1234
  content: "\f169";
1383
1235
  }
1384
- .icon-youtube-play:before {
1236
+ .fa-youtube-play:before {
1385
1237
  content: "\f16a";
1386
1238
  }
1387
- .icon-dropbox:before {
1239
+ .fa-dropbox:before {
1388
1240
  content: "\f16b";
1389
1241
  }
1390
- .icon-stackexchange:before {
1242
+ .fa-stack-overflow:before {
1391
1243
  content: "\f16c";
1392
1244
  }
1393
- .icon-instagram:before {
1245
+ .fa-instagram:before {
1394
1246
  content: "\f16d";
1395
1247
  }
1396
- .icon-flickr:before {
1248
+ .fa-flickr:before {
1397
1249
  content: "\f16e";
1398
1250
  }
1399
- .icon-adn:before {
1251
+ .fa-adn:before {
1400
1252
  content: "\f170";
1401
1253
  }
1402
- .icon-bitbucket:before {
1254
+ .fa-bitbucket:before {
1403
1255
  content: "\f171";
1404
1256
  }
1405
- .icon-bitbucket-sign:before {
1257
+ .fa-bitbucket-square:before {
1406
1258
  content: "\f172";
1407
1259
  }
1408
- .icon-tumblr:before {
1260
+ .fa-tumblr:before {
1409
1261
  content: "\f173";
1410
1262
  }
1411
- .icon-tumblr-sign:before {
1263
+ .fa-tumblr-square:before {
1412
1264
  content: "\f174";
1413
1265
  }
1414
- .icon-long-arrow-down:before {
1266
+ .fa-long-arrow-down:before {
1415
1267
  content: "\f175";
1416
1268
  }
1417
- .icon-long-arrow-up:before {
1269
+ .fa-long-arrow-up:before {
1418
1270
  content: "\f176";
1419
1271
  }
1420
- .icon-long-arrow-left:before {
1272
+ .fa-long-arrow-left:before {
1421
1273
  content: "\f177";
1422
1274
  }
1423
- .icon-long-arrow-right:before {
1275
+ .fa-long-arrow-right:before {
1424
1276
  content: "\f178";
1425
1277
  }
1426
- .icon-apple:before {
1278
+ .fa-apple:before {
1427
1279
  content: "\f179";
1428
1280
  }
1429
- .icon-windows:before {
1281
+ .fa-windows:before {
1430
1282
  content: "\f17a";
1431
1283
  }
1432
- .icon-android:before {
1284
+ .fa-android:before {
1433
1285
  content: "\f17b";
1434
1286
  }
1435
- .icon-linux:before {
1287
+ .fa-linux:before {
1436
1288
  content: "\f17c";
1437
1289
  }
1438
- .icon-dribbble:before {
1290
+ .fa-dribbble:before {
1439
1291
  content: "\f17d";
1440
1292
  }
1441
- .icon-skype:before {
1293
+ .fa-skype:before {
1442
1294
  content: "\f17e";
1443
1295
  }
1444
- .icon-foursquare:before {
1296
+ .fa-foursquare:before {
1445
1297
  content: "\f180";
1446
1298
  }
1447
- .icon-trello:before {
1299
+ .fa-trello:before {
1448
1300
  content: "\f181";
1449
1301
  }
1450
- .icon-female:before {
1302
+ .fa-female:before {
1451
1303
  content: "\f182";
1452
1304
  }
1453
- .icon-male:before {
1305
+ .fa-male:before {
1454
1306
  content: "\f183";
1455
1307
  }
1456
- .icon-gittip:before {
1308
+ .fa-gittip:before {
1457
1309
  content: "\f184";
1458
1310
  }
1459
- .icon-sun:before {
1311
+ .fa-sun-o:before {
1460
1312
  content: "\f185";
1461
1313
  }
1462
- .icon-moon:before {
1314
+ .fa-moon-o:before {
1463
1315
  content: "\f186";
1464
1316
  }
1465
- .icon-archive:before {
1317
+ .fa-archive:before {
1466
1318
  content: "\f187";
1467
1319
  }
1468
- .icon-bug:before {
1320
+ .fa-bug:before {
1469
1321
  content: "\f188";
1470
1322
  }
1471
- .icon-vk:before {
1323
+ .fa-vk:before {
1472
1324
  content: "\f189";
1473
1325
  }
1474
- .icon-weibo:before {
1326
+ .fa-weibo:before {
1475
1327
  content: "\f18a";
1476
1328
  }
1477
- .icon-renren:before {
1329
+ .fa-renren:before {
1478
1330
  content: "\f18b";
1479
1331
  }
1332
+ .fa-pagelines:before {
1333
+ content: "\f18c";
1334
+ }
1335
+ .fa-stack-exchange:before {
1336
+ content: "\f18d";
1337
+ }
1338
+ .fa-arrow-circle-o-right:before {
1339
+ content: "\f18e";
1340
+ }
1341
+ .fa-arrow-circle-o-left:before {
1342
+ content: "\f190";
1343
+ }
1344
+ .fa-toggle-left:before,
1345
+ .fa-caret-square-o-left:before {
1346
+ content: "\f191";
1347
+ }
1348
+ .fa-dot-circle-o:before {
1349
+ content: "\f192";
1350
+ }
1351
+ .fa-wheelchair:before {
1352
+ content: "\f193";
1353
+ }
1354
+ .fa-vimeo-square:before {
1355
+ content: "\f194";
1356
+ }
1357
+ .fa-turkish-lira:before,
1358
+ .fa-try:before {
1359
+ content: "\f195";
1360
+ }