mice 0.2.10 → 0.2.11

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