jekyll-sharp-styleguide 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +382 -0
  4. data/_includes/blockquotes.html +4 -0
  5. data/_includes/buttons.html +16 -0
  6. data/_includes/codes.html +64 -0
  7. data/_includes/colors.html +36 -0
  8. data/_includes/columns.html +10 -0
  9. data/_includes/favicons.html +9 -0
  10. data/_includes/footer.html +7 -0
  11. data/_includes/header.html +10 -0
  12. data/_includes/headings.html +10 -0
  13. data/_includes/icons.html +1068 -0
  14. data/_includes/image.html +4 -0
  15. data/_includes/inputs.html +50 -0
  16. data/_includes/lightbox.html +8 -0
  17. data/_includes/lists.html +44 -0
  18. data/_includes/loader.html +5 -0
  19. data/_includes/paragraphs.html +7 -0
  20. data/_includes/scripts.html +5 -0
  21. data/_includes/tags.html +23 -0
  22. data/_layouts/default.html +1 -0
  23. data/_layouts/page.html +5 -0
  24. data/_layouts/post.html +5 -0
  25. data/_sass/_blockquotes.scss +15 -0
  26. data/_sass/_buttons.scss +37 -0
  27. data/_sass/_codes.scss +253 -0
  28. data/_sass/_colors.scss +24 -0
  29. data/_sass/_columns.scss +42 -0
  30. data/_sass/_content.scss +26 -0
  31. data/_sass/_footer.scss +7 -0
  32. data/_sass/_header.scss +37 -0
  33. data/_sass/_headings.scss +66 -0
  34. data/_sass/_helpers.scss +85 -0
  35. data/_sass/_icons.scss +865 -0
  36. data/_sass/_inputs.scss +116 -0
  37. data/_sass/_lightbox.scss +67 -0
  38. data/_sass/_lists.scss +94 -0
  39. data/_sass/_loader.scss +53 -0
  40. data/_sass/_paragraphs.scss +60 -0
  41. data/_sass/_reset.scss +50 -0
  42. data/_sass/_tags.scss +21 -0
  43. data/_sass/_tooltips.scss +56 -0
  44. data/_sass/_variables.scss +30 -0
  45. data/_sass/main.scss +21 -0
  46. data/assets/css/main.scss +4 -0
  47. data/assets/fonts/Feather.svg +276 -0
  48. data/assets/fonts/Feather.ttf +0 -0
  49. data/assets/fonts/Feather.woff +0 -0
  50. data/assets/img/favicons/android-chrome-192x192.png +0 -0
  51. data/assets/img/favicons/android-chrome-512x512.png +0 -0
  52. data/assets/img/favicons/apple-touch-icon.png +0 -0
  53. data/assets/img/favicons/browserconfig.xml +9 -0
  54. data/assets/img/favicons/favicon-16x16.png +0 -0
  55. data/assets/img/favicons/favicon-32x32.png +0 -0
  56. data/assets/img/favicons/favicon.ico +0 -0
  57. data/assets/img/favicons/mstile-150x150.png +0 -0
  58. data/assets/img/favicons/safari-pinned-tab.svg +25 -0
  59. data/assets/img/favicons/site.webmanifest +19 -0
  60. data/assets/img/header_bg.webp +0 -0
  61. data/assets/img/lightbox.jpg +0 -0
  62. data/assets/img/logo.png +0 -0
  63. data/assets/js/copycode.js +49 -0
  64. data/assets/js/loader.js +11 -0
  65. data/assets/js/main.js +60 -0
  66. data/assets/js/tooltip.js +492 -0
  67. metadata +123 -0
@@ -0,0 +1,1068 @@
1
+ <h3>Icons</h3>
2
+
3
+ <h6>Hover on icon to see the name</h6>
4
+ <ul class="icons-list">
5
+ <li>
6
+ <i class="feather-activity" title="feather-activity"></i>
7
+ </li>
8
+
9
+ <li>
10
+ <i class="feather-airplay" title="feather-airplay"></i>
11
+ </li>
12
+
13
+ <li>
14
+ <i class="feather-alert-circle" title="feather-alert-circle"></i>
15
+ </li>
16
+
17
+ <li>
18
+ <i class="feather-alert-octagon" title="feather-alert-octagon"></i>
19
+ </li>
20
+
21
+ <li>
22
+ <i class="feather-alert-triangle" title="feather-alert-triangle"></i>
23
+ </li>
24
+
25
+ <li>
26
+ <i class="feather-align-center" title="feather-align-center"></i>
27
+ </li>
28
+
29
+ <li>
30
+ <i class="feather-align-justify" title="feather-align-justify"></i>
31
+ </li>
32
+
33
+ <li>
34
+ <i class="feather-align-left" title="feather-align-left"></i>
35
+ </li>
36
+
37
+ <li>
38
+ <i class="feather-align-right" title="feather-align-right"></i>
39
+ </li>
40
+
41
+ <li>
42
+ <i class="feather-anchor" title="feather-anchor"></i>
43
+ </li>
44
+
45
+ <li>
46
+ <i class="feather-aperture" title="feather-aperture"></i>
47
+ </li>
48
+
49
+ <li>
50
+ <i class="feather-archive" title="feather-archive"></i>
51
+ </li>
52
+
53
+ <li>
54
+ <i class="feather-arrow-down" title="feather-arrow-down"></i>
55
+ </li>
56
+
57
+ <li>
58
+ <i class="feather-arrow-down-circle" title="feather-arrow-down-circle"></i>
59
+ </li>
60
+
61
+ <li>
62
+ <i class="feather-arrow-down-left" title="feather-arrow-down-left"></i>
63
+ </li>
64
+
65
+ <li>
66
+ <i class="feather-arrow-down-right" title="feather-arrow-down-right"></i>
67
+ </li>
68
+
69
+ <li>
70
+ <i class="feather-arrow-left" title="feather-arrow-left"></i>
71
+ </li>
72
+
73
+ <li>
74
+ <i class="feather-arrow-left-circle" title="feather-arrow-left-circle"></i>
75
+ </li>
76
+
77
+ <li>
78
+ <i class="feather-arrow-right" title="feather-arrow-right"></i>
79
+ </li>
80
+
81
+ <li>
82
+ <i class="feather-arrow-right-circle" title="feather-arrow-right-circle"></i>
83
+ </li>
84
+
85
+ <li>
86
+ <i class="feather-arrow-up" title="feather-arrow-up"></i>
87
+ </li>
88
+
89
+ <li>
90
+ <i class="feather-arrow-up-circle" title="feather-arrow-up-circle"></i>
91
+ </li>
92
+
93
+ <li>
94
+ <i class="feather-arrow-up-left" title="feather-arrow-up-left"></i>
95
+ </li>
96
+
97
+ <li>
98
+ <i class="feather-arrow-up-right" title="feather-arrow-up-right"></i>
99
+ </li>
100
+
101
+ <li>
102
+ <i class="feather-at-sign" title="feather-at-sign"></i>
103
+ </li>
104
+
105
+ <li>
106
+ <i class="feather-award" title="feather-award"></i>
107
+ </li>
108
+
109
+ <li>
110
+ <i class="feather-bar-chart" title="feather-bar-chart"></i>
111
+ </li>
112
+
113
+ <li>
114
+ <i class="feather-bar-chart-2" title="feather-bar-chart-2"></i>
115
+ </li>
116
+
117
+ <li>
118
+ <i class="feather-battery" title="feather-battery"></i>
119
+ </li>
120
+
121
+ <li>
122
+ <i class="feather-battery-charging" title="feather-battery-charging"></i>
123
+ </li>
124
+
125
+ <li>
126
+ <i class="feather-bell" title="feather-bell"></i>
127
+ </li>
128
+
129
+ <li>
130
+ <i class="feather-bell-off" title="feather-bell-off"></i>
131
+ </li>
132
+
133
+ <li>
134
+ <i class="feather-bluetooth" title="feather-bluetooth"></i>
135
+ </li>
136
+
137
+ <li>
138
+ <i class="feather-bold" title="feather-bold"></i>
139
+ </li>
140
+
141
+ <li>
142
+ <i class="feather-book" title="feather-book"></i>
143
+ </li>
144
+
145
+ <li>
146
+ <i class="feather-book-open" title="feather-book-open"></i>
147
+ </li>
148
+
149
+ <li>
150
+ <i class="feather-bookmark" title="feather-bookmark"></i>
151
+ </li>
152
+
153
+ <li>
154
+ <i class="feather-box" title="feather-box"></i>
155
+ </li>
156
+
157
+ <li>
158
+ <i class="feather-briefcase" title="feather-briefcase"></i>
159
+ </li>
160
+
161
+ <li>
162
+ <i class="feather-calendar" title="feather-calendar"></i>
163
+ </li>
164
+
165
+ <li>
166
+ <i class="feather-camera" title="feather-camera"></i>
167
+ </li>
168
+
169
+ <li>
170
+ <i class="feather-camera-off" title="feather-camera-off"></i>
171
+ </li>
172
+
173
+ <li>
174
+ <i class="feather-cast" title="feather-cast"></i>
175
+ </li>
176
+
177
+ <li>
178
+ <i class="feather-check" title="feather-check"></i>
179
+ </li>
180
+
181
+ <li>
182
+ <i class="feather-check-circle" title="feather-check-circle"></i>
183
+ </li>
184
+
185
+ <li>
186
+ <i class="feather-check-square" title="feather-check-square"></i>
187
+ </li>
188
+
189
+ <li>
190
+ <i class="feather-chevron-down" title="feather-chevron-down"></i>
191
+ </li>
192
+
193
+ <li>
194
+ <i class="feather-chevron-left" title="feather-chevron-left"></i>
195
+ </li>
196
+
197
+ <li>
198
+ <i class="feather-chevron-right" title="feather-chevron-right"></i>
199
+ </li>
200
+
201
+ <li>
202
+ <i class="feather-chevron-up" title="feather-chevron-up"></i>
203
+ </li>
204
+
205
+ <li>
206
+ <i class="feather-chevrons-down" title="feather-chevrons-down"></i>
207
+ </li>
208
+
209
+ <li>
210
+ <i class="feather-chevrons-left" title="feather-chevrons-left"></i>
211
+ </li>
212
+
213
+ <li>
214
+ <i class="feather-chevrons-right" title="feather-chevrons-right"></i>
215
+ </li>
216
+
217
+ <li>
218
+ <i class="feather-chevrons-up" title="feather-chevrons-up"></i>
219
+ </li>
220
+
221
+ <li>
222
+ <i class="feather-chrome" title="feather-chrome"></i>
223
+ </li>
224
+
225
+ <li>
226
+ <i class="feather-circle" title="feather-circle"></i>
227
+ </li>
228
+
229
+ <li>
230
+ <i class="feather-clipboard" title="feather-clipboard"></i>
231
+ </li>
232
+
233
+ <li>
234
+ <i class="feather-clock" title="feather-clock"></i>
235
+ </li>
236
+
237
+ <li>
238
+ <i class="feather-cloud" title="feather-cloud"></i>
239
+ </li>
240
+
241
+ <li>
242
+ <i class="feather-cloud-drizzle" title="feather-cloud-drizzle"></i>
243
+ </li>
244
+
245
+ <li>
246
+ <i class="feather-cloud-lightning" title="feather-cloud-lightning"></i>
247
+ </li>
248
+
249
+ <li>
250
+ <i class="feather-cloud-off" title="feather-cloud-off"></i>
251
+ </li>
252
+
253
+ <li>
254
+ <i class="feather-cloud-rain" title="feather-cloud-rain"></i>
255
+ </li>
256
+
257
+ <li>
258
+ <i class="feather-cloud-snow" title="feather-cloud-snow"></i>
259
+ </li>
260
+
261
+ <li>
262
+ <i class="feather-code" title="feather-code"></i>
263
+ </li>
264
+
265
+ <li>
266
+ <i class="feather-codepen" title="feather-codepen"></i>
267
+ </li>
268
+
269
+ <li>
270
+ <i class="feather-command" title="feather-command"></i>
271
+ </li>
272
+
273
+ <li>
274
+ <i class="feather-compass" title="feather-compass"></i>
275
+ </li>
276
+
277
+ <li>
278
+ <i class="feather-copy" title="feather-copy"></i>
279
+ </li>
280
+
281
+ <li>
282
+ <i class="feather-corner-down-left" title="feather-corner-down-left"></i>
283
+ </li>
284
+
285
+ <li>
286
+ <i class="feather-corner-down-right" title="feather-corner-down-right"></i>
287
+ </li>
288
+
289
+ <li>
290
+ <i class="feather-corner-left-down" title="feather-corner-left-down"></i>
291
+ </li>
292
+
293
+ <li>
294
+ <i class="feather-corner-left-up" title="feather-corner-left-up"></i>
295
+ </li>
296
+
297
+ <li>
298
+ <i class="feather-corner-right-down" title="feather-corner-right-down"></i>
299
+ </li>
300
+
301
+ <li>
302
+ <i class="feather-corner-right-up" title="feather-corner-right-up"></i>
303
+ </li>
304
+
305
+ <li>
306
+ <i class="feather-corner-up-left" title="feather-corner-up-left"></i>
307
+ </li>
308
+
309
+ <li>
310
+ <i class="feather-corner-up-right" title="feather-corner-up-right"></i>
311
+ </li>
312
+
313
+ <li>
314
+ <i class="feather-cpu" title="feather-cpu"></i>
315
+ </li>
316
+
317
+ <li>
318
+ <i class="feather-credit-card" title="feather-credit-card"></i>
319
+ </li>
320
+
321
+ <li>
322
+ <i class="feather-crop" title="feather-crop"></i>
323
+ </li>
324
+
325
+ <li>
326
+ <i class="feather-crosshair" title="feather-crosshair"></i>
327
+ </li>
328
+
329
+ <li>
330
+ <i class="feather-database" title="feather-database"></i>
331
+ </li>
332
+
333
+ <li>
334
+ <i class="feather-delete" title="feather-delete"></i>
335
+ </li>
336
+
337
+ <li>
338
+ <i class="feather-disc" title="feather-disc"></i>
339
+ </li>
340
+
341
+ <li>
342
+ <i class="feather-dollar-sign" title="feather-dollar-sign"></i>
343
+ </li>
344
+
345
+ <li>
346
+ <i class="feather-download" title="feather-download"></i>
347
+ </li>
348
+
349
+ <li>
350
+ <i class="feather-download-cloud" title="feather-download-cloud"></i>
351
+ </li>
352
+
353
+ <li>
354
+ <i class="feather-droplet" title="feather-droplet"></i>
355
+ </li>
356
+
357
+ <li>
358
+ <i class="feather-edit" title="feather-edit"></i>
359
+ </li>
360
+
361
+ <li>
362
+ <i class="feather-edit-2" title="feather-edit-2"></i>
363
+ </li>
364
+
365
+ <li>
366
+ <i class="feather-edit-3" title="feather-edit-3"></i>
367
+ </li>
368
+
369
+ <li>
370
+ <i class="feather-external-link" title="feather-external-link"></i>
371
+ </li>
372
+
373
+ <li>
374
+ <i class="feather-eye" title="feather-eye"></i>
375
+ </li>
376
+
377
+ <li>
378
+ <i class="feather-eye-off" title="feather-eye-off"></i>
379
+ </li>
380
+
381
+ <li>
382
+ <i class="feather-facebook" title="feather-facebook"></i>
383
+ </li>
384
+
385
+ <li>
386
+ <i class="feather-fast-forward" title="feather-fast-forward"></i>
387
+ </li>
388
+
389
+ <li>
390
+ <i class="feather-feather" title="feather-feather"></i>
391
+ </li>
392
+
393
+ <li>
394
+ <i class="feather-file" title="feather-file"></i>
395
+ </li>
396
+
397
+ <li>
398
+ <i class="feather-file-minus" title="feather-file-minus"></i>
399
+ </li>
400
+
401
+ <li>
402
+ <i class="feather-file-plus" title="feather-file-plus"></i>
403
+ </li>
404
+
405
+ <li>
406
+ <i class="feather-file-text" title="feather-file-text"></i>
407
+ </li>
408
+
409
+ <li>
410
+ <i class="feather-film" title="feather-film"></i>
411
+ </li>
412
+
413
+ <li>
414
+ <i class="feather-filter" title="feather-filter"></i>
415
+ </li>
416
+
417
+ <li>
418
+ <i class="feather-flag" title="feather-flag"></i>
419
+ </li>
420
+
421
+ <li>
422
+ <i class="feather-folder" title="feather-folder"></i>
423
+ </li>
424
+
425
+ <li>
426
+ <i class="feather-folder-minus" title="feather-folder-minus"></i>
427
+ </li>
428
+
429
+ <li>
430
+ <i class="feather-folder-plus" title="feather-folder-plus"></i>
431
+ </li>
432
+
433
+ <li>
434
+ <i class="feather-gift" title="feather-gift"></i>
435
+ </li>
436
+
437
+ <li>
438
+ <i class="feather-git-branch" title="feather-git-branch"></i>
439
+ </li>
440
+
441
+ <li>
442
+ <i class="feather-git-commit" title="feather-git-commit"></i>
443
+ </li>
444
+
445
+ <li>
446
+ <i class="feather-git-merge" title="feather-git-merge"></i>
447
+ </li>
448
+
449
+ <li>
450
+ <i class="feather-git-pull-request" title="feather-git-pull-request"></i>
451
+ </li>
452
+
453
+ <li>
454
+ <i class="feather-github" title="feather-github"></i>
455
+ </li>
456
+
457
+ <li>
458
+ <i class="feather-gitlab" title="feather-gitlab"></i>
459
+ </li>
460
+
461
+ <li>
462
+ <i class="feather-globe" title="feather-globe"></i>
463
+ </li>
464
+
465
+ <li>
466
+ <i class="feather-grid" title="feather-grid"></i>
467
+ </li>
468
+
469
+ <li>
470
+ <i class="feather-hard-drive" title="feather-hard-drive"></i>
471
+ </li>
472
+
473
+ <li>
474
+ <i class="feather-hash" title="feather-hash"></i>
475
+ </li>
476
+
477
+ <li>
478
+ <i class="feather-headphones" title="feather-headphones"></i>
479
+ </li>
480
+
481
+ <li>
482
+ <i class="feather-heart" title="feather-heart"></i>
483
+ </li>
484
+
485
+ <li>
486
+ <i class="feather-help-circle" title="feather-help-circle"></i>
487
+ </li>
488
+
489
+ <li>
490
+ <i class="feather-home" title="feather-home"></i>
491
+ </li>
492
+
493
+ <li>
494
+ <i class="feather-image" title="feather-image"></i>
495
+ </li>
496
+
497
+ <li>
498
+ <i class="feather-inbox" title="feather-inbox"></i>
499
+ </li>
500
+
501
+ <li>
502
+ <i class="feather-info" title="feather-info"></i>
503
+ </li>
504
+
505
+ <li>
506
+ <i class="feather-instagram" title="feather-instagram"></i>
507
+ </li>
508
+
509
+ <li>
510
+ <i class="feather-italic" title="feather-italic"></i>
511
+ </li>
512
+
513
+ <li>
514
+ <i class="feather-layers" title="feather-layers"></i>
515
+ </li>
516
+
517
+ <li>
518
+ <i class="feather-layout" title="feather-layout"></i>
519
+ </li>
520
+
521
+ <li>
522
+ <i class="feather-life-buoy" title="feather-life-buoy"></i>
523
+ </li>
524
+
525
+ <li>
526
+ <i class="feather-link" title="feather-link"></i>
527
+ </li>
528
+
529
+ <li>
530
+ <i class="feather-link-2" title="feather-link-2"></i>
531
+ </li>
532
+
533
+ <li>
534
+ <i class="feather-linkedin" title="feather-linkedin"></i>
535
+ </li>
536
+
537
+ <li>
538
+ <i class="feather-list" title="feather-list"></i>
539
+ </li>
540
+
541
+ <li>
542
+ <i class="feather-loader" title="feather-loader"></i>
543
+ </li>
544
+
545
+ <li>
546
+ <i class="feather-lock" title="feather-lock"></i>
547
+ </li>
548
+
549
+ <li>
550
+ <i class="feather-log-in" title="feather-log-in"></i>
551
+ </li>
552
+
553
+ <li>
554
+ <i class="feather-log-out" title="feather-log-out"></i>
555
+ </li>
556
+
557
+ <li>
558
+ <i class="feather-mail" title="feather-mail"></i>
559
+ </li>
560
+
561
+ <li>
562
+ <i class="feather-map" title="feather-map"></i>
563
+ </li>
564
+
565
+ <li>
566
+ <i class="feather-map-pin" title="feather-map-pin"></i>
567
+ </li>
568
+
569
+ <li>
570
+ <i class="feather-maximize" title="feather-maximize"></i>
571
+ </li>
572
+
573
+ <li>
574
+ <i class="feather-maximize-2" title="feather-maximize-2"></i>
575
+ </li>
576
+
577
+ <li>
578
+ <i class="feather-menu" title="feather-menu"></i>
579
+ </li>
580
+
581
+ <li>
582
+ <i class="feather-message-circle" title="feather-message-circle"></i>
583
+ </li>
584
+
585
+ <li>
586
+ <i class="feather-message-square" title="feather-message-square"></i>
587
+ </li>
588
+
589
+ <li>
590
+ <i class="feather-mic" title="feather-mic"></i>
591
+ </li>
592
+
593
+ <li>
594
+ <i class="feather-mic-off" title="feather-mic-off"></i>
595
+ </li>
596
+
597
+ <li>
598
+ <i class="feather-minimize" title="feather-minimize"></i>
599
+ </li>
600
+
601
+ <li>
602
+ <i class="feather-minimize-2" title="feather-minimize-2"></i>
603
+ </li>
604
+
605
+ <li>
606
+ <i class="feather-minus" title="feather-minus"></i>
607
+ </li>
608
+
609
+ <li>
610
+ <i class="feather-minus-circle" title="feather-minus-circle"></i>
611
+ </li>
612
+
613
+ <li>
614
+ <i class="feather-minus-square" title="feather-minus-square"></i>
615
+ </li>
616
+
617
+ <li>
618
+ <i class="feather-monitor" title="feather-monitor"></i>
619
+ </li>
620
+
621
+ <li>
622
+ <i class="feather-moon" title="feather-moon"></i>
623
+ </li>
624
+
625
+ <li>
626
+ <i class="feather-more-horizontal" title="feather-more-horizontal"></i>
627
+ </li>
628
+
629
+ <li>
630
+ <i class="feather-more-vertical" title="feather-more-vertical"></i>
631
+ </li>
632
+
633
+ <li>
634
+ <i class="feather-move" title="feather-move"></i>
635
+ </li>
636
+
637
+ <li>
638
+ <i class="feather-music" title="feather-music"></i>
639
+ </li>
640
+
641
+ <li>
642
+ <i class="feather-navigation" title="feather-navigation"></i>
643
+ </li>
644
+
645
+ <li>
646
+ <i class="feather-navigation-2" title="feather-navigation-2"></i>
647
+ </li>
648
+
649
+ <li>
650
+ <i class="feather-octagon" title="feather-octagon"></i>
651
+ </li>
652
+
653
+ <li>
654
+ <i class="feather-package" title="feather-package"></i>
655
+ </li>
656
+
657
+ <li>
658
+ <i class="feather-paperclip" title="feather-paperclip"></i>
659
+ </li>
660
+
661
+ <li>
662
+ <i class="feather-pause" title="feather-pause"></i>
663
+ </li>
664
+
665
+ <li>
666
+ <i class="feather-pause-circle" title="feather-pause-circle"></i>
667
+ </li>
668
+
669
+ <li>
670
+ <i class="feather-percent" title="feather-percent"></i>
671
+ </li>
672
+
673
+ <li>
674
+ <i class="feather-phone" title="feather-phone"></i>
675
+ </li>
676
+
677
+ <li>
678
+ <i class="feather-phone-call" title="feather-phone-call"></i>
679
+ </li>
680
+
681
+ <li>
682
+ <i class="feather-phone-forwarded" title="feather-phone-forwarded"></i>
683
+ </li>
684
+
685
+ <li>
686
+ <i class="feather-phone-incoming" title="feather-phone-incoming"></i>
687
+ </li>
688
+
689
+ <li>
690
+ <i class="feather-phone-missed" title="feather-phone-missed"></i>
691
+ </li>
692
+
693
+ <li>
694
+ <i class="feather-phone-off" title="feather-phone-off"></i>
695
+ </li>
696
+
697
+ <li>
698
+ <i class="feather-phone-outgoing" title="feather-phone-outgoing"></i>
699
+ </li>
700
+
701
+ <li>
702
+ <i class="feather-pie-chart" title="feather-pie-chart"></i>
703
+ </li>
704
+
705
+ <li>
706
+ <i class="feather-play" title="feather-play"></i>
707
+ </li>
708
+
709
+ <li>
710
+ <i class="feather-play-circle" title="feather-play-circle"></i>
711
+ </li>
712
+
713
+ <li>
714
+ <i class="feather-plus" title="feather-plus"></i>
715
+ </li>
716
+
717
+ <li>
718
+ <i class="feather-plus-circle" title="feather-plus-circle"></i>
719
+ </li>
720
+
721
+ <li>
722
+ <i class="feather-plus-square" title="feather-plus-square"></i>
723
+ </li>
724
+
725
+ <li>
726
+ <i class="feather-pocket" title="feather-pocket"></i>
727
+ </li>
728
+
729
+ <li>
730
+ <i class="feather-power" title="feather-power"></i>
731
+ </li>
732
+
733
+ <li>
734
+ <i class="feather-printer" title="feather-printer"></i>
735
+ </li>
736
+
737
+ <li>
738
+ <i class="feather-radio" title="feather-radio"></i>
739
+ </li>
740
+
741
+ <li>
742
+ <i class="feather-refresh-ccw" title="feather-refresh-ccw"></i>
743
+ </li>
744
+
745
+ <li>
746
+ <i class="feather-refresh-cw" title="feather-refresh-cw"></i>
747
+ </li>
748
+
749
+ <li>
750
+ <i class="feather-repeat" title="feather-repeat"></i>
751
+ </li>
752
+
753
+ <li>
754
+ <i class="feather-rewind" title="feather-rewind"></i>
755
+ </li>
756
+
757
+ <li>
758
+ <i class="feather-rotate-ccw" title="feather-rotate-ccw"></i>
759
+ </li>
760
+
761
+ <li>
762
+ <i class="feather-rotate-cw" title="feather-rotate-cw"></i>
763
+ </li>
764
+
765
+ <li>
766
+ <i class="feather-rss" title="feather-rss"></i>
767
+ </li>
768
+
769
+ <li>
770
+ <i class="feather-save" title="feather-save"></i>
771
+ </li>
772
+
773
+ <li>
774
+ <i class="feather-scissors" title="feather-scissors"></i>
775
+ </li>
776
+
777
+ <li>
778
+ <i class="feather-search" title="feather-search"></i>
779
+ </li>
780
+
781
+ <li>
782
+ <i class="feather-send" title="feather-send"></i>
783
+ </li>
784
+
785
+ <li>
786
+ <i class="feather-server" title="feather-server"></i>
787
+ </li>
788
+
789
+ <li>
790
+ <i class="feather-settings" title="feather-settings"></i>
791
+ </li>
792
+
793
+ <li>
794
+ <i class="feather-share" title="feather-share"></i>
795
+ </li>
796
+
797
+ <li>
798
+ <i class="feather-share-2" title="feather-share-2"></i>
799
+ </li>
800
+
801
+ <li>
802
+ <i class="feather-shield" title="feather-shield"></i>
803
+ </li>
804
+
805
+ <li>
806
+ <i class="feather-shield-off" title="feather-shield-off"></i>
807
+ </li>
808
+
809
+ <li>
810
+ <i class="feather-shopping-bag" title="feather-shopping-bag"></i>
811
+ </li>
812
+
813
+ <li>
814
+ <i class="feather-shopping-cart" title="feather-shopping-cart"></i>
815
+ </li>
816
+
817
+ <li>
818
+ <i class="feather-shuffle" title="feather-shuffle"></i>
819
+ </li>
820
+
821
+ <li>
822
+ <i class="feather-sidebar" title="feather-sidebar"></i>
823
+ </li>
824
+
825
+ <li>
826
+ <i class="feather-skip-back" title="feather-skip-back"></i>
827
+ </li>
828
+
829
+ <li>
830
+ <i class="feather-skip-forward" title="feather-skip-forward"></i>
831
+ </li>
832
+
833
+ <li>
834
+ <i class="feather-slack" title="feather-slack"></i>
835
+ </li>
836
+
837
+ <li>
838
+ <i class="feather-slash" title="feather-slash"></i>
839
+ </li>
840
+
841
+ <li>
842
+ <i class="feather-sliders" title="feather-sliders"></i>
843
+ </li>
844
+
845
+ <li>
846
+ <i class="feather-smartphone" title="feather-smartphone"></i>
847
+ </li>
848
+
849
+ <li>
850
+ <i class="feather-speaker" title="feather-speaker"></i>
851
+ </li>
852
+
853
+ <li>
854
+ <i class="feather-square" title="feather-square"></i>
855
+ </li>
856
+
857
+ <li>
858
+ <i class="feather-star" title="feather-star"></i>
859
+ </li>
860
+
861
+ <li>
862
+ <i class="feather-stop-circle" title="feather-stop-circle"></i>
863
+ </li>
864
+
865
+ <li>
866
+ <i class="feather-sun" title="feather-sun"></i>
867
+ </li>
868
+
869
+ <li>
870
+ <i class="feather-sunrise" title="feather-sunrise"></i>
871
+ </li>
872
+
873
+ <li>
874
+ <i class="feather-sunset" title="feather-sunset"></i>
875
+ </li>
876
+
877
+ <li>
878
+ <i class="feather-tablet" title="feather-tablet"></i>
879
+ </li>
880
+
881
+ <li>
882
+ <i class="feather-tag" title="feather-tag"></i>
883
+ </li>
884
+
885
+ <li>
886
+ <i class="feather-target" title="feather-target"></i>
887
+ </li>
888
+
889
+ <li>
890
+ <i class="feather-terminal" title="feather-terminal"></i>
891
+ </li>
892
+
893
+ <li>
894
+ <i class="feather-thermometer" title="feather-thermometer"></i>
895
+ </li>
896
+
897
+ <li>
898
+ <i class="feather-thumbs-down" title="feather-thumbs-down"></i>
899
+ </li>
900
+
901
+ <li>
902
+ <i class="feather-thumbs-up" title="feather-thumbs-up"></i>
903
+ </li>
904
+
905
+ <li>
906
+ <i class="feather-toggle-left" title="feather-toggle-left"></i>
907
+ </li>
908
+
909
+ <li>
910
+ <i class="feather-toggle-right" title="feather-toggle-right"></i>
911
+ </li>
912
+
913
+ <li>
914
+ <i class="feather-trash" title="feather-trash"></i>
915
+ </li>
916
+
917
+ <li>
918
+ <i class="feather-trash-2" title="feather-trash-2"></i>
919
+ </li>
920
+
921
+ <li>
922
+ <i class="feather-trending-down" title="feather-trending-down"></i>
923
+ </li>
924
+
925
+ <li>
926
+ <i class="feather-trending-up" title="feather-trending-up"></i>
927
+ </li>
928
+
929
+ <li>
930
+ <i class="feather-triangle" title="feather-triangle"></i>
931
+ </li>
932
+
933
+ <li>
934
+ <i class="feather-truck" title="feather-truck"></i>
935
+ </li>
936
+
937
+ <li>
938
+ <i class="feather-tv" title="feather-tv"></i>
939
+ </li>
940
+
941
+ <li>
942
+ <i class="feather-twitter" title="feather-twitter"></i>
943
+ </li>
944
+
945
+ <li>
946
+ <i class="feather-type" title="feather-type"></i>
947
+ </li>
948
+
949
+ <li>
950
+ <i class="feather-umbrella" title="feather-umbrella"></i>
951
+ </li>
952
+
953
+ <li>
954
+ <i class="feather-underline" title="feather-underline"></i>
955
+ </li>
956
+
957
+ <li>
958
+ <i class="feather-unlock" title="feather-unlock"></i>
959
+ </li>
960
+
961
+ <li>
962
+ <i class="feather-upload" title="feather-upload"></i>
963
+ </li>
964
+
965
+ <li>
966
+ <i class="feather-upload-cloud" title="feather-upload-cloud"></i>
967
+ </li>
968
+
969
+ <li>
970
+ <i class="feather-user" title="feather-user"></i>
971
+ </li>
972
+
973
+ <li>
974
+ <i class="feather-user-check" title="feather-user-check"></i>
975
+ </li>
976
+
977
+ <li>
978
+ <i class="feather-user-minus" title="feather-user-minus"></i>
979
+ </li>
980
+
981
+ <li>
982
+ <i class="feather-user-plus" title="feather-user-plus"></i>
983
+ </li>
984
+
985
+ <li>
986
+ <i class="feather-user-x" title="feather-user-x"></i>
987
+ </li>
988
+
989
+ <li>
990
+ <i class="feather-users" title="feather-users"></i>
991
+ </li>
992
+
993
+ <li>
994
+ <i class="feather-video" title="feather-video"></i>
995
+ </li>
996
+
997
+ <li>
998
+ <i class="feather-video-off" title="feather-video-off"></i>
999
+ </li>
1000
+
1001
+ <li>
1002
+ <i class="feather-voicemail" title="feather-voicemail"></i>
1003
+ </li>
1004
+
1005
+ <li>
1006
+ <i class="feather-volume" title="feather-volume"></i>
1007
+ </li>
1008
+
1009
+ <li>
1010
+ <i class="feather-volume-1" title="feather-volume-1"></i>
1011
+ </li>
1012
+
1013
+ <li>
1014
+ <i class="feather-volume-2" title="feather-volume-2"></i>
1015
+ </li>
1016
+
1017
+ <li>
1018
+ <i class="feather-volume-x" title="feather-volume-x"></i>
1019
+ </li>
1020
+
1021
+ <li>
1022
+ <i class="feather-watch" title="feather-watch"></i>
1023
+ </li>
1024
+
1025
+ <li>
1026
+ <i class="feather-wifi" title="feather-wifi"></i>
1027
+ </li>
1028
+
1029
+ <li>
1030
+ <i class="feather-wifi-off" title="feather-wifi-off"></i>
1031
+ </li>
1032
+
1033
+ <li>
1034
+ <i class="feather-wind" title="feather-wind"></i>
1035
+ </li>
1036
+
1037
+ <li>
1038
+ <i class="feather-x" title="feather-x"></i>
1039
+ </li>
1040
+
1041
+ <li>
1042
+ <i class="feather-x-circle" title="feather-x-circle"></i>
1043
+ </li>
1044
+
1045
+ <li>
1046
+ <i class="feather-x-square" title="feather-x-square"></i>
1047
+ </li>
1048
+
1049
+ <li>
1050
+ <i class="feather-youtube" title="feather-youtube"></i>
1051
+ </li>
1052
+
1053
+ <li>
1054
+ <i class="feather-zap" title="feather-zap"></i>
1055
+ </li>
1056
+
1057
+ <li>
1058
+ <i class="feather-zap-off" title="feather-zap-off"></i>
1059
+ </li>
1060
+
1061
+ <li>
1062
+ <i class="feather-zoom-in" title="feather-zoom-in"></i>
1063
+ </li>
1064
+
1065
+ <li>
1066
+ <i class="feather-zoom-out" title="feather-zoom-out"></i>
1067
+ </li>
1068
+ </ul>