survivalkit 1.0.beta.10 → 1.0.beta.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. data/CHANGELOG.markdown +3 -0
  2. data/lib/survivalkit.rb +4 -3
  3. data/stylesheets/survivalkit/fonts/_all.scss +3 -0
  4. data/stylesheets/survivalkit/fonts/_font-awesome.scss +544 -310
  5. data/stylesheets/survivalkit/fonts/_league-gothic.scss +32 -44
  6. data/stylesheets/survivalkit/fonts/_ostrich-sans.scss +49 -56
  7. data/stylesheets/survivalkit/reset/_formalize.scss +2 -2
  8. data/stylesheets/survivalkit/reset/_meyer-reset.scss +4 -4
  9. data/stylesheets/survivalkit/reset/_normalize.scss +215 -192
  10. data/stylesheets/survivalkit/reset/_reset.scss +7 -5
  11. data/templates/clean/manifest.rb +4 -8
  12. data/templates/drupal/manifest.rb +4 -8
  13. data/templates/project/manifest.rb +3 -5
  14. data/templates/shared/partials/01-variables/_all.scss +1 -1
  15. data/templates/shared/partials/01-variables/{_base.scss → _settings.scss} +4 -4
  16. data/templates/shared/partials/03-extend/_all.scss +0 -1
  17. data/templates/shared/partials/05-layout/_grids-singularitygs.scss +59 -0
  18. data/templates/shared/partials/06-ui-patterns/_drupal-patterns.scss +8 -0
  19. data/templates/shared/partials/{08-media → 07-media}/_print.scss +0 -0
  20. data/templates/shared/style.scss +18 -54
  21. data/templates/shared/your-design-here/_design.scss +1 -0
  22. metadata +33 -23
  23. data/stylesheets/survivalkit/style-tile/_all.scss +0 -1
  24. data/stylesheets/survivalkit/style-tile/_tile-layout.scss +0 -201
  25. data/stylesheets/survivalkit/survival-kit/_survival-kit.sass +0 -157
  26. data/templates/shared/partials/03-extend/_helpers.scss +0 -7
  27. data/templates/shared/partials/06-ui-patterns/_common.scss +0 -1
  28. data/templates/shared/partials/07-styletile/_tile-design.scss +0 -213
@@ -1,42 +1,39 @@
1
- /* Font Awesome
2
- the iconic font designed for use with Twitter Bootstrap
3
- -------------------------------------------------------
4
- The full suite of pictographic icons, examples, and documentation
5
- can be found at: http://fortawesome.github.com/Font-Awesome/
6
-
7
- License
8
- -------------------------------------------------------
9
- The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
10
- http://creativecommons.org/licenses/by/3.0/ A mention of
11
- 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
12
- source code is considered acceptable attribution (most common on the web).
13
- If human readable source code is not available to the end user, a mention in
14
- an 'About' or 'Credits' screen is considered acceptable (most common in desktop
15
- or mobile software).
16
-
17
- Contact
18
- -------------------------------------------------------
19
- Email: dave@davegandy.com
20
- Twitter: http://twitter.com/fortaweso_me
21
- Work: Lead Product Designer @ http://kyruus.com
22
-
23
- */
1
+ ////////////////////////////
2
+ // Font Awesome
3
+ // the iconic font designed for use with Twitter Bootstrap
4
+ // -------------------------------------------------------
5
+ // The full suite of pictographic icons, examples, and documentation
6
+ // can be found at: http://fortawesome.github.com/Font-Awesome/
7
+ //
8
+ // License
9
+ // -------------------------------------------------------
10
+ // The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
11
+ // http://creativecommons.org/licenses/by/3.0/ A mention of
12
+ // 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
13
+ // source code is considered acceptable attribution (most common on the web).
14
+ // If human readable source code is not available to the end user, a mention in
15
+ // an 'About' or 'Credits' screen is considered acceptable (most common in desktop
16
+ // or mobile software).
17
+ // Contact
18
+ // -------------------------------------------------------
19
+ // Email: dave@davegandy.com
20
+ // Twitter: http://twitter.com/fortaweso_me
21
+ // Work: Lead Product Designer @ http://kyruus.com
22
+ ////////////////////////////
24
23
 
25
24
  @import "compass/css3/font-face";
26
- $fontAwesomePath: "../font/fontawesome-webfont" !default;
27
25
 
28
- @include font-face(
26
+ @mixin font-awesome-font-face {
27
+ @include font-face(
29
28
  'FontAwesome',
30
29
  font-files(
31
- "#{$fontAwesomePath}.woff", woff,
32
- "#{$fontAwesomePath}.ttf", truetype,
33
- "#{$fontAwesomePath}.svg#FontAwesomeRegular", svg),
34
- '#{$fontAwesomePath}.eot',
30
+ "fontawesome-webfont.woff", woff,
31
+ "fontawesome-webfont.ttf", truetype,
32
+ "fontawesome-webfont.svg#FontAwesomeRegular", svg),
33
+ 'fontawesome-webfont.eot',
35
34
  normal,
36
35
  normal);
37
-
38
- /* Font Awesome styles
39
- ------------------------------------------------------- */
36
+ }
40
37
 
41
38
  @mixin font-awesome {
42
39
  font-family: FontAwesome;
@@ -46,310 +43,547 @@ $fontAwesomePath: "../font/fontawesome-webfont" !default;
46
43
  text-decoration: inherit;
47
44
  }
48
45
 
46
+ // SILENT EXTENDABLES
47
+ %font-awesome {
48
+ @include font-awesome;
49
+ }
50
+ %icon-glass:before { @extend %font-awesome !optional; content: "\f000"; }
51
+ %icon-music:before { @extend %font-awesome !optional; content: "\f001"; }
52
+ %icon-search:before { @extend %font-awesome !optional; content: "\f002"; }
53
+ %icon-envelope:before { @extend %font-awesome !optional; content: "\f003"; }
54
+ %icon-heart:before { @extend %font-awesome !optional; content: "\f004"; }
55
+ %icon-star:before { @extend %font-awesome !optional; content: "\f005"; }
56
+ %icon-star-empty:before { @extend %font-awesome !optional; content: "\f006"; }
57
+ %icon-user:before { @extend %font-awesome !optional; content: "\f007"; }
58
+ %icon-film:before { @extend %font-awesome !optional; content: "\f008"; }
59
+ %icon-th-large:before { @extend %font-awesome !optional; content: "\f009"; }
60
+ %icon-th:before { @extend %font-awesome !optional; content: "\f00a"; }
61
+ %icon-th-list:before { @extend %font-awesome !optional; content: "\f00b"; }
62
+ %icon-ok:before { @extend %font-awesome !optional; content: "\f00c"; }
63
+ %icon-remove:before { @extend %font-awesome !optional; content: "\f00d"; }
64
+ %icon-zoom-in:before { @extend %font-awesome !optional; content: "\f00e"; }
65
+
66
+ %icon-zoom-out:before { @extend %font-awesome !optional; content: "\f010"; }
67
+ %icon-off:before { @extend %font-awesome !optional; content: "\f011"; }
68
+ %icon-signal:before { @extend %font-awesome !optional; content: "\f012"; }
69
+ %icon-cog:before { @extend %font-awesome !optional; content: "\f013"; }
70
+ %icon-trash:before { @extend %font-awesome !optional; content: "\f014"; }
71
+ %icon-home:before { @extend %font-awesome !optional; content: "\f015"; }
72
+ %icon-file:before { @extend %font-awesome !optional; content: "\f016"; }
73
+ %icon-time:before { @extend %font-awesome !optional; content: "\f017"; }
74
+ %icon-road:before { @extend %font-awesome !optional; content: "\f018"; }
75
+ %icon-download-alt:before { @extend %font-awesome !optional; content: "\f019"; }
76
+ %icon-download:before { @extend %font-awesome !optional; content: "\f01a"; }
77
+ %icon-upload:before { @extend %font-awesome !optional; content: "\f01b"; }
78
+ %icon-inbox:before { @extend %font-awesome !optional; content: "\f01c"; }
79
+ %icon-play-circle:before { @extend %font-awesome !optional; content: "\f01d"; }
80
+ %icon-repeat:before { @extend %font-awesome !optional; content: "\f01e"; }
81
+
82
+ // \f020 doesn't work in Safari. all shifted one down */
83
+ %icon-refresh:before { @extend %font-awesome !optional; content: "\f021"; }
84
+ %icon-list-alt:before { @extend %font-awesome !optional; content: "\f022"; }
85
+ %icon-lock:before { @extend %font-awesome !optional; content: "\f023"; }
86
+ %icon-flag:before { @extend %font-awesome !optional; content: "\f024"; }
87
+ %icon-headphones:before { @extend %font-awesome !optional; content: "\f025"; }
88
+ %icon-volume-off:before { @extend %font-awesome !optional; content: "\f026"; }
89
+ %icon-volume-down:before { @extend %font-awesome !optional; content: "\f027"; }
90
+ %icon-volume-up:before { @extend %font-awesome !optional; content: "\f028"; }
91
+ %icon-qrcode:before { @extend %font-awesome !optional; content: "\f029"; }
92
+ %icon-barcode:before { @extend %font-awesome !optional; content: "\f02a"; }
93
+ %icon-tag:before { @extend %font-awesome !optional; content: "\f02b"; }
94
+ %icon-tags:before { @extend %font-awesome !optional; content: "\f02c"; }
95
+ %icon-book:before { @extend %font-awesome !optional; content: "\f02d"; }
96
+ %icon-bookmark:before { @extend %font-awesome !optional; content: "\f02e"; }
97
+ %icon-print:before { @extend %font-awesome !optional; content: "\f02f"; }
98
+
99
+ %icon-camera:before { @extend %font-awesome !optional; content: "\f030"; }
100
+ %icon-font:before { @extend %font-awesome !optional; content: "\f031"; }
101
+ %icon-bold:before { @extend %font-awesome !optional; content: "\f032"; }
102
+ %icon-italic:before { @extend %font-awesome !optional; content: "\f033"; }
103
+ %icon-text-height:before { @extend %font-awesome !optional; content: "\f034"; }
104
+ %icon-text-width:before { @extend %font-awesome !optional; content: "\f035"; }
105
+ %icon-align-left:before { @extend %font-awesome !optional; content: "\f036"; }
106
+ %icon-align-center:before { @extend %font-awesome !optional; content: "\f037"; }
107
+ %icon-align-right:before { @extend %font-awesome !optional; content: "\f038"; }
108
+ %icon-align-justify:before { @extend %font-awesome !optional; content: "\f039"; }
109
+ %icon-list:before { @extend %font-awesome !optional; content: "\f03a"; }
110
+ %icon-indent-left:before { @extend %font-awesome !optional; content: "\f03b"; }
111
+ %icon-indent-right:before { @extend %font-awesome !optional; content: "\f03c"; }
112
+ %icon-facetime-video:before { @extend %font-awesome !optional; content: "\f03d"; }
113
+ %icon-picture:before { @extend %font-awesome !optional; content: "\f03e"; }
114
+
115
+ %icon-pencil:before { @extend %font-awesome !optional; content: "\f040"; }
116
+ %icon-map-marker:before { @extend %font-awesome !optional; content: "\f041"; }
117
+ %icon-adjust:before { @extend %font-awesome !optional; content: "\f042"; }
118
+ %icon-tint:before { @extend %font-awesome !optional; content: "\f043"; }
119
+ %icon-edit:before { @extend %font-awesome !optional; content: "\f044"; }
120
+ %icon-share:before { @extend %font-awesome !optional; content: "\f045"; }
121
+ %icon-check:before { @extend %font-awesome !optional; content: "\f046"; }
122
+ %icon-move:before { @extend %font-awesome !optional; content: "\f047"; }
123
+ %icon-step-backward:before { @extend %font-awesome !optional; content: "\f048"; }
124
+ %icon-fast-backward:before { @extend %font-awesome !optional; content: "\f049"; }
125
+ %icon-backward:before { @extend %font-awesome !optional; content: "\f04a"; }
126
+ %icon-play:before { @extend %font-awesome !optional; content: "\f04b"; }
127
+ %icon-pause:before { @extend %font-awesome !optional; content: "\f04c"; }
128
+ %icon-stop:before { @extend %font-awesome !optional; content: "\f04d"; }
129
+ %icon-forward:before { @extend %font-awesome !optional; content: "\f04e"; }
130
+
131
+ %icon-fast-forward:before { @extend %font-awesome !optional; content: "\f050"; }
132
+ %icon-step-forward:before { @extend %font-awesome !optional; content: "\f051"; }
133
+ %icon-eject:before { @extend %font-awesome !optional; content: "\f052"; }
134
+ %icon-chevron-left:before { @extend %font-awesome !optional; content: "\f053"; }
135
+ %icon-chevron-right:before { @extend %font-awesome !optional; content: "\f054"; }
136
+ %icon-plus-sign:before { @extend %font-awesome !optional; content: "\f055"; }
137
+ %icon-minus-sign:before { @extend %font-awesome !optional; content: "\f056"; }
138
+ %icon-remove-sign:before { @extend %font-awesome !optional; content: "\f057"; }
139
+ %icon-ok-sign:before { @extend %font-awesome !optional; content: "\f058"; }
140
+ %icon-question-sign:before { @extend %font-awesome !optional; content: "\f059"; }
141
+ %icon-info-sign:before { @extend %font-awesome !optional; content: "\f05a"; }
142
+ %icon-screenshot:before { @extend %font-awesome !optional; content: "\f05b"; }
143
+ %icon-remove-circle:before { @extend %font-awesome !optional; content: "\f05c"; }
144
+ %icon-ok-circle:before { @extend %font-awesome !optional; content: "\f05d"; }
145
+ %icon-ban-circle:before { @extend %font-awesome !optional; content: "\f05e"; }
146
+
147
+ %icon-arrow-left:before { @extend %font-awesome !optional; content: "\f060"; }
148
+ %icon-arrow-right:before { @extend %font-awesome !optional; content: "\f061"; }
149
+ %icon-arrow-up:before { @extend %font-awesome !optional; content: "\f062"; }
150
+ %icon-arrow-down:before { @extend %font-awesome !optional; content: "\f063"; }
151
+ %icon-share-alt:before { @extend %font-awesome !optional; content: "\f064"; }
152
+ %icon-resize-full:before { @extend %font-awesome !optional; content: "\f065"; }
153
+ %icon-resize-small:before { @extend %font-awesome !optional; content: "\f066"; }
154
+ %icon-plus:before { @extend %font-awesome !optional; content: "\f067"; }
155
+ %icon-minus:before { @extend %font-awesome !optional; content: "\f068"; }
156
+ %icon-asterisk:before { @extend %font-awesome !optional; content: "\f069"; }
157
+ %icon-exclamation-sign:before { @extend %font-awesome !optional; content: "\f06a"; }
158
+ %icon-gift:before { @extend %font-awesome !optional; content: "\f06b"; }
159
+ %icon-leaf:before { @extend %font-awesome !optional; content: "\f06c"; }
160
+ %icon-fire:before { @extend %font-awesome !optional; content: "\f06d"; }
161
+ %icon-eye-open:before { @extend %font-awesome !optional; content: "\f06e"; }
162
+
163
+ %icon-eye-close:before { @extend %font-awesome !optional; content: "\f070"; }
164
+ %icon-warning-sign:before { @extend %font-awesome !optional; content: "\f071"; }
165
+ %icon-plane:before { @extend %font-awesome !optional; content: "\f072"; }
166
+ %icon-calendar:before { @extend %font-awesome !optional; content: "\f073"; }
167
+ %icon-random:before { @extend %font-awesome !optional; content: "\f074"; }
168
+ %icon-comment:before { @extend %font-awesome !optional; content: "\f075"; }
169
+ %icon-magnet:before { @extend %font-awesome !optional; content: "\f076"; }
170
+ %icon-chevron-up:before { @extend %font-awesome !optional; content: "\f077"; }
171
+ %icon-chevron-down:before { @extend %font-awesome !optional; content: "\f078"; }
172
+ %icon-retweet:before { @extend %font-awesome !optional; content: "\f079"; }
173
+ %icon-shopping-cart:before { @extend %font-awesome !optional; content: "\f07a"; }
174
+ %icon-folder-close:before { @extend %font-awesome !optional; content: "\f07b"; }
175
+ %icon-folder-open:before { @extend %font-awesome !optional; content: "\f07c"; }
176
+ %icon-resize-vertical:before { @extend %font-awesome !optional; content: "\f07d"; }
177
+ %icon-resize-horizontal:before { @extend %font-awesome !optional; content: "\f07e"; }
178
+
179
+ %icon-bar-chart:before { @extend %font-awesome !optional; content: "\f080"; }
180
+ %icon-twitter-sign:before { @extend %font-awesome !optional; content: "\f081"; }
181
+ %icon-facebook-sign:before { @extend %font-awesome !optional; content: "\f082"; }
182
+ %icon-camera-retro:before { @extend %font-awesome !optional; content: "\f083"; }
183
+ %icon-key:before { @extend %font-awesome !optional; content: "\f084"; }
184
+ %icon-cogs:before { @extend %font-awesome !optional; content: "\f085"; }
185
+ %icon-comments:before { @extend %font-awesome !optional; content: "\f086"; }
186
+ %icon-thumbs-up:before { @extend %font-awesome !optional; content: "\f087"; }
187
+ %icon-thumbs-down:before { @extend %font-awesome !optional; content: "\f088"; }
188
+ %icon-star-half:before { @extend %font-awesome !optional; content: "\f089"; }
189
+ %icon-heart-empty:before { @extend %font-awesome !optional; content: "\f08a"; }
190
+ %icon-signout:before { @extend %font-awesome !optional; content: "\f08b"; }
191
+ %icon-linkedin-sign:before { @extend %font-awesome !optional; content: "\f08c"; }
192
+ %icon-pushpin:before { @extend %font-awesome !optional; content: "\f08d"; }
193
+ %icon-external-link:before { @extend %font-awesome !optional; content: "\f08e"; }
194
+
195
+ %icon-signin:before { @extend %font-awesome !optional; content: "\f090"; }
196
+ %icon-trophy:before { @extend %font-awesome !optional; content: "\f091"; }
197
+ %icon-github-sign:before { @extend %font-awesome !optional; content: "\f092"; }
198
+ %icon-upload-alt:before { @extend %font-awesome !optional; content: "\f093"; }
199
+ %icon-lemon:before { @extend %font-awesome !optional; content: "\f094"; }
200
+ %icon-phone:before { @extend %font-awesome !optional; content: "\f095"; }
201
+ %icon-check-empty:before { @extend %font-awesome !optional; content: "\f096"; }
202
+ %icon-bookmark-empty:before { @extend %font-awesome !optional; content: "\f097"; }
203
+ %icon-phone-sign:before { @extend %font-awesome !optional; content: "\f098"; }
204
+ %icon-twitter:before { @extend %font-awesome !optional; content: "\f099"; }
205
+ %icon-facebook:before { @extend %font-awesome !optional; content: "\f09a"; }
206
+ %icon-github:before { @extend %font-awesome !optional; content: "\f09b"; }
207
+ %icon-unlock:before { @extend %font-awesome !optional; content: "\f09c"; }
208
+ %icon-credit-card:before { @extend %font-awesome !optional; content: "\f09d"; }
209
+ %icon-rss:before { @extend %font-awesome !optional; content: "\f09e"; }
210
+
211
+ %icon-hdd:before { @extend %font-awesome !optional; content: "\f0a0"; }
212
+ %icon-bullhorn:before { @extend %font-awesome !optional; content: "\f0a1"; }
213
+ %icon-bell:before { @extend %font-awesome !optional; content: "\f0a2"; }
214
+ %icon-certificate:before { @extend %font-awesome !optional; content: "\f0a3"; }
215
+ %icon-hand-right:before { @extend %font-awesome !optional; content: "\f0a4"; }
216
+ %icon-hand-left:before { @extend %font-awesome !optional; content: "\f0a5"; }
217
+ %icon-hand-up:before { @extend %font-awesome !optional; content: "\f0a6"; }
218
+ %icon-hand-down:before { @extend %font-awesome !optional; content: "\f0a7"; }
219
+ %icon-circle-arrow-left:before { @extend %font-awesome !optional; content: "\f0a8"; }
220
+ %icon-circle-arrow-right:before { @extend %font-awesome !optional; content: "\f0a9"; }
221
+ %icon-circle-arrow-up:before { @extend %font-awesome !optional; content: "\f0aa"; }
222
+ %icon-circle-arrow-down:before { @extend %font-awesome !optional; content: "\f0ab"; }
223
+ %icon-globe:before { @extend %font-awesome !optional; content: "\f0ac"; }
224
+ %icon-wrench:before { @extend %font-awesome !optional; content: "\f0ad"; }
225
+ %icon-tasks:before { @extend %font-awesome !optional; content: "\f0ae"; }
226
+
227
+ %icon-filter:before { @extend %font-awesome !optional; content: "\f0b0"; }
228
+ %icon-briefcase:before { @extend %font-awesome !optional; content: "\f0b1"; }
229
+ %icon-fullscreen:before { @extend %font-awesome !optional; content: "\f0b2"; }
230
+
231
+ %icon-group:before { @extend %font-awesome !optional; content: "\f0c0"; }
232
+ %icon-link:before { @extend %font-awesome !optional; content: "\f0c1"; }
233
+ %icon-cloud:before { @extend %font-awesome !optional; content: "\f0c2"; }
234
+ %icon-beaker:before { @extend %font-awesome !optional; content: "\f0c3"; }
235
+ %icon-cut:before { @extend %font-awesome !optional; content: "\f0c4"; }
236
+ %icon-copy:before { @extend %font-awesome !optional; content: "\f0c5"; }
237
+ %icon-paper-clip:before { @extend %font-awesome !optional; content: "\f0c6"; }
238
+ %icon-save:before { @extend %font-awesome !optional; content: "\f0c7"; }
239
+ %icon-sign-blank:before { @extend %font-awesome !optional; content: "\f0c8"; }
240
+ %icon-reorder:before { @extend %font-awesome !optional; content: "\f0c9"; }
241
+ %icon-list-ul:before { @extend %font-awesome !optional; content: "\f0ca"; }
242
+ %icon-list-ol:before { @extend %font-awesome !optional; content: "\f0cb"; }
243
+ %icon-strikethrough:before { @extend %font-awesome !optional; content: "\f0cc"; }
244
+ %icon-underline:before { @extend %font-awesome !optional; content: "\f0cd"; }
245
+ %icon-table:before { @extend %font-awesome !optional; content: "\f0ce"; }
246
+
247
+ %icon-magic:before { @extend %font-awesome !optional; content: "\f0d0"; }
248
+ %icon-truck:before { @extend %font-awesome !optional; content: "\f0d1"; }
249
+ %icon-pinterest:before { @extend %font-awesome !optional; content: "\f0d2"; }
250
+ %icon-pinterest-sign:before { @extend %font-awesome !optional; content: "\f0d3"; }
251
+ %icon-google-plus-sign:before { @extend %font-awesome !optional; content: "\f0d4"; }
252
+ %icon-google-plus:before { @extend %font-awesome !optional; content: "\f0d5"; }
253
+ %icon-money:before { @extend %font-awesome !optional; content: "\f0d6"; }
254
+ %icon-caret-down:before { @extend %font-awesome !optional; content: "\f0d7"; }
255
+ %icon-caret-up:before { @extend %font-awesome !optional; content: "\f0d8"; }
256
+ %icon-caret-left:before { @extend %font-awesome !optional; content: "\f0d9"; }
257
+ %icon-caret-right:before { @extend %font-awesome !optional; content: "\f0da"; }
258
+ %icon-columns:before { @extend %font-awesome !optional; content: "\f0db"; }
259
+ %icon-sort:before { @extend %font-awesome !optional; content: "\f0dc"; }
260
+ %icon-sort-down:before { @extend %font-awesome !optional; content: "\f0dd"; }
261
+ %icon-sort-up:before { @extend %font-awesome !optional; content: "\f0de"; }
262
+
263
+ %icon-envelope-alt:before { @extend %font-awesome !optional; content: "\f0e0"; }
264
+ %icon-linkedin:before { @extend %font-awesome !optional; content: "\f0e1"; }
265
+ %icon-undo:before { @extend %font-awesome !optional; content: "\f0e2"; }
266
+ %icon-legal:before { @extend %font-awesome !optional; content: "\f0e3"; }
267
+ %icon-dashboard:before { @extend %font-awesome !optional; content: "\f0e4"; }
268
+ %icon-comment-alt:before { @extend %font-awesome !optional; content: "\f0e5"; }
269
+ %icon-comments-alt:before { @extend %font-awesome !optional; content: "\f0e6"; }
270
+ %icon-bolt:before { @extend %font-awesome !optional; content: "\f0e7"; }
271
+ %icon-sitemap:before { @extend %font-awesome !optional; content: "\f0e8"; }
272
+ %icon-umbrella:before { @extend %font-awesome !optional; content: "\f0e9"; }
273
+ %icon-paste:before { @extend %font-awesome !optional; content: "\f0ea"; }
274
+
275
+ %icon-user-md:before { @extend %font-awesome !optional; content: "\f200"; }
276
+
277
+
49
278
  @mixin font-awesome-icon-large {
279
+ @extend %font-awesome !optional;
50
280
  &:before {
51
281
  vertical-align: middle;
52
282
  font-size: 4/3em;
53
283
  }
54
284
  }
285
+ %font-awesome-icon-large {
286
+ @include font-awesome-icon-large;
287
+ }
55
288
 
56
289
  @mixin font-awesome-btn {
57
- /* keeps button heights with and without icons the same */
290
+ @extend %font-awesome !optional;
291
+ // keeps button heights with and without icons the same
58
292
  line-height: .9em;
59
293
  }
60
-
61
-
62
- %font-awesome,
63
- [class^="icon-"],
64
- [class*=" icon-"] {
65
- &:before {
66
- @include font-awesome;
67
- a & {
68
- display: inline-block;
69
- text-decoration: inherit;
70
- }
71
- }
294
+ %font-awesome-btn {
295
+ @include font-awesome-btn;
72
296
  }
73
297
 
74
- // a [class^="icon-"],
75
- // a [class*=" icon-"] {
76
- // display: inline-block;
77
- // text-decoration: inherit;
78
- // }
79
298
 
80
- /* makes the font 33% larger relative to the icon container */
81
- %icon-large,
82
- .icon-large {
83
- @include font-awesome-icon-large;
84
- }
85
-
86
- %btn,
87
- .btn,
88
- .nav-tabs {
299
+ @mixin font-awesome-classes {
89
300
  [class^="icon-"],
90
301
  [class*=" icon-"] {
91
- @include font-awesome-btn;
302
+ &:before {
303
+ @extend %font-awesome !optional;
304
+ a & {
305
+ display: inline-block;
306
+ text-decoration: inherit;
307
+ }
308
+ }
92
309
  }
93
- }
94
310
 
95
- li {
96
- [class^="icon-"],
97
- [class*=" icon-"] {
98
- display: inline-block;
99
- width: 1.25em;
100
- text-align: center;
101
- }
102
- .icon-large:before,
103
- .icon-large:before {
104
- /* 1.5 increased font size for icon-large * 1.25 width */
105
- width: 1.5*1.25em;
311
+
312
+ // makes the font 33% larger relative to the icon container */
313
+ .icon-large {
314
+ @include font-awesome-icon-large;
106
315
  }
107
- }
108
316
 
109
- ul.icons {
110
- list-style-type: none;
111
- margin-left: 2em;
112
- text-indent: -.8em;
317
+ .btn,
318
+ .nav-tabs {
319
+ [class^="icon-"],
320
+ [class*=" icon-"] {
321
+ @include font-awesome-btn;
322
+ }
323
+ }
113
324
 
114
325
  li {
115
326
  [class^="icon-"],
116
327
  [class*=" icon-"] {
117
- width: .8em;
328
+ @extend %font-awesome !optional;
329
+ display: inline-block;
330
+ width: 1.25em;
331
+ text-align: center;
118
332
  }
119
333
  .icon-large:before,
120
334
  .icon-large:before {
121
- /* 1.5 increased font size for icon-large * 1.25 width */
122
- vertical-align: initial;
123
- // width: 1.5*1.25em;
335
+ @extend %font-awesome !optional;
336
+ // 1.5 increased font size for icon-large * 1.25 width */
337
+ width: 1.5*1.25em;
124
338
  }
125
339
  }
126
- }
127
340
 
128
- /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
129
- readers do not read off random characters that represent icons */
130
- .icon-glass:before { content: "\f000"; }
131
- .icon-music:before { content: "\f001"; }
132
- .icon-search:before { content: "\f002"; }
133
- .icon-envelope:before { content: "\f003"; }
134
- .icon-heart:before { content: "\f004"; }
135
- .icon-star:before { content: "\f005"; }
136
- .icon-star-empty:before { content: "\f006"; }
137
- .icon-user:before { content: "\f007"; }
138
- .icon-film:before { content: "\f008"; }
139
- .icon-th-large:before { content: "\f009"; }
140
- .icon-th:before { content: "\f00a"; }
141
- .icon-th-list:before { content: "\f00b"; }
142
- .icon-ok:before { content: "\f00c"; }
143
- .icon-remove:before { content: "\f00d"; }
144
- .icon-zoom-in:before { content: "\f00e"; }
145
-
146
- .icon-zoom-out:before { content: "\f010"; }
147
- .icon-off:before { content: "\f011"; }
148
- .icon-signal:before { content: "\f012"; }
149
- .icon-cog:before { content: "\f013"; }
150
- .icon-trash:before { content: "\f014"; }
151
- .icon-home:before { content: "\f015"; }
152
- .icon-file:before { content: "\f016"; }
153
- .icon-time:before { content: "\f017"; }
154
- .icon-road:before { content: "\f018"; }
155
- .icon-download-alt:before { content: "\f019"; }
156
- .icon-download:before { content: "\f01a"; }
157
- .icon-upload:before { content: "\f01b"; }
158
- .icon-inbox:before { content: "\f01c"; }
159
- .icon-play-circle:before { content: "\f01d"; }
160
- .icon-repeat:before { content: "\f01e"; }
161
-
162
- /* \f020 doesn't work in Safari. all shifted one down */
163
- .icon-refresh:before { content: "\f021"; }
164
- .icon-list-alt:before { content: "\f022"; }
165
- .icon-lock:before { content: "\f023"; }
166
- .icon-flag:before { content: "\f024"; }
167
- .icon-headphones:before { content: "\f025"; }
168
- .icon-volume-off:before { content: "\f026"; }
169
- .icon-volume-down:before { content: "\f027"; }
170
- .icon-volume-up:before { content: "\f028"; }
171
- .icon-qrcode:before { content: "\f029"; }
172
- .icon-barcode:before { content: "\f02a"; }
173
- .icon-tag:before { content: "\f02b"; }
174
- .icon-tags:before { content: "\f02c"; }
175
- .icon-book:before { content: "\f02d"; }
176
- .icon-bookmark:before { content: "\f02e"; }
177
- .icon-print:before { content: "\f02f"; }
178
-
179
- .icon-camera:before { content: "\f030"; }
180
- .icon-font:before { content: "\f031"; }
181
- .icon-bold:before { content: "\f032"; }
182
- .icon-italic:before { content: "\f033"; }
183
- .icon-text-height:before { content: "\f034"; }
184
- .icon-text-width:before { content: "\f035"; }
185
- .icon-align-left:before { content: "\f036"; }
186
- .icon-align-center:before { content: "\f037"; }
187
- .icon-align-right:before { content: "\f038"; }
188
- .icon-align-justify:before { content: "\f039"; }
189
- .icon-list:before { content: "\f03a"; }
190
- .icon-indent-left:before { content: "\f03b"; }
191
- .icon-indent-right:before { content: "\f03c"; }
192
- .icon-facetime-video:before { content: "\f03d"; }
193
- .icon-picture:before { content: "\f03e"; }
194
-
195
- .icon-pencil:before { content: "\f040"; }
196
- .icon-map-marker:before { content: "\f041"; }
197
- .icon-adjust:before { content: "\f042"; }
198
- .icon-tint:before { content: "\f043"; }
199
- .icon-edit:before { content: "\f044"; }
200
- .icon-share:before { content: "\f045"; }
201
- .icon-check:before { content: "\f046"; }
202
- .icon-move:before { content: "\f047"; }
203
- .icon-step-backward:before { content: "\f048"; }
204
- .icon-fast-backward:before { content: "\f049"; }
205
- .icon-backward:before { content: "\f04a"; }
206
- .icon-play:before { content: "\f04b"; }
207
- .icon-pause:before { content: "\f04c"; }
208
- .icon-stop:before { content: "\f04d"; }
209
- .icon-forward:before { content: "\f04e"; }
210
-
211
- .icon-fast-forward:before { content: "\f050"; }
212
- .icon-step-forward:before { content: "\f051"; }
213
- .icon-eject:before { content: "\f052"; }
214
- .icon-chevron-left:before { content: "\f053"; }
215
- .icon-chevron-right:before { content: "\f054"; }
216
- .icon-plus-sign:before { content: "\f055"; }
217
- .icon-minus-sign:before { content: "\f056"; }
218
- .icon-remove-sign:before { content: "\f057"; }
219
- .icon-ok-sign:before { content: "\f058"; }
220
- .icon-question-sign:before { content: "\f059"; }
221
- .icon-info-sign:before { content: "\f05a"; }
222
- .icon-screenshot:before { content: "\f05b"; }
223
- .icon-remove-circle:before { content: "\f05c"; }
224
- .icon-ok-circle:before { content: "\f05d"; }
225
- .icon-ban-circle:before { content: "\f05e"; }
226
-
227
- .icon-arrow-left:before { content: "\f060"; }
228
- .icon-arrow-right:before { content: "\f061"; }
229
- .icon-arrow-up:before { content: "\f062"; }
230
- .icon-arrow-down:before { content: "\f063"; }
231
- .icon-share-alt:before { content: "\f064"; }
232
- .icon-resize-full:before { content: "\f065"; }
233
- .icon-resize-small:before { content: "\f066"; }
234
- .icon-plus:before { content: "\f067"; }
235
- .icon-minus:before { content: "\f068"; }
236
- .icon-asterisk:before { content: "\f069"; }
237
- .icon-exclamation-sign:before { content: "\f06a"; }
238
- .icon-gift:before { content: "\f06b"; }
239
- .icon-leaf:before { content: "\f06c"; }
240
- .icon-fire:before { content: "\f06d"; }
241
- .icon-eye-open:before { content: "\f06e"; }
242
-
243
- .icon-eye-close:before { content: "\f070"; }
244
- .icon-warning-sign:before { content: "\f071"; }
245
- .icon-plane:before { content: "\f072"; }
246
- .icon-calendar:before { content: "\f073"; }
247
- .icon-random:before { content: "\f074"; }
248
- .icon-comment:before { content: "\f075"; }
249
- .icon-magnet:before { content: "\f076"; }
250
- .icon-chevron-up:before { content: "\f077"; }
251
- .icon-chevron-down:before { content: "\f078"; }
252
- .icon-retweet:before { content: "\f079"; }
253
- .icon-shopping-cart:before { content: "\f07a"; }
254
- .icon-folder-close:before { content: "\f07b"; }
255
- .icon-folder-open:before { content: "\f07c"; }
256
- .icon-resize-vertical:before { content: "\f07d"; }
257
- .icon-resize-horizontal:before { content: "\f07e"; }
258
-
259
- .icon-bar-chart:before { content: "\f080"; }
260
- .icon-twitter-sign:before { content: "\f081"; }
261
- .icon-facebook-sign:before { content: "\f082"; }
262
- .icon-camera-retro:before { content: "\f083"; }
263
- .icon-key:before { content: "\f084"; }
264
- .icon-cogs:before { content: "\f085"; }
265
- .icon-comments:before { content: "\f086"; }
266
- .icon-thumbs-up:before { content: "\f087"; }
267
- .icon-thumbs-down:before { content: "\f088"; }
268
- .icon-star-half:before { content: "\f089"; }
269
- .icon-heart-empty:before { content: "\f08a"; }
270
- .icon-signout:before { content: "\f08b"; }
271
- .icon-linkedin-sign:before { content: "\f08c"; }
272
- .icon-pushpin:before { content: "\f08d"; }
273
- .icon-external-link:before { content: "\f08e"; }
274
-
275
- .icon-signin:before { content: "\f090"; }
276
- .icon-trophy:before { content: "\f091"; }
277
- .icon-github-sign:before { content: "\f092"; }
278
- .icon-upload-alt:before { content: "\f093"; }
279
- .icon-lemon:before { content: "\f094"; }
280
- .icon-phone:before { content: "\f095"; }
281
- .icon-check-empty:before { content: "\f096"; }
282
- .icon-bookmark-empty:before { content: "\f097"; }
283
- .icon-phone-sign:before { content: "\f098"; }
284
- .icon-twitter:before { content: "\f099"; }
285
- .icon-facebook:before { content: "\f09a"; }
286
- .icon-github:before { content: "\f09b"; }
287
- .icon-unlock:before { content: "\f09c"; }
288
- .icon-credit-card:before { content: "\f09d"; }
289
- .icon-rss:before { content: "\f09e"; }
290
-
291
- .icon-hdd:before { content: "\f0a0"; }
292
- .icon-bullhorn:before { content: "\f0a1"; }
293
- .icon-bell:before { content: "\f0a2"; }
294
- .icon-certificate:before { content: "\f0a3"; }
295
- .icon-hand-right:before { content: "\f0a4"; }
296
- .icon-hand-left:before { content: "\f0a5"; }
297
- .icon-hand-up:before { content: "\f0a6"; }
298
- .icon-hand-down:before { content: "\f0a7"; }
299
- .icon-circle-arrow-left:before { content: "\f0a8"; }
300
- .icon-circle-arrow-right:before { content: "\f0a9"; }
301
- .icon-circle-arrow-up:before { content: "\f0aa"; }
302
- .icon-circle-arrow-down:before { content: "\f0ab"; }
303
- .icon-globe:before { content: "\f0ac"; }
304
- .icon-wrench:before { content: "\f0ad"; }
305
- .icon-tasks:before { content: "\f0ae"; }
306
-
307
- .icon-filter:before { content: "\f0b0"; }
308
- .icon-briefcase:before { content: "\f0b1"; }
309
- .icon-fullscreen:before { content: "\f0b2"; }
310
-
311
- .icon-group:before { content: "\f0c0"; }
312
- .icon-link:before { content: "\f0c1"; }
313
- .icon-cloud:before { content: "\f0c2"; }
314
- .icon-beaker:before { content: "\f0c3"; }
315
- .icon-cut:before { content: "\f0c4"; }
316
- .icon-copy:before { content: "\f0c5"; }
317
- .icon-paper-clip:before { content: "\f0c6"; }
318
- .icon-save:before { content: "\f0c7"; }
319
- .icon-sign-blank:before { content: "\f0c8"; }
320
- .icon-reorder:before { content: "\f0c9"; }
321
- .icon-list-ul:before { content: "\f0ca"; }
322
- .icon-list-ol:before { content: "\f0cb"; }
323
- .icon-strikethrough:before { content: "\f0cc"; }
324
- .icon-underline:before { content: "\f0cd"; }
325
- .icon-table:before { content: "\f0ce"; }
326
-
327
- .icon-magic:before { content: "\f0d0"; }
328
- .icon-truck:before { content: "\f0d1"; }
329
- .icon-pinterest:before { content: "\f0d2"; }
330
- .icon-pinterest-sign:before { content: "\f0d3"; }
331
- .icon-google-plus-sign:before { content: "\f0d4"; }
332
- .icon-google-plus:before { content: "\f0d5"; }
333
- .icon-money:before { content: "\f0d6"; }
334
- .icon-caret-down:before { content: "\f0d7"; }
335
- .icon-caret-up:before { content: "\f0d8"; }
336
- .icon-caret-left:before { content: "\f0d9"; }
337
- .icon-caret-right:before { content: "\f0da"; }
338
- .icon-columns:before { content: "\f0db"; }
339
- .icon-sort:before { content: "\f0dc"; }
340
- .icon-sort-down:before { content: "\f0dd"; }
341
- .icon-sort-up:before { content: "\f0de"; }
342
-
343
- .icon-envelope-alt:before { content: "\f0e0"; }
344
- .icon-linkedin:before { content: "\f0e1"; }
345
- .icon-undo:before { content: "\f0e2"; }
346
- .icon-legal:before { content: "\f0e3"; }
347
- .icon-dashboard:before { content: "\f0e4"; }
348
- .icon-comment-alt:before { content: "\f0e5"; }
349
- .icon-comments-alt:before { content: "\f0e6"; }
350
- .icon-bolt:before { content: "\f0e7"; }
351
- .icon-sitemap:before { content: "\f0e8"; }
352
- .icon-umbrella:before { content: "\f0e9"; }
353
- .icon-paste:before { content: "\f0ea"; }
354
-
355
- .icon-user-md:before { content: "\f200"; }
341
+ ul.icons {
342
+ @extend %font-awesome !optional;
343
+ list-style-type: none;
344
+ margin-left: 2em;
345
+ text-indent: -.8em;
346
+
347
+ li {
348
+ [class^="icon-"],
349
+ [class*=" icon-"] {
350
+ width: .8em;
351
+ }
352
+ .icon-large:before,
353
+ .icon-large:before {
354
+ // 1.5 increased font size for icon-large * 1.25 width */
355
+ vertical-align: initial;
356
+ // width: 1.5*1.25em;
357
+ }
358
+ }
359
+ }
360
+
361
+ // Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
362
+ // readers do not read off random characters that represent icons */
363
+ .icon-glass:before { @extend %font-awesome !optional; content: "\f000"; }
364
+ .icon-music:before { @extend %font-awesome !optional; content: "\f001"; }
365
+ .icon-search:before { @extend %font-awesome !optional; content: "\f002"; }
366
+ .icon-envelope:before { @extend %font-awesome !optional; content: "\f003"; }
367
+ .icon-heart:before { @extend %font-awesome !optional; content: "\f004"; }
368
+ .icon-star:before { @extend %font-awesome !optional; content: "\f005"; }
369
+ .icon-star-empty:before { @extend %font-awesome !optional; content: "\f006"; }
370
+ .icon-user:before { @extend %font-awesome !optional; content: "\f007"; }
371
+ .icon-film:before { @extend %font-awesome !optional; content: "\f008"; }
372
+ .icon-th-large:before { @extend %font-awesome !optional; content: "\f009"; }
373
+ .icon-th:before { @extend %font-awesome !optional; content: "\f00a"; }
374
+ .icon-th-list:before { @extend %font-awesome !optional; content: "\f00b"; }
375
+ .icon-ok:before { @extend %font-awesome !optional; content: "\f00c"; }
376
+ .icon-remove:before { @extend %font-awesome !optional; content: "\f00d"; }
377
+ .icon-zoom-in:before { @extend %font-awesome !optional; content: "\f00e"; }
378
+
379
+ .icon-zoom-out:before { @extend %font-awesome !optional; content: "\f010"; }
380
+ .icon-off:before { @extend %font-awesome !optional; content: "\f011"; }
381
+ .icon-signal:before { @extend %font-awesome !optional; content: "\f012"; }
382
+ .icon-cog:before { @extend %font-awesome !optional; content: "\f013"; }
383
+ .icon-trash:before { @extend %font-awesome !optional; content: "\f014"; }
384
+ .icon-home:before { @extend %font-awesome !optional; content: "\f015"; }
385
+ .icon-file:before { @extend %font-awesome !optional; content: "\f016"; }
386
+ .icon-time:before { @extend %font-awesome !optional; content: "\f017"; }
387
+ .icon-road:before { @extend %font-awesome !optional; content: "\f018"; }
388
+ .icon-download-alt:before { @extend %font-awesome !optional; content: "\f019"; }
389
+ .icon-download:before { @extend %font-awesome !optional; content: "\f01a"; }
390
+ .icon-upload:before { @extend %font-awesome !optional; content: "\f01b"; }
391
+ .icon-inbox:before { @extend %font-awesome !optional; content: "\f01c"; }
392
+ .icon-play-circle:before { @extend %font-awesome !optional; content: "\f01d"; }
393
+ .icon-repeat:before { @extend %font-awesome !optional; content: "\f01e"; }
394
+
395
+ // \f020 doesn't work in Safari. all shifted one down */
396
+ .icon-refresh:before { @extend %font-awesome !optional; content: "\f021"; }
397
+ .icon-list-alt:before { @extend %font-awesome !optional; content: "\f022"; }
398
+ .icon-lock:before { @extend %font-awesome !optional; content: "\f023"; }
399
+ .icon-flag:before { @extend %font-awesome !optional; content: "\f024"; }
400
+ .icon-headphones:before { @extend %font-awesome !optional; content: "\f025"; }
401
+ .icon-volume-off:before { @extend %font-awesome !optional; content: "\f026"; }
402
+ .icon-volume-down:before { @extend %font-awesome !optional; content: "\f027"; }
403
+ .icon-volume-up:before { @extend %font-awesome !optional; content: "\f028"; }
404
+ .icon-qrcode:before { @extend %font-awesome !optional; content: "\f029"; }
405
+ .icon-barcode:before { @extend %font-awesome !optional; content: "\f02a"; }
406
+ .icon-tag:before { @extend %font-awesome !optional; content: "\f02b"; }
407
+ .icon-tags:before { @extend %font-awesome !optional; content: "\f02c"; }
408
+ .icon-book:before { @extend %font-awesome !optional; content: "\f02d"; }
409
+ .icon-bookmark:before { @extend %font-awesome !optional; content: "\f02e"; }
410
+ .icon-print:before { @extend %font-awesome !optional; content: "\f02f"; }
411
+
412
+ .icon-camera:before { @extend %font-awesome !optional; content: "\f030"; }
413
+ .icon-font:before { @extend %font-awesome !optional; content: "\f031"; }
414
+ .icon-bold:before { @extend %font-awesome !optional; content: "\f032"; }
415
+ .icon-italic:before { @extend %font-awesome !optional; content: "\f033"; }
416
+ .icon-text-height:before { @extend %font-awesome !optional; content: "\f034"; }
417
+ .icon-text-width:before { @extend %font-awesome !optional; content: "\f035"; }
418
+ .icon-align-left:before { @extend %font-awesome !optional; content: "\f036"; }
419
+ .icon-align-center:before { @extend %font-awesome !optional; content: "\f037"; }
420
+ .icon-align-right:before { @extend %font-awesome !optional; content: "\f038"; }
421
+ .icon-align-justify:before { @extend %font-awesome !optional; content: "\f039"; }
422
+ .icon-list:before { @extend %font-awesome !optional; content: "\f03a"; }
423
+ .icon-indent-left:before { @extend %font-awesome !optional; content: "\f03b"; }
424
+ .icon-indent-right:before { @extend %font-awesome !optional; content: "\f03c"; }
425
+ .icon-facetime-video:before { @extend %font-awesome !optional; content: "\f03d"; }
426
+ .icon-picture:before { @extend %font-awesome !optional; content: "\f03e"; }
427
+
428
+ .icon-pencil:before { @extend %font-awesome !optional; content: "\f040"; }
429
+ .icon-map-marker:before { @extend %font-awesome !optional; content: "\f041"; }
430
+ .icon-adjust:before { @extend %font-awesome !optional; content: "\f042"; }
431
+ .icon-tint:before { @extend %font-awesome !optional; content: "\f043"; }
432
+ .icon-edit:before { @extend %font-awesome !optional; content: "\f044"; }
433
+ .icon-share:before { @extend %font-awesome !optional; content: "\f045"; }
434
+ .icon-check:before { @extend %font-awesome !optional; content: "\f046"; }
435
+ .icon-move:before { @extend %font-awesome !optional; content: "\f047"; }
436
+ .icon-step-backward:before { @extend %font-awesome !optional; content: "\f048"; }
437
+ .icon-fast-backward:before { @extend %font-awesome !optional; content: "\f049"; }
438
+ .icon-backward:before { @extend %font-awesome !optional; content: "\f04a"; }
439
+ .icon-play:before { @extend %font-awesome !optional; content: "\f04b"; }
440
+ .icon-pause:before { @extend %font-awesome !optional; content: "\f04c"; }
441
+ .icon-stop:before { @extend %font-awesome !optional; content: "\f04d"; }
442
+ .icon-forward:before { @extend %font-awesome !optional; content: "\f04e"; }
443
+
444
+ .icon-fast-forward:before { @extend %font-awesome !optional; content: "\f050"; }
445
+ .icon-step-forward:before { @extend %font-awesome !optional; content: "\f051"; }
446
+ .icon-eject:before { @extend %font-awesome !optional; content: "\f052"; }
447
+ .icon-chevron-left:before { @extend %font-awesome !optional; content: "\f053"; }
448
+ .icon-chevron-right:before { @extend %font-awesome !optional; content: "\f054"; }
449
+ .icon-plus-sign:before { @extend %font-awesome !optional; content: "\f055"; }
450
+ .icon-minus-sign:before { @extend %font-awesome !optional; content: "\f056"; }
451
+ .icon-remove-sign:before { @extend %font-awesome !optional; content: "\f057"; }
452
+ .icon-ok-sign:before { @extend %font-awesome !optional; content: "\f058"; }
453
+ .icon-question-sign:before { @extend %font-awesome !optional; content: "\f059"; }
454
+ .icon-info-sign:before { @extend %font-awesome !optional; content: "\f05a"; }
455
+ .icon-screenshot:before { @extend %font-awesome !optional; content: "\f05b"; }
456
+ .icon-remove-circle:before { @extend %font-awesome !optional; content: "\f05c"; }
457
+ .icon-ok-circle:before { @extend %font-awesome !optional; content: "\f05d"; }
458
+ .icon-ban-circle:before { @extend %font-awesome !optional; content: "\f05e"; }
459
+
460
+ .icon-arrow-left:before { @extend %font-awesome !optional; content: "\f060"; }
461
+ .icon-arrow-right:before { @extend %font-awesome !optional; content: "\f061"; }
462
+ .icon-arrow-up:before { @extend %font-awesome !optional; content: "\f062"; }
463
+ .icon-arrow-down:before { @extend %font-awesome !optional; content: "\f063"; }
464
+ .icon-share-alt:before { @extend %font-awesome !optional; content: "\f064"; }
465
+ .icon-resize-full:before { @extend %font-awesome !optional; content: "\f065"; }
466
+ .icon-resize-small:before { @extend %font-awesome !optional; content: "\f066"; }
467
+ .icon-plus:before { @extend %font-awesome !optional; content: "\f067"; }
468
+ .icon-minus:before { @extend %font-awesome !optional; content: "\f068"; }
469
+ .icon-asterisk:before { @extend %font-awesome !optional; content: "\f069"; }
470
+ .icon-exclamation-sign:before { @extend %font-awesome !optional; content: "\f06a"; }
471
+ .icon-gift:before { @extend %font-awesome !optional; content: "\f06b"; }
472
+ .icon-leaf:before { @extend %font-awesome !optional; content: "\f06c"; }
473
+ .icon-fire:before { @extend %font-awesome !optional; content: "\f06d"; }
474
+ .icon-eye-open:before { @extend %font-awesome !optional; content: "\f06e"; }
475
+
476
+ .icon-eye-close:before { @extend %font-awesome !optional; content: "\f070"; }
477
+ .icon-warning-sign:before { @extend %font-awesome !optional; content: "\f071"; }
478
+ .icon-plane:before { @extend %font-awesome !optional; content: "\f072"; }
479
+ .icon-calendar:before { @extend %font-awesome !optional; content: "\f073"; }
480
+ .icon-random:before { @extend %font-awesome !optional; content: "\f074"; }
481
+ .icon-comment:before { @extend %font-awesome !optional; content: "\f075"; }
482
+ .icon-magnet:before { @extend %font-awesome !optional; content: "\f076"; }
483
+ .icon-chevron-up:before { @extend %font-awesome !optional; content: "\f077"; }
484
+ .icon-chevron-down:before { @extend %font-awesome !optional; content: "\f078"; }
485
+ .icon-retweet:before { @extend %font-awesome !optional; content: "\f079"; }
486
+ .icon-shopping-cart:before { @extend %font-awesome !optional; content: "\f07a"; }
487
+ .icon-folder-close:before { @extend %font-awesome !optional; content: "\f07b"; }
488
+ .icon-folder-open:before { @extend %font-awesome !optional; content: "\f07c"; }
489
+ .icon-resize-vertical:before { @extend %font-awesome !optional; content: "\f07d"; }
490
+ .icon-resize-horizontal:before { @extend %font-awesome !optional; content: "\f07e"; }
491
+
492
+ .icon-bar-chart:before { @extend %font-awesome !optional; content: "\f080"; }
493
+ .icon-twitter-sign:before { @extend %font-awesome !optional; content: "\f081"; }
494
+ .icon-facebook-sign:before { @extend %font-awesome !optional; content: "\f082"; }
495
+ .icon-camera-retro:before { @extend %font-awesome !optional; content: "\f083"; }
496
+ .icon-key:before { @extend %font-awesome !optional; content: "\f084"; }
497
+ .icon-cogs:before { @extend %font-awesome !optional; content: "\f085"; }
498
+ .icon-comments:before { @extend %font-awesome !optional; content: "\f086"; }
499
+ .icon-thumbs-up:before { @extend %font-awesome !optional; content: "\f087"; }
500
+ .icon-thumbs-down:before { @extend %font-awesome !optional; content: "\f088"; }
501
+ .icon-star-half:before { @extend %font-awesome !optional; content: "\f089"; }
502
+ .icon-heart-empty:before { @extend %font-awesome !optional; content: "\f08a"; }
503
+ .icon-signout:before { @extend %font-awesome !optional; content: "\f08b"; }
504
+ .icon-linkedin-sign:before { @extend %font-awesome !optional; content: "\f08c"; }
505
+ .icon-pushpin:before { @extend %font-awesome !optional; content: "\f08d"; }
506
+ .icon-external-link:before { @extend %font-awesome !optional; content: "\f08e"; }
507
+
508
+ .icon-signin:before { @extend %font-awesome !optional; content: "\f090"; }
509
+ .icon-trophy:before { @extend %font-awesome !optional; content: "\f091"; }
510
+ .icon-github-sign:before { @extend %font-awesome !optional; content: "\f092"; }
511
+ .icon-upload-alt:before { @extend %font-awesome !optional; content: "\f093"; }
512
+ .icon-lemon:before { @extend %font-awesome !optional; content: "\f094"; }
513
+ .icon-phone:before { @extend %font-awesome !optional; content: "\f095"; }
514
+ .icon-check-empty:before { @extend %font-awesome !optional; content: "\f096"; }
515
+ .icon-bookmark-empty:before { @extend %font-awesome !optional; content: "\f097"; }
516
+ .icon-phone-sign:before { @extend %font-awesome !optional; content: "\f098"; }
517
+ .icon-twitter:before { @extend %font-awesome !optional; content: "\f099"; }
518
+ .icon-facebook:before { @extend %font-awesome !optional; content: "\f09a"; }
519
+ .icon-github:before { @extend %font-awesome !optional; content: "\f09b"; }
520
+ .icon-unlock:before { @extend %font-awesome !optional; content: "\f09c"; }
521
+ .icon-credit-card:before { @extend %font-awesome !optional; content: "\f09d"; }
522
+ .icon-rss:before { @extend %font-awesome !optional; content: "\f09e"; }
523
+
524
+ .icon-hdd:before { @extend %font-awesome !optional; content: "\f0a0"; }
525
+ .icon-bullhorn:before { @extend %font-awesome !optional; content: "\f0a1"; }
526
+ .icon-bell:before { @extend %font-awesome !optional; content: "\f0a2"; }
527
+ .icon-certificate:before { @extend %font-awesome !optional; content: "\f0a3"; }
528
+ .icon-hand-right:before { @extend %font-awesome !optional; content: "\f0a4"; }
529
+ .icon-hand-left:before { @extend %font-awesome !optional; content: "\f0a5"; }
530
+ .icon-hand-up:before { @extend %font-awesome !optional; content: "\f0a6"; }
531
+ .icon-hand-down:before { @extend %font-awesome !optional; content: "\f0a7"; }
532
+ .icon-circle-arrow-left:before { @extend %font-awesome !optional; content: "\f0a8"; }
533
+ .icon-circle-arrow-right:before { @extend %font-awesome !optional; content: "\f0a9"; }
534
+ .icon-circle-arrow-up:before { @extend %font-awesome !optional; content: "\f0aa"; }
535
+ .icon-circle-arrow-down:before { @extend %font-awesome !optional; content: "\f0ab"; }
536
+ .icon-globe:before { @extend %font-awesome !optional; content: "\f0ac"; }
537
+ .icon-wrench:before { @extend %font-awesome !optional; content: "\f0ad"; }
538
+ .icon-tasks:before { @extend %font-awesome !optional; content: "\f0ae"; }
539
+
540
+ .icon-filter:before { @extend %font-awesome !optional; content: "\f0b0"; }
541
+ .icon-briefcase:before { @extend %font-awesome !optional; content: "\f0b1"; }
542
+ .icon-fullscreen:before { @extend %font-awesome !optional; content: "\f0b2"; }
543
+
544
+ .icon-group:before { @extend %font-awesome !optional; content: "\f0c0"; }
545
+ .icon-link:before { @extend %font-awesome !optional; content: "\f0c1"; }
546
+ .icon-cloud:before { @extend %font-awesome !optional; content: "\f0c2"; }
547
+ .icon-beaker:before { @extend %font-awesome !optional; content: "\f0c3"; }
548
+ .icon-cut:before { @extend %font-awesome !optional; content: "\f0c4"; }
549
+ .icon-copy:before { @extend %font-awesome !optional; content: "\f0c5"; }
550
+ .icon-paper-clip:before { @extend %font-awesome !optional; content: "\f0c6"; }
551
+ .icon-save:before { @extend %font-awesome !optional; content: "\f0c7"; }
552
+ .icon-sign-blank:before { @extend %font-awesome !optional; content: "\f0c8"; }
553
+ .icon-reorder:before { @extend %font-awesome !optional; content: "\f0c9"; }
554
+ .icon-list-ul:before { @extend %font-awesome !optional; content: "\f0ca"; }
555
+ .icon-list-ol:before { @extend %font-awesome !optional; content: "\f0cb"; }
556
+ .icon-strikethrough:before { @extend %font-awesome !optional; content: "\f0cc"; }
557
+ .icon-underline:before { @extend %font-awesome !optional; content: "\f0cd"; }
558
+ .icon-table:before { @extend %font-awesome !optional; content: "\f0ce"; }
559
+
560
+ .icon-magic:before { @extend %font-awesome !optional; content: "\f0d0"; }
561
+ .icon-truck:before { @extend %font-awesome !optional; content: "\f0d1"; }
562
+ .icon-pinterest:before { @extend %font-awesome !optional; content: "\f0d2"; }
563
+ .icon-pinterest-sign:before { @extend %font-awesome !optional; content: "\f0d3"; }
564
+ .icon-google-plus-sign:before { @extend %font-awesome !optional; content: "\f0d4"; }
565
+ .icon-google-plus:before { @extend %font-awesome !optional; content: "\f0d5"; }
566
+ .icon-money:before { @extend %font-awesome !optional; content: "\f0d6"; }
567
+ .icon-caret-down:before { @extend %font-awesome !optional; content: "\f0d7"; }
568
+ .icon-caret-up:before { @extend %font-awesome !optional; content: "\f0d8"; }
569
+ .icon-caret-left:before { @extend %font-awesome !optional; content: "\f0d9"; }
570
+ .icon-caret-right:before { @extend %font-awesome !optional; content: "\f0da"; }
571
+ .icon-columns:before { @extend %font-awesome !optional; content: "\f0db"; }
572
+ .icon-sort:before { @extend %font-awesome !optional; content: "\f0dc"; }
573
+ .icon-sort-down:before { @extend %font-awesome !optional; content: "\f0dd"; }
574
+ .icon-sort-up:before { @extend %font-awesome !optional; content: "\f0de"; }
575
+
576
+ .icon-envelope-alt:before { @extend %font-awesome !optional; content: "\f0e0"; }
577
+ .icon-linkedin:before { @extend %font-awesome !optional; content: "\f0e1"; }
578
+ .icon-undo:before { @extend %font-awesome !optional; content: "\f0e2"; }
579
+ .icon-legal:before { @extend %font-awesome !optional; content: "\f0e3"; }
580
+ .icon-dashboard:before { @extend %font-awesome !optional; content: "\f0e4"; }
581
+ .icon-comment-alt:before { @extend %font-awesome !optional; content: "\f0e5"; }
582
+ .icon-comments-alt:before { @extend %font-awesome !optional; content: "\f0e6"; }
583
+ .icon-bolt:before { @extend %font-awesome !optional; content: "\f0e7"; }
584
+ .icon-sitemap:before { @extend %font-awesome !optional; content: "\f0e8"; }
585
+ .icon-umbrella:before { @extend %font-awesome !optional; content: "\f0e9"; }
586
+ .icon-paste:before { @extend %font-awesome !optional; content: "\f0ea"; }
587
+
588
+ .icon-user-md:before { @extend %font-awesome !optional; content: "\f200"; }
589
+ }