mice 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -8,4 +8,9 @@
8
8
  // Base CSS
9
9
  @import "mice/scaffolding";
10
10
  @import "mice/typography";
11
- @import "mice/grid";
11
+ @import "mice/grid";
12
+
13
+ @import "mice/icons";
14
+
15
+ @import "mice/menu";
16
+ @import "mice/sidebar";
@@ -28,6 +28,8 @@
28
28
  > .column {
29
29
  display: block;
30
30
  float: left;
31
+ padding-left: 5px;
32
+ padding-right: 5px;
31
33
 
32
34
  &:first-child {
33
35
  margin-left: 0;
@@ -0,0 +1,572 @@
1
+ /*!
2
+ * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */
5
+
6
+ // Mixins
7
+ // --------------------------
8
+
9
+ @mixin icon-rotate($degrees, $rotation) {
10
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
11
+ -webkit-transform: rotate($degrees);
12
+ -moz-transform: rotate($degrees);
13
+ -ms-transform: rotate($degrees);
14
+ -o-transform: rotate($degrees);
15
+ transform: rotate($degrees);
16
+ }
17
+
18
+ @mixin icon-flip($horiz, $vert, $rotation) {
19
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
20
+ -webkit-transform: scale($horiz, $vert);
21
+ -moz-transform: scale($horiz, $vert);
22
+ -ms-transform: scale($horiz, $vert);
23
+ -o-transform: scale($horiz, $vert);
24
+ transform: scale($horiz, $vert);
25
+ }
26
+
27
+ /* FONT PATH
28
+ * -------------------------- */
29
+
30
+ @font-face {
31
+ font-family: 'FontAwesome';
32
+ src: url('fontawesome-webfont.eot?v=4.0.3');
33
+ src: url('fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'),
34
+ url('fontawesome-webfont.woff?v=4.0.3') format('woff'),
35
+ url('fontawesome-webfont.ttf?v=4.0.3') format('truetype'),
36
+ url('fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
37
+ // src: url('FontAwesome.otf') format('opentype'); // used when developing fonts
38
+ font-weight: normal;
39
+ font-style: normal;
40
+ }
41
+
42
+ // Base Class Definition
43
+ // -------------------------
44
+
45
+ .icon {
46
+ display: inline-block;
47
+ font-family: FontAwesome;
48
+ font-style: normal;
49
+ font-weight: normal;
50
+ line-height: 1;
51
+ -webkit-font-smoothing: antialiased;
52
+ -moz-osx-font-smoothing: grayscale;
53
+ }
54
+
55
+
56
+ // Icon Sizes
57
+ // -------------------------
58
+
59
+ /* makes the font 33% larger relative to the icon container */
60
+ .icon{
61
+ &.large {
62
+ font-size: (4em / 3);
63
+ line-height: (3em / 4);
64
+ vertical-align: -15%;
65
+ }
66
+ &.great { font-size: 2em; }
67
+ &.big { font-size: 3em; }
68
+ &.huge { font-size: 4em; }
69
+ &.massive { font-size: 5em; }
70
+ }
71
+
72
+
73
+ // Spinning Icons
74
+ // --------------------------
75
+
76
+ .icon.spin {
77
+ -webkit-animation: spin 2s infinite linear;
78
+ -moz-animation: spin 2s infinite linear;
79
+ -o-animation: spin 2s infinite linear;
80
+ animation: spin 2s infinite linear;
81
+ }
82
+
83
+ @-moz-keyframes spin {
84
+ 0% { -moz-transform: rotate(0deg); }
85
+ 100% { -moz-transform: rotate(359deg); }
86
+ }
87
+ @-webkit-keyframes spin {
88
+ 0% { -webkit-transform: rotate(0deg); }
89
+ 100% { -webkit-transform: rotate(359deg); }
90
+ }
91
+ @-o-keyframes spin {
92
+ 0% { -o-transform: rotate(0deg); }
93
+ 100% { -o-transform: rotate(359deg); }
94
+ }
95
+ @-ms-keyframes spin {
96
+ 0% { -ms-transform: rotate(0deg); }
97
+ 100% { -ms-transform: rotate(359deg); }
98
+ }
99
+ @keyframes spin {
100
+ 0% { transform: rotate(0deg); }
101
+ 100% { transform: rotate(359deg); }
102
+ }
103
+
104
+
105
+ // Rotated & Flipped Icons
106
+ // -------------------------
107
+
108
+ .icon{
109
+ .rotate-90 { @include icon-rotate(90deg, 1); }
110
+ .rotate-180 { @include icon-rotate(180deg, 2); }
111
+ .rotate-270 { @include icon-rotate(270deg, 3); }
112
+
113
+ .flip-horizontal { @include icon-flip(-1, 1, 0); }
114
+ .flip-vertical { @include icon-flip(1, -1, 2); }
115
+ }
116
+
117
+ // Stacked Icons
118
+ // -------------------------
119
+
120
+ .icon.stack {
121
+ position: relative;
122
+ display: inline-block;
123
+ width: 2em;
124
+ height: 2em;
125
+ line-height: 2em;
126
+ vertical-align: middle;
127
+ }
128
+
129
+ .icon.stack-1x, .icon.stack-2x {
130
+ position: absolute;
131
+ left: 0;
132
+ width: 100%;
133
+ text-align: center;
134
+ }
135
+
136
+ .icon.stack-1x { line-height: inherit; }
137
+
138
+ .icon.stack-2x { font-size: 2em; }
139
+
140
+ .icon.inverse { color: #FFF; }
141
+
142
+ .icon{
143
+ &.glass { &:before { content: "\f000"; } }
144
+ &.music { &:before { content: "\f001"; } }
145
+ &.search { &:before { content: "\f002"; } }
146
+ &.envelope-o { &:before { content: "\f003"; } }
147
+ &.heart { &:before { content: "\f004"; } }
148
+ &.star { &:before { content: "\f005"; } }
149
+ &.star-o { &:before { content: "\f006"; } }
150
+ &.user { &:before { content: "\f007"; } }
151
+ &.film { &:before { content: "\f008"; } }
152
+ &.th-large { &:before { content: "\f009"; } }
153
+ &.th { &:before { content: "\f00a"; } }
154
+ &.th-list { &:before { content: "\f00b"; } }
155
+ &.check { &:before { content: "\f00c"; } }
156
+ &.times { &:before { content: "\f00d"; } }
157
+ &.search-plus { &:before { content: "\f00e"; } }
158
+ &.search-minus { &:before { content: "\f010"; } }
159
+ &.power-off { &:before { content: "\f011"; } }
160
+ &.signal { &:before { content: "\f012"; } }
161
+
162
+ &.cog,
163
+ &.gear { &:before { content: "\f013"; } }
164
+
165
+ &.trash-o { &:before { content: "\f014"; } }
166
+ &.home { &:before { content: "\f015"; } }
167
+ &.file-o { &:before { content: "\f016"; } }
168
+ &.clock-o { &:before { content: "\f017"; } }
169
+ &.road { &:before { content: "\f018"; } }
170
+ &.download { &:before { content: "\f019"; } }
171
+ &.arrow-circle-o-down { &:before { content: "\f01a"; } }
172
+ &.arrow-circle-o-up { &:before { content: "\f01b"; } }
173
+ &.inbox { &:before { content: "\f01c"; } }
174
+ &.play-circle-o { &:before { content: "\f01d"; } }
175
+ &.repeat, &.rotate-right { &:before { content: "\f01e"; } }
176
+ &.refresh { &:before { content: "\f021"; } }
177
+ &.list-alt { &:before { content: "\f022"; } }
178
+ &.lock { &:before { content: "\f023"; } }
179
+ &.flag { &:before { content: "\f024"; } }
180
+ &.headphones { &:before { content: "\f025"; } }
181
+ &.volume-off { &:before { content: "\f026"; } }
182
+ &.volume-down { &:before { content: "\f027"; } }
183
+ &.volume-up { &:before { content: "\f028"; } }
184
+ &.qrcode { &:before { content: "\f029"; } }
185
+ &.barcode { &:before { content: "\f02a"; } }
186
+ &.tag { &:before { content: "\f02b"; } }
187
+ &.tags { &:before { content: "\f02c"; } }
188
+ &.book { &:before { content: "\f02d"; } }
189
+ &.bookmark { &:before { content: "\f02e"; } }
190
+ &.print { &:before { content: "\f02f"; } }
191
+ &.camera { &:before { content: "\f030"; } }
192
+ &.font { &:before { content: "\f031"; } }
193
+ &.bold { &:before { content: "\f032"; } }
194
+ &.italic { &:before { content: "\f033"; } }
195
+ &.text-height { &:before { content: "\f034"; } }
196
+ &.text-width { &:before { content: "\f035"; } }
197
+ &.align-left { &:before { content: "\f036"; } }
198
+ &.align-center { &:before { content: "\f037"; } }
199
+ &.align-right { &:before { content: "\f038"; } }
200
+ &.align-justify { &:before { content: "\f039"; } }
201
+ &.list { &:before { content: "\f03a"; } }
202
+ &.outdent, &.dedent { &:before { content: "\f03b"; } }
203
+ &.indent { &:before { content: "\f03c"; } }
204
+ &.video-camera { &:before { content: "\f03d"; } }
205
+ &.picture-o { &:before { content: "\f03e"; } }
206
+ &.pencil { &:before { content: "\f040"; } }
207
+ &.map-marker { &:before { content: "\f041"; } }
208
+ &.adjust { &:before { content: "\f042"; } }
209
+ &.tint { &:before { content: "\f043"; } }
210
+
211
+ &.pencil-square-o,
212
+ &.edit { &:before { content: "\f044"; } }
213
+
214
+ &.share-square-o { &:before { content: "\f045"; } }
215
+ &.check-square-o { &:before { content: "\f046"; } }
216
+ &.arrows { &:before { content: "\f047"; } }
217
+ &.step-backward { &:before { content: "\f048"; } }
218
+ &.fast-backward { &:before { content: "\f049"; } }
219
+ &.backward { &:before { content: "\f04a"; } }
220
+ &.play { &:before { content: "\f04b"; } }
221
+ &.pause { &:before { content: "\f04c"; } }
222
+ &.stop { &:before { content: "\f04d"; } }
223
+ &.forward { &:before { content: "\f04e"; } }
224
+ &.fast-forward { &:before { content: "\f050"; } }
225
+ &.step-forward { &:before { content: "\f051"; } }
226
+ &.eject { &:before { content: "\f052"; } }
227
+ &.chevron-left { &:before { content: "\f053"; } }
228
+ &.chevron-right { &:before { content: "\f054"; } }
229
+ &.plus-circle { &:before { content: "\f055"; } }
230
+ &.minus-circle { &:before { content: "\f056"; } }
231
+ &.times-circle { &:before { content: "\f057"; } }
232
+ &.check-circle { &:before { content: "\f058"; } }
233
+ &.question-circle { &:before { content: "\f059"; } }
234
+ &.info-circle { &:before { content: "\f05a"; } }
235
+ &.crosshairs { &:before { content: "\f05b"; } }
236
+ &.times-circle-o { &:before { content: "\f05c"; } }
237
+ &.check-circle-o { &:before { content: "\f05d"; } }
238
+ &.ban { &:before { content: "\f05e"; } }
239
+ &.arrow-left { &:before { content: "\f060"; } }
240
+ &.arrow-right { &:before { content: "\f061"; } }
241
+ &.arrow-up { &:before { content: "\f062"; } }
242
+ &.arrow-down { &:before { content: "\f063"; } }
243
+
244
+ &.share,
245
+ &.mail-forward { &:before { content: "\f064"; } }
246
+
247
+ &.expand { &:before { content: "\f065"; } }
248
+ &.compress { &:before { content: "\f066"; } }
249
+ &.plus { &:before { content: "\f067"; } }
250
+ &.minus { &:before { content: "\f068"; } }
251
+ &.asterisk { &:before { content: "\f069"; } }
252
+ &.exclamation-circle { &:before { content: "\f06a"; } }
253
+ &.gift { &:before { content: "\f06b"; } }
254
+ &.leaf { &:before { content: "\f06c"; } }
255
+ &.fire { &:before { content: "\f06d"; } }
256
+ &.eye { &:before { content: "\f06e"; } }
257
+ &.eye-slash { &:before { content: "\f070"; } }
258
+
259
+ &.exclamation-triangle,
260
+ &.warning { &:before { content: "\f071"; } }
261
+
262
+ &.plane { &:before { content: "\f072"; } }
263
+ &.calendar { &:before { content: "\f073"; } }
264
+ &.random { &:before { content: "\f074"; } }
265
+ &.comment { &:before { content: "\f075"; } }
266
+ &.magnet { &:before { content: "\f076"; } }
267
+ &.chevron-up { &:before { content: "\f077"; } }
268
+ &.chevron-down { &:before { content: "\f078"; } }
269
+ &.retweet { &:before { content: "\f079"; } }
270
+ &.shopping-cart { &:before { content: "\f07a"; } }
271
+ &.folder { &:before { content: "\f07b"; } }
272
+ &.folder-open { &:before { content: "\f07c"; } }
273
+ &.arrows-v { &:before { content: "\f07d"; } }
274
+ &.arrows-h { &:before { content: "\f07e"; } }
275
+ &.bar-chart-o { &:before { content: "\f080"; } }
276
+ &.twitter-square { &:before { content: "\f081"; } }
277
+ &.facebook-square { &:before { content: "\f082"; } }
278
+ &.camera-retro { &:before { content: "\f083"; } }
279
+ &.key { &:before { content: "\f084"; } }
280
+
281
+ &.cogs,
282
+ &.gears { &:before { content: "\f085"; } }
283
+
284
+ &.comments { &:before { content: "\f086"; } }
285
+ &.thumbs-o-up { &:before { content: "\f087"; } }
286
+ &.thumbs-o-down { &:before { content: "\f088"; } }
287
+ &.star-half { &:before { content: "\f089"; } }
288
+ &.heart-o { &:before { content: "\f08a"; } }
289
+ &.sign-out { &:before { content: "\f08b"; } }
290
+ &.linkedin-square { &:before { content: "\f08c"; } }
291
+ &.thumb-tack { &:before { content: "\f08d"; } }
292
+ &.external-link { &:before { content: "\f08e"; } }
293
+ &.sign-in { &:before { content: "\f090"; } }
294
+ &.trophy { &:before { content: "\f091"; } }
295
+ &.github-square { &:before { content: "\f092"; } }
296
+ &.upload { &:before { content: "\f093"; } }
297
+ &.lemon-o { &:before { content: "\f094"; } }
298
+ &.phone { &:before { content: "\f095"; } }
299
+ &.square-o { &:before { content: "\f096"; } }
300
+ &.bookmark-o { &:before { content: "\f097"; } }
301
+ &.phone-square { &:before { content: "\f098"; } }
302
+ &.twitter { &:before { content: "\f099"; } }
303
+ &.facebook { &:before { content: "\f09a"; } }
304
+ &.github { &:before { content: "\f09b"; } }
305
+ &.unlock { &:before { content: "\f09c"; } }
306
+ &.credit-card { &:before { content: "\f09d"; } }
307
+ &.rss { &:before { content: "\f09e"; } }
308
+ &.hdd-o { &:before { content: "\f0a0"; } }
309
+ &.bullhorn { &:before { content: "\f0a1"; } }
310
+ &.bell { &:before { content: "\f0f3"; } }
311
+ &.certificate { &:before { content: "\f0a3"; } }
312
+ &.hand-o-right { &:before { content: "\f0a4"; } }
313
+ &.hand-o-left { &:before { content: "\f0a5"; } }
314
+ &.hand-o-up { &:before { content: "\f0a6"; } }
315
+ &.hand-o-down { &:before { content: "\f0a7"; } }
316
+ &.arrow-circle-left { &:before { content: "\f0a8"; } }
317
+ &.arrow-circle-right { &:before { content: "\f0a9"; } }
318
+ &.arrow-circle-up { &:before { content: "\f0aa"; } }
319
+ &.arrow-circle-down { &:before { content: "\f0ab"; } }
320
+ &.globe { &:before { content: "\f0ac"; } }
321
+ &.wrench { &:before { content: "\f0ad"; } }
322
+ &.tasks { &:before { content: "\f0ae"; } }
323
+ &.filter { &:before { content: "\f0b0"; } }
324
+ &.briefcase { &:before { content: "\f0b1"; } }
325
+ &.arrows-alt { &:before { content: "\f0b2"; } }
326
+
327
+ &.users,
328
+ &.group { &:before { content: "\f0c0"; } }
329
+
330
+ &.link, &.chain { &:before { content: "\f0c1"; } }
331
+ &.cloud { &:before { content: "\f0c2"; } }
332
+ &.flask { &:before { content: "\f0c3"; } }
333
+ &.scissors, &.cut { &:before { content: "\f0c4"; } }
334
+ &.files-o, &.copy { &:before { content: "\f0c5"; } }
335
+ &.paperclip { &:before { content: "\f0c6"; } }
336
+ &.floppy-o, &.save { &:before { content: "\f0c7"; } }
337
+ &.square { &:before { content: "\f0c8"; } }
338
+ &.bars { &:before { content: "\f0c9"; } }
339
+ &.list-ul { &:before { content: "\f0ca"; } }
340
+ &.list-ol { &:before { content: "\f0cb"; } }
341
+ &.strikethrough { &:before { content: "\f0cc"; } }
342
+ &.underline { &:before { content: "\f0cd"; } }
343
+ &.table { &:before { content: "\f0ce"; } }
344
+ &.magic { &:before { content: "\f0d0"; } }
345
+ &.truck { &:before { content: "\f0d1"; } }
346
+ &.pinterest { &:before { content: "\f0d2"; } }
347
+ &.pinterest-square { &:before { content: "\f0d3"; } }
348
+ &.google-plus-square { &:before { content: "\f0d4"; } }
349
+ &.google-plus { &:before { content: "\f0d5"; } }
350
+ &.money { &:before { content: "\f0d6"; } }
351
+ &.caret-down { &:before { content: "\f0d7"; } }
352
+ &.caret-up { &:before { content: "\f0d8"; } }
353
+ &.caret-left { &:before { content: "\f0d9"; } }
354
+ &.caret-right { &:before { content: "\f0da"; } }
355
+ &.columns { &:before { content: "\f0db"; } }
356
+
357
+ &.sort,
358
+ &.unsorted { &:before { content: "\f0dc"; } }
359
+
360
+ &.sort-asc,
361
+ &.sort-down { &:before { content: "\f0dd"; } }
362
+
363
+ &.sort-desc,
364
+ &.sort-up { &:before { content: "\f0de"; } }
365
+
366
+ &.envelope { &:before { content: "\f0e0"; } }
367
+ &.linkedin { &:before { content: "\f0e1"; } }
368
+ &.undo, &.rotate-left { &:before { content: "\f0e2"; } }
369
+
370
+ &.gavel, &.legal { &:before { content: "\f0e3"; } }
371
+
372
+ &.tachometer,
373
+ &.dashboard { &:before { content: "\f0e4"; } }
374
+
375
+ &.comment-o { &:before { content: "\f0e5"; } }
376
+ &.comments-o { &:before { content: "\f0e6"; } }
377
+
378
+ &.bolt, &.flash { &:before { content: "\f0e7"; } }
379
+
380
+ &.sitemap { &:before { content: "\f0e8"; } }
381
+ &.umbrella { &:before { content: "\f0e9"; } }
382
+ &.clipboard, &.paste { &:before { content: "\f0ea"; } }
383
+ &.lightbulb-o { &:before { content: "\f0eb"; } }
384
+ &.exchange { &:before { content: "\f0ec"; } }
385
+ &.cloud-download { &:before { content: "\f0ed"; } }
386
+ &.cloud-upload { &:before { content: "\f0ee"; } }
387
+ &.user-md { &:before { content: "\f0f0"; } }
388
+ &.stethoscope { &:before { content: "\f0f1"; } }
389
+ &.suitcase { &:before { content: "\f0f2"; } }
390
+ &.bell-o { &:before { content: "\f0a2"; } }
391
+ &.coffee { &:before { content: "\f0f4"; } }
392
+ &.cutlery { &:before { content: "\f0f5"; } }
393
+ &.file-text-o { &:before { content: "\f0f6"; } }
394
+ &.building-o { &:before { content: "\f0f7"; } }
395
+ &.hospital-o { &:before { content: "\f0f8"; } }
396
+ &.ambulance { &:before { content: "\f0f9"; } }
397
+ &.medkit { &:before { content: "\f0fa"; } }
398
+ &.fighter-jet { &:before { content: "\f0fb"; } }
399
+ &.beer { &:before { content: "\f0fc"; } }
400
+ &.h-square { &:before { content: "\f0fd"; } }
401
+ &.plus-square { &:before { content: "\f0fe"; } }
402
+ &.angle-double-left { &:before { content: "\f100"; } }
403
+ &.angle-double-right { &:before { content: "\f101"; } }
404
+ &.angle-double-up { &:before { content: "\f102"; } }
405
+ &.angle-double-down { &:before { content: "\f103"; } }
406
+ &.angle-left { &:before { content: "\f104"; } }
407
+ &.angle-right { &:before { content: "\f105"; } }
408
+ &.angle-up { &:before { content: "\f106"; } }
409
+ &.angle-down { &:before { content: "\f107"; } }
410
+ &.desktop { &:before { content: "\f108"; } }
411
+ &.laptop { &:before { content: "\f109"; } }
412
+ &.tablet { &:before { content: "\f10a"; } }
413
+
414
+ &.mobile,
415
+ &.mobile-phone { &:before { content: "\f10b"; } }
416
+
417
+ &.circle-o { &:before { content: "\f10c"; } }
418
+ &.quote-left { &:before { content: "\f10d"; } }
419
+ &.quote-right { &:before { content: "\f10e"; } }
420
+ &.spinner { &:before { content: "\f110"; } }
421
+ &.circle { &:before { content: "\f111"; } }
422
+
423
+ &.reply,
424
+ &.mail-reply { &:before { content: "\f112"; } }
425
+
426
+ &.github-alt { &:before { content: "\f113"; } }
427
+ &.folder-o { &:before { content: "\f114"; } }
428
+ &.folder-open-o { &:before { content: "\f115"; } }
429
+ &.smile-o { &:before { content: "\f118"; } }
430
+ &.frown-o { &:before { content: "\f119"; } }
431
+ &.meh-o { &:before { content: "\f11a"; } }
432
+ &.gamepad { &:before { content: "\f11b"; } }
433
+ &.keyboard-o { &:before { content: "\f11c"; } }
434
+ &.flag-o { &:before { content: "\f11d"; } }
435
+ &.flag-checkered { &:before { content: "\f11e"; } }
436
+ &.terminal { &:before { content: "\f120"; } }
437
+ &.code { &:before { content: "\f121"; } }
438
+ &.reply-all { &:before { content: "\f122"; } }
439
+ &.mail-reply-all { &:before { content: "\f122"; } }
440
+
441
+ &.star-half-o,
442
+ &.star-half-empty,
443
+ &.star-half-full { &:before { content: "\f123"; } }
444
+
445
+ &.location-arrow { &:before { content: "\f124"; } }
446
+ &.crop { &:before { content: "\f125"; } }
447
+ &.code-fork { &:before { content: "\f126"; } }
448
+ &.chain-broken, &.unlink { &:before { content: "\f127"; } }
449
+ &.question { &:before { content: "\f128"; } }
450
+ &.info { &:before { content: "\f129"; } }
451
+ &.exclamation { &:before { content: "\f12a"; } }
452
+ &.superscript { &:before { content: "\f12b"; } }
453
+ &.subscript { &:before { content: "\f12c"; } }
454
+ &.eraser { &:before { content: "\f12d"; } }
455
+ &.puzzle-piece { &:before { content: "\f12e"; } }
456
+ &.microphone { &:before { content: "\f130"; } }
457
+ &.microphone-slash { &:before { content: "\f131"; } }
458
+ &.shield { &:before { content: "\f132"; } }
459
+ &.calendar-o { &:before { content: "\f133"; } }
460
+ &.fire-extinguisher { &:before { content: "\f134"; } }
461
+ &.rocket { &:before { content: "\f135"; } }
462
+ &.maxcdn { &:before { content: "\f136"; } }
463
+ &.chevron-circle-left { &:before { content: "\f137"; } }
464
+ &.chevron-circle-right { &:before { content: "\f138"; } }
465
+ &.chevron-circle-up { &:before { content: "\f139"; } }
466
+ &.chevron-circle-down { &:before { content: "\f13a"; } }
467
+ &.html5 { &:before { content: "\f13b"; } }
468
+ &.css3 { &:before { content: "\f13c"; } }
469
+ &.anchor { &:before { content: "\f13d"; } }
470
+ &.unlock-alt { &:before { content: "\f13e"; } }
471
+ &.bullseye { &:before { content: "\f140"; } }
472
+ &.ellipsis-h { &:before { content: "\f141"; } }
473
+ &.ellipsis-v { &:before { content: "\f142"; } }
474
+ &.rss-square { &:before { content: "\f143"; } }
475
+ &.play-circle { &:before { content: "\f144"; } }
476
+ &.ticket { &:before { content: "\f145"; } }
477
+ &.minus-square { &:before { content: "\f146"; } }
478
+ &.minus-square-o { &:before { content: "\f147"; } }
479
+ &.level-up { &:before { content: "\f148"; } }
480
+ &.level-down { &:before { content: "\f149"; } }
481
+ &.check-square { &:before { content: "\f14a"; } }
482
+ &.pencil-square { &:before { content: "\f14b"; } }
483
+ &.external-link-square { &:before { content: "\f14c"; } }
484
+ &.share-square { &:before { content: "\f14d"; } }
485
+ &.compass { &:before { content: "\f14e"; } }
486
+
487
+ &.caret-square-o-down,
488
+ &.toggle-down { &:before { content: "\f150"; } }
489
+
490
+ &.caret-square-o-up,
491
+ &.toggle-up { &:before { content: "\f151"; } }
492
+
493
+ &.caret-square-o-right,
494
+ &.toggle-right { &:before { content: "\f152"; } }
495
+
496
+ &.eur, &.euro { &:before { content: "\f153"; } }
497
+
498
+ &.gbp { &:before { content: "\f154"; } }
499
+
500
+ &.usd, &.dollar { &:before { content: "\f155"; } }
501
+
502
+ &.inr, &.rupee { &:before { content: "\f156"; } }
503
+
504
+ &.jpy, &.rmb, &.yen, &.cny { &:before { content: "\f157"; } }
505
+
506
+ &.rub, &.rouble, &.ruble { &:before { content: "\f158"; } }
507
+ &.krw, &.won { &:before { content: "\f159"; } }
508
+
509
+ &.btc, &.bitcoin { &:before { content: "\f15a"; } }
510
+
511
+ &.file { &:before { content: "\f15b"; } }
512
+ &.file-text { &:before { content: "\f15c"; } }
513
+ &.sort-alpha-asc { &:before { content: "\f15d"; } }
514
+ &.sort-alpha-desc { &:before { content: "\f15e"; } }
515
+ &.sort-amount-asc { &:before { content: "\f160"; } }
516
+ &.sort-amount-desc { &:before { content: "\f161"; } }
517
+ &.sort-numeric-asc { &:before { content: "\f162"; } }
518
+ &.sort-numeric-desc { &:before { content: "\f163"; } }
519
+ &.thumbs-up { &:before { content: "\f164"; } }
520
+ &.thumbs-down { &:before { content: "\f165"; } }
521
+ &.youtube-square { &:before { content: "\f166"; } }
522
+ &.youtube { &:before { content: "\f167"; } }
523
+ &.xing { &:before { content: "\f168"; } }
524
+ &.xing-square { &:before { content: "\f169"; } }
525
+ &.youtube-play { &:before { content: "\f16a"; } }
526
+ &.dropbox { &:before { content: "\f16b"; } }
527
+ &.stack-overflow { &:before { content: "\f16c"; } }
528
+ &.instagram { &:before { content: "\f16d"; } }
529
+ &.flickr { &:before { content: "\f16e"; } }
530
+ &.adn { &:before { content: "\f170"; } }
531
+ &.bitbucket { &:before { content: "\f171"; } }
532
+ &.bitbucket-square { &:before { content: "\f172"; } }
533
+ &.tumblr { &:before { content: "\f173"; } }
534
+ &.tumblr-square { &:before { content: "\f174"; } }
535
+ &.long-arrow-down { &:before { content: "\f175"; } }
536
+ &.long-arrow-up { &:before { content: "\f176"; } }
537
+ &.long-arrow-left { &:before { content: "\f177"; } }
538
+ &.long-arrow-right { &:before { content: "\f178"; } }
539
+ &.apple { &:before { content: "\f179"; } }
540
+ &.windows { &:before { content: "\f17a"; } }
541
+ &.android { &:before { content: "\f17b"; } }
542
+ &.linux { &:before { content: "\f17c"; } }
543
+ &.dribbble { &:before { content: "\f17d"; } }
544
+ &.skype { &:before { content: "\f17e"; } }
545
+ &.foursquare { &:before { content: "\f180"; } }
546
+ &.trello { &:before { content: "\f181"; } }
547
+ &.female { &:before { content: "\f182"; } }
548
+ &.male { &:before { content: "\f183"; } }
549
+ &.gittip { &:before { content: "\f184"; } }
550
+ &.sun-o { &:before { content: "\f185"; } }
551
+ &.moon-o { &:before { content: "\f186"; } }
552
+ &.archive { &:before { content: "\f187"; } }
553
+ &.bug { &:before { content: "\f188"; } }
554
+ &.vk { &:before { content: "\f189"; } }
555
+ &.weibo { &:before { content: "\f18a"; } }
556
+ &.renren { &:before { content: "\f18b"; } }
557
+ &.pagelines { &:before { content: "\f18c"; } }
558
+ &.stack-exchange { &:before { content: "\f18d"; } }
559
+ &.arrow-circle-o-right { &:before { content: "\f18e"; } }
560
+ &.arrow-circle-o-left { &:before { content: "\f190"; } }
561
+
562
+ &.caret-square-o-left,
563
+ &.toggle-left { &:before { content: "\f191"; } }
564
+
565
+ &.dot-circle-o { &:before { content: "\f192"; } }
566
+ &.wheelchair { &:before { content: "\f193"; } }
567
+ &.vimeo-square { &:before { content: "\f194"; } }
568
+
569
+ &.try, &.turkish-lira { &:before { content: "\f195"; } }
570
+
571
+ &.plus-square-o { &:before { content: "\f196"; } }
572
+ }