twitter-bootstrap-rails 3.2.0 → 3.2.1.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of twitter-bootstrap-rails might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +85 -121
- data/app/assets/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-webfont.svg +479 -463
- data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/javascripts/twitter/bootstrap/affix.js +19 -14
- data/app/assets/javascripts/twitter/bootstrap/alert.js +10 -6
- data/app/assets/javascripts/twitter/bootstrap/button.js +11 -8
- data/app/assets/javascripts/twitter/bootstrap/carousel.js +49 -31
- data/app/assets/javascripts/twitter/bootstrap/collapse.js +22 -22
- data/app/assets/javascripts/twitter/bootstrap/dropdown.js +17 -13
- data/app/assets/javascripts/twitter/bootstrap/modal.js +66 -29
- data/app/assets/javascripts/twitter/bootstrap/popover.js +10 -7
- data/app/assets/javascripts/twitter/bootstrap/scrollspy.js +40 -23
- data/app/assets/javascripts/twitter/bootstrap/tab.js +11 -8
- data/app/assets/javascripts/twitter/bootstrap/tooltip.js +115 -57
- data/app/assets/javascripts/twitter/bootstrap/transition.js +18 -7
- data/app/assets/stylesheets/twitter-bootstrap-static/fontawesome.css.erb +1670 -2
- data/app/helpers/bootstrap_flash_helper.rb +1 -1
- data/app/helpers/form_errors_helper.rb +11 -11
- data/app/helpers/glyph_helper.rb +2 -1
- data/app/helpers/modal_helper.rb +3 -3
- data/lib/generators/bootstrap/install/templates/bootstrap_and_overrides.less +6 -3
- data/lib/generators/bootstrap/layout/templates/layout.html.erb +5 -5
- data/lib/generators/bootstrap/layout/templates/layout.html.haml +3 -3
- data/lib/generators/bootstrap/layout/templates/layout.html.slim +3 -5
- data/lib/generators/bootstrap/themed/templates/_form.html.erb +12 -9
- data/lib/generators/bootstrap/themed/templates/_form.html.haml +7 -5
- data/lib/generators/bootstrap/themed/templates/_form.html.slim +8 -6
- data/lib/generators/bootstrap/themed/templates/edit.html.slim +1 -1
- data/lib/generators/bootstrap/themed/templates/index.html.slim +2 -3
- data/lib/generators/bootstrap/themed/templates/new.html.slim +1 -1
- data/lib/generators/bootstrap/themed/templates/show.html.slim +1 -1
- data/lib/twitter/bootstrap/rails/engine.rb +16 -12
- data/lib/twitter/bootstrap/rails/version.rb +1 -1
- data/spec/lib/breadcrumbs_spec.rb +2 -2
- data/spec/lib/twitter_bootstrap_rails/badge_label_helper_spec.rb +10 -4
- data/spec/lib/twitter_bootstrap_rails/form_errors_helper_spec.rb +148 -0
- data/spec/lib/twitter_bootstrap_rails/glyph_helper_spec.rb +24 -0
- data/spec/lib/twitter_bootstrap_rails/modal_helper_spec.rb +1 -1
- data/spec/lib/twitter_bootstrap_rails/navbar_helper_spec.rb +1 -1
- data/vendor/assets/stylesheets/twitter-bootstrap-static/bootstrap.css.erb +1 -3
- data/vendor/toolkit/fontawesome/core.less +3 -4
- data/vendor/toolkit/fontawesome/font-awesome.less +1 -1
- data/vendor/toolkit/fontawesome/icons.less +48 -2
- data/vendor/toolkit/fontawesome/list.less +1 -1
- data/vendor/toolkit/fontawesome/mixins.less +9 -4
- data/vendor/toolkit/fontawesome/path.less +5 -5
- data/vendor/toolkit/fontawesome/rotated-flipped.less +11 -0
- data/vendor/toolkit/fontawesome/spinning.less +15 -18
- data/vendor/toolkit/fontawesome/variables.less +49 -3
- data/vendor/toolkit/twitter/bootstrap/bootstrap.less +0 -1
- data/vendor/toolkit/twitter/bootstrap/glyphicons.less +6 -5
- metadata +59 -25
- data/app/assets/images/twitter/bootstrap/glyphicons-halflings-white.png +0 -0
- data/app/assets/images/twitter/bootstrap/glyphicons-halflings.png +0 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ========================================================================
|
2
|
-
* Bootstrap: tab.js v3.
|
2
|
+
* Bootstrap: tab.js v3.2.0
|
3
3
|
* http://getbootstrap.com/javascript/#tabs
|
4
4
|
* ========================================================================
|
5
5
|
* Copyright 2011-2014 Twitter, Inc.
|
@@ -17,6 +17,8 @@
|
|
17
17
|
this.element = $(element)
|
18
18
|
}
|
19
19
|
|
20
|
+
Tab.VERSION = '3.2.0'
|
21
|
+
|
20
22
|
Tab.prototype.show = function () {
|
21
23
|
var $this = this.element
|
22
24
|
var $ul = $this.closest('ul:not(.dropdown-menu)')
|
@@ -24,7 +26,7 @@
|
|
24
26
|
|
25
27
|
if (!selector) {
|
26
28
|
selector = $this.attr('href')
|
27
|
-
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
29
|
+
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
28
30
|
}
|
29
31
|
|
30
32
|
if ($this.parent('li').hasClass('active')) return
|
@@ -40,7 +42,7 @@
|
|
40
42
|
|
41
43
|
var $target = $(selector)
|
42
44
|
|
43
|
-
this.activate($this.
|
45
|
+
this.activate($this.closest('li'), $ul)
|
44
46
|
this.activate($target, $target.parent(), function () {
|
45
47
|
$this.trigger({
|
46
48
|
type: 'shown.bs.tab',
|
@@ -79,7 +81,7 @@
|
|
79
81
|
|
80
82
|
transition ?
|
81
83
|
$active
|
82
|
-
.one(
|
84
|
+
.one('bsTransitionEnd', next)
|
83
85
|
.emulateTransitionEnd(150) :
|
84
86
|
next()
|
85
87
|
|
@@ -90,9 +92,7 @@
|
|
90
92
|
// TAB PLUGIN DEFINITION
|
91
93
|
// =====================
|
92
94
|
|
93
|
-
|
94
|
-
|
95
|
-
$.fn.tab = function ( option ) {
|
95
|
+
function Plugin(option) {
|
96
96
|
return this.each(function () {
|
97
97
|
var $this = $(this)
|
98
98
|
var data = $this.data('bs.tab')
|
@@ -102,6 +102,9 @@
|
|
102
102
|
})
|
103
103
|
}
|
104
104
|
|
105
|
+
var old = $.fn.tab
|
106
|
+
|
107
|
+
$.fn.tab = Plugin
|
105
108
|
$.fn.tab.Constructor = Tab
|
106
109
|
|
107
110
|
|
@@ -119,7 +122,7 @@
|
|
119
122
|
|
120
123
|
$(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
|
121
124
|
e.preventDefault()
|
122
|
-
$(this)
|
125
|
+
Plugin.call($(this), 'show')
|
123
126
|
})
|
124
127
|
|
125
128
|
}(jQuery);
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ========================================================================
|
2
|
-
* Bootstrap: tooltip.js v3.
|
2
|
+
* Bootstrap: tooltip.js v3.2.0
|
3
3
|
* http://getbootstrap.com/javascript/#tooltip
|
4
4
|
* Inspired by the original jQuery.tipsy by Jason Frame
|
5
5
|
* ========================================================================
|
@@ -25,23 +25,30 @@
|
|
25
25
|
this.init('tooltip', element, options)
|
26
26
|
}
|
27
27
|
|
28
|
+
Tooltip.VERSION = '3.2.0'
|
29
|
+
|
28
30
|
Tooltip.DEFAULTS = {
|
29
31
|
animation: true,
|
30
32
|
placement: 'top',
|
31
33
|
selector: false,
|
32
|
-
template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
|
34
|
+
template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
|
33
35
|
trigger: 'hover focus',
|
34
36
|
title: '',
|
35
37
|
delay: 0,
|
36
38
|
html: false,
|
37
|
-
container: false
|
39
|
+
container: false,
|
40
|
+
viewport: {
|
41
|
+
selector: 'body',
|
42
|
+
padding: 0
|
43
|
+
}
|
38
44
|
}
|
39
45
|
|
40
46
|
Tooltip.prototype.init = function (type, element, options) {
|
41
|
-
this.enabled
|
42
|
-
this.type
|
43
|
-
this.$element
|
44
|
-
this.options
|
47
|
+
this.enabled = true
|
48
|
+
this.type = type
|
49
|
+
this.$element = $(element)
|
50
|
+
this.options = this.getOptions(options)
|
51
|
+
this.$viewport = this.options.viewport && $(this.options.viewport.selector || this.options.viewport)
|
45
52
|
|
46
53
|
var triggers = this.options.trigger.split(' ')
|
47
54
|
|
@@ -94,7 +101,12 @@
|
|
94
101
|
|
95
102
|
Tooltip.prototype.enter = function (obj) {
|
96
103
|
var self = obj instanceof this.constructor ?
|
97
|
-
obj : $(obj.currentTarget)
|
104
|
+
obj : $(obj.currentTarget).data('bs.' + this.type)
|
105
|
+
|
106
|
+
if (!self) {
|
107
|
+
self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
|
108
|
+
$(obj.currentTarget).data('bs.' + this.type, self)
|
109
|
+
}
|
98
110
|
|
99
111
|
clearTimeout(self.timeout)
|
100
112
|
|
@@ -109,7 +121,12 @@
|
|
109
121
|
|
110
122
|
Tooltip.prototype.leave = function (obj) {
|
111
123
|
var self = obj instanceof this.constructor ?
|
112
|
-
obj : $(obj.currentTarget)
|
124
|
+
obj : $(obj.currentTarget).data('bs.' + this.type)
|
125
|
+
|
126
|
+
if (!self) {
|
127
|
+
self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
|
128
|
+
$(obj.currentTarget).data('bs.' + this.type, self)
|
129
|
+
}
|
113
130
|
|
114
131
|
clearTimeout(self.timeout)
|
115
132
|
|
@@ -128,12 +145,17 @@
|
|
128
145
|
if (this.hasContent() && this.enabled) {
|
129
146
|
this.$element.trigger(e)
|
130
147
|
|
131
|
-
|
132
|
-
|
148
|
+
var inDom = $.contains(document.documentElement, this.$element[0])
|
149
|
+
if (e.isDefaultPrevented() || !inDom) return
|
150
|
+
var that = this
|
133
151
|
|
134
152
|
var $tip = this.tip()
|
135
153
|
|
154
|
+
var tipId = this.getUID(this.type)
|
155
|
+
|
136
156
|
this.setContent()
|
157
|
+
$tip.attr('id', tipId)
|
158
|
+
this.$element.attr('aria-describedby', tipId)
|
137
159
|
|
138
160
|
if (this.options.animation) $tip.addClass('fade')
|
139
161
|
|
@@ -149,6 +171,7 @@
|
|
149
171
|
.detach()
|
150
172
|
.css({ top: 0, left: 0, display: 'block' })
|
151
173
|
.addClass(placement)
|
174
|
+
.data('bs.' + this.type, this)
|
152
175
|
|
153
176
|
this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
|
154
177
|
|
@@ -157,18 +180,14 @@
|
|
157
180
|
var actualHeight = $tip[0].offsetHeight
|
158
181
|
|
159
182
|
if (autoPlace) {
|
160
|
-
var $parent = this.$element.parent()
|
161
|
-
|
162
183
|
var orgPlacement = placement
|
163
|
-
var
|
164
|
-
var
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
placement == '
|
170
|
-
placement == 'right' && pos.right + actualWidth > parentWidth ? 'left' :
|
171
|
-
placement == 'left' && pos.left - actualWidth < parentLeft ? 'right' :
|
184
|
+
var $parent = this.$element.parent()
|
185
|
+
var parentDim = this.getPosition($parent)
|
186
|
+
|
187
|
+
placement = placement == 'bottom' && pos.top + pos.height + actualHeight - parentDim.scroll > parentDim.height ? 'top' :
|
188
|
+
placement == 'top' && pos.top - parentDim.scroll - actualHeight < 0 ? 'bottom' :
|
189
|
+
placement == 'right' && pos.right + actualWidth > parentDim.width ? 'left' :
|
190
|
+
placement == 'left' && pos.left - actualWidth < parentDim.left ? 'right' :
|
172
191
|
placement
|
173
192
|
|
174
193
|
$tip
|
@@ -179,22 +198,21 @@
|
|
179
198
|
var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
|
180
199
|
|
181
200
|
this.applyPlacement(calculatedOffset, placement)
|
182
|
-
this.hoverState = null
|
183
201
|
|
184
|
-
var complete = function() {
|
202
|
+
var complete = function () {
|
185
203
|
that.$element.trigger('shown.bs.' + that.type)
|
204
|
+
that.hoverState = null
|
186
205
|
}
|
187
206
|
|
188
207
|
$.support.transition && this.$tip.hasClass('fade') ?
|
189
208
|
$tip
|
190
|
-
.one(
|
209
|
+
.one('bsTransitionEnd', complete)
|
191
210
|
.emulateTransitionEnd(150) :
|
192
211
|
complete()
|
193
212
|
}
|
194
213
|
}
|
195
214
|
|
196
215
|
Tooltip.prototype.applyPlacement = function (offset, placement) {
|
197
|
-
var replace
|
198
216
|
var $tip = this.tip()
|
199
217
|
var width = $tip[0].offsetWidth
|
200
218
|
var height = $tip[0].offsetHeight
|
@@ -228,29 +246,20 @@
|
|
228
246
|
var actualHeight = $tip[0].offsetHeight
|
229
247
|
|
230
248
|
if (placement == 'top' && actualHeight != height) {
|
231
|
-
replace = true
|
232
249
|
offset.top = offset.top + height - actualHeight
|
233
250
|
}
|
234
251
|
|
235
|
-
|
236
|
-
var delta = 0
|
252
|
+
var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)
|
237
253
|
|
238
|
-
|
239
|
-
|
240
|
-
offset.left = 0
|
254
|
+
if (delta.left) offset.left += delta.left
|
255
|
+
else offset.top += delta.top
|
241
256
|
|
242
|
-
|
257
|
+
var arrowDelta = delta.left ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight
|
258
|
+
var arrowPosition = delta.left ? 'left' : 'top'
|
259
|
+
var arrowOffsetPosition = delta.left ? 'offsetWidth' : 'offsetHeight'
|
243
260
|
|
244
|
-
|
245
|
-
|
246
|
-
}
|
247
|
-
|
248
|
-
this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')
|
249
|
-
} else {
|
250
|
-
this.replaceArrow(actualHeight - height, actualHeight, 'top')
|
251
|
-
}
|
252
|
-
|
253
|
-
if (replace) $tip.offset(offset)
|
261
|
+
$tip.offset(offset)
|
262
|
+
this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], arrowPosition)
|
254
263
|
}
|
255
264
|
|
256
265
|
Tooltip.prototype.replaceArrow = function (delta, dimension, position) {
|
@@ -270,6 +279,8 @@
|
|
270
279
|
var $tip = this.tip()
|
271
280
|
var e = $.Event('hide.bs.' + this.type)
|
272
281
|
|
282
|
+
this.$element.removeAttr('aria-describedby')
|
283
|
+
|
273
284
|
function complete() {
|
274
285
|
if (that.hoverState != 'in') $tip.detach()
|
275
286
|
that.$element.trigger('hidden.bs.' + that.type)
|
@@ -283,7 +294,7 @@
|
|
283
294
|
|
284
295
|
$.support.transition && this.$tip.hasClass('fade') ?
|
285
296
|
$tip
|
286
|
-
.one(
|
297
|
+
.one('bsTransitionEnd', complete)
|
287
298
|
.emulateTransitionEnd(150) :
|
288
299
|
complete()
|
289
300
|
|
@@ -294,7 +305,7 @@
|
|
294
305
|
|
295
306
|
Tooltip.prototype.fixTitle = function () {
|
296
307
|
var $e = this.$element
|
297
|
-
if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
|
308
|
+
if ($e.attr('title') || typeof ($e.attr('data-original-title')) != 'string') {
|
298
309
|
$e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
|
299
310
|
}
|
300
311
|
}
|
@@ -303,12 +314,15 @@
|
|
303
314
|
return this.getTitle()
|
304
315
|
}
|
305
316
|
|
306
|
-
Tooltip.prototype.getPosition = function () {
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
317
|
+
Tooltip.prototype.getPosition = function ($element) {
|
318
|
+
$element = $element || this.$element
|
319
|
+
var el = $element[0]
|
320
|
+
var isBody = el.tagName == 'BODY'
|
321
|
+
return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : null, {
|
322
|
+
scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop(),
|
323
|
+
width: isBody ? $(window).width() : $element.outerWidth(),
|
324
|
+
height: isBody ? $(window).height() : $element.outerHeight()
|
325
|
+
}, isBody ? { top: 0, left: 0 } : $element.offset())
|
312
326
|
}
|
313
327
|
|
314
328
|
Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
|
@@ -316,6 +330,35 @@
|
|
316
330
|
placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
|
317
331
|
placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
|
318
332
|
/* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
|
333
|
+
|
334
|
+
}
|
335
|
+
|
336
|
+
Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {
|
337
|
+
var delta = { top: 0, left: 0 }
|
338
|
+
if (!this.$viewport) return delta
|
339
|
+
|
340
|
+
var viewportPadding = this.options.viewport && this.options.viewport.padding || 0
|
341
|
+
var viewportDimensions = this.getPosition(this.$viewport)
|
342
|
+
|
343
|
+
if (/right|left/.test(placement)) {
|
344
|
+
var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll
|
345
|
+
var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight
|
346
|
+
if (topEdgeOffset < viewportDimensions.top) { // top overflow
|
347
|
+
delta.top = viewportDimensions.top - topEdgeOffset
|
348
|
+
} else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow
|
349
|
+
delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset
|
350
|
+
}
|
351
|
+
} else {
|
352
|
+
var leftEdgeOffset = pos.left - viewportPadding
|
353
|
+
var rightEdgeOffset = pos.left + viewportPadding + actualWidth
|
354
|
+
if (leftEdgeOffset < viewportDimensions.left) { // left overflow
|
355
|
+
delta.left = viewportDimensions.left - leftEdgeOffset
|
356
|
+
} else if (rightEdgeOffset > viewportDimensions.width) { // right overflow
|
357
|
+
delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset
|
358
|
+
}
|
359
|
+
}
|
360
|
+
|
361
|
+
return delta
|
319
362
|
}
|
320
363
|
|
321
364
|
Tooltip.prototype.getTitle = function () {
|
@@ -329,12 +372,18 @@
|
|
329
372
|
return title
|
330
373
|
}
|
331
374
|
|
375
|
+
Tooltip.prototype.getUID = function (prefix) {
|
376
|
+
do prefix += ~~(Math.random() * 1000000)
|
377
|
+
while (document.getElementById(prefix))
|
378
|
+
return prefix
|
379
|
+
}
|
380
|
+
|
332
381
|
Tooltip.prototype.tip = function () {
|
333
|
-
return this.$tip = this.$tip || $(this.options.template)
|
382
|
+
return (this.$tip = this.$tip || $(this.options.template))
|
334
383
|
}
|
335
384
|
|
336
385
|
Tooltip.prototype.arrow = function () {
|
337
|
-
return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')
|
386
|
+
return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow'))
|
338
387
|
}
|
339
388
|
|
340
389
|
Tooltip.prototype.validate = function () {
|
@@ -358,7 +407,15 @@
|
|
358
407
|
}
|
359
408
|
|
360
409
|
Tooltip.prototype.toggle = function (e) {
|
361
|
-
var self =
|
410
|
+
var self = this
|
411
|
+
if (e) {
|
412
|
+
self = $(e.currentTarget).data('bs.' + this.type)
|
413
|
+
if (!self) {
|
414
|
+
self = new this.constructor(e.currentTarget, this.getDelegateOptions())
|
415
|
+
$(e.currentTarget).data('bs.' + this.type, self)
|
416
|
+
}
|
417
|
+
}
|
418
|
+
|
362
419
|
self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
|
363
420
|
}
|
364
421
|
|
@@ -371,9 +428,7 @@
|
|
371
428
|
// TOOLTIP PLUGIN DEFINITION
|
372
429
|
// =========================
|
373
430
|
|
374
|
-
|
375
|
-
|
376
|
-
$.fn.tooltip = function (option) {
|
431
|
+
function Plugin(option) {
|
377
432
|
return this.each(function () {
|
378
433
|
var $this = $(this)
|
379
434
|
var data = $this.data('bs.tooltip')
|
@@ -385,6 +440,9 @@
|
|
385
440
|
})
|
386
441
|
}
|
387
442
|
|
443
|
+
var old = $.fn.tooltip
|
444
|
+
|
445
|
+
$.fn.tooltip = Plugin
|
388
446
|
$.fn.tooltip.Constructor = Tooltip
|
389
447
|
|
390
448
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ========================================================================
|
2
|
-
* Bootstrap: transition.js v3.
|
2
|
+
* Bootstrap: transition.js v3.2.0
|
3
3
|
* http://getbootstrap.com/javascript/#transitions
|
4
4
|
* ========================================================================
|
5
5
|
* Copyright 2011-2014 Twitter, Inc.
|
@@ -17,10 +17,10 @@
|
|
17
17
|
var el = document.createElement('bootstrap')
|
18
18
|
|
19
19
|
var transEndEventNames = {
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
20
|
+
WebkitTransition : 'webkitTransitionEnd',
|
21
|
+
MozTransition : 'transitionend',
|
22
|
+
OTransition : 'oTransitionEnd otransitionend',
|
23
|
+
transition : 'transitionend'
|
24
24
|
}
|
25
25
|
|
26
26
|
for (var name in transEndEventNames) {
|
@@ -34,8 +34,9 @@
|
|
34
34
|
|
35
35
|
// http://blog.alexmaccaw.com/css-transitions
|
36
36
|
$.fn.emulateTransitionEnd = function (duration) {
|
37
|
-
var called = false
|
38
|
-
$
|
37
|
+
var called = false
|
38
|
+
var $el = this
|
39
|
+
$(this).one('bsTransitionEnd', function () { called = true })
|
39
40
|
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
|
40
41
|
setTimeout(callback, duration)
|
41
42
|
return this
|
@@ -43,6 +44,16 @@
|
|
43
44
|
|
44
45
|
$(function () {
|
45
46
|
$.support.transition = transitionEnd()
|
47
|
+
|
48
|
+
if (!$.support.transition) return
|
49
|
+
|
50
|
+
$.event.special.bsTransitionEnd = {
|
51
|
+
bindType: $.support.transition.end,
|
52
|
+
delegateType: $.support.transition.end,
|
53
|
+
handle: function (e) {
|
54
|
+
if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
|
55
|
+
}
|
56
|
+
}
|
46
57
|
})
|
47
58
|
|
48
59
|
}(jQuery);
|
@@ -1,4 +1,1672 @@
|
|
1
1
|
/*!
|
2
|
-
* Font Awesome 4.
|
2
|
+
* Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
|
3
3
|
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4
|
-
*/@font-face{font-family:'FontAwesome';src:url("<%= asset_path 'fontawesome-webfont.eot' %>");src:url("<%= asset_path 'fontawesome-webfont.eot#iefix' %>") format('embedded-opentype'),url("<%= asset_path 'fontawesome-webfont.woff' %>") format('woff'),url("<%= asset_path 'fontawesome-webfont.ttf' %>") format('truetype'),url("<%= asset_path 'fontawesome-webfont.svg#fontawesomeregular' %>") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-square:before,.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}
|
4
|
+
*/
|
5
|
+
/* FONT PATH
|
6
|
+
* -------------------------- */
|
7
|
+
@font-face {
|
8
|
+
font-family: 'FontAwesome';
|
9
|
+
src: url("<%= asset_path 'fontawesome-webfont.eot' %>");
|
10
|
+
src: url("<%= asset_path 'fontawesome-webfont.eot#iefix' %>") format('embedded-opentype'), url("<%= asset_path 'fontawesome-webfont.woff' %>") format('woff'), url("<%= asset_path 'fontawesome-webfont.ttf' %>") format('truetype'), url("<%= asset_path 'fontawesome-webfont.svg#fontawesomeregular' %>") format('svg');
|
11
|
+
font-weight: normal;
|
12
|
+
font-style: normal;
|
13
|
+
}
|
14
|
+
.fa {
|
15
|
+
display: inline-block;
|
16
|
+
font: normal normal normal 14px/1 FontAwesome;
|
17
|
+
font-size: inherit;
|
18
|
+
text-rendering: auto;
|
19
|
+
-webkit-font-smoothing: antialiased;
|
20
|
+
-moz-osx-font-smoothing: grayscale;
|
21
|
+
}
|
22
|
+
/* makes the font 33% larger relative to the icon container */
|
23
|
+
.fa-lg {
|
24
|
+
font-size: 1.33333333em;
|
25
|
+
line-height: 0.75em;
|
26
|
+
vertical-align: -15%;
|
27
|
+
}
|
28
|
+
.fa-2x {
|
29
|
+
font-size: 2em;
|
30
|
+
}
|
31
|
+
.fa-3x {
|
32
|
+
font-size: 3em;
|
33
|
+
}
|
34
|
+
.fa-4x {
|
35
|
+
font-size: 4em;
|
36
|
+
}
|
37
|
+
.fa-5x {
|
38
|
+
font-size: 5em;
|
39
|
+
}
|
40
|
+
.fa-fw {
|
41
|
+
width: 1.28571429em;
|
42
|
+
text-align: center;
|
43
|
+
}
|
44
|
+
.fa-ul {
|
45
|
+
padding-left: 0;
|
46
|
+
margin-left: 2.14285714em;
|
47
|
+
list-style-type: none;
|
48
|
+
}
|
49
|
+
.fa-ul > li {
|
50
|
+
position: relative;
|
51
|
+
}
|
52
|
+
.fa-li {
|
53
|
+
position: absolute;
|
54
|
+
left: -2.14285714em;
|
55
|
+
width: 2.14285714em;
|
56
|
+
top: 0.14285714em;
|
57
|
+
text-align: center;
|
58
|
+
}
|
59
|
+
.fa-li.fa-lg {
|
60
|
+
left: -1.85714286em;
|
61
|
+
}
|
62
|
+
.fa-border {
|
63
|
+
padding: .2em .25em .15em;
|
64
|
+
border: solid 0.08em #eeeeee;
|
65
|
+
border-radius: .1em;
|
66
|
+
}
|
67
|
+
.pull-right {
|
68
|
+
float: right;
|
69
|
+
}
|
70
|
+
.pull-left {
|
71
|
+
float: left;
|
72
|
+
}
|
73
|
+
.fa.pull-left {
|
74
|
+
margin-right: .3em;
|
75
|
+
}
|
76
|
+
.fa.pull-right {
|
77
|
+
margin-left: .3em;
|
78
|
+
}
|
79
|
+
.fa-spin {
|
80
|
+
-webkit-animation: fa-spin 2s infinite linear;
|
81
|
+
animation: fa-spin 2s infinite linear;
|
82
|
+
}
|
83
|
+
@-webkit-keyframes fa-spin {
|
84
|
+
0% {
|
85
|
+
-webkit-transform: rotate(0deg);
|
86
|
+
transform: rotate(0deg);
|
87
|
+
}
|
88
|
+
100% {
|
89
|
+
-webkit-transform: rotate(359deg);
|
90
|
+
transform: rotate(359deg);
|
91
|
+
}
|
92
|
+
}
|
93
|
+
@keyframes fa-spin {
|
94
|
+
0% {
|
95
|
+
-webkit-transform: rotate(0deg);
|
96
|
+
transform: rotate(0deg);
|
97
|
+
}
|
98
|
+
100% {
|
99
|
+
-webkit-transform: rotate(359deg);
|
100
|
+
transform: rotate(359deg);
|
101
|
+
}
|
102
|
+
}
|
103
|
+
.fa-rotate-90 {
|
104
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
105
|
+
-webkit-transform: rotate(90deg);
|
106
|
+
-ms-transform: rotate(90deg);
|
107
|
+
transform: rotate(90deg);
|
108
|
+
}
|
109
|
+
.fa-rotate-180 {
|
110
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
111
|
+
-webkit-transform: rotate(180deg);
|
112
|
+
-ms-transform: rotate(180deg);
|
113
|
+
transform: rotate(180deg);
|
114
|
+
}
|
115
|
+
.fa-rotate-270 {
|
116
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
117
|
+
-webkit-transform: rotate(270deg);
|
118
|
+
-ms-transform: rotate(270deg);
|
119
|
+
transform: rotate(270deg);
|
120
|
+
}
|
121
|
+
.fa-flip-horizontal {
|
122
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
123
|
+
-webkit-transform: scale(-1, 1);
|
124
|
+
-ms-transform: scale(-1, 1);
|
125
|
+
transform: scale(-1, 1);
|
126
|
+
}
|
127
|
+
.fa-flip-vertical {
|
128
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
129
|
+
-webkit-transform: scale(1, -1);
|
130
|
+
-ms-transform: scale(1, -1);
|
131
|
+
transform: scale(1, -1);
|
132
|
+
}
|
133
|
+
:root .fa-rotate-90,
|
134
|
+
:root .fa-rotate-180,
|
135
|
+
:root .fa-rotate-270,
|
136
|
+
:root .fa-flip-horizontal,
|
137
|
+
:root .fa-flip-vertical {
|
138
|
+
filter: none;
|
139
|
+
}
|
140
|
+
.fa-stack {
|
141
|
+
position: relative;
|
142
|
+
display: inline-block;
|
143
|
+
width: 2em;
|
144
|
+
height: 2em;
|
145
|
+
line-height: 2em;
|
146
|
+
vertical-align: middle;
|
147
|
+
}
|
148
|
+
.fa-stack-1x,
|
149
|
+
.fa-stack-2x {
|
150
|
+
position: absolute;
|
151
|
+
left: 0;
|
152
|
+
width: 100%;
|
153
|
+
text-align: center;
|
154
|
+
}
|
155
|
+
.fa-stack-1x {
|
156
|
+
line-height: inherit;
|
157
|
+
}
|
158
|
+
.fa-stack-2x {
|
159
|
+
font-size: 2em;
|
160
|
+
}
|
161
|
+
.fa-inverse {
|
162
|
+
color: #ffffff;
|
163
|
+
}
|
164
|
+
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
165
|
+
readers do not read off random characters that represent icons */
|
166
|
+
.fa-glass:before {
|
167
|
+
content: "\f000";
|
168
|
+
}
|
169
|
+
.fa-music:before {
|
170
|
+
content: "\f001";
|
171
|
+
}
|
172
|
+
.fa-search:before {
|
173
|
+
content: "\f002";
|
174
|
+
}
|
175
|
+
.fa-envelope-o:before {
|
176
|
+
content: "\f003";
|
177
|
+
}
|
178
|
+
.fa-heart:before {
|
179
|
+
content: "\f004";
|
180
|
+
}
|
181
|
+
.fa-star:before {
|
182
|
+
content: "\f005";
|
183
|
+
}
|
184
|
+
.fa-star-o:before {
|
185
|
+
content: "\f006";
|
186
|
+
}
|
187
|
+
.fa-user:before {
|
188
|
+
content: "\f007";
|
189
|
+
}
|
190
|
+
.fa-film:before {
|
191
|
+
content: "\f008";
|
192
|
+
}
|
193
|
+
.fa-th-large:before {
|
194
|
+
content: "\f009";
|
195
|
+
}
|
196
|
+
.fa-th:before {
|
197
|
+
content: "\f00a";
|
198
|
+
}
|
199
|
+
.fa-th-list:before {
|
200
|
+
content: "\f00b";
|
201
|
+
}
|
202
|
+
.fa-check:before {
|
203
|
+
content: "\f00c";
|
204
|
+
}
|
205
|
+
.fa-remove:before,
|
206
|
+
.fa-close:before,
|
207
|
+
.fa-times:before {
|
208
|
+
content: "\f00d";
|
209
|
+
}
|
210
|
+
.fa-search-plus:before {
|
211
|
+
content: "\f00e";
|
212
|
+
}
|
213
|
+
.fa-search-minus:before {
|
214
|
+
content: "\f010";
|
215
|
+
}
|
216
|
+
.fa-power-off:before {
|
217
|
+
content: "\f011";
|
218
|
+
}
|
219
|
+
.fa-signal:before {
|
220
|
+
content: "\f012";
|
221
|
+
}
|
222
|
+
.fa-gear:before,
|
223
|
+
.fa-cog:before {
|
224
|
+
content: "\f013";
|
225
|
+
}
|
226
|
+
.fa-trash-o:before {
|
227
|
+
content: "\f014";
|
228
|
+
}
|
229
|
+
.fa-home:before {
|
230
|
+
content: "\f015";
|
231
|
+
}
|
232
|
+
.fa-file-o:before {
|
233
|
+
content: "\f016";
|
234
|
+
}
|
235
|
+
.fa-clock-o:before {
|
236
|
+
content: "\f017";
|
237
|
+
}
|
238
|
+
.fa-road:before {
|
239
|
+
content: "\f018";
|
240
|
+
}
|
241
|
+
.fa-download:before {
|
242
|
+
content: "\f019";
|
243
|
+
}
|
244
|
+
.fa-arrow-circle-o-down:before {
|
245
|
+
content: "\f01a";
|
246
|
+
}
|
247
|
+
.fa-arrow-circle-o-up:before {
|
248
|
+
content: "\f01b";
|
249
|
+
}
|
250
|
+
.fa-inbox:before {
|
251
|
+
content: "\f01c";
|
252
|
+
}
|
253
|
+
.fa-play-circle-o:before {
|
254
|
+
content: "\f01d";
|
255
|
+
}
|
256
|
+
.fa-rotate-right:before,
|
257
|
+
.fa-repeat:before {
|
258
|
+
content: "\f01e";
|
259
|
+
}
|
260
|
+
.fa-refresh:before {
|
261
|
+
content: "\f021";
|
262
|
+
}
|
263
|
+
.fa-list-alt:before {
|
264
|
+
content: "\f022";
|
265
|
+
}
|
266
|
+
.fa-lock:before {
|
267
|
+
content: "\f023";
|
268
|
+
}
|
269
|
+
.fa-flag:before {
|
270
|
+
content: "\f024";
|
271
|
+
}
|
272
|
+
.fa-headphones:before {
|
273
|
+
content: "\f025";
|
274
|
+
}
|
275
|
+
.fa-volume-off:before {
|
276
|
+
content: "\f026";
|
277
|
+
}
|
278
|
+
.fa-volume-down:before {
|
279
|
+
content: "\f027";
|
280
|
+
}
|
281
|
+
.fa-volume-up:before {
|
282
|
+
content: "\f028";
|
283
|
+
}
|
284
|
+
.fa-qrcode:before {
|
285
|
+
content: "\f029";
|
286
|
+
}
|
287
|
+
.fa-barcode:before {
|
288
|
+
content: "\f02a";
|
289
|
+
}
|
290
|
+
.fa-tag:before {
|
291
|
+
content: "\f02b";
|
292
|
+
}
|
293
|
+
.fa-tags:before {
|
294
|
+
content: "\f02c";
|
295
|
+
}
|
296
|
+
.fa-book:before {
|
297
|
+
content: "\f02d";
|
298
|
+
}
|
299
|
+
.fa-bookmark:before {
|
300
|
+
content: "\f02e";
|
301
|
+
}
|
302
|
+
.fa-print:before {
|
303
|
+
content: "\f02f";
|
304
|
+
}
|
305
|
+
.fa-camera:before {
|
306
|
+
content: "\f030";
|
307
|
+
}
|
308
|
+
.fa-font:before {
|
309
|
+
content: "\f031";
|
310
|
+
}
|
311
|
+
.fa-bold:before {
|
312
|
+
content: "\f032";
|
313
|
+
}
|
314
|
+
.fa-italic:before {
|
315
|
+
content: "\f033";
|
316
|
+
}
|
317
|
+
.fa-text-height:before {
|
318
|
+
content: "\f034";
|
319
|
+
}
|
320
|
+
.fa-text-width:before {
|
321
|
+
content: "\f035";
|
322
|
+
}
|
323
|
+
.fa-align-left:before {
|
324
|
+
content: "\f036";
|
325
|
+
}
|
326
|
+
.fa-align-center:before {
|
327
|
+
content: "\f037";
|
328
|
+
}
|
329
|
+
.fa-align-right:before {
|
330
|
+
content: "\f038";
|
331
|
+
}
|
332
|
+
.fa-align-justify:before {
|
333
|
+
content: "\f039";
|
334
|
+
}
|
335
|
+
.fa-list:before {
|
336
|
+
content: "\f03a";
|
337
|
+
}
|
338
|
+
.fa-dedent:before,
|
339
|
+
.fa-outdent:before {
|
340
|
+
content: "\f03b";
|
341
|
+
}
|
342
|
+
.fa-indent:before {
|
343
|
+
content: "\f03c";
|
344
|
+
}
|
345
|
+
.fa-video-camera:before {
|
346
|
+
content: "\f03d";
|
347
|
+
}
|
348
|
+
.fa-photo:before,
|
349
|
+
.fa-image:before,
|
350
|
+
.fa-picture-o:before {
|
351
|
+
content: "\f03e";
|
352
|
+
}
|
353
|
+
.fa-pencil:before {
|
354
|
+
content: "\f040";
|
355
|
+
}
|
356
|
+
.fa-map-marker:before {
|
357
|
+
content: "\f041";
|
358
|
+
}
|
359
|
+
.fa-adjust:before {
|
360
|
+
content: "\f042";
|
361
|
+
}
|
362
|
+
.fa-tint:before {
|
363
|
+
content: "\f043";
|
364
|
+
}
|
365
|
+
.fa-edit:before,
|
366
|
+
.fa-pencil-square-o:before {
|
367
|
+
content: "\f044";
|
368
|
+
}
|
369
|
+
.fa-share-square-o:before {
|
370
|
+
content: "\f045";
|
371
|
+
}
|
372
|
+
.fa-check-square-o:before {
|
373
|
+
content: "\f046";
|
374
|
+
}
|
375
|
+
.fa-arrows:before {
|
376
|
+
content: "\f047";
|
377
|
+
}
|
378
|
+
.fa-step-backward:before {
|
379
|
+
content: "\f048";
|
380
|
+
}
|
381
|
+
.fa-fast-backward:before {
|
382
|
+
content: "\f049";
|
383
|
+
}
|
384
|
+
.fa-backward:before {
|
385
|
+
content: "\f04a";
|
386
|
+
}
|
387
|
+
.fa-play:before {
|
388
|
+
content: "\f04b";
|
389
|
+
}
|
390
|
+
.fa-pause:before {
|
391
|
+
content: "\f04c";
|
392
|
+
}
|
393
|
+
.fa-stop:before {
|
394
|
+
content: "\f04d";
|
395
|
+
}
|
396
|
+
.fa-forward:before {
|
397
|
+
content: "\f04e";
|
398
|
+
}
|
399
|
+
.fa-fast-forward:before {
|
400
|
+
content: "\f050";
|
401
|
+
}
|
402
|
+
.fa-step-forward:before {
|
403
|
+
content: "\f051";
|
404
|
+
}
|
405
|
+
.fa-eject:before {
|
406
|
+
content: "\f052";
|
407
|
+
}
|
408
|
+
.fa-chevron-left:before {
|
409
|
+
content: "\f053";
|
410
|
+
}
|
411
|
+
.fa-chevron-right:before {
|
412
|
+
content: "\f054";
|
413
|
+
}
|
414
|
+
.fa-plus-circle:before {
|
415
|
+
content: "\f055";
|
416
|
+
}
|
417
|
+
.fa-minus-circle:before {
|
418
|
+
content: "\f056";
|
419
|
+
}
|
420
|
+
.fa-times-circle:before {
|
421
|
+
content: "\f057";
|
422
|
+
}
|
423
|
+
.fa-check-circle:before {
|
424
|
+
content: "\f058";
|
425
|
+
}
|
426
|
+
.fa-question-circle:before {
|
427
|
+
content: "\f059";
|
428
|
+
}
|
429
|
+
.fa-info-circle:before {
|
430
|
+
content: "\f05a";
|
431
|
+
}
|
432
|
+
.fa-crosshairs:before {
|
433
|
+
content: "\f05b";
|
434
|
+
}
|
435
|
+
.fa-times-circle-o:before {
|
436
|
+
content: "\f05c";
|
437
|
+
}
|
438
|
+
.fa-check-circle-o:before {
|
439
|
+
content: "\f05d";
|
440
|
+
}
|
441
|
+
.fa-ban:before {
|
442
|
+
content: "\f05e";
|
443
|
+
}
|
444
|
+
.fa-arrow-left:before {
|
445
|
+
content: "\f060";
|
446
|
+
}
|
447
|
+
.fa-arrow-right:before {
|
448
|
+
content: "\f061";
|
449
|
+
}
|
450
|
+
.fa-arrow-up:before {
|
451
|
+
content: "\f062";
|
452
|
+
}
|
453
|
+
.fa-arrow-down:before {
|
454
|
+
content: "\f063";
|
455
|
+
}
|
456
|
+
.fa-mail-forward:before,
|
457
|
+
.fa-share:before {
|
458
|
+
content: "\f064";
|
459
|
+
}
|
460
|
+
.fa-expand:before {
|
461
|
+
content: "\f065";
|
462
|
+
}
|
463
|
+
.fa-compress:before {
|
464
|
+
content: "\f066";
|
465
|
+
}
|
466
|
+
.fa-plus:before {
|
467
|
+
content: "\f067";
|
468
|
+
}
|
469
|
+
.fa-minus:before {
|
470
|
+
content: "\f068";
|
471
|
+
}
|
472
|
+
.fa-asterisk:before {
|
473
|
+
content: "\f069";
|
474
|
+
}
|
475
|
+
.fa-exclamation-circle:before {
|
476
|
+
content: "\f06a";
|
477
|
+
}
|
478
|
+
.fa-gift:before {
|
479
|
+
content: "\f06b";
|
480
|
+
}
|
481
|
+
.fa-leaf:before {
|
482
|
+
content: "\f06c";
|
483
|
+
}
|
484
|
+
.fa-fire:before {
|
485
|
+
content: "\f06d";
|
486
|
+
}
|
487
|
+
.fa-eye:before {
|
488
|
+
content: "\f06e";
|
489
|
+
}
|
490
|
+
.fa-eye-slash:before {
|
491
|
+
content: "\f070";
|
492
|
+
}
|
493
|
+
.fa-warning:before,
|
494
|
+
.fa-exclamation-triangle:before {
|
495
|
+
content: "\f071";
|
496
|
+
}
|
497
|
+
.fa-plane:before {
|
498
|
+
content: "\f072";
|
499
|
+
}
|
500
|
+
.fa-calendar:before {
|
501
|
+
content: "\f073";
|
502
|
+
}
|
503
|
+
.fa-random:before {
|
504
|
+
content: "\f074";
|
505
|
+
}
|
506
|
+
.fa-comment:before {
|
507
|
+
content: "\f075";
|
508
|
+
}
|
509
|
+
.fa-magnet:before {
|
510
|
+
content: "\f076";
|
511
|
+
}
|
512
|
+
.fa-chevron-up:before {
|
513
|
+
content: "\f077";
|
514
|
+
}
|
515
|
+
.fa-chevron-down:before {
|
516
|
+
content: "\f078";
|
517
|
+
}
|
518
|
+
.fa-retweet:before {
|
519
|
+
content: "\f079";
|
520
|
+
}
|
521
|
+
.fa-shopping-cart:before {
|
522
|
+
content: "\f07a";
|
523
|
+
}
|
524
|
+
.fa-folder:before {
|
525
|
+
content: "\f07b";
|
526
|
+
}
|
527
|
+
.fa-folder-open:before {
|
528
|
+
content: "\f07c";
|
529
|
+
}
|
530
|
+
.fa-arrows-v:before {
|
531
|
+
content: "\f07d";
|
532
|
+
}
|
533
|
+
.fa-arrows-h:before {
|
534
|
+
content: "\f07e";
|
535
|
+
}
|
536
|
+
.fa-bar-chart-o:before,
|
537
|
+
.fa-bar-chart:before {
|
538
|
+
content: "\f080";
|
539
|
+
}
|
540
|
+
.fa-twitter-square:before {
|
541
|
+
content: "\f081";
|
542
|
+
}
|
543
|
+
.fa-facebook-square:before {
|
544
|
+
content: "\f082";
|
545
|
+
}
|
546
|
+
.fa-camera-retro:before {
|
547
|
+
content: "\f083";
|
548
|
+
}
|
549
|
+
.fa-key:before {
|
550
|
+
content: "\f084";
|
551
|
+
}
|
552
|
+
.fa-gears:before,
|
553
|
+
.fa-cogs:before {
|
554
|
+
content: "\f085";
|
555
|
+
}
|
556
|
+
.fa-comments:before {
|
557
|
+
content: "\f086";
|
558
|
+
}
|
559
|
+
.fa-thumbs-o-up:before {
|
560
|
+
content: "\f087";
|
561
|
+
}
|
562
|
+
.fa-thumbs-o-down:before {
|
563
|
+
content: "\f088";
|
564
|
+
}
|
565
|
+
.fa-star-half:before {
|
566
|
+
content: "\f089";
|
567
|
+
}
|
568
|
+
.fa-heart-o:before {
|
569
|
+
content: "\f08a";
|
570
|
+
}
|
571
|
+
.fa-sign-out:before {
|
572
|
+
content: "\f08b";
|
573
|
+
}
|
574
|
+
.fa-linkedin-square:before {
|
575
|
+
content: "\f08c";
|
576
|
+
}
|
577
|
+
.fa-thumb-tack:before {
|
578
|
+
content: "\f08d";
|
579
|
+
}
|
580
|
+
.fa-external-link:before {
|
581
|
+
content: "\f08e";
|
582
|
+
}
|
583
|
+
.fa-sign-in:before {
|
584
|
+
content: "\f090";
|
585
|
+
}
|
586
|
+
.fa-trophy:before {
|
587
|
+
content: "\f091";
|
588
|
+
}
|
589
|
+
.fa-github-square:before {
|
590
|
+
content: "\f092";
|
591
|
+
}
|
592
|
+
.fa-upload:before {
|
593
|
+
content: "\f093";
|
594
|
+
}
|
595
|
+
.fa-lemon-o:before {
|
596
|
+
content: "\f094";
|
597
|
+
}
|
598
|
+
.fa-phone:before {
|
599
|
+
content: "\f095";
|
600
|
+
}
|
601
|
+
.fa-square-o:before {
|
602
|
+
content: "\f096";
|
603
|
+
}
|
604
|
+
.fa-bookmark-o:before {
|
605
|
+
content: "\f097";
|
606
|
+
}
|
607
|
+
.fa-phone-square:before {
|
608
|
+
content: "\f098";
|
609
|
+
}
|
610
|
+
.fa-twitter:before {
|
611
|
+
content: "\f099";
|
612
|
+
}
|
613
|
+
.fa-facebook:before {
|
614
|
+
content: "\f09a";
|
615
|
+
}
|
616
|
+
.fa-github:before {
|
617
|
+
content: "\f09b";
|
618
|
+
}
|
619
|
+
.fa-unlock:before {
|
620
|
+
content: "\f09c";
|
621
|
+
}
|
622
|
+
.fa-credit-card:before {
|
623
|
+
content: "\f09d";
|
624
|
+
}
|
625
|
+
.fa-rss:before {
|
626
|
+
content: "\f09e";
|
627
|
+
}
|
628
|
+
.fa-hdd-o:before {
|
629
|
+
content: "\f0a0";
|
630
|
+
}
|
631
|
+
.fa-bullhorn:before {
|
632
|
+
content: "\f0a1";
|
633
|
+
}
|
634
|
+
.fa-bell:before {
|
635
|
+
content: "\f0f3";
|
636
|
+
}
|
637
|
+
.fa-certificate:before {
|
638
|
+
content: "\f0a3";
|
639
|
+
}
|
640
|
+
.fa-hand-o-right:before {
|
641
|
+
content: "\f0a4";
|
642
|
+
}
|
643
|
+
.fa-hand-o-left:before {
|
644
|
+
content: "\f0a5";
|
645
|
+
}
|
646
|
+
.fa-hand-o-up:before {
|
647
|
+
content: "\f0a6";
|
648
|
+
}
|
649
|
+
.fa-hand-o-down:before {
|
650
|
+
content: "\f0a7";
|
651
|
+
}
|
652
|
+
.fa-arrow-circle-left:before {
|
653
|
+
content: "\f0a8";
|
654
|
+
}
|
655
|
+
.fa-arrow-circle-right:before {
|
656
|
+
content: "\f0a9";
|
657
|
+
}
|
658
|
+
.fa-arrow-circle-up:before {
|
659
|
+
content: "\f0aa";
|
660
|
+
}
|
661
|
+
.fa-arrow-circle-down:before {
|
662
|
+
content: "\f0ab";
|
663
|
+
}
|
664
|
+
.fa-globe:before {
|
665
|
+
content: "\f0ac";
|
666
|
+
}
|
667
|
+
.fa-wrench:before {
|
668
|
+
content: "\f0ad";
|
669
|
+
}
|
670
|
+
.fa-tasks:before {
|
671
|
+
content: "\f0ae";
|
672
|
+
}
|
673
|
+
.fa-filter:before {
|
674
|
+
content: "\f0b0";
|
675
|
+
}
|
676
|
+
.fa-briefcase:before {
|
677
|
+
content: "\f0b1";
|
678
|
+
}
|
679
|
+
.fa-arrows-alt:before {
|
680
|
+
content: "\f0b2";
|
681
|
+
}
|
682
|
+
.fa-group:before,
|
683
|
+
.fa-users:before {
|
684
|
+
content: "\f0c0";
|
685
|
+
}
|
686
|
+
.fa-chain:before,
|
687
|
+
.fa-link:before {
|
688
|
+
content: "\f0c1";
|
689
|
+
}
|
690
|
+
.fa-cloud:before {
|
691
|
+
content: "\f0c2";
|
692
|
+
}
|
693
|
+
.fa-flask:before {
|
694
|
+
content: "\f0c3";
|
695
|
+
}
|
696
|
+
.fa-cut:before,
|
697
|
+
.fa-scissors:before {
|
698
|
+
content: "\f0c4";
|
699
|
+
}
|
700
|
+
.fa-copy:before,
|
701
|
+
.fa-files-o:before {
|
702
|
+
content: "\f0c5";
|
703
|
+
}
|
704
|
+
.fa-paperclip:before {
|
705
|
+
content: "\f0c6";
|
706
|
+
}
|
707
|
+
.fa-save:before,
|
708
|
+
.fa-floppy-o:before {
|
709
|
+
content: "\f0c7";
|
710
|
+
}
|
711
|
+
.fa-square:before {
|
712
|
+
content: "\f0c8";
|
713
|
+
}
|
714
|
+
.fa-navicon:before,
|
715
|
+
.fa-reorder:before,
|
716
|
+
.fa-bars:before {
|
717
|
+
content: "\f0c9";
|
718
|
+
}
|
719
|
+
.fa-list-ul:before {
|
720
|
+
content: "\f0ca";
|
721
|
+
}
|
722
|
+
.fa-list-ol:before {
|
723
|
+
content: "\f0cb";
|
724
|
+
}
|
725
|
+
.fa-strikethrough:before {
|
726
|
+
content: "\f0cc";
|
727
|
+
}
|
728
|
+
.fa-underline:before {
|
729
|
+
content: "\f0cd";
|
730
|
+
}
|
731
|
+
.fa-table:before {
|
732
|
+
content: "\f0ce";
|
733
|
+
}
|
734
|
+
.fa-magic:before {
|
735
|
+
content: "\f0d0";
|
736
|
+
}
|
737
|
+
.fa-truck:before {
|
738
|
+
content: "\f0d1";
|
739
|
+
}
|
740
|
+
.fa-pinterest:before {
|
741
|
+
content: "\f0d2";
|
742
|
+
}
|
743
|
+
.fa-pinterest-square:before {
|
744
|
+
content: "\f0d3";
|
745
|
+
}
|
746
|
+
.fa-google-plus-square:before {
|
747
|
+
content: "\f0d4";
|
748
|
+
}
|
749
|
+
.fa-google-plus:before {
|
750
|
+
content: "\f0d5";
|
751
|
+
}
|
752
|
+
.fa-money:before {
|
753
|
+
content: "\f0d6";
|
754
|
+
}
|
755
|
+
.fa-caret-down:before {
|
756
|
+
content: "\f0d7";
|
757
|
+
}
|
758
|
+
.fa-caret-up:before {
|
759
|
+
content: "\f0d8";
|
760
|
+
}
|
761
|
+
.fa-caret-left:before {
|
762
|
+
content: "\f0d9";
|
763
|
+
}
|
764
|
+
.fa-caret-right:before {
|
765
|
+
content: "\f0da";
|
766
|
+
}
|
767
|
+
.fa-columns:before {
|
768
|
+
content: "\f0db";
|
769
|
+
}
|
770
|
+
.fa-unsorted:before,
|
771
|
+
.fa-sort:before {
|
772
|
+
content: "\f0dc";
|
773
|
+
}
|
774
|
+
.fa-sort-down:before,
|
775
|
+
.fa-sort-desc:before {
|
776
|
+
content: "\f0dd";
|
777
|
+
}
|
778
|
+
.fa-sort-up:before,
|
779
|
+
.fa-sort-asc:before {
|
780
|
+
content: "\f0de";
|
781
|
+
}
|
782
|
+
.fa-envelope:before {
|
783
|
+
content: "\f0e0";
|
784
|
+
}
|
785
|
+
.fa-linkedin:before {
|
786
|
+
content: "\f0e1";
|
787
|
+
}
|
788
|
+
.fa-rotate-left:before,
|
789
|
+
.fa-undo:before {
|
790
|
+
content: "\f0e2";
|
791
|
+
}
|
792
|
+
.fa-legal:before,
|
793
|
+
.fa-gavel:before {
|
794
|
+
content: "\f0e3";
|
795
|
+
}
|
796
|
+
.fa-dashboard:before,
|
797
|
+
.fa-tachometer:before {
|
798
|
+
content: "\f0e4";
|
799
|
+
}
|
800
|
+
.fa-comment-o:before {
|
801
|
+
content: "\f0e5";
|
802
|
+
}
|
803
|
+
.fa-comments-o:before {
|
804
|
+
content: "\f0e6";
|
805
|
+
}
|
806
|
+
.fa-flash:before,
|
807
|
+
.fa-bolt:before {
|
808
|
+
content: "\f0e7";
|
809
|
+
}
|
810
|
+
.fa-sitemap:before {
|
811
|
+
content: "\f0e8";
|
812
|
+
}
|
813
|
+
.fa-umbrella:before {
|
814
|
+
content: "\f0e9";
|
815
|
+
}
|
816
|
+
.fa-paste:before,
|
817
|
+
.fa-clipboard:before {
|
818
|
+
content: "\f0ea";
|
819
|
+
}
|
820
|
+
.fa-lightbulb-o:before {
|
821
|
+
content: "\f0eb";
|
822
|
+
}
|
823
|
+
.fa-exchange:before {
|
824
|
+
content: "\f0ec";
|
825
|
+
}
|
826
|
+
.fa-cloud-download:before {
|
827
|
+
content: "\f0ed";
|
828
|
+
}
|
829
|
+
.fa-cloud-upload:before {
|
830
|
+
content: "\f0ee";
|
831
|
+
}
|
832
|
+
.fa-user-md:before {
|
833
|
+
content: "\f0f0";
|
834
|
+
}
|
835
|
+
.fa-stethoscope:before {
|
836
|
+
content: "\f0f1";
|
837
|
+
}
|
838
|
+
.fa-suitcase:before {
|
839
|
+
content: "\f0f2";
|
840
|
+
}
|
841
|
+
.fa-bell-o:before {
|
842
|
+
content: "\f0a2";
|
843
|
+
}
|
844
|
+
.fa-coffee:before {
|
845
|
+
content: "\f0f4";
|
846
|
+
}
|
847
|
+
.fa-cutlery:before {
|
848
|
+
content: "\f0f5";
|
849
|
+
}
|
850
|
+
.fa-file-text-o:before {
|
851
|
+
content: "\f0f6";
|
852
|
+
}
|
853
|
+
.fa-building-o:before {
|
854
|
+
content: "\f0f7";
|
855
|
+
}
|
856
|
+
.fa-hospital-o:before {
|
857
|
+
content: "\f0f8";
|
858
|
+
}
|
859
|
+
.fa-ambulance:before {
|
860
|
+
content: "\f0f9";
|
861
|
+
}
|
862
|
+
.fa-medkit:before {
|
863
|
+
content: "\f0fa";
|
864
|
+
}
|
865
|
+
.fa-fighter-jet:before {
|
866
|
+
content: "\f0fb";
|
867
|
+
}
|
868
|
+
.fa-beer:before {
|
869
|
+
content: "\f0fc";
|
870
|
+
}
|
871
|
+
.fa-h-square:before {
|
872
|
+
content: "\f0fd";
|
873
|
+
}
|
874
|
+
.fa-plus-square:before {
|
875
|
+
content: "\f0fe";
|
876
|
+
}
|
877
|
+
.fa-angle-double-left:before {
|
878
|
+
content: "\f100";
|
879
|
+
}
|
880
|
+
.fa-angle-double-right:before {
|
881
|
+
content: "\f101";
|
882
|
+
}
|
883
|
+
.fa-angle-double-up:before {
|
884
|
+
content: "\f102";
|
885
|
+
}
|
886
|
+
.fa-angle-double-down:before {
|
887
|
+
content: "\f103";
|
888
|
+
}
|
889
|
+
.fa-angle-left:before {
|
890
|
+
content: "\f104";
|
891
|
+
}
|
892
|
+
.fa-angle-right:before {
|
893
|
+
content: "\f105";
|
894
|
+
}
|
895
|
+
.fa-angle-up:before {
|
896
|
+
content: "\f106";
|
897
|
+
}
|
898
|
+
.fa-angle-down:before {
|
899
|
+
content: "\f107";
|
900
|
+
}
|
901
|
+
.fa-desktop:before {
|
902
|
+
content: "\f108";
|
903
|
+
}
|
904
|
+
.fa-laptop:before {
|
905
|
+
content: "\f109";
|
906
|
+
}
|
907
|
+
.fa-tablet:before {
|
908
|
+
content: "\f10a";
|
909
|
+
}
|
910
|
+
.fa-mobile-phone:before,
|
911
|
+
.fa-mobile:before {
|
912
|
+
content: "\f10b";
|
913
|
+
}
|
914
|
+
.fa-circle-o:before {
|
915
|
+
content: "\f10c";
|
916
|
+
}
|
917
|
+
.fa-quote-left:before {
|
918
|
+
content: "\f10d";
|
919
|
+
}
|
920
|
+
.fa-quote-right:before {
|
921
|
+
content: "\f10e";
|
922
|
+
}
|
923
|
+
.fa-spinner:before {
|
924
|
+
content: "\f110";
|
925
|
+
}
|
926
|
+
.fa-circle:before {
|
927
|
+
content: "\f111";
|
928
|
+
}
|
929
|
+
.fa-mail-reply:before,
|
930
|
+
.fa-reply:before {
|
931
|
+
content: "\f112";
|
932
|
+
}
|
933
|
+
.fa-github-alt:before {
|
934
|
+
content: "\f113";
|
935
|
+
}
|
936
|
+
.fa-folder-o:before {
|
937
|
+
content: "\f114";
|
938
|
+
}
|
939
|
+
.fa-folder-open-o:before {
|
940
|
+
content: "\f115";
|
941
|
+
}
|
942
|
+
.fa-smile-o:before {
|
943
|
+
content: "\f118";
|
944
|
+
}
|
945
|
+
.fa-frown-o:before {
|
946
|
+
content: "\f119";
|
947
|
+
}
|
948
|
+
.fa-meh-o:before {
|
949
|
+
content: "\f11a";
|
950
|
+
}
|
951
|
+
.fa-gamepad:before {
|
952
|
+
content: "\f11b";
|
953
|
+
}
|
954
|
+
.fa-keyboard-o:before {
|
955
|
+
content: "\f11c";
|
956
|
+
}
|
957
|
+
.fa-flag-o:before {
|
958
|
+
content: "\f11d";
|
959
|
+
}
|
960
|
+
.fa-flag-checkered:before {
|
961
|
+
content: "\f11e";
|
962
|
+
}
|
963
|
+
.fa-terminal:before {
|
964
|
+
content: "\f120";
|
965
|
+
}
|
966
|
+
.fa-code:before {
|
967
|
+
content: "\f121";
|
968
|
+
}
|
969
|
+
.fa-mail-reply-all:before,
|
970
|
+
.fa-reply-all:before {
|
971
|
+
content: "\f122";
|
972
|
+
}
|
973
|
+
.fa-star-half-empty:before,
|
974
|
+
.fa-star-half-full:before,
|
975
|
+
.fa-star-half-o:before {
|
976
|
+
content: "\f123";
|
977
|
+
}
|
978
|
+
.fa-location-arrow:before {
|
979
|
+
content: "\f124";
|
980
|
+
}
|
981
|
+
.fa-crop:before {
|
982
|
+
content: "\f125";
|
983
|
+
}
|
984
|
+
.fa-code-fork:before {
|
985
|
+
content: "\f126";
|
986
|
+
}
|
987
|
+
.fa-unlink:before,
|
988
|
+
.fa-chain-broken:before {
|
989
|
+
content: "\f127";
|
990
|
+
}
|
991
|
+
.fa-question:before {
|
992
|
+
content: "\f128";
|
993
|
+
}
|
994
|
+
.fa-info:before {
|
995
|
+
content: "\f129";
|
996
|
+
}
|
997
|
+
.fa-exclamation:before {
|
998
|
+
content: "\f12a";
|
999
|
+
}
|
1000
|
+
.fa-superscript:before {
|
1001
|
+
content: "\f12b";
|
1002
|
+
}
|
1003
|
+
.fa-subscript:before {
|
1004
|
+
content: "\f12c";
|
1005
|
+
}
|
1006
|
+
.fa-eraser:before {
|
1007
|
+
content: "\f12d";
|
1008
|
+
}
|
1009
|
+
.fa-puzzle-piece:before {
|
1010
|
+
content: "\f12e";
|
1011
|
+
}
|
1012
|
+
.fa-microphone:before {
|
1013
|
+
content: "\f130";
|
1014
|
+
}
|
1015
|
+
.fa-microphone-slash:before {
|
1016
|
+
content: "\f131";
|
1017
|
+
}
|
1018
|
+
.fa-shield:before {
|
1019
|
+
content: "\f132";
|
1020
|
+
}
|
1021
|
+
.fa-calendar-o:before {
|
1022
|
+
content: "\f133";
|
1023
|
+
}
|
1024
|
+
.fa-fire-extinguisher:before {
|
1025
|
+
content: "\f134";
|
1026
|
+
}
|
1027
|
+
.fa-rocket:before {
|
1028
|
+
content: "\f135";
|
1029
|
+
}
|
1030
|
+
.fa-maxcdn:before {
|
1031
|
+
content: "\f136";
|
1032
|
+
}
|
1033
|
+
.fa-chevron-circle-left:before {
|
1034
|
+
content: "\f137";
|
1035
|
+
}
|
1036
|
+
.fa-chevron-circle-right:before {
|
1037
|
+
content: "\f138";
|
1038
|
+
}
|
1039
|
+
.fa-chevron-circle-up:before {
|
1040
|
+
content: "\f139";
|
1041
|
+
}
|
1042
|
+
.fa-chevron-circle-down:before {
|
1043
|
+
content: "\f13a";
|
1044
|
+
}
|
1045
|
+
.fa-html5:before {
|
1046
|
+
content: "\f13b";
|
1047
|
+
}
|
1048
|
+
.fa-css3:before {
|
1049
|
+
content: "\f13c";
|
1050
|
+
}
|
1051
|
+
.fa-anchor:before {
|
1052
|
+
content: "\f13d";
|
1053
|
+
}
|
1054
|
+
.fa-unlock-alt:before {
|
1055
|
+
content: "\f13e";
|
1056
|
+
}
|
1057
|
+
.fa-bullseye:before {
|
1058
|
+
content: "\f140";
|
1059
|
+
}
|
1060
|
+
.fa-ellipsis-h:before {
|
1061
|
+
content: "\f141";
|
1062
|
+
}
|
1063
|
+
.fa-ellipsis-v:before {
|
1064
|
+
content: "\f142";
|
1065
|
+
}
|
1066
|
+
.fa-rss-square:before {
|
1067
|
+
content: "\f143";
|
1068
|
+
}
|
1069
|
+
.fa-play-circle:before {
|
1070
|
+
content: "\f144";
|
1071
|
+
}
|
1072
|
+
.fa-ticket:before {
|
1073
|
+
content: "\f145";
|
1074
|
+
}
|
1075
|
+
.fa-minus-square:before {
|
1076
|
+
content: "\f146";
|
1077
|
+
}
|
1078
|
+
.fa-minus-square-o:before {
|
1079
|
+
content: "\f147";
|
1080
|
+
}
|
1081
|
+
.fa-level-up:before {
|
1082
|
+
content: "\f148";
|
1083
|
+
}
|
1084
|
+
.fa-level-down:before {
|
1085
|
+
content: "\f149";
|
1086
|
+
}
|
1087
|
+
.fa-check-square:before {
|
1088
|
+
content: "\f14a";
|
1089
|
+
}
|
1090
|
+
.fa-pencil-square:before {
|
1091
|
+
content: "\f14b";
|
1092
|
+
}
|
1093
|
+
.fa-external-link-square:before {
|
1094
|
+
content: "\f14c";
|
1095
|
+
}
|
1096
|
+
.fa-share-square:before {
|
1097
|
+
content: "\f14d";
|
1098
|
+
}
|
1099
|
+
.fa-compass:before {
|
1100
|
+
content: "\f14e";
|
1101
|
+
}
|
1102
|
+
.fa-toggle-down:before,
|
1103
|
+
.fa-caret-square-o-down:before {
|
1104
|
+
content: "\f150";
|
1105
|
+
}
|
1106
|
+
.fa-toggle-up:before,
|
1107
|
+
.fa-caret-square-o-up:before {
|
1108
|
+
content: "\f151";
|
1109
|
+
}
|
1110
|
+
.fa-toggle-right:before,
|
1111
|
+
.fa-caret-square-o-right:before {
|
1112
|
+
content: "\f152";
|
1113
|
+
}
|
1114
|
+
.fa-euro:before,
|
1115
|
+
.fa-eur:before {
|
1116
|
+
content: "\f153";
|
1117
|
+
}
|
1118
|
+
.fa-gbp:before {
|
1119
|
+
content: "\f154";
|
1120
|
+
}
|
1121
|
+
.fa-dollar:before,
|
1122
|
+
.fa-usd:before {
|
1123
|
+
content: "\f155";
|
1124
|
+
}
|
1125
|
+
.fa-rupee:before,
|
1126
|
+
.fa-inr:before {
|
1127
|
+
content: "\f156";
|
1128
|
+
}
|
1129
|
+
.fa-cny:before,
|
1130
|
+
.fa-rmb:before,
|
1131
|
+
.fa-yen:before,
|
1132
|
+
.fa-jpy:before {
|
1133
|
+
content: "\f157";
|
1134
|
+
}
|
1135
|
+
.fa-ruble:before,
|
1136
|
+
.fa-rouble:before,
|
1137
|
+
.fa-rub:before {
|
1138
|
+
content: "\f158";
|
1139
|
+
}
|
1140
|
+
.fa-won:before,
|
1141
|
+
.fa-krw:before {
|
1142
|
+
content: "\f159";
|
1143
|
+
}
|
1144
|
+
.fa-bitcoin:before,
|
1145
|
+
.fa-btc:before {
|
1146
|
+
content: "\f15a";
|
1147
|
+
}
|
1148
|
+
.fa-file:before {
|
1149
|
+
content: "\f15b";
|
1150
|
+
}
|
1151
|
+
.fa-file-text:before {
|
1152
|
+
content: "\f15c";
|
1153
|
+
}
|
1154
|
+
.fa-sort-alpha-asc:before {
|
1155
|
+
content: "\f15d";
|
1156
|
+
}
|
1157
|
+
.fa-sort-alpha-desc:before {
|
1158
|
+
content: "\f15e";
|
1159
|
+
}
|
1160
|
+
.fa-sort-amount-asc:before {
|
1161
|
+
content: "\f160";
|
1162
|
+
}
|
1163
|
+
.fa-sort-amount-desc:before {
|
1164
|
+
content: "\f161";
|
1165
|
+
}
|
1166
|
+
.fa-sort-numeric-asc:before {
|
1167
|
+
content: "\f162";
|
1168
|
+
}
|
1169
|
+
.fa-sort-numeric-desc:before {
|
1170
|
+
content: "\f163";
|
1171
|
+
}
|
1172
|
+
.fa-thumbs-up:before {
|
1173
|
+
content: "\f164";
|
1174
|
+
}
|
1175
|
+
.fa-thumbs-down:before {
|
1176
|
+
content: "\f165";
|
1177
|
+
}
|
1178
|
+
.fa-youtube-square:before {
|
1179
|
+
content: "\f166";
|
1180
|
+
}
|
1181
|
+
.fa-youtube:before {
|
1182
|
+
content: "\f167";
|
1183
|
+
}
|
1184
|
+
.fa-xing:before {
|
1185
|
+
content: "\f168";
|
1186
|
+
}
|
1187
|
+
.fa-xing-square:before {
|
1188
|
+
content: "\f169";
|
1189
|
+
}
|
1190
|
+
.fa-youtube-play:before {
|
1191
|
+
content: "\f16a";
|
1192
|
+
}
|
1193
|
+
.fa-dropbox:before {
|
1194
|
+
content: "\f16b";
|
1195
|
+
}
|
1196
|
+
.fa-stack-overflow:before {
|
1197
|
+
content: "\f16c";
|
1198
|
+
}
|
1199
|
+
.fa-instagram:before {
|
1200
|
+
content: "\f16d";
|
1201
|
+
}
|
1202
|
+
.fa-flickr:before {
|
1203
|
+
content: "\f16e";
|
1204
|
+
}
|
1205
|
+
.fa-adn:before {
|
1206
|
+
content: "\f170";
|
1207
|
+
}
|
1208
|
+
.fa-bitbucket:before {
|
1209
|
+
content: "\f171";
|
1210
|
+
}
|
1211
|
+
.fa-bitbucket-square:before {
|
1212
|
+
content: "\f172";
|
1213
|
+
}
|
1214
|
+
.fa-tumblr:before {
|
1215
|
+
content: "\f173";
|
1216
|
+
}
|
1217
|
+
.fa-tumblr-square:before {
|
1218
|
+
content: "\f174";
|
1219
|
+
}
|
1220
|
+
.fa-long-arrow-down:before {
|
1221
|
+
content: "\f175";
|
1222
|
+
}
|
1223
|
+
.fa-long-arrow-up:before {
|
1224
|
+
content: "\f176";
|
1225
|
+
}
|
1226
|
+
.fa-long-arrow-left:before {
|
1227
|
+
content: "\f177";
|
1228
|
+
}
|
1229
|
+
.fa-long-arrow-right:before {
|
1230
|
+
content: "\f178";
|
1231
|
+
}
|
1232
|
+
.fa-apple:before {
|
1233
|
+
content: "\f179";
|
1234
|
+
}
|
1235
|
+
.fa-windows:before {
|
1236
|
+
content: "\f17a";
|
1237
|
+
}
|
1238
|
+
.fa-android:before {
|
1239
|
+
content: "\f17b";
|
1240
|
+
}
|
1241
|
+
.fa-linux:before {
|
1242
|
+
content: "\f17c";
|
1243
|
+
}
|
1244
|
+
.fa-dribbble:before {
|
1245
|
+
content: "\f17d";
|
1246
|
+
}
|
1247
|
+
.fa-skype:before {
|
1248
|
+
content: "\f17e";
|
1249
|
+
}
|
1250
|
+
.fa-foursquare:before {
|
1251
|
+
content: "\f180";
|
1252
|
+
}
|
1253
|
+
.fa-trello:before {
|
1254
|
+
content: "\f181";
|
1255
|
+
}
|
1256
|
+
.fa-female:before {
|
1257
|
+
content: "\f182";
|
1258
|
+
}
|
1259
|
+
.fa-male:before {
|
1260
|
+
content: "\f183";
|
1261
|
+
}
|
1262
|
+
.fa-gittip:before {
|
1263
|
+
content: "\f184";
|
1264
|
+
}
|
1265
|
+
.fa-sun-o:before {
|
1266
|
+
content: "\f185";
|
1267
|
+
}
|
1268
|
+
.fa-moon-o:before {
|
1269
|
+
content: "\f186";
|
1270
|
+
}
|
1271
|
+
.fa-archive:before {
|
1272
|
+
content: "\f187";
|
1273
|
+
}
|
1274
|
+
.fa-bug:before {
|
1275
|
+
content: "\f188";
|
1276
|
+
}
|
1277
|
+
.fa-vk:before {
|
1278
|
+
content: "\f189";
|
1279
|
+
}
|
1280
|
+
.fa-weibo:before {
|
1281
|
+
content: "\f18a";
|
1282
|
+
}
|
1283
|
+
.fa-renren:before {
|
1284
|
+
content: "\f18b";
|
1285
|
+
}
|
1286
|
+
.fa-pagelines:before {
|
1287
|
+
content: "\f18c";
|
1288
|
+
}
|
1289
|
+
.fa-stack-exchange:before {
|
1290
|
+
content: "\f18d";
|
1291
|
+
}
|
1292
|
+
.fa-arrow-circle-o-right:before {
|
1293
|
+
content: "\f18e";
|
1294
|
+
}
|
1295
|
+
.fa-arrow-circle-o-left:before {
|
1296
|
+
content: "\f190";
|
1297
|
+
}
|
1298
|
+
.fa-toggle-left:before,
|
1299
|
+
.fa-caret-square-o-left:before {
|
1300
|
+
content: "\f191";
|
1301
|
+
}
|
1302
|
+
.fa-dot-circle-o:before {
|
1303
|
+
content: "\f192";
|
1304
|
+
}
|
1305
|
+
.fa-wheelchair:before {
|
1306
|
+
content: "\f193";
|
1307
|
+
}
|
1308
|
+
.fa-vimeo-square:before {
|
1309
|
+
content: "\f194";
|
1310
|
+
}
|
1311
|
+
.fa-turkish-lira:before,
|
1312
|
+
.fa-try:before {
|
1313
|
+
content: "\f195";
|
1314
|
+
}
|
1315
|
+
.fa-plus-square-o:before {
|
1316
|
+
content: "\f196";
|
1317
|
+
}
|
1318
|
+
.fa-space-shuttle:before {
|
1319
|
+
content: "\f197";
|
1320
|
+
}
|
1321
|
+
.fa-slack:before {
|
1322
|
+
content: "\f198";
|
1323
|
+
}
|
1324
|
+
.fa-envelope-square:before {
|
1325
|
+
content: "\f199";
|
1326
|
+
}
|
1327
|
+
.fa-wordpress:before {
|
1328
|
+
content: "\f19a";
|
1329
|
+
}
|
1330
|
+
.fa-openid:before {
|
1331
|
+
content: "\f19b";
|
1332
|
+
}
|
1333
|
+
.fa-institution:before,
|
1334
|
+
.fa-bank:before,
|
1335
|
+
.fa-university:before {
|
1336
|
+
content: "\f19c";
|
1337
|
+
}
|
1338
|
+
.fa-mortar-board:before,
|
1339
|
+
.fa-graduation-cap:before {
|
1340
|
+
content: "\f19d";
|
1341
|
+
}
|
1342
|
+
.fa-yahoo:before {
|
1343
|
+
content: "\f19e";
|
1344
|
+
}
|
1345
|
+
.fa-google:before {
|
1346
|
+
content: "\f1a0";
|
1347
|
+
}
|
1348
|
+
.fa-reddit:before {
|
1349
|
+
content: "\f1a1";
|
1350
|
+
}
|
1351
|
+
.fa-reddit-square:before {
|
1352
|
+
content: "\f1a2";
|
1353
|
+
}
|
1354
|
+
.fa-stumbleupon-circle:before {
|
1355
|
+
content: "\f1a3";
|
1356
|
+
}
|
1357
|
+
.fa-stumbleupon:before {
|
1358
|
+
content: "\f1a4";
|
1359
|
+
}
|
1360
|
+
.fa-delicious:before {
|
1361
|
+
content: "\f1a5";
|
1362
|
+
}
|
1363
|
+
.fa-digg:before {
|
1364
|
+
content: "\f1a6";
|
1365
|
+
}
|
1366
|
+
.fa-pied-piper:before {
|
1367
|
+
content: "\f1a7";
|
1368
|
+
}
|
1369
|
+
.fa-pied-piper-alt:before {
|
1370
|
+
content: "\f1a8";
|
1371
|
+
}
|
1372
|
+
.fa-drupal:before {
|
1373
|
+
content: "\f1a9";
|
1374
|
+
}
|
1375
|
+
.fa-joomla:before {
|
1376
|
+
content: "\f1aa";
|
1377
|
+
}
|
1378
|
+
.fa-language:before {
|
1379
|
+
content: "\f1ab";
|
1380
|
+
}
|
1381
|
+
.fa-fax:before {
|
1382
|
+
content: "\f1ac";
|
1383
|
+
}
|
1384
|
+
.fa-building:before {
|
1385
|
+
content: "\f1ad";
|
1386
|
+
}
|
1387
|
+
.fa-child:before {
|
1388
|
+
content: "\f1ae";
|
1389
|
+
}
|
1390
|
+
.fa-paw:before {
|
1391
|
+
content: "\f1b0";
|
1392
|
+
}
|
1393
|
+
.fa-spoon:before {
|
1394
|
+
content: "\f1b1";
|
1395
|
+
}
|
1396
|
+
.fa-cube:before {
|
1397
|
+
content: "\f1b2";
|
1398
|
+
}
|
1399
|
+
.fa-cubes:before {
|
1400
|
+
content: "\f1b3";
|
1401
|
+
}
|
1402
|
+
.fa-behance:before {
|
1403
|
+
content: "\f1b4";
|
1404
|
+
}
|
1405
|
+
.fa-behance-square:before {
|
1406
|
+
content: "\f1b5";
|
1407
|
+
}
|
1408
|
+
.fa-steam:before {
|
1409
|
+
content: "\f1b6";
|
1410
|
+
}
|
1411
|
+
.fa-steam-square:before {
|
1412
|
+
content: "\f1b7";
|
1413
|
+
}
|
1414
|
+
.fa-recycle:before {
|
1415
|
+
content: "\f1b8";
|
1416
|
+
}
|
1417
|
+
.fa-automobile:before,
|
1418
|
+
.fa-car:before {
|
1419
|
+
content: "\f1b9";
|
1420
|
+
}
|
1421
|
+
.fa-cab:before,
|
1422
|
+
.fa-taxi:before {
|
1423
|
+
content: "\f1ba";
|
1424
|
+
}
|
1425
|
+
.fa-tree:before {
|
1426
|
+
content: "\f1bb";
|
1427
|
+
}
|
1428
|
+
.fa-spotify:before {
|
1429
|
+
content: "\f1bc";
|
1430
|
+
}
|
1431
|
+
.fa-deviantart:before {
|
1432
|
+
content: "\f1bd";
|
1433
|
+
}
|
1434
|
+
.fa-soundcloud:before {
|
1435
|
+
content: "\f1be";
|
1436
|
+
}
|
1437
|
+
.fa-database:before {
|
1438
|
+
content: "\f1c0";
|
1439
|
+
}
|
1440
|
+
.fa-file-pdf-o:before {
|
1441
|
+
content: "\f1c1";
|
1442
|
+
}
|
1443
|
+
.fa-file-word-o:before {
|
1444
|
+
content: "\f1c2";
|
1445
|
+
}
|
1446
|
+
.fa-file-excel-o:before {
|
1447
|
+
content: "\f1c3";
|
1448
|
+
}
|
1449
|
+
.fa-file-powerpoint-o:before {
|
1450
|
+
content: "\f1c4";
|
1451
|
+
}
|
1452
|
+
.fa-file-photo-o:before,
|
1453
|
+
.fa-file-picture-o:before,
|
1454
|
+
.fa-file-image-o:before {
|
1455
|
+
content: "\f1c5";
|
1456
|
+
}
|
1457
|
+
.fa-file-zip-o:before,
|
1458
|
+
.fa-file-archive-o:before {
|
1459
|
+
content: "\f1c6";
|
1460
|
+
}
|
1461
|
+
.fa-file-sound-o:before,
|
1462
|
+
.fa-file-audio-o:before {
|
1463
|
+
content: "\f1c7";
|
1464
|
+
}
|
1465
|
+
.fa-file-movie-o:before,
|
1466
|
+
.fa-file-video-o:before {
|
1467
|
+
content: "\f1c8";
|
1468
|
+
}
|
1469
|
+
.fa-file-code-o:before {
|
1470
|
+
content: "\f1c9";
|
1471
|
+
}
|
1472
|
+
.fa-vine:before {
|
1473
|
+
content: "\f1ca";
|
1474
|
+
}
|
1475
|
+
.fa-codepen:before {
|
1476
|
+
content: "\f1cb";
|
1477
|
+
}
|
1478
|
+
.fa-jsfiddle:before {
|
1479
|
+
content: "\f1cc";
|
1480
|
+
}
|
1481
|
+
.fa-life-bouy:before,
|
1482
|
+
.fa-life-buoy:before,
|
1483
|
+
.fa-life-saver:before,
|
1484
|
+
.fa-support:before,
|
1485
|
+
.fa-life-ring:before {
|
1486
|
+
content: "\f1cd";
|
1487
|
+
}
|
1488
|
+
.fa-circle-o-notch:before {
|
1489
|
+
content: "\f1ce";
|
1490
|
+
}
|
1491
|
+
.fa-ra:before,
|
1492
|
+
.fa-rebel:before {
|
1493
|
+
content: "\f1d0";
|
1494
|
+
}
|
1495
|
+
.fa-ge:before,
|
1496
|
+
.fa-empire:before {
|
1497
|
+
content: "\f1d1";
|
1498
|
+
}
|
1499
|
+
.fa-git-square:before {
|
1500
|
+
content: "\f1d2";
|
1501
|
+
}
|
1502
|
+
.fa-git:before {
|
1503
|
+
content: "\f1d3";
|
1504
|
+
}
|
1505
|
+
.fa-hacker-news:before {
|
1506
|
+
content: "\f1d4";
|
1507
|
+
}
|
1508
|
+
.fa-tencent-weibo:before {
|
1509
|
+
content: "\f1d5";
|
1510
|
+
}
|
1511
|
+
.fa-qq:before {
|
1512
|
+
content: "\f1d6";
|
1513
|
+
}
|
1514
|
+
.fa-wechat:before,
|
1515
|
+
.fa-weixin:before {
|
1516
|
+
content: "\f1d7";
|
1517
|
+
}
|
1518
|
+
.fa-send:before,
|
1519
|
+
.fa-paper-plane:before {
|
1520
|
+
content: "\f1d8";
|
1521
|
+
}
|
1522
|
+
.fa-send-o:before,
|
1523
|
+
.fa-paper-plane-o:before {
|
1524
|
+
content: "\f1d9";
|
1525
|
+
}
|
1526
|
+
.fa-history:before {
|
1527
|
+
content: "\f1da";
|
1528
|
+
}
|
1529
|
+
.fa-circle-thin:before {
|
1530
|
+
content: "\f1db";
|
1531
|
+
}
|
1532
|
+
.fa-header:before {
|
1533
|
+
content: "\f1dc";
|
1534
|
+
}
|
1535
|
+
.fa-paragraph:before {
|
1536
|
+
content: "\f1dd";
|
1537
|
+
}
|
1538
|
+
.fa-sliders:before {
|
1539
|
+
content: "\f1de";
|
1540
|
+
}
|
1541
|
+
.fa-share-alt:before {
|
1542
|
+
content: "\f1e0";
|
1543
|
+
}
|
1544
|
+
.fa-share-alt-square:before {
|
1545
|
+
content: "\f1e1";
|
1546
|
+
}
|
1547
|
+
.fa-bomb:before {
|
1548
|
+
content: "\f1e2";
|
1549
|
+
}
|
1550
|
+
.fa-soccer-ball-o:before,
|
1551
|
+
.fa-futbol-o:before {
|
1552
|
+
content: "\f1e3";
|
1553
|
+
}
|
1554
|
+
.fa-tty:before {
|
1555
|
+
content: "\f1e4";
|
1556
|
+
}
|
1557
|
+
.fa-binoculars:before {
|
1558
|
+
content: "\f1e5";
|
1559
|
+
}
|
1560
|
+
.fa-plug:before {
|
1561
|
+
content: "\f1e6";
|
1562
|
+
}
|
1563
|
+
.fa-slideshare:before {
|
1564
|
+
content: "\f1e7";
|
1565
|
+
}
|
1566
|
+
.fa-twitch:before {
|
1567
|
+
content: "\f1e8";
|
1568
|
+
}
|
1569
|
+
.fa-yelp:before {
|
1570
|
+
content: "\f1e9";
|
1571
|
+
}
|
1572
|
+
.fa-newspaper-o:before {
|
1573
|
+
content: "\f1ea";
|
1574
|
+
}
|
1575
|
+
.fa-wifi:before {
|
1576
|
+
content: "\f1eb";
|
1577
|
+
}
|
1578
|
+
.fa-calculator:before {
|
1579
|
+
content: "\f1ec";
|
1580
|
+
}
|
1581
|
+
.fa-paypal:before {
|
1582
|
+
content: "\f1ed";
|
1583
|
+
}
|
1584
|
+
.fa-google-wallet:before {
|
1585
|
+
content: "\f1ee";
|
1586
|
+
}
|
1587
|
+
.fa-cc-visa:before {
|
1588
|
+
content: "\f1f0";
|
1589
|
+
}
|
1590
|
+
.fa-cc-mastercard:before {
|
1591
|
+
content: "\f1f1";
|
1592
|
+
}
|
1593
|
+
.fa-cc-discover:before {
|
1594
|
+
content: "\f1f2";
|
1595
|
+
}
|
1596
|
+
.fa-cc-amex:before {
|
1597
|
+
content: "\f1f3";
|
1598
|
+
}
|
1599
|
+
.fa-cc-paypal:before {
|
1600
|
+
content: "\f1f4";
|
1601
|
+
}
|
1602
|
+
.fa-cc-stripe:before {
|
1603
|
+
content: "\f1f5";
|
1604
|
+
}
|
1605
|
+
.fa-bell-slash:before {
|
1606
|
+
content: "\f1f6";
|
1607
|
+
}
|
1608
|
+
.fa-bell-slash-o:before {
|
1609
|
+
content: "\f1f7";
|
1610
|
+
}
|
1611
|
+
.fa-trash:before {
|
1612
|
+
content: "\f1f8";
|
1613
|
+
}
|
1614
|
+
.fa-copyright:before {
|
1615
|
+
content: "\f1f9";
|
1616
|
+
}
|
1617
|
+
.fa-at:before {
|
1618
|
+
content: "\f1fa";
|
1619
|
+
}
|
1620
|
+
.fa-eyedropper:before {
|
1621
|
+
content: "\f1fb";
|
1622
|
+
}
|
1623
|
+
.fa-paint-brush:before {
|
1624
|
+
content: "\f1fc";
|
1625
|
+
}
|
1626
|
+
.fa-birthday-cake:before {
|
1627
|
+
content: "\f1fd";
|
1628
|
+
}
|
1629
|
+
.fa-area-chart:before {
|
1630
|
+
content: "\f1fe";
|
1631
|
+
}
|
1632
|
+
.fa-pie-chart:before {
|
1633
|
+
content: "\f200";
|
1634
|
+
}
|
1635
|
+
.fa-line-chart:before {
|
1636
|
+
content: "\f201";
|
1637
|
+
}
|
1638
|
+
.fa-lastfm:before {
|
1639
|
+
content: "\f202";
|
1640
|
+
}
|
1641
|
+
.fa-lastfm-square:before {
|
1642
|
+
content: "\f203";
|
1643
|
+
}
|
1644
|
+
.fa-toggle-off:before {
|
1645
|
+
content: "\f204";
|
1646
|
+
}
|
1647
|
+
.fa-toggle-on:before {
|
1648
|
+
content: "\f205";
|
1649
|
+
}
|
1650
|
+
.fa-bicycle:before {
|
1651
|
+
content: "\f206";
|
1652
|
+
}
|
1653
|
+
.fa-bus:before {
|
1654
|
+
content: "\f207";
|
1655
|
+
}
|
1656
|
+
.fa-ioxhost:before {
|
1657
|
+
content: "\f208";
|
1658
|
+
}
|
1659
|
+
.fa-angellist:before {
|
1660
|
+
content: "\f209";
|
1661
|
+
}
|
1662
|
+
.fa-cc:before {
|
1663
|
+
content: "\f20a";
|
1664
|
+
}
|
1665
|
+
.fa-shekel:before,
|
1666
|
+
.fa-sheqel:before,
|
1667
|
+
.fa-ils:before {
|
1668
|
+
content: "\f20b";
|
1669
|
+
}
|
1670
|
+
.fa-meanpath:before {
|
1671
|
+
content: "\f20c";
|
1672
|
+
}
|