-
Notifications
You must be signed in to change notification settings - Fork 16
/
config.yml
3692 lines (2989 loc) · 75.1 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
# This is configuration file for font builder and other support scripts.
# Format is descriped below.
#
#
# # metadata, to generate demo & fontello info dialogs
# meta:
#
# author: Daniel Buce
# homepage: http://...
# email: ...
# twitter: http://twitter.com/...
# dribble: http://dribbble.com/...
# license: SIL
# license_url: http://scripts.sil.org/OFL
#
# css-prefix: "icon-" # prefix for css-generated classes
# demo-columns: 4 # used for html demo page generation
#
# # Font headers. All vars from here will be used as font
# # params in fontforge http://fontforge.sourceforge.net/python.html
# font:
#
# version: "1.0"
#
# # use !!!small!!! letters a-z, or Opera will fail under OS X
# # fontname will be also used as file name.
# fontname: myfont
#
# fullname: MyFont
# familyname: Myfont
#
# copyright: Copyright (C) 2012 by xxxxxxxx
#
# ascent: 1638
# descent: 410
# weight: Regular
#
#
# #
# # Optional. You can apply global rescale + offset to all font glyphs.
# # Param values ar 0..1, where 1 = 100%.
# #
# transform:
# baseline: 0.2 # baseline for rescale symmetry. Default value
# # calculated from ascent/decsent
# rescale: 0.68 # rescale glyphs and center around baseline
# offset: -0.1 # shift up/down
#
# glyphs:
# - file: glyph1_file # file name, without extention
# from: 0xNNN # Source code for remapper or merge tool
# code: 0xNNN # Symbol code 0x - hex
# css: icon-gpyph1-name # For generated CSS
# search: [word1, word2] # Search aliases (array). CSS name will be
# # included automatically
# src: first_font_alias # alias to font for merge tool
# # list of aliases in src_fonts section
#
# #
# # local transformations, only for this glyph (optional)
# #
# transform: # personal glyph transformation.
# rescale_rel # *_rel - applyed after global.
# offset: 0.2 # without *_rel - override global
#
# #
# # Fonts aliases used only in font merge tool
# #
# src_fonts:
# first_font_alias: "/absolute/path/to/first/font.ttf"
#
################################################################################
#
meta:
author: Dave Gandy
homepage: http://fortawesome.github.com/Font-Awesome/
email: [email protected]
twitter: https://twitter.com/fontawesome/
github: https://github.com/FortAwesome/Font-Awesome
license: SIL
#license_url: http://creativecommons.org/licenses/by/3.0/
css_prefix_text: "icon-"
columns: 4
#transform:
# baseline: 0.5
# rescale: 1.053
# # offset: -0.05
font:
version: "4.7.0"
# use !!!small!!! letters a-z, or Opera will fail under OS X
# fontname will be also used as file name.
fontname: fontawesome
fullname: Font Awesome
familyname: Font Awesome
copyright: Copyright (C) 2016 by Dave Gandy
ascent: 850
descent: 150
weight: "Regular"
glyphs:
- css: glass
code: 0x1f378
uid: cfaa8fbbdcc7bb8d636cb974aad1f9b9
from: 0xf000
search: [glass]
- css: music
code: 0x266b
uid: 9ea0a737ccc45d6c510dcbae56058849
from: 0xf001
search: [music, note, song, sound]
- css: search
code: 0x1f50d
uid: 9dd9e835aebe1060ba7190ad2b2ed951
from: 0xf002
search: [search, find]
- css: mail
code: 0x2709
uid: bf882b30900da12fca090d9796bc3030
from: 0xf003
search: [mail, email, envelope-o]
- css: mail-alt
code: 0xf0e0
uid: ccc2329632396dc096bb638d4b46fb98
search: [mail, email]
- css: mail-squared
code: 0xf199
uid: 17c21cd98db80e521e573eba247bd69b
search: [mail, email]
- css: heart
code: 0x2665
uid: d73eceadda1f594cec0536087539afbf
from: 0xf004
search: [heart]
- css: heart-empty
code: 0x2661
uid: f3dc2d6d8fe9cf9ebff84dc260888cdf
from: 0xf08a
search: [heart]
- css: star
code: 0x2605
uid: 474656633f79ea2f1dad59ff63f6bf07
from: 0xf005
search: [star]
- css: star-empty
code: 0x2606
uid: d17030afaecc1e1c22349b99f3c4992a
from: 0xf006
search: [star, star-o]
- css: star-half
code: 0xe701
uid: 8f8278fbe5a2a0ea836be3c408b005d2
from: 0xf089
search: [star]
- css: star-half-alt
code: 0xf123
uid: 84cf1fcc3fec556e7eaeb19679ca2dc9
search: [star]
- css: user
code: 0x1f464
uid: 8b80d36d4ef43889db10bc1f0dc9a862
from: 0xf007
search: [profile, contact, user]
- css: user-plus
code: 0xf234
uid: 1bafeeb1808a5fe24484c7890096901a
search: [user, plus, add]
- css: user-times
code: 0xf235
uid: fb1c59faa93eb6e2248c2456625b08a2
search: [user, remove, delete]
- css: users
code: 0x1f465
from: 0xf0c0
uid: 31972e4e9d080eaa796290349ae6c1fd
search: [users, contacts, friends]
- css: male
code: 0xf183
uid: ca2d64f8a3ea7cbf6af45898b2dcf35e
search: [male]
- css: female
code: 0xf182
uid: 9bf7e14698cccdca37a6f1a02cf7d79e
search: [female]
- css: child
code: 0xf1ae
uid: c2314ed1d2314b89f9285c53bcbf2548
search: [child, people]
- css: user-secret
code: 0xf21b
uid: f9c8ea86275ca16128235c6452b67b8e
search: [secret, private, user]
- css: video
code: 0x1f3ac
uid: 872d9516df93eb6b776cc4d94bd97dac
from: 0xf008
search: [movie, video, film]
- css: videocam
code: 0x1f3a5
uid: 0f99ab40ab0b4d64a74f2d0deeb03e42
from: 0xf03d
search: [facetime, movie, video, film, video-camera]
- css: picture
code: 0x1f304
uid: 381da2c2f7fd51f8de877c044d7f439d
from: 0xf03e
search: [image, picture, photo]
- css: camera
code: 0x1f4f7
uid: dc3f1d5b1d006f7f7b3b6295eccab9da
from: 0xf030
search: [camera, photo]
- css: camera-alt
code: 0xe70f
uid: 9d3d9d6ce1ec63eaa26281e6162853c9
from: 0xf083
search: [camera, photo]
- css: th-large
code: 0xe708
uid: dd492243d64e21dfe16a92452f7861cb
from: 0xf009
search: [image, list, thumbnails]
- css: th
code: 0x268f
uid: b1887b423d2fd15c345e090320c91ca0
from: 0xf00a
search: [image, list, thumbnails]
- css: th-list
code: 0x2630
uid: f805bb95d40c7ef2bc51b3d50d4f2e5c
from: 0xf00b
search: [list]
- css: ok
code: 0x2713
uid: 12f4ece88e46abd864e40b35e05b11cd
from: 0xf00c
search: [ok, yes, check, mark]
- css: ok-circled
code: 0x2714
uid: 43ab845088317bd348dee1d975700c48
from: 0xf058
search: [ok, yes, check, mark]
- css: ok-circled2
code: 0xe702
uid: ad33e708f4d2e25c5056c931da1528d6
from: 0xf05d
search: [ok, yes, check, mark, check-circle-o]
- css: ok-squared
code: 0xf14a
uid: 1400d5103edd2fa6d2d61688fee79a5a
search: [ok, check]
- css: cancel
code: 0x2715
uid: 5211af474d3a9848f67f945e2ccaf143
from: 0xf00d
search: [close, cancel, reject, times]
- css: cancel-circled
code: 0x2716
uid: 0f4cae16f34ae243a6144c18a003f2d8
from: 0xf057
search: [close, cancel, reject, times-circle]
- css: cancel-circled2
code: 0xe703
uid: 2e2dba0307a502a8507c1729084c7ab5
from: 0xf05c
search: [close, cancel, reject]
- css: plus
code: 0x2b
uid: 44e04715aecbca7f266a17d5a7863c68
from: 0xf067
search: [plus]
- css: plus-circled
code: 0x2795
uid: 4ba33d2607902cf690dd45df09774cb0
from: 0xf055
search: [plus]
- css: plus-squared
code: 0xf0fe
uid: 1a5cfa186647e8c929c2b17b9fc4dac1
search: [plus, plus-square]
- css: plus-squared-alt
code: 0xf196
uid: 2d3be3e856fc1e4ac067590d2ded1b07
search: [plus]
#- css: plus-squared-small
# code: 0xf116
# uid: bec22f5ef2f066ae057a0246fc6a36dd
# search: [plus, expand]
- css: minus
code: 0x2d
uid: 861ab06e455e2de3232ebef67d60d708
from: 0xf068
search: [minus]
- css: minus-circled
code: 0x2796
uid: eeadb020bb75d089b25d8424aabe19e0
from: 0xf056
search: [minus]
- css: minus-squared
code: 0xf146
uid: f755a58fb985eeb70bd47d9b31892a34
search: [minus]
- css: minus-squared-alt
code: 0xf147
uid: 18ef25350258541e8e54148ed79845c0
search: [minus]
#- css: minus-squared-small
# code: 0xf117
# uid: 21e8b8217ed9d1a164fd02eff39c5388
# search: [minus, collapse]
- css: help
code: 0xf128
uid: ce3cf091d6ebd004dd0b52d24074e6e3
search: [help]
- css: help-circled
code: 0xe704
uid: 17ebadd1e3f274ff0205601eef7b9cc4
from: 0xf059
search: [help, question, question-circle]
- css: info-circled
code: 0xe705
uid: e82cedfa1d5f15b00c5a81c9bd731ea2
from: 0xf05a
search: [info, info-circle]
- css: info
code: 0xf129
uid: 3d4ea8a78dc34efe891f3a0f3d961274
search: [info]
- css: home
code: 0x2302
uid: d7271d490b71df4311e32cdacae8b331
from: 0xf015
search: [home]
- css: link
code: 0x1f517
from: 0xf0c1
uid: 0ddd3e8201ccc7d41f7b7c9d27eca6c1
search: [link, chain]
- css: unlink
code: 0xf127
uid: 1dcd2b2148b7f086a4eb47f6a746bdee
search: [unlink, chain-broken]
- css: link-ext
code: 0xf08e
uid: e15f0d620a7897e2035c18c80142f6d9
search: [link, url, external, external-link]
- css: link-ext-alt
code: 0xf14c
uid: e35de5ea31cd56970498e33efbcb8e36
search: [link, url, external]
- css: attach
code: 0x1f4ce
from: 0xf0c6
uid: 0d6ab6194c0eddda2b8c9cedf2ab248e
search: [attach, clip, paperclip]
- css: lock
code: 0x1f512
uid: c1f1975c885aa9f3dad7810c53b82074
from: 0xf023
search: [lock]
- css: lock-open
code: 0x1f513
from: 0xf09c
uid: 657ab647f6248a6b57a5b893beaf35a9
search: [lock, open, unlock]
- css: lock-open-alt
code: 0xf13e
uid: 05376be04a27d5a46e855a233d6e8508
search: [lock, unlock, open]
- css: pin
code: 0x1f4cc
uid: 5b0772e9484a1a11646793a82edd622a
from: 0xf08d
search: [pin, pushpin]
- css: eye
code: 0xe70a
uid: c5fd349cbd3d23e4ade333789c29c729
from: 0xf06e
search: [eye, subscribe]
- css: eye-off
code: 0xe70b
uid: 7fd683b2c518ceb9e5fa6757f2276faa
from: 0xf070
search: [eye, unsubscribe]
- css: tag
code: 0xe70c
uid: 3db5347bd219f3bce6025780f5d9ef45
from: 0xf02b
search: [tag, category, price, offer]
- css: tags
code: 0xe70d
uid: a3f89e106175a5c5c4e9738870b12e55
from: 0xf02c
search: [tag, category, price, offer]
- css: bookmark
code: 0x1f516
uid: f04a5d24e9e659145b966739c4fde82a
from: 0xf02e
search: [bookmark]
- css: bookmark-empty
code: 0xf097
uid: 2f5ef6f6b7aaebc56458ab4e865beff5
search: [bookmark]
- css: flag
code: 0x2691
uid: 57a0ac800df728aad61a7cf9e12f5fef
from: 0xf024
search: [flag]
- css: flag-empty
code: 0xf11d
uid: 6c83092421441296f5c4e8074b0cf32c
search: [flag]
- css: flag-checkered
code: 0xf11e
uid: d7a614bd701f6712e8e3b2be124899e1
search: [flag]
- css: thumbs-up
code: 0x1f44d
uid: acf41aa4018e58d49525665469e35665
from: 0xf087
search: [thumbs, vote, up, like, love, thumbs-o-up]
- css: thumbs-down
code: 0x1f44e
uid: 7533e68038fc6d520ede7a7ffa0a2f64
from: 0xf088
search: [thumbs, vote, down, unlike, dislike, thumbs-o-down]
- css: thumbs-up-alt
code: 0xf164
uid: 5e2ab018e3044337bcef5f7e94098ea1
search: [thumbs, vote, up, like, love]
- css: thumbs-down-alt
code: 0xf165
uid: ddcd918b502642705838815d40aea9e3
search: [thumbs, vote, down, dislike, unlike]
- css: download
code: 0x1f4e5
uid: 9a76bc135eac17d2c8b8ad4a5774fc87
from: 0xf019
search: [download]
- css: upload
code: 0x1f4e4
uid: eeec3208c90b7b48e804919d0d2d4a41
from: 0xf093
search: [upload]
- css: download-cloud
code: 0xf0ed
uid: f5999a012fc3752386635ec02a858447
search: [download, cloud]
- css: upload-cloud
code: 0xf0ee
uid: de2fc7a5c986ab8c622f63455d7cf814
search: [upload, cloud]
- css: reply
code: 0xf112
uid: c6be5a58ee4e63a5ec399c2b0d15cf2c
search: [reply]
- css: reply-all
code: 0xf122
uid: 1b5597a3bacaeca6600e88ae36d02e0a
search: [reply]
- css: forward
code: 0x27a6
uid: 3d39c828009c04ddb6764c0b04cd2439
from: 0xf064
search: [forward]
- css: quote-left
code: 0xf10d
uid: ab95e1351ebaec5850101097cbf7097f
search: [quote]
- css: quote-right
code: 0xf10e
uid: d745d7c05b94e609decabade2cae12cb
search: [quote]
- css: code
code: 0xf121
uid: 7034e4d22866af82bef811f52fb1ba46
search: [code]
- css: export
code: 0xe715
uid: 895405dfac8a3b7b2f23b183c6608ee6
from: 0xf045
search: [export, share, share-permalink]
- css: export-alt
code: 0xf14d
uid: 13b9eebfea581ad8e756ee7a18a7cba8
search: [export, share]
- css: share
code: 0xf1e0
uid: 4aad6bb50b02c18508aae9cbe14e784e
search: [share]
- css: share-squared
code: 0xf1e1
uid: 4c1f3c0b331d5f72c6a38d7bb7632675
search: [share]
- css: pencil
code: 0x270e
uid: d35a1d35efeb784d1dc9ac18b9b6c2b6
from: 0xf040
search: [pencil, write, reply, edit]
- css: pencil-squared
code: 0xf14b
uid: 44fae3bfdd54754dc68ec50d37efea37
search: [pencil, edit]
- css: edit
code: 0x270d
uid: 41087bc74d4b20b55059c60a33bf4008
from: 0xf044
search: [pencil, write, reply, edit]
- css: print
code: 0xe716
uid: 7277ded7695b2a307a5f9d50097bb64c
from: 0xf02f
search: [print]
- css: retweet
code: 0xe717
uid: 09feb4465d9bd1364f4e301c9ddbaa92
from: 0xf079
search: [retweet, twitter]
- css: keyboard
code: 0xf11c
uid: ecb97add13804c190456025e43ec003b
search: [keyboard, keyboard-o]
- css: gamepad
code: 0xf11b
uid: 0133387f2069a1b3168942b84d81dd3a
search: [gamepad]
- css: comment
code: 0xe718
uid: 85528017f1e6053b2253785c31047f44
from: 0xf075
search: [comment, reply, write]
- css: chat
code: 0xe720
uid: dcedf50ab1ede3283d7a6c70e2fe32f3
from: 0xf086
search: [chat, talk]
- css: comment-empty
code: 0xf0e5
uid: 9c1376672bb4f1ed616fdd78a23667e9
search: [comment, reply, write, comment-o]
- css: chat-empty
code: 0xf0e6
uid: 31951fbb9820ed0690f675b3d495c8da
search: [chat, talk]
- css: bell
code: 0x1f514
from: 0xf0a2
uid: cd21cbfb28ad4d903cede582157f65dc
search: [alert, bell, jingle, bell-o]
- css: bell-alt
code: 0xf0f3
uid: 671f29fa10dda08074a4c6a341bb4f39
search: [alert, bell, jingle]
- css: bell-off
code: 0xf1f6
uid: 563683020e0bf9f22f3f055a69b5c57a
search: [bell]
- css: bell-off-empty
code: 0xf1f7
uid: 8a074400a056c59d389f2d0517281bd5
search: [bell]
- css: attention-alt
code: 0xf12a
uid: 00391fac5d419345ffcccd95b6f76263
search: [attention, warning, alert]
- css: attention
code: 0x26a0
uid: c76b7947c957c9b78b11741173c8349b
from: 0xf071
search: [attention, warning, alert]
- css: attention-circled
code: 0x2757
uid: b035c28eba2b35c6ffe92aee8b0df507
from: 0xf06a
search: [attention, warning, alert]
- css: location
code: 0xe724
uid: 0d08dbb1dd648a43bdea81b7e6c9e036
from: 0xf041
search: [location, mark, marker]
- css: direction
code: 0xf124
uid: 921e3974e54ff9e8b7cd906a3dc74636
search: [direction, location, location-arrow]
- css: compass
code: 0xf14e
uid: e5d624264734620fa9f98d59e6dc941f
search: [compass]
- css: trash
code: 0xf1f8
uid: bbfb51903f40597f0b70fd75bc7b5cac
search: [trash, trash-o]
- css: trash-empty
code: 0xe729
uid: f48ae54adfb27d8ada53d0fd9e34ee10
from: 0xf014
search: [trash, delete]
- css: doc
code: 0x1f4c4
uid: 1b5a5d7b7e3c71437f5a26befdd045ed
from: 0xf016
search: [doc, file, article]
- css: docs
code: 0xf0c5
uid: c8585e1e5b0467f28b70bce765d5840c
search: [doc, file, article, copy]
- css: doc-text
code: 0xf0f6
uid: 5408be43f7c42bccee419c6be53fdef5
search: [doc, file, article, file-text-o]
- css: doc-inv
code: 0xf15b
uid: 178053298e3e5b03551d754d4b9acd8b
search: [doc, file, article]
- css: doc-text-inv
code: 0xf15c
uid: c08a1cde48d96cba21d8c05fa7d7feb1
search: [doc, file, article]
- css: file-pdf
code: 0xf1c1
uid: 9daa1fdf0838118518a7e22715e83abc
search: [file, pdf, file-pdf-o]
- css: file-word
code: 0xf1c2
uid: 310ffd629da85142bc8669f010556f2d
search: [file, word]
- css: file-excel
code: 0xf1c3
uid: f761c3bbe16ba2d332914ecb28e7a042
search: [file, excel]
- css: file-powerpoint
code: 0xf1c4
uid: edcd4022de8d8df266ef7c42d2658ca5
search: [file, powerpoint]
- css: file-image
code: 0xf1c5
uid: 3c961c1a8d874815856fc6637dc5a13c
search: [file, image, picture]
- css: file-archive
code: 0xf1c6
uid: e80ae555c1413a4ec18b33fb348b4049
search: [file, archive, file-zip-o]
- css: file-audio
code: 0xf1c7
uid: 81db033e704eb7c586a365559d7c0f36
search: [file, audio, sound]
- css: file-video
code: 0xf1c8
uid: dd69d9aa589ea7bc0a82a3fe67039f4b
search: [file, video, movie]
- css: file-code
code: 0xf1c9
uid: 26613a2e6bc41593c54bead46f8c8ee3
search: [file, code]
- css: folder
code: 0x1f4c1
uid: f8aa663c489bcbd6e68ec8147dca841e
from: 0xf07b
search: [folder]
- css: folder-open
code: 0x1f4c2
uid: c95735c17a10af81448c7fed98a04546
from: 0xf07c
search: [folder]
- css: folder-empty
code: 0xf114
uid: b091a8bd0fdade174951f17d936f51e4
search: [folder]
- css: folder-open-empty
code: 0xf115
uid: 6533bdc16ab201eb3f3b27ce989cab33
search: [folder]
- css: box
code: 0xf187
uid: 04ff8d6592fe548b332b27ed87ce397a
search: [box]
- css: rss
code: 0xf09e
uid: 72b1277834cba5b7944b0a6cac7ddb0d
search: [rss]
- css: rss-squared
code: 0xf143
uid: de5f0a564ccf8816325330e292e11533
search: [rss]
- css: phone
code: 0x1f4de
from: 0xf095
uid: 9f7e588c66cfd6891f6f507cf6f6596b
search: [phone, telephone, call]
- css: phone-squared
code: 0xf098
uid: ec488dfd1f548948c09671ca5a60ec92
search: [phone]
- css: fax
code: 0xf1ac
uid: 5cbe092278ff71fc27c920298b0f3ca3
search: [fax]
- css: menu
code: 0xf0c9
uid: 559647a6f430b3aeadbecd67194451dd
search: [menu]
- css: cog
code: 0x2699
uid: e99461abfef3923546da8d745372c995
from: 0xf013
search: [settings, cog, gear, params]
- css: cog-alt
code: 0x26ef
uid: 98687378abd1faf8f6af97c254eb6cd6
from: 0xf085
search: [settings, cog, gear, params]
- css: wrench
code: 0x1f527
from: 0xf0ad
uid: 5bb103cd29de77e0e06a52638527b575
search: [wrench, tools, settings, params]
- css: sliders
code: 0xf1de
uid: 21b42d3c3e6be44c3cc3d73042faa216
search: [sliders, equalizer, settings]
- css: basket
code: 0xe73d
uid: 9affc98d652b86628d650ee58dbf0357
from: 0xf07a
search: [basket, shopping, cart, shopping-cart]
- css: cart-plus
code: 0xf217
uid: cddbeffea9d90c5db93d5d3e77b8893e
search: [cart, basket]
- css: cart-arrow-down
code: 0xf218
uid: 93c35534e6b079466c4676cdedcdb7c1
search: [cart, basket]
- css: calendar
code: 0x1f4c5
uid: 531bc468eecbb8867d822f1c11f1e039
from: 0xf073
search: [calendar, date]
- css: calendar-empty
code: 0xf133
uid: ead4c82d04d7758db0f076584893a8c1
search: [calendar]
- css: login
code: 0xe740
uid: 3a00327e61b997b58518bd43ed83c3df
from: 0xf090
search: [login, signin, enter, sign-in]
- css: logout
code: 0xe741
uid: 0d20938846444af8deb1920dc85a29fb
from: 0xf08b
search: [logout, signout, exit, sign-out]
# Sound
- css: mic
code: 0xf130
uid: 19c50c52858a81de58f9db488aba77bc
search: [mic]
- css: mute
code: 0xf131
uid: 43c629249e2cca7e73cd4ef410c9551f
search: [mic, mute]
- css: volume-off
code: 0x1f507
uid: e44601720c64e6bb6a2d5cba6b0c588c
from: 0xf026
search: [volume, sound, mute]
- css: volume-down
code: 0x1f509
uid: fee6e00f36e8ca8ef3e4a62caa213bf6
from: 0xf027
search: [volume, sound]
- css: volume-up
code: 0x1f50a
uid: 76857a03fbaa6857fe063b6c25aa98ed
from: 0xf028
search: [volume, sound]
- css: headphones
code: 0x1f3a7
uid: f27bba41a700af51a4dd23cf4edea61d
from: 0xf025
search: [sound, music, headphones]
- css: clock
code: 0x1f554
uid: 598a5f2bcf3521d1615de8e1881ccd17
from: 0xf017
search: [clock, time, clock-o]
- css: lightbulb
code: 0xf0eb
uid: 5278ef7773e948d56c4d442c8c8c98cf
search: [idea, lamp, light, lightbulb-o]
- css: block
code: 0x1f6ab
uid: 98d9c83c1ee7c2c25af784b518c522c5
from: 0xf05e
search: [block, deny]
- css: resize-full
code: 0xe744
uid: e594fc6e5870b4ab7e49f52571d52577
from: 0xf065
search: [resize, fullscreen]
- css: resize-full-alt
code: 0xf0b2
uid: b013f6403e5ab0326614e68d1850fd6b
search: [resize, fullscreen]
- css: resize-small
code: 0xe746
uid: 3c24ee33c9487bbf18796ca6dffa1905
from: 0xf066
search: [resize]
- css: resize-vertical
code: 0x2b0c
uid: d3b3f17bc3eb7cd809a07bbd4d178bee
from: 0xf07d
search: [resize]
- css: resize-horizontal
code: 0x2b0d
uid: 3c73d058e4589b65a8d959c0fc8f153d
from: 0xf07e
search: [resize]
- css: move
code: 0xf047
uid: 6605ee6441bf499ffa3c63d3c7409471
search: [move]
- css: zoom-in
code: 0xe750
uid: 0b2b66e526028a6972d51a6f10281b4b
from: 0xf00e