lurker 0.5.4 → 0.5.5

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