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
data/_sass/_icons.scss ADDED
@@ -0,0 +1,865 @@
1
+ /* ICONS
2
+ =========================================================================================*/
3
+
4
+ // Icon list
5
+ .icons-list {
6
+ list-style: none !important;
7
+ padding: 0 !important;
8
+ display: grid;
9
+ gap: $spacer;
10
+ grid-template-columns: auto auto auto auto auto auto auto;
11
+ @media (max-width: 620px) {
12
+ grid-template-columns: auto auto auto auto auto auto;
13
+ }
14
+ @media (max-width: 550px) {
15
+ grid-template-columns: auto auto auto auto auto;
16
+ }
17
+ @media (max-width: $breakpoint-xs) {
18
+ grid-template-columns: auto auto auto auto;
19
+ }
20
+ @media (max-width: $breakpoint-xxs) {
21
+ grid-template-columns: auto auto auto;
22
+ }
23
+ li {
24
+ text-align: center;
25
+ margin: 0 !important;
26
+ height: 75px;
27
+ line-height: 90px;
28
+ border-radius: $border-radius;
29
+ background-color: $light;
30
+ > div {
31
+ display: none;
32
+ }
33
+ i {
34
+ font-size: 26px;
35
+ }
36
+ &:hover {
37
+ i {
38
+ color: $accent;
39
+ transition: color 0.2s;
40
+ }
41
+ }
42
+ }
43
+ }
44
+
45
+ // Font face
46
+ @font-face {
47
+ font-family: 'Feather';
48
+ src:
49
+ url('../fonts/Feather.ttf?sdxovp') format('truetype'),
50
+ url('../fonts/Feather.woff?sdxovp') format('woff'),
51
+ url('../fonts/Feather.svg?sdxovp#Feather') format('svg');
52
+ font-weight: normal;
53
+ font-style: normal;
54
+ }
55
+ [class^="feather-"], [class*=" feather-"] {
56
+ font-family: 'feather' !important;
57
+ speak: none;
58
+ font-style: normal;
59
+ font-weight: normal;
60
+ font-variant: normal;
61
+ text-transform: none;
62
+ line-height: 1;
63
+ -webkit-font-smoothing: antialiased;
64
+ -moz-osx-font-smoothing: grayscale;
65
+ }
66
+
67
+ // Icon definitions
68
+ .feather-activity:before {
69
+ content: "\e900";
70
+ }
71
+ .feather-airplay:before {
72
+ content: "\e901";
73
+ }
74
+ .feather-alert-circle:before {
75
+ content: "\e902";
76
+ }
77
+ .feather-alert-octagon:before {
78
+ content: "\e903";
79
+ }
80
+ .feather-alert-triangle:before {
81
+ content: "\e904";
82
+ }
83
+ .feather-align-center:before {
84
+ content: "\e905";
85
+ }
86
+ .feather-align-justify:before {
87
+ content: "\e906";
88
+ }
89
+ .feather-align-left:before {
90
+ content: "\e907";
91
+ }
92
+ .feather-align-right:before {
93
+ content: "\e908";
94
+ }
95
+ .feather-anchor:before {
96
+ content: "\e909";
97
+ }
98
+ .feather-aperture:before {
99
+ content: "\e90a";
100
+ }
101
+ .feather-archive:before {
102
+ content: "\e90b";
103
+ }
104
+ .feather-arrow-down:before {
105
+ content: "\e90c";
106
+ }
107
+ .feather-arrow-down-circle:before {
108
+ content: "\e90d";
109
+ }
110
+ .feather-arrow-down-left:before {
111
+ content: "\e90e";
112
+ }
113
+ .feather-arrow-down-right:before {
114
+ content: "\e90f";
115
+ }
116
+ .feather-arrow-left:before {
117
+ content: "\e910";
118
+ }
119
+ .feather-arrow-left-circle:before {
120
+ content: "\e911";
121
+ }
122
+ .feather-arrow-right:before {
123
+ content: "\e912";
124
+ }
125
+ .feather-arrow-right-circle:before {
126
+ content: "\e913";
127
+ }
128
+ .feather-arrow-up:before {
129
+ content: "\e914";
130
+ }
131
+ .feather-arrow-up-circle:before {
132
+ content: "\e915";
133
+ }
134
+ .feather-arrow-up-left:before {
135
+ content: "\e916";
136
+ }
137
+ .feather-arrow-up-right:before {
138
+ content: "\e917";
139
+ }
140
+ .feather-at-sign:before {
141
+ content: "\e918";
142
+ }
143
+ .feather-award:before {
144
+ content: "\e919";
145
+ }
146
+ .feather-bar-chart:before {
147
+ content: "\e91a";
148
+ }
149
+ .feather-bar-chart-2:before {
150
+ content: "\e91b";
151
+ }
152
+ .feather-battery:before {
153
+ content: "\e91c";
154
+ }
155
+ .feather-battery-charging:before {
156
+ content: "\e91d";
157
+ }
158
+ .feather-bell:before {
159
+ content: "\e91e";
160
+ }
161
+ .feather-bell-off:before {
162
+ content: "\e91f";
163
+ }
164
+ .feather-bluetooth:before {
165
+ content: "\e920";
166
+ }
167
+ .feather-bold:before {
168
+ content: "\e921";
169
+ }
170
+ .feather-book:before {
171
+ content: "\e922";
172
+ }
173
+ .feather-book-open:before {
174
+ content: "\e923";
175
+ }
176
+ .feather-bookmark:before {
177
+ content: "\e924";
178
+ }
179
+ .feather-box:before {
180
+ content: "\e925";
181
+ }
182
+ .feather-briefcase:before {
183
+ content: "\e926";
184
+ }
185
+ .feather-calendar:before {
186
+ content: "\e927";
187
+ }
188
+ .feather-camera:before {
189
+ content: "\e928";
190
+ }
191
+ .feather-camera-off:before {
192
+ content: "\e929";
193
+ }
194
+ .feather-cast:before {
195
+ content: "\e92a";
196
+ }
197
+ .feather-check:before {
198
+ content: "\e92b";
199
+ }
200
+ .feather-check-circle:before {
201
+ content: "\e92c";
202
+ }
203
+ .feather-check-square:before {
204
+ content: "\e92d";
205
+ }
206
+ .feather-chevron-down:before {
207
+ content: "\e92e";
208
+ }
209
+ .feather-chevron-left:before {
210
+ content: "\e92f";
211
+ }
212
+ .feather-chevron-right:before {
213
+ content: "\e930";
214
+ }
215
+ .feather-chevron-up:before {
216
+ content: "\e931";
217
+ }
218
+ .feather-chevrons-down:before {
219
+ content: "\e932";
220
+ }
221
+ .feather-chevrons-left:before {
222
+ content: "\e933";
223
+ }
224
+ .feather-chevrons-right:before {
225
+ content: "\e934";
226
+ }
227
+ .feather-chevrons-up:before {
228
+ content: "\e935";
229
+ }
230
+ .feather-chrome:before {
231
+ content: "\e936";
232
+ }
233
+ .feather-circle:before {
234
+ content: "\e937";
235
+ }
236
+ .feather-clipboard:before {
237
+ content: "\e938";
238
+ }
239
+ .feather-clock:before {
240
+ content: "\e939";
241
+ }
242
+ .feather-cloud:before {
243
+ content: "\e93a";
244
+ }
245
+ .feather-cloud-drizzle:before {
246
+ content: "\e93b";
247
+ }
248
+ .feather-cloud-lightning:before {
249
+ content: "\e93c";
250
+ }
251
+ .feather-cloud-off:before {
252
+ content: "\e93d";
253
+ }
254
+ .feather-cloud-rain:before {
255
+ content: "\e93e";
256
+ }
257
+ .feather-cloud-snow:before {
258
+ content: "\e93f";
259
+ }
260
+ .feather-code:before {
261
+ content: "\e940";
262
+ }
263
+ .feather-codepen:before {
264
+ content: "\e941";
265
+ }
266
+ .feather-command:before {
267
+ content: "\e942";
268
+ }
269
+ .feather-compass:before {
270
+ content: "\e943";
271
+ }
272
+ .feather-copy:before {
273
+ content: "\e944";
274
+ }
275
+ .feather-corner-down-left:before {
276
+ content: "\e945";
277
+ }
278
+ .feather-corner-down-right:before {
279
+ content: "\e946";
280
+ }
281
+ .feather-corner-left-down:before {
282
+ content: "\e947";
283
+ }
284
+ .feather-corner-left-up:before {
285
+ content: "\e948";
286
+ }
287
+ .feather-corner-right-down:before {
288
+ content: "\e949";
289
+ }
290
+ .feather-corner-right-up:before {
291
+ content: "\e94a";
292
+ }
293
+ .feather-corner-up-left:before {
294
+ content: "\e94b";
295
+ }
296
+ .feather-corner-up-right:before {
297
+ content: "\e94c";
298
+ }
299
+ .feather-cpu:before {
300
+ content: "\e94d";
301
+ }
302
+ .feather-credit-card:before {
303
+ content: "\e94e";
304
+ }
305
+ .feather-crop:before {
306
+ content: "\e94f";
307
+ }
308
+ .feather-crosshair:before {
309
+ content: "\e950";
310
+ }
311
+ .feather-database:before {
312
+ content: "\e951";
313
+ }
314
+ .feather-delete:before {
315
+ content: "\e952";
316
+ }
317
+ .feather-disc:before {
318
+ content: "\e953";
319
+ }
320
+ .feather-dollar-sign:before {
321
+ content: "\e954";
322
+ }
323
+ .feather-download:before {
324
+ content: "\e955";
325
+ }
326
+ .feather-download-cloud:before {
327
+ content: "\e956";
328
+ }
329
+ .feather-droplet:before {
330
+ content: "\e957";
331
+ }
332
+ .feather-edit:before {
333
+ content: "\e958";
334
+ }
335
+ .feather-edit-2:before {
336
+ content: "\e959";
337
+ }
338
+ .feather-edit-3:before {
339
+ content: "\e95a";
340
+ }
341
+ .feather-external-link:before {
342
+ content: "\e95b";
343
+ }
344
+ .feather-eye:before {
345
+ content: "\e95c";
346
+ }
347
+ .feather-eye-off:before {
348
+ content: "\e95d";
349
+ }
350
+ .feather-facebook:before {
351
+ content: "\e95e";
352
+ }
353
+ .feather-fast-forward:before {
354
+ content: "\e95f";
355
+ }
356
+ .feather-feather:before {
357
+ content: "\e960";
358
+ }
359
+ .feather-file:before {
360
+ content: "\e961";
361
+ }
362
+ .feather-file-minus:before {
363
+ content: "\e962";
364
+ }
365
+ .feather-file-plus:before {
366
+ content: "\e963";
367
+ }
368
+ .feather-file-text:before {
369
+ content: "\e964";
370
+ }
371
+ .feather-film:before {
372
+ content: "\e965";
373
+ }
374
+ .feather-filter:before {
375
+ content: "\e966";
376
+ }
377
+ .feather-flag:before {
378
+ content: "\e967";
379
+ }
380
+ .feather-folder:before {
381
+ content: "\e968";
382
+ }
383
+ .feather-folder-minus:before {
384
+ content: "\e969";
385
+ }
386
+ .feather-folder-plus:before {
387
+ content: "\e96a";
388
+ }
389
+ .feather-gift:before {
390
+ content: "\e96b";
391
+ }
392
+ .feather-git-branch:before {
393
+ content: "\e96c";
394
+ }
395
+ .feather-git-commit:before {
396
+ content: "\e96d";
397
+ }
398
+ .feather-git-merge:before {
399
+ content: "\e96e";
400
+ }
401
+ .feather-git-pull-request:before {
402
+ content: "\e96f";
403
+ }
404
+ .feather-github:before {
405
+ content: "\e970";
406
+ }
407
+ .feather-gitlab:before {
408
+ content: "\e971";
409
+ }
410
+ .feather-globe:before {
411
+ content: "\e972";
412
+ }
413
+ .feather-grid:before {
414
+ content: "\e973";
415
+ }
416
+ .feather-hard-drive:before {
417
+ content: "\e974";
418
+ }
419
+ .feather-hash:before {
420
+ content: "\e975";
421
+ }
422
+ .feather-headphones:before {
423
+ content: "\e976";
424
+ }
425
+ .feather-heart:before {
426
+ content: "\e977";
427
+ }
428
+ .feather-help-circle:before {
429
+ content: "\e978";
430
+ }
431
+ .feather-home:before {
432
+ content: "\e979";
433
+ }
434
+ .feather-image:before {
435
+ content: "\e97a";
436
+ }
437
+ .feather-inbox:before {
438
+ content: "\e97b";
439
+ }
440
+ .feather-info:before {
441
+ content: "\e97c";
442
+ }
443
+ .feather-instagram:before {
444
+ content: "\e97d";
445
+ }
446
+ .feather-italic:before {
447
+ content: "\e97e";
448
+ }
449
+ .feather-layers:before {
450
+ content: "\e97f";
451
+ }
452
+ .feather-layout:before {
453
+ content: "\e980";
454
+ }
455
+ .feather-life-buoy:before {
456
+ content: "\e981";
457
+ }
458
+ .feather-link:before {
459
+ content: "\e982";
460
+ }
461
+ .feather-link-2:before {
462
+ content: "\e983";
463
+ }
464
+ .feather-linkedin:before {
465
+ content: "\e984";
466
+ }
467
+ .feather-list:before {
468
+ content: "\e985";
469
+ }
470
+ .feather-loader:before {
471
+ content: "\e986";
472
+ }
473
+ .feather-lock:before {
474
+ content: "\e987";
475
+ }
476
+ .feather-log-in:before {
477
+ content: "\e988";
478
+ }
479
+ .feather-log-out:before {
480
+ content: "\e989";
481
+ }
482
+ .feather-mail:before {
483
+ content: "\e98a";
484
+ }
485
+ .feather-map:before {
486
+ content: "\e98b";
487
+ }
488
+ .feather-map-pin:before {
489
+ content: "\e98c";
490
+ }
491
+ .feather-maximize:before {
492
+ content: "\e98d";
493
+ }
494
+ .feather-maximize-2:before {
495
+ content: "\e98e";
496
+ }
497
+ .feather-menu:before {
498
+ content: "\e98f";
499
+ }
500
+ .feather-message-circle:before {
501
+ content: "\e990";
502
+ }
503
+ .feather-message-square:before {
504
+ content: "\e991";
505
+ }
506
+ .feather-mic:before {
507
+ content: "\e992";
508
+ }
509
+ .feather-mic-off:before {
510
+ content: "\e993";
511
+ }
512
+ .feather-minimize:before {
513
+ content: "\e994";
514
+ }
515
+ .feather-minimize-2:before {
516
+ content: "\e995";
517
+ }
518
+ .feather-minus:before {
519
+ content: "\e996";
520
+ }
521
+ .feather-minus-circle:before {
522
+ content: "\e997";
523
+ }
524
+ .feather-minus-square:before {
525
+ content: "\e998";
526
+ }
527
+ .feather-monitor:before {
528
+ content: "\e999";
529
+ }
530
+ .feather-moon:before {
531
+ content: "\e99a";
532
+ }
533
+ .feather-more-horizontal:before {
534
+ content: "\e99b";
535
+ }
536
+ .feather-more-vertical:before {
537
+ content: "\e99c";
538
+ }
539
+ .feather-move:before {
540
+ content: "\e99d";
541
+ }
542
+ .feather-music:before {
543
+ content: "\e99e";
544
+ }
545
+ .feather-navigation:before {
546
+ content: "\e99f";
547
+ }
548
+ .feather-navigation-2:before {
549
+ content: "\e9a0";
550
+ }
551
+ .feather-octagon:before {
552
+ content: "\e9a1";
553
+ }
554
+ .feather-package:before {
555
+ content: "\e9a2";
556
+ }
557
+ .feather-paperclip:before {
558
+ content: "\e9a3";
559
+ }
560
+ .feather-pause:before {
561
+ content: "\e9a4";
562
+ }
563
+ .feather-pause-circle:before {
564
+ content: "\e9a5";
565
+ }
566
+ .feather-percent:before {
567
+ content: "\e9a6";
568
+ }
569
+ .feather-phone:before {
570
+ content: "\e9a7";
571
+ }
572
+ .feather-phone-call:before {
573
+ content: "\e9a8";
574
+ }
575
+ .feather-phone-forwarded:before {
576
+ content: "\e9a9";
577
+ }
578
+ .feather-phone-incoming:before {
579
+ content: "\e9aa";
580
+ }
581
+ .feather-phone-missed:before {
582
+ content: "\e9ab";
583
+ }
584
+ .feather-phone-off:before {
585
+ content: "\e9ac";
586
+ }
587
+ .feather-phone-outgoing:before {
588
+ content: "\e9ad";
589
+ }
590
+ .feather-pie-chart:before {
591
+ content: "\e9ae";
592
+ }
593
+ .feather-play:before {
594
+ content: "\e9af";
595
+ }
596
+ .feather-play-circle:before {
597
+ content: "\e9b0";
598
+ }
599
+ .feather-plus:before {
600
+ content: "\e9b1";
601
+ }
602
+ .feather-plus-circle:before {
603
+ content: "\e9b2";
604
+ }
605
+ .feather-plus-square:before {
606
+ content: "\e9b3";
607
+ }
608
+ .feather-pocket:before {
609
+ content: "\e9b4";
610
+ }
611
+ .feather-power:before {
612
+ content: "\e9b5";
613
+ }
614
+ .feather-printer:before {
615
+ content: "\e9b6";
616
+ }
617
+ .feather-radio:before {
618
+ content: "\e9b7";
619
+ }
620
+ .feather-refresh-ccw:before {
621
+ content: "\e9b8";
622
+ }
623
+ .feather-refresh-cw:before {
624
+ content: "\e9b9";
625
+ }
626
+ .feather-repeat:before {
627
+ content: "\e9ba";
628
+ }
629
+ .feather-rewind:before {
630
+ content: "\e9bb";
631
+ }
632
+ .feather-rotate-ccw:before {
633
+ content: "\e9bc";
634
+ }
635
+ .feather-rotate-cw:before {
636
+ content: "\e9bd";
637
+ }
638
+ .feather-rss:before {
639
+ content: "\e9be";
640
+ }
641
+ .feather-save:before {
642
+ content: "\e9bf";
643
+ }
644
+ .feather-scissors:before {
645
+ content: "\e9c0";
646
+ }
647
+ .feather-search:before {
648
+ content: "\e9c1";
649
+ }
650
+ .feather-send:before {
651
+ content: "\e9c2";
652
+ }
653
+ .feather-server:before {
654
+ content: "\e9c3";
655
+ }
656
+ .feather-settings:before {
657
+ content: "\e9c4";
658
+ }
659
+ .feather-share:before {
660
+ content: "\e9c5";
661
+ }
662
+ .feather-share-2:before {
663
+ content: "\e9c6";
664
+ }
665
+ .feather-shield:before {
666
+ content: "\e9c7";
667
+ }
668
+ .feather-shield-off:before {
669
+ content: "\e9c8";
670
+ }
671
+ .feather-shopping-bag:before {
672
+ content: "\e9c9";
673
+ }
674
+ .feather-shopping-cart:before {
675
+ content: "\e9ca";
676
+ }
677
+ .feather-shuffle:before {
678
+ content: "\e9cb";
679
+ }
680
+ .feather-sidebar:before {
681
+ content: "\e9cc";
682
+ }
683
+ .feather-skip-back:before {
684
+ content: "\e9cd";
685
+ }
686
+ .feather-skip-forward:before {
687
+ content: "\e9ce";
688
+ }
689
+ .feather-slack:before {
690
+ content: "\e9cf";
691
+ }
692
+ .feather-slash:before {
693
+ content: "\e9d0";
694
+ }
695
+ .feather-sliders:before {
696
+ content: "\e9d1";
697
+ }
698
+ .feather-smartphone:before {
699
+ content: "\e9d2";
700
+ }
701
+ .feather-speaker:before {
702
+ content: "\e9d3";
703
+ }
704
+ .feather-square:before {
705
+ content: "\e9d4";
706
+ }
707
+ .feather-star:before {
708
+ content: "\e9d5";
709
+ }
710
+ .feather-stop-circle:before {
711
+ content: "\e9d6";
712
+ }
713
+ .feather-sun:before {
714
+ content: "\e9d7";
715
+ }
716
+ .feather-sunrise:before {
717
+ content: "\e9d8";
718
+ }
719
+ .feather-sunset:before {
720
+ content: "\e9d9";
721
+ }
722
+ .feather-tablet:before {
723
+ content: "\e9da";
724
+ }
725
+ .feather-tag:before {
726
+ content: "\e9db";
727
+ }
728
+ .feather-target:before {
729
+ content: "\e9dc";
730
+ }
731
+ .feather-terminal:before {
732
+ content: "\e9dd";
733
+ }
734
+ .feather-thermometer:before {
735
+ content: "\e9de";
736
+ }
737
+ .feather-thumbs-down:before {
738
+ content: "\e9df";
739
+ }
740
+ .feather-thumbs-up:before {
741
+ content: "\e9e0";
742
+ }
743
+ .feather-toggle-left:before {
744
+ content: "\e9e1";
745
+ }
746
+ .feather-toggle-right:before {
747
+ content: "\e9e2";
748
+ }
749
+ .feather-trash:before {
750
+ content: "\e9e3";
751
+ }
752
+ .feather-trash-2:before {
753
+ content: "\e9e4";
754
+ }
755
+ .feather-trending-down:before {
756
+ content: "\e9e5";
757
+ }
758
+ .feather-trending-up:before {
759
+ content: "\e9e6";
760
+ }
761
+ .feather-triangle:before {
762
+ content: "\e9e7";
763
+ }
764
+ .feather-truck:before {
765
+ content: "\e9e8";
766
+ }
767
+ .feather-tv:before {
768
+ content: "\e9e9";
769
+ }
770
+ .feather-twitter:before {
771
+ content: "\e9ea";
772
+ }
773
+ .feather-type:before {
774
+ content: "\e9eb";
775
+ }
776
+ .feather-umbrella:before {
777
+ content: "\e9ec";
778
+ }
779
+ .feather-underline:before {
780
+ content: "\e9ed";
781
+ }
782
+ .feather-unlock:before {
783
+ content: "\e9ee";
784
+ }
785
+ .feather-upload:before {
786
+ content: "\e9ef";
787
+ }
788
+ .feather-upload-cloud:before {
789
+ content: "\e9f0";
790
+ }
791
+ .feather-user:before {
792
+ content: "\e9f1";
793
+ }
794
+ .feather-user-check:before {
795
+ content: "\e9f2";
796
+ }
797
+ .feather-user-minus:before {
798
+ content: "\e9f3";
799
+ }
800
+ .feather-user-plus:before {
801
+ content: "\e9f4";
802
+ }
803
+ .feather-user-x:before {
804
+ content: "\e9f5";
805
+ }
806
+ .feather-users:before {
807
+ content: "\e9f6";
808
+ }
809
+ .feather-video:before {
810
+ content: "\e9f7";
811
+ }
812
+ .feather-video-off:before {
813
+ content: "\e9f8";
814
+ }
815
+ .feather-voicemail:before {
816
+ content: "\e9f9";
817
+ }
818
+ .feather-volume:before {
819
+ content: "\e9fa";
820
+ }
821
+ .feather-volume-1:before {
822
+ content: "\e9fb";
823
+ }
824
+ .feather-volume-2:before {
825
+ content: "\e9fc";
826
+ }
827
+ .feather-volume-x:before {
828
+ content: "\e9fd";
829
+ }
830
+ .feather-watch:before {
831
+ content: "\e9fe";
832
+ }
833
+ .feather-wifi:before {
834
+ content: "\e9ff";
835
+ }
836
+ .feather-wifi-off:before {
837
+ content: "\ea00";
838
+ }
839
+ .feather-wind:before {
840
+ content: "\ea01";
841
+ }
842
+ .feather-x:before {
843
+ content: "\ea02";
844
+ }
845
+ .feather-x-circle:before {
846
+ content: "\ea03";
847
+ }
848
+ .feather-x-square:before {
849
+ content: "\ea04";
850
+ }
851
+ .feather-youtube:before {
852
+ content: "\ea05";
853
+ }
854
+ .feather-zap:before {
855
+ content: "\ea06";
856
+ }
857
+ .feather-zap-off:before {
858
+ content: "\ea07";
859
+ }
860
+ .feather-zoom-in:before {
861
+ content: "\ea08";
862
+ }
863
+ .feather-zoom-out:before {
864
+ content: "\ea09";
865
+ }