robeaux 0.0.4 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +14 -0
  3. data/{README.md → README.markdown} +22 -35
  4. data/css/normalize.css +425 -0
  5. data/css/style.css +469 -0
  6. data/css/themes/artoo.css +3 -0
  7. data/css/themes/cylon.css +3 -0
  8. data/css/themes/gobot.css +3 -0
  9. data/index.html +29 -36
  10. data/js/app.js +1 -0
  11. data/js/controllers/device_commands_ctrl.js +81 -0
  12. data/js/controllers/device_events_ctrl.js +31 -0
  13. data/js/controllers/index_ctrl.js +9 -0
  14. data/js/controllers/nav_ctrl.js +5 -0
  15. data/js/controllers/robot_commands_ctrl.js +34 -0
  16. data/js/controllers/robot_ctrl.js +25 -0
  17. data/js/controllers/themes_ctrl.js +36 -0
  18. data/js/router.js +22 -0
  19. data/js/services/themes.js +86 -0
  20. data/js/vendor/angular-route.min.js +14 -0
  21. data/js/vendor/angular.min.js +210 -0
  22. data/package.json +6 -9
  23. data/partials/device.html +67 -0
  24. data/partials/index.html +11 -0
  25. data/partials/robot.html +74 -0
  26. data/partials/themes.html +31 -21
  27. data/robeaux.gemspec +1 -1
  28. metadata +25 -22
  29. data/fonts/FontAwesome.otf +0 -0
  30. data/fonts/fontawesome-webfont.eot +0 -0
  31. data/fonts/fontawesome-webfont.svg +0 -414
  32. data/fonts/fontawesome-webfont.ttf +0 -0
  33. data/fonts/fontawesome-webfont.woff +0 -0
  34. data/javascripts/app.js +0 -219
  35. data/javascripts/vendor/angular-route.min.js +0 -14
  36. data/javascripts/vendor/angular.min.js +0 -202
  37. data/javascripts/vendor/bootstrap.min.js +0 -6
  38. data/javascripts/vendor/jquery.min.js +0 -4
  39. data/partials/robot-detail.html +0 -141
  40. data/partials/robot-index.html +0 -27
  41. data/stylesheets/bootstrap.css +0 -5780
  42. data/stylesheets/font-awesome.css +0 -1338
  43. data/stylesheets/style.css +0 -177
  44. data/stylesheets/themes/dark.css +0 -106
  45. data/stylesheets/themes/default.css +0 -73
  46. data/stylesheets/themes/flat.css +0 -164
@@ -1,1338 +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
- /* FONT PATH
6
- * -------------------------- */
7
- @font-face {
8
- font-family: 'FontAwesome';
9
- src: url('/fonts/fontawesome-webfont.eot');
10
- src: url('/fonts/fontawesome-webfont.eot') format('embedded-opentype'), url('/fonts/fontawesome-webfont.woff') format('woff'), url('/fonts/fontawesome-webfont.ttf') format('truetype'), url('/fonts/fontawesome-webfont.svg') format('svg');
11
- font-weight: normal;
12
- font-style: normal;
13
- }
14
- .fa {
15
- display: inline-block;
16
- font-family: FontAwesome;
17
- font-style: normal;
18
- font-weight: normal;
19
- line-height: 1;
20
- -webkit-font-smoothing: antialiased;
21
- -moz-osx-font-smoothing: grayscale;
22
- }
23
- /* makes the font 33% larger relative to the icon container */
24
- .fa-lg {
25
- font-size: 1.3333333333333333em;
26
- line-height: 0.75em;
27
- vertical-align: -15%;
28
- }
29
- .fa-2x {
30
- font-size: 2em;
31
- }
32
- .fa-3x {
33
- font-size: 3em;
34
- }
35
- .fa-4x {
36
- font-size: 4em;
37
- }
38
- .fa-5x {
39
- font-size: 5em;
40
- }
41
- .fa-fw {
42
- width: 1.2857142857142858em;
43
- text-align: center;
44
- }
45
- .fa-ul {
46
- padding-left: 0;
47
- margin-left: 2.142857142857143em;
48
- list-style-type: none;
49
- }
50
- .fa-ul > li {
51
- position: relative;
52
- }
53
- .fa-li {
54
- position: absolute;
55
- left: -2.142857142857143em;
56
- width: 2.142857142857143em;
57
- top: 0.14285714285714285em;
58
- text-align: center;
59
- }
60
- .fa-li.fa-lg {
61
- left: -1.8571428571428572em;
62
- }
63
- .fa-border {
64
- padding: .2em .25em .15em;
65
- border: solid 0.08em #eeeeee;
66
- border-radius: .1em;
67
- }
68
- .pull-right {
69
- float: right;
70
- }
71
- .pull-left {
72
- float: left;
73
- }
74
- .fa.pull-left {
75
- margin-right: .3em;
76
- }
77
- .fa.pull-right {
78
- margin-left: .3em;
79
- }
80
- .fa-spin {
81
- -webkit-animation: spin 2s infinite linear;
82
- -moz-animation: spin 2s infinite linear;
83
- -o-animation: spin 2s infinite linear;
84
- animation: spin 2s infinite linear;
85
- }
86
- @-moz-keyframes spin {
87
- 0% {
88
- -moz-transform: rotate(0deg);
89
- }
90
- 100% {
91
- -moz-transform: rotate(359deg);
92
- }
93
- }
94
- @-webkit-keyframes spin {
95
- 0% {
96
- -webkit-transform: rotate(0deg);
97
- }
98
- 100% {
99
- -webkit-transform: rotate(359deg);
100
- }
101
- }
102
- @-o-keyframes spin {
103
- 0% {
104
- -o-transform: rotate(0deg);
105
- }
106
- 100% {
107
- -o-transform: rotate(359deg);
108
- }
109
- }
110
- @-ms-keyframes spin {
111
- 0% {
112
- -ms-transform: rotate(0deg);
113
- }
114
- 100% {
115
- -ms-transform: rotate(359deg);
116
- }
117
- }
118
- @keyframes spin {
119
- 0% {
120
- transform: rotate(0deg);
121
- }
122
- 100% {
123
- transform: rotate(359deg);
124
- }
125
- }
126
- .fa-rotate-90 {
127
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
128
- -webkit-transform: rotate(90deg);
129
- -moz-transform: rotate(90deg);
130
- -ms-transform: rotate(90deg);
131
- -o-transform: rotate(90deg);
132
- transform: rotate(90deg);
133
- }
134
- .fa-rotate-180 {
135
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
136
- -webkit-transform: rotate(180deg);
137
- -moz-transform: rotate(180deg);
138
- -ms-transform: rotate(180deg);
139
- -o-transform: rotate(180deg);
140
- transform: rotate(180deg);
141
- }
142
- .fa-rotate-270 {
143
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
144
- -webkit-transform: rotate(270deg);
145
- -moz-transform: rotate(270deg);
146
- -ms-transform: rotate(270deg);
147
- -o-transform: rotate(270deg);
148
- transform: rotate(270deg);
149
- }
150
- .fa-flip-horizontal {
151
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
152
- -webkit-transform: scale(-1, 1);
153
- -moz-transform: scale(-1, 1);
154
- -ms-transform: scale(-1, 1);
155
- -o-transform: scale(-1, 1);
156
- transform: scale(-1, 1);
157
- }
158
- .fa-flip-vertical {
159
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
160
- -webkit-transform: scale(1, -1);
161
- -moz-transform: scale(1, -1);
162
- -ms-transform: scale(1, -1);
163
- -o-transform: scale(1, -1);
164
- transform: scale(1, -1);
165
- }
166
- .fa-stack {
167
- position: relative;
168
- display: inline-block;
169
- width: 2em;
170
- height: 2em;
171
- line-height: 2em;
172
- vertical-align: middle;
173
- }
174
- .fa-stack-1x,
175
- .fa-stack-2x {
176
- position: absolute;
177
- left: 0;
178
- width: 100%;
179
- text-align: center;
180
- }
181
- .fa-stack-1x {
182
- line-height: inherit;
183
- }
184
- .fa-stack-2x {
185
- font-size: 2em;
186
- }
187
- .fa-inverse {
188
- color: #ffffff;
189
- }
190
- /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
191
- readers do not read off random characters that represent icons */
192
- .fa-glass:before {
193
- content: "\f000";
194
- }
195
- .fa-music:before {
196
- content: "\f001";
197
- }
198
- .fa-search:before {
199
- content: "\f002";
200
- }
201
- .fa-envelope-o:before {
202
- content: "\f003";
203
- }
204
- .fa-heart:before {
205
- content: "\f004";
206
- }
207
- .fa-star:before {
208
- content: "\f005";
209
- }
210
- .fa-star-o:before {
211
- content: "\f006";
212
- }
213
- .fa-user:before {
214
- content: "\f007";
215
- }
216
- .fa-film:before {
217
- content: "\f008";
218
- }
219
- .fa-th-large:before {
220
- content: "\f009";
221
- }
222
- .fa-th:before {
223
- content: "\f00a";
224
- }
225
- .fa-th-list:before {
226
- content: "\f00b";
227
- }
228
- .fa-check:before {
229
- content: "\f00c";
230
- }
231
- .fa-times:before {
232
- content: "\f00d";
233
- }
234
- .fa-search-plus:before {
235
- content: "\f00e";
236
- }
237
- .fa-search-minus:before {
238
- content: "\f010";
239
- }
240
- .fa-power-off:before {
241
- content: "\f011";
242
- }
243
- .fa-signal:before {
244
- content: "\f012";
245
- }
246
- .fa-gear:before,
247
- .fa-cog:before {
248
- content: "\f013";
249
- }
250
- .fa-trash-o:before {
251
- content: "\f014";
252
- }
253
- .fa-home:before {
254
- content: "\f015";
255
- }
256
- .fa-file-o:before {
257
- content: "\f016";
258
- }
259
- .fa-clock-o:before {
260
- content: "\f017";
261
- }
262
- .fa-road:before {
263
- content: "\f018";
264
- }
265
- .fa-download:before {
266
- content: "\f019";
267
- }
268
- .fa-arrow-circle-o-down:before {
269
- content: "\f01a";
270
- }
271
- .fa-arrow-circle-o-up:before {
272
- content: "\f01b";
273
- }
274
- .fa-inbox:before {
275
- content: "\f01c";
276
- }
277
- .fa-play-circle-o:before {
278
- content: "\f01d";
279
- }
280
- .fa-rotate-right:before,
281
- .fa-repeat:before {
282
- content: "\f01e";
283
- }
284
- .fa-refresh:before {
285
- content: "\f021";
286
- }
287
- .fa-list-alt:before {
288
- content: "\f022";
289
- }
290
- .fa-lock:before {
291
- content: "\f023";
292
- }
293
- .fa-flag:before {
294
- content: "\f024";
295
- }
296
- .fa-headphones:before {
297
- content: "\f025";
298
- }
299
- .fa-volume-off:before {
300
- content: "\f026";
301
- }
302
- .fa-volume-down:before {
303
- content: "\f027";
304
- }
305
- .fa-volume-up:before {
306
- content: "\f028";
307
- }
308
- .fa-qrcode:before {
309
- content: "\f029";
310
- }
311
- .fa-barcode:before {
312
- content: "\f02a";
313
- }
314
- .fa-tag:before {
315
- content: "\f02b";
316
- }
317
- .fa-tags:before {
318
- content: "\f02c";
319
- }
320
- .fa-book:before {
321
- content: "\f02d";
322
- }
323
- .fa-bookmark:before {
324
- content: "\f02e";
325
- }
326
- .fa-print:before {
327
- content: "\f02f";
328
- }
329
- .fa-camera:before {
330
- content: "\f030";
331
- }
332
- .fa-font:before {
333
- content: "\f031";
334
- }
335
- .fa-bold:before {
336
- content: "\f032";
337
- }
338
- .fa-italic:before {
339
- content: "\f033";
340
- }
341
- .fa-text-height:before {
342
- content: "\f034";
343
- }
344
- .fa-text-width:before {
345
- content: "\f035";
346
- }
347
- .fa-align-left:before {
348
- content: "\f036";
349
- }
350
- .fa-align-center:before {
351
- content: "\f037";
352
- }
353
- .fa-align-right:before {
354
- content: "\f038";
355
- }
356
- .fa-align-justify:before {
357
- content: "\f039";
358
- }
359
- .fa-list:before {
360
- content: "\f03a";
361
- }
362
- .fa-dedent:before,
363
- .fa-outdent:before {
364
- content: "\f03b";
365
- }
366
- .fa-indent:before {
367
- content: "\f03c";
368
- }
369
- .fa-video-camera:before {
370
- content: "\f03d";
371
- }
372
- .fa-picture-o:before {
373
- content: "\f03e";
374
- }
375
- .fa-pencil:before {
376
- content: "\f040";
377
- }
378
- .fa-map-marker:before {
379
- content: "\f041";
380
- }
381
- .fa-adjust:before {
382
- content: "\f042";
383
- }
384
- .fa-tint:before {
385
- content: "\f043";
386
- }
387
- .fa-edit:before,
388
- .fa-pencil-square-o:before {
389
- content: "\f044";
390
- }
391
- .fa-share-square-o:before {
392
- content: "\f045";
393
- }
394
- .fa-check-square-o:before {
395
- content: "\f046";
396
- }
397
- .fa-arrows:before {
398
- content: "\f047";
399
- }
400
- .fa-step-backward:before {
401
- content: "\f048";
402
- }
403
- .fa-fast-backward:before {
404
- content: "\f049";
405
- }
406
- .fa-backward:before {
407
- content: "\f04a";
408
- }
409
- .fa-play:before {
410
- content: "\f04b";
411
- }
412
- .fa-pause:before {
413
- content: "\f04c";
414
- }
415
- .fa-stop:before {
416
- content: "\f04d";
417
- }
418
- .fa-forward:before {
419
- content: "\f04e";
420
- }
421
- .fa-fast-forward:before {
422
- content: "\f050";
423
- }
424
- .fa-step-forward:before {
425
- content: "\f051";
426
- }
427
- .fa-eject:before {
428
- content: "\f052";
429
- }
430
- .fa-chevron-left:before {
431
- content: "\f053";
432
- }
433
- .fa-chevron-right:before {
434
- content: "\f054";
435
- }
436
- .fa-plus-circle:before {
437
- content: "\f055";
438
- }
439
- .fa-minus-circle:before {
440
- content: "\f056";
441
- }
442
- .fa-times-circle:before {
443
- content: "\f057";
444
- }
445
- .fa-check-circle:before {
446
- content: "\f058";
447
- }
448
- .fa-question-circle:before {
449
- content: "\f059";
450
- }
451
- .fa-info-circle:before {
452
- content: "\f05a";
453
- }
454
- .fa-crosshairs:before {
455
- content: "\f05b";
456
- }
457
- .fa-times-circle-o:before {
458
- content: "\f05c";
459
- }
460
- .fa-check-circle-o:before {
461
- content: "\f05d";
462
- }
463
- .fa-ban:before {
464
- content: "\f05e";
465
- }
466
- .fa-arrow-left:before {
467
- content: "\f060";
468
- }
469
- .fa-arrow-right:before {
470
- content: "\f061";
471
- }
472
- .fa-arrow-up:before {
473
- content: "\f062";
474
- }
475
- .fa-arrow-down:before {
476
- content: "\f063";
477
- }
478
- .fa-mail-forward:before,
479
- .fa-share:before {
480
- content: "\f064";
481
- }
482
- .fa-expand:before {
483
- content: "\f065";
484
- }
485
- .fa-compress:before {
486
- content: "\f066";
487
- }
488
- .fa-plus:before {
489
- content: "\f067";
490
- }
491
- .fa-minus:before {
492
- content: "\f068";
493
- }
494
- .fa-asterisk:before {
495
- content: "\f069";
496
- }
497
- .fa-exclamation-circle:before {
498
- content: "\f06a";
499
- }
500
- .fa-gift:before {
501
- content: "\f06b";
502
- }
503
- .fa-leaf:before {
504
- content: "\f06c";
505
- }
506
- .fa-fire:before {
507
- content: "\f06d";
508
- }
509
- .fa-eye:before {
510
- content: "\f06e";
511
- }
512
- .fa-eye-slash:before {
513
- content: "\f070";
514
- }
515
- .fa-warning:before,
516
- .fa-exclamation-triangle:before {
517
- content: "\f071";
518
- }
519
- .fa-plane:before {
520
- content: "\f072";
521
- }
522
- .fa-calendar:before {
523
- content: "\f073";
524
- }
525
- .fa-random:before {
526
- content: "\f074";
527
- }
528
- .fa-comment:before {
529
- content: "\f075";
530
- }
531
- .fa-magnet:before {
532
- content: "\f076";
533
- }
534
- .fa-chevron-up:before {
535
- content: "\f077";
536
- }
537
- .fa-chevron-down:before {
538
- content: "\f078";
539
- }
540
- .fa-retweet:before {
541
- content: "\f079";
542
- }
543
- .fa-shopping-cart:before {
544
- content: "\f07a";
545
- }
546
- .fa-folder:before {
547
- content: "\f07b";
548
- }
549
- .fa-folder-open:before {
550
- content: "\f07c";
551
- }
552
- .fa-arrows-v:before {
553
- content: "\f07d";
554
- }
555
- .fa-arrows-h:before {
556
- content: "\f07e";
557
- }
558
- .fa-bar-chart-o:before {
559
- content: "\f080";
560
- }
561
- .fa-twitter-square:before {
562
- content: "\f081";
563
- }
564
- .fa-facebook-square:before {
565
- content: "\f082";
566
- }
567
- .fa-camera-retro:before {
568
- content: "\f083";
569
- }
570
- .fa-key:before {
571
- content: "\f084";
572
- }
573
- .fa-gears:before,
574
- .fa-cogs:before {
575
- content: "\f085";
576
- }
577
- .fa-comments:before {
578
- content: "\f086";
579
- }
580
- .fa-thumbs-o-up:before {
581
- content: "\f087";
582
- }
583
- .fa-thumbs-o-down:before {
584
- content: "\f088";
585
- }
586
- .fa-star-half:before {
587
- content: "\f089";
588
- }
589
- .fa-heart-o:before {
590
- content: "\f08a";
591
- }
592
- .fa-sign-out:before {
593
- content: "\f08b";
594
- }
595
- .fa-linkedin-square:before {
596
- content: "\f08c";
597
- }
598
- .fa-thumb-tack:before {
599
- content: "\f08d";
600
- }
601
- .fa-external-link:before {
602
- content: "\f08e";
603
- }
604
- .fa-sign-in:before {
605
- content: "\f090";
606
- }
607
- .fa-trophy:before {
608
- content: "\f091";
609
- }
610
- .fa-github-square:before {
611
- content: "\f092";
612
- }
613
- .fa-upload:before {
614
- content: "\f093";
615
- }
616
- .fa-lemon-o:before {
617
- content: "\f094";
618
- }
619
- .fa-phone:before {
620
- content: "\f095";
621
- }
622
- .fa-square-o:before {
623
- content: "\f096";
624
- }
625
- .fa-bookmark-o:before {
626
- content: "\f097";
627
- }
628
- .fa-phone-square:before {
629
- content: "\f098";
630
- }
631
- .fa-twitter:before {
632
- content: "\f099";
633
- }
634
- .fa-facebook:before {
635
- content: "\f09a";
636
- }
637
- .fa-github:before {
638
- content: "\f09b";
639
- }
640
- .fa-unlock:before {
641
- content: "\f09c";
642
- }
643
- .fa-credit-card:before {
644
- content: "\f09d";
645
- }
646
- .fa-rss:before {
647
- content: "\f09e";
648
- }
649
- .fa-hdd-o:before {
650
- content: "\f0a0";
651
- }
652
- .fa-bullhorn:before {
653
- content: "\f0a1";
654
- }
655
- .fa-bell:before {
656
- content: "\f0f3";
657
- }
658
- .fa-certificate:before {
659
- content: "\f0a3";
660
- }
661
- .fa-hand-o-right:before {
662
- content: "\f0a4";
663
- }
664
- .fa-hand-o-left:before {
665
- content: "\f0a5";
666
- }
667
- .fa-hand-o-up:before {
668
- content: "\f0a6";
669
- }
670
- .fa-hand-o-down:before {
671
- content: "\f0a7";
672
- }
673
- .fa-arrow-circle-left:before {
674
- content: "\f0a8";
675
- }
676
- .fa-arrow-circle-right:before {
677
- content: "\f0a9";
678
- }
679
- .fa-arrow-circle-up:before {
680
- content: "\f0aa";
681
- }
682
- .fa-arrow-circle-down:before {
683
- content: "\f0ab";
684
- }
685
- .fa-globe:before {
686
- content: "\f0ac";
687
- }
688
- .fa-wrench:before {
689
- content: "\f0ad";
690
- }
691
- .fa-tasks:before {
692
- content: "\f0ae";
693
- }
694
- .fa-filter:before {
695
- content: "\f0b0";
696
- }
697
- .fa-briefcase:before {
698
- content: "\f0b1";
699
- }
700
- .fa-arrows-alt:before {
701
- content: "\f0b2";
702
- }
703
- .fa-group:before,
704
- .fa-users:before {
705
- content: "\f0c0";
706
- }
707
- .fa-chain:before,
708
- .fa-link:before {
709
- content: "\f0c1";
710
- }
711
- .fa-cloud:before {
712
- content: "\f0c2";
713
- }
714
- .fa-flask:before {
715
- content: "\f0c3";
716
- }
717
- .fa-cut:before,
718
- .fa-scissors:before {
719
- content: "\f0c4";
720
- }
721
- .fa-copy:before,
722
- .fa-files-o:before {
723
- content: "\f0c5";
724
- }
725
- .fa-paperclip:before {
726
- content: "\f0c6";
727
- }
728
- .fa-save:before,
729
- .fa-floppy-o:before {
730
- content: "\f0c7";
731
- }
732
- .fa-square:before {
733
- content: "\f0c8";
734
- }
735
- .fa-bars:before {
736
- content: "\f0c9";
737
- }
738
- .fa-list-ul:before {
739
- content: "\f0ca";
740
- }
741
- .fa-list-ol:before {
742
- content: "\f0cb";
743
- }
744
- .fa-strikethrough:before {
745
- content: "\f0cc";
746
- }
747
- .fa-underline:before {
748
- content: "\f0cd";
749
- }
750
- .fa-table:before {
751
- content: "\f0ce";
752
- }
753
- .fa-magic:before {
754
- content: "\f0d0";
755
- }
756
- .fa-truck:before {
757
- content: "\f0d1";
758
- }
759
- .fa-pinterest:before {
760
- content: "\f0d2";
761
- }
762
- .fa-pinterest-square:before {
763
- content: "\f0d3";
764
- }
765
- .fa-google-plus-square:before {
766
- content: "\f0d4";
767
- }
768
- .fa-google-plus:before {
769
- content: "\f0d5";
770
- }
771
- .fa-money:before {
772
- content: "\f0d6";
773
- }
774
- .fa-caret-down:before {
775
- content: "\f0d7";
776
- }
777
- .fa-caret-up:before {
778
- content: "\f0d8";
779
- }
780
- .fa-caret-left:before {
781
- content: "\f0d9";
782
- }
783
- .fa-caret-right:before {
784
- content: "\f0da";
785
- }
786
- .fa-columns:before {
787
- content: "\f0db";
788
- }
789
- .fa-unsorted:before,
790
- .fa-sort:before {
791
- content: "\f0dc";
792
- }
793
- .fa-sort-down:before,
794
- .fa-sort-asc:before {
795
- content: "\f0dd";
796
- }
797
- .fa-sort-up:before,
798
- .fa-sort-desc:before {
799
- content: "\f0de";
800
- }
801
- .fa-envelope:before {
802
- content: "\f0e0";
803
- }
804
- .fa-linkedin:before {
805
- content: "\f0e1";
806
- }
807
- .fa-rotate-left:before,
808
- .fa-undo:before {
809
- content: "\f0e2";
810
- }
811
- .fa-legal:before,
812
- .fa-gavel:before {
813
- content: "\f0e3";
814
- }
815
- .fa-dashboard:before,
816
- .fa-tachometer:before {
817
- content: "\f0e4";
818
- }
819
- .fa-comment-o:before {
820
- content: "\f0e5";
821
- }
822
- .fa-comments-o:before {
823
- content: "\f0e6";
824
- }
825
- .fa-flash:before,
826
- .fa-bolt:before {
827
- content: "\f0e7";
828
- }
829
- .fa-sitemap:before {
830
- content: "\f0e8";
831
- }
832
- .fa-umbrella:before {
833
- content: "\f0e9";
834
- }
835
- .fa-paste:before,
836
- .fa-clipboard:before {
837
- content: "\f0ea";
838
- }
839
- .fa-lightbulb-o:before {
840
- content: "\f0eb";
841
- }
842
- .fa-exchange:before {
843
- content: "\f0ec";
844
- }
845
- .fa-cloud-download:before {
846
- content: "\f0ed";
847
- }
848
- .fa-cloud-upload:before {
849
- content: "\f0ee";
850
- }
851
- .fa-user-md:before {
852
- content: "\f0f0";
853
- }
854
- .fa-stethoscope:before {
855
- content: "\f0f1";
856
- }
857
- .fa-suitcase:before {
858
- content: "\f0f2";
859
- }
860
- .fa-bell-o:before {
861
- content: "\f0a2";
862
- }
863
- .fa-coffee:before {
864
- content: "\f0f4";
865
- }
866
- .fa-cutlery:before {
867
- content: "\f0f5";
868
- }
869
- .fa-file-text-o:before {
870
- content: "\f0f6";
871
- }
872
- .fa-building-o:before {
873
- content: "\f0f7";
874
- }
875
- .fa-hospital-o:before {
876
- content: "\f0f8";
877
- }
878
- .fa-ambulance:before {
879
- content: "\f0f9";
880
- }
881
- .fa-medkit:before {
882
- content: "\f0fa";
883
- }
884
- .fa-fighter-jet:before {
885
- content: "\f0fb";
886
- }
887
- .fa-beer:before {
888
- content: "\f0fc";
889
- }
890
- .fa-h-square:before {
891
- content: "\f0fd";
892
- }
893
- .fa-plus-square:before {
894
- content: "\f0fe";
895
- }
896
- .fa-angle-double-left:before {
897
- content: "\f100";
898
- }
899
- .fa-angle-double-right:before {
900
- content: "\f101";
901
- }
902
- .fa-angle-double-up:before {
903
- content: "\f102";
904
- }
905
- .fa-angle-double-down:before {
906
- content: "\f103";
907
- }
908
- .fa-angle-left:before {
909
- content: "\f104";
910
- }
911
- .fa-angle-right:before {
912
- content: "\f105";
913
- }
914
- .fa-angle-up:before {
915
- content: "\f106";
916
- }
917
- .fa-angle-down:before {
918
- content: "\f107";
919
- }
920
- .fa-desktop:before {
921
- content: "\f108";
922
- }
923
- .fa-laptop:before {
924
- content: "\f109";
925
- }
926
- .fa-tablet:before {
927
- content: "\f10a";
928
- }
929
- .fa-mobile-phone:before,
930
- .fa-mobile:before {
931
- content: "\f10b";
932
- }
933
- .fa-circle-o:before {
934
- content: "\f10c";
935
- }
936
- .fa-quote-left:before {
937
- content: "\f10d";
938
- }
939
- .fa-quote-right:before {
940
- content: "\f10e";
941
- }
942
- .fa-spinner:before {
943
- content: "\f110";
944
- }
945
- .fa-circle:before {
946
- content: "\f111";
947
- }
948
- .fa-mail-reply:before,
949
- .fa-reply:before {
950
- content: "\f112";
951
- }
952
- .fa-github-alt:before {
953
- content: "\f113";
954
- }
955
- .fa-folder-o:before {
956
- content: "\f114";
957
- }
958
- .fa-folder-open-o:before {
959
- content: "\f115";
960
- }
961
- .fa-smile-o:before {
962
- content: "\f118";
963
- }
964
- .fa-frown-o:before {
965
- content: "\f119";
966
- }
967
- .fa-meh-o:before {
968
- content: "\f11a";
969
- }
970
- .fa-gamepad:before {
971
- content: "\f11b";
972
- }
973
- .fa-keyboard-o:before {
974
- content: "\f11c";
975
- }
976
- .fa-flag-o:before {
977
- content: "\f11d";
978
- }
979
- .fa-flag-checkered:before {
980
- content: "\f11e";
981
- }
982
- .fa-terminal:before {
983
- content: "\f120";
984
- }
985
- .fa-code:before {
986
- content: "\f121";
987
- }
988
- .fa-reply-all:before {
989
- content: "\f122";
990
- }
991
- .fa-mail-reply-all:before {
992
- content: "\f122";
993
- }
994
- .fa-star-half-empty:before,
995
- .fa-star-half-full:before,
996
- .fa-star-half-o:before {
997
- content: "\f123";
998
- }
999
- .fa-location-arrow:before {
1000
- content: "\f124";
1001
- }
1002
- .fa-crop:before {
1003
- content: "\f125";
1004
- }
1005
- .fa-code-fork:before {
1006
- content: "\f126";
1007
- }
1008
- .fa-unlink:before,
1009
- .fa-chain-broken:before {
1010
- content: "\f127";
1011
- }
1012
- .fa-question:before {
1013
- content: "\f128";
1014
- }
1015
- .fa-info:before {
1016
- content: "\f129";
1017
- }
1018
- .fa-exclamation:before {
1019
- content: "\f12a";
1020
- }
1021
- .fa-superscript:before {
1022
- content: "\f12b";
1023
- }
1024
- .fa-subscript:before {
1025
- content: "\f12c";
1026
- }
1027
- .fa-eraser:before {
1028
- content: "\f12d";
1029
- }
1030
- .fa-puzzle-piece:before {
1031
- content: "\f12e";
1032
- }
1033
- .fa-microphone:before {
1034
- content: "\f130";
1035
- }
1036
- .fa-microphone-slash:before {
1037
- content: "\f131";
1038
- }
1039
- .fa-shield:before {
1040
- content: "\f132";
1041
- }
1042
- .fa-calendar-o:before {
1043
- content: "\f133";
1044
- }
1045
- .fa-fire-extinguisher:before {
1046
- content: "\f134";
1047
- }
1048
- .fa-rocket:before {
1049
- content: "\f135";
1050
- }
1051
- .fa-maxcdn:before {
1052
- content: "\f136";
1053
- }
1054
- .fa-chevron-circle-left:before {
1055
- content: "\f137";
1056
- }
1057
- .fa-chevron-circle-right:before {
1058
- content: "\f138";
1059
- }
1060
- .fa-chevron-circle-up:before {
1061
- content: "\f139";
1062
- }
1063
- .fa-chevron-circle-down:before {
1064
- content: "\f13a";
1065
- }
1066
- .fa-html5:before {
1067
- content: "\f13b";
1068
- }
1069
- .fa-css3:before {
1070
- content: "\f13c";
1071
- }
1072
- .fa-anchor:before {
1073
- content: "\f13d";
1074
- }
1075
- .fa-unlock-alt:before {
1076
- content: "\f13e";
1077
- }
1078
- .fa-bullseye:before {
1079
- content: "\f140";
1080
- }
1081
- .fa-ellipsis-h:before {
1082
- content: "\f141";
1083
- }
1084
- .fa-ellipsis-v:before {
1085
- content: "\f142";
1086
- }
1087
- .fa-rss-square:before {
1088
- content: "\f143";
1089
- }
1090
- .fa-play-circle:before {
1091
- content: "\f144";
1092
- }
1093
- .fa-ticket:before {
1094
- content: "\f145";
1095
- }
1096
- .fa-minus-square:before {
1097
- content: "\f146";
1098
- }
1099
- .fa-minus-square-o:before {
1100
- content: "\f147";
1101
- }
1102
- .fa-level-up:before {
1103
- content: "\f148";
1104
- }
1105
- .fa-level-down:before {
1106
- content: "\f149";
1107
- }
1108
- .fa-check-square:before {
1109
- content: "\f14a";
1110
- }
1111
- .fa-pencil-square:before {
1112
- content: "\f14b";
1113
- }
1114
- .fa-external-link-square:before {
1115
- content: "\f14c";
1116
- }
1117
- .fa-share-square:before {
1118
- content: "\f14d";
1119
- }
1120
- .fa-compass:before {
1121
- content: "\f14e";
1122
- }
1123
- .fa-toggle-down:before,
1124
- .fa-caret-square-o-down:before {
1125
- content: "\f150";
1126
- }
1127
- .fa-toggle-up:before,
1128
- .fa-caret-square-o-up:before {
1129
- content: "\f151";
1130
- }
1131
- .fa-toggle-right:before,
1132
- .fa-caret-square-o-right:before {
1133
- content: "\f152";
1134
- }
1135
- .fa-euro:before,
1136
- .fa-eur:before {
1137
- content: "\f153";
1138
- }
1139
- .fa-gbp:before {
1140
- content: "\f154";
1141
- }
1142
- .fa-dollar:before,
1143
- .fa-usd:before {
1144
- content: "\f155";
1145
- }
1146
- .fa-rupee:before,
1147
- .fa-inr:before {
1148
- content: "\f156";
1149
- }
1150
- .fa-cny:before,
1151
- .fa-rmb:before,
1152
- .fa-yen:before,
1153
- .fa-jpy:before {
1154
- content: "\f157";
1155
- }
1156
- .fa-ruble:before,
1157
- .fa-rouble:before,
1158
- .fa-rub:before {
1159
- content: "\f158";
1160
- }
1161
- .fa-won:before,
1162
- .fa-krw:before {
1163
- content: "\f159";
1164
- }
1165
- .fa-bitcoin:before,
1166
- .fa-btc:before {
1167
- content: "\f15a";
1168
- }
1169
- .fa-file:before {
1170
- content: "\f15b";
1171
- }
1172
- .fa-file-text:before {
1173
- content: "\f15c";
1174
- }
1175
- .fa-sort-alpha-asc:before {
1176
- content: "\f15d";
1177
- }
1178
- .fa-sort-alpha-desc:before {
1179
- content: "\f15e";
1180
- }
1181
- .fa-sort-amount-asc:before {
1182
- content: "\f160";
1183
- }
1184
- .fa-sort-amount-desc:before {
1185
- content: "\f161";
1186
- }
1187
- .fa-sort-numeric-asc:before {
1188
- content: "\f162";
1189
- }
1190
- .fa-sort-numeric-desc:before {
1191
- content: "\f163";
1192
- }
1193
- .fa-thumbs-up:before {
1194
- content: "\f164";
1195
- }
1196
- .fa-thumbs-down:before {
1197
- content: "\f165";
1198
- }
1199
- .fa-youtube-square:before {
1200
- content: "\f166";
1201
- }
1202
- .fa-youtube:before {
1203
- content: "\f167";
1204
- }
1205
- .fa-xing:before {
1206
- content: "\f168";
1207
- }
1208
- .fa-xing-square:before {
1209
- content: "\f169";
1210
- }
1211
- .fa-youtube-play:before {
1212
- content: "\f16a";
1213
- }
1214
- .fa-dropbox:before {
1215
- content: "\f16b";
1216
- }
1217
- .fa-stack-overflow:before {
1218
- content: "\f16c";
1219
- }
1220
- .fa-instagram:before {
1221
- content: "\f16d";
1222
- }
1223
- .fa-flickr:before {
1224
- content: "\f16e";
1225
- }
1226
- .fa-adn:before {
1227
- content: "\f170";
1228
- }
1229
- .fa-bitbucket:before {
1230
- content: "\f171";
1231
- }
1232
- .fa-bitbucket-square:before {
1233
- content: "\f172";
1234
- }
1235
- .fa-tumblr:before {
1236
- content: "\f173";
1237
- }
1238
- .fa-tumblr-square:before {
1239
- content: "\f174";
1240
- }
1241
- .fa-long-arrow-down:before {
1242
- content: "\f175";
1243
- }
1244
- .fa-long-arrow-up:before {
1245
- content: "\f176";
1246
- }
1247
- .fa-long-arrow-left:before {
1248
- content: "\f177";
1249
- }
1250
- .fa-long-arrow-right:before {
1251
- content: "\f178";
1252
- }
1253
- .fa-apple:before {
1254
- content: "\f179";
1255
- }
1256
- .fa-windows:before {
1257
- content: "\f17a";
1258
- }
1259
- .fa-android:before {
1260
- content: "\f17b";
1261
- }
1262
- .fa-linux:before {
1263
- content: "\f17c";
1264
- }
1265
- .fa-dribbble:before {
1266
- content: "\f17d";
1267
- }
1268
- .fa-skype:before {
1269
- content: "\f17e";
1270
- }
1271
- .fa-foursquare:before {
1272
- content: "\f180";
1273
- }
1274
- .fa-trello:before {
1275
- content: "\f181";
1276
- }
1277
- .fa-female:before {
1278
- content: "\f182";
1279
- }
1280
- .fa-male:before {
1281
- content: "\f183";
1282
- }
1283
- .fa-gittip:before {
1284
- content: "\f184";
1285
- }
1286
- .fa-sun-o:before {
1287
- content: "\f185";
1288
- }
1289
- .fa-moon-o:before {
1290
- content: "\f186";
1291
- }
1292
- .fa-archive:before {
1293
- content: "\f187";
1294
- }
1295
- .fa-bug:before {
1296
- content: "\f188";
1297
- }
1298
- .fa-vk:before {
1299
- content: "\f189";
1300
- }
1301
- .fa-weibo:before {
1302
- content: "\f18a";
1303
- }
1304
- .fa-renren:before {
1305
- content: "\f18b";
1306
- }
1307
- .fa-pagelines:before {
1308
- content: "\f18c";
1309
- }
1310
- .fa-stack-exchange:before {
1311
- content: "\f18d";
1312
- }
1313
- .fa-arrow-circle-o-right:before {
1314
- content: "\f18e";
1315
- }
1316
- .fa-arrow-circle-o-left:before {
1317
- content: "\f190";
1318
- }
1319
- .fa-toggle-left:before,
1320
- .fa-caret-square-o-left:before {
1321
- content: "\f191";
1322
- }
1323
- .fa-dot-circle-o:before {
1324
- content: "\f192";
1325
- }
1326
- .fa-wheelchair:before {
1327
- content: "\f193";
1328
- }
1329
- .fa-vimeo-square:before {
1330
- content: "\f194";
1331
- }
1332
- .fa-turkish-lira:before,
1333
- .fa-try:before {
1334
- content: "\f195";
1335
- }
1336
- .fa-plus-square-o:before {
1337
- content: "\f196";
1338
- }