-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.yml
1760 lines (1547 loc) · 36.6 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: Stephen Hutchings
homepage: http://typicons.com/
twitter: https://twitter.com/Typicons/
github: https://github.com/stephenhutchings/typicons.font
license: SIL
license_url: http://scripts.sil.org/OFL
css_prefix_text: "icon-"
columns: 4
transform:
baseline: 0.5
rescale: 1.2
#offset: -0.44
font:
version: "2.0.2"
# use !!!small!!! letters a-z, or Opera will fail under OS X
# fontname will be also used as file name.
fontname: typicons
fullname: Typicons
familyname: Typicons
copyright: (c) Stephen Hutchings 2012
ascent: 850
descent: -150
weight: Book
glyphs:
- css: music-outline
code: 0xe0b2
uid: b1c81b3df9f4a9b8c393f405bb5293d8
search: [music, note, song, sound]
- css: music
code: 0xe0b3
uid: 5rarhtgcreeh8evuaqd8zoekgehkt3mm
search: [music, note, song, sound]
- css: search-outline
code: 0xe132
uid: 1be0ad37c941fcc88233d38c2e460cf5
search: [search, find]
- css: search
code: 0xe133
uid: t6cy82vd3t5piy0j3uknrlrzpg1ld8y3
search: [search, find]
- css: mail
code: 0xe09a
uid: wg849ixsobykxshs6efpc6fk4m0fq8bh
search: [mail, email]
- css: heart
code: 0xe07e
uid: 3b00728aa97ad1a2581d414bd9d650bc
search: [heart]
- css: heart-filled
code: 0xe07f
uid: hi76m8qggwn5lbl286oeqp64q0n8kusy
search: [heart]
- css: star
code: 0xe0f0
uid: bcdc294bb787b15203b82f2be8096548
search: [star]
- css: star-filled
code: 0xe0f1
uid: vyuzsm6wijlfwtjo4ifkoblfmsepk6g8
search: [star]
-
css: user-outline
code: 0xe112
uid: 8ed4884bf9b840729eef8f0bbd2b1dbb
search: [profile, contact, user]
-
css: user
code: 0xe113
uid: bczb7qup4axmc490xmuuv8qdhcnbgeyf
search: [profile, contact, user]
-
css: users-outline
code: 0xe07b
uid: a1d4b614f12cfe2b5aa66313ad88c90c
search: [users, contacts, friends]
-
css: users
code: 0xe07c
uid: x8m4z7b33cv1h2s784tjlam56uq40wtd
search: [users, contacts, friends]
-
css: user-add-outline
code: 0xe10e
uid: b9cd6e266f74ac97272b2fabbfbd0b85
search: [user, member, add]
-
css: user-add
code: 0xe10f
uid: 076f940ac56adee91dd43d6fd77dd0cf
search: [user, member, add]
-
css: user-delete-outline
code: 0xe110
uid: 344c1c070cd0018ced51d3f051c6f4dd
search: [user, member, delete, remove]
-
css: user-delete
code: 0xe111
uid: d139ce97a43aedd333fa40f776328c3c
search: [user, member, delete, remove]
-
css: video
code: 0xe06c
uid: 342dd4f00ec75318e1484d360cc21871
search: [video, movie, film]
-
css: videocam-outline
code: 0xe114
uid: 3d8b20949cd6f782067f9e652967f8a8
search: [videocam, movie, video, film]
-
css: videocam
code: 0xe115
uid: fa92c2529910e6958311b673ebf307e2
search: [videocam, movie, video, film]
-
css: picture-outline
code: 0xe082
uid: 96819a35f3d743b4df0ea2e92803eeb5
search: [image, picture, photo]
-
css: picture
code: 0xe083
uid: 6a7ed3214c9049148cbdb01825e5efc2
search: [image, picture, photo]
-
css: camera-outline
code: 0xe037
uid: 05de65980bb8a3711da037c2cc25f4f8
search: [camera, photo]
-
css: camera
code: 0xe038
uid: aklhk54yg779pgovdsjr9r9w22hej00n
search: [camera, photo]
-
css: th-outline
code: 0xe0ff
uid: a0af0ba081a37bac0783788042ea1774
search: [image, list, thumbnails]
-
css: th
code: 0xe100
uid: 9x8p16w516pn1b19chr85japkedporm7
search: [image, list, thumbnails]
-
css: th-large-outline
code: 0xe0f9
uid: 08db5357646aae59e018ba87f2d466cd
search: [thumbnail, list, image]
-
css: th-large
code: 0xe0fa
uid: e903698d494785d5e9328f0645da81bb
search: [thumbnail, list, image]
- css: th-list-outline
code: 0xe0fb
uid: 43855c51ebf847e8d581b794e4126dfe
search: [list]
- css: th-list
code: 0xe0fc
uid: lu2wqmd7v9zp21knhy4eifo41wjp4cnx
search: [list]
- css: ok-outline
code: 0xe104
uid: 40c9502d45c736a0a6ec45e6fbc28656
search: [ok, yes, check, mark]
- css: ok
code: 0xe105
uid: 43fl9m553j1z5937vfjz0lgolrlspxwl
search: [ok, yes, check, mark]
-
css: cancel-outline
code: 0xe108
uid: 24aba8757d4a7b49568c98a577a85df3
search: [close, cancel, reject]
-
css: cancel
code: 0xe109
uid: 1dq4tek4k8ea7zlj4kc3w83itnutaxg5
search: [close, cancel, reject]
-
css: cancel-alt
code: 0xe025
uid: 3df1557e2d6e84ec32bd47aee5bfdf59
search: [close, cancel]
-
css: cancel-alt-filled
code: 0xe026
uid: l11ixzfrief0chds7elurdm2ot98xp4l
search: [close, cancel]
-
css: cancel-circled-outline
code: 0xe053
uid: 517522647a556192fbc78aa391b7b0c2
search: [close, cancel, delete, reject]
-
css: cancel-circled
code: 0xe054
uid: 3327862df439988139b61814143b7a42
search: [close, cancel, delete, reject]
- css: plus-outline
code: 0xe0c0
uid: 0677f879e75956571d8cbbb478487c47
search: [plus]
- css: plus
code: 0xe0c1
uid: 1gf923f9wvaezxmfon515dglxa3drf0e
search: [plus]
- css: minus-outline
code: 0xe0af
uid: 7b67ab93e2dd09f8884b574925ab9352
search: [minus]
- css: minus
code: 0xe0b0
uid: qab5uvjyoc3uu4d2pvt8soshtgkuvpak
search: [minus]
-
css: divide-outline
code: 0xe05a
uid: c7b7ea4719f6592a6b36f8d041226e37
search: [divide]
-
css: divide
code: 0xe05b
uid: 863fa3cea75a505bbc420a1db8b6b89b
search: [divide]
- css: eq-outline
code: 0xe065
uid: f8d0a7a987fa0384bfd7e08000ec1476
search: [equal]
- css: eq
code: 0xe066
uid: yb3vdwfxck5hmudxna4fq8fcwo9xari9
search: [equal]
#- css: help-filled
# code: 0x2753
# uid: 3sl64gd9y68dl54i2g4vo3u57osdabft
# from: 0x007d
# search: [help, question]
- css: info-outline
code: 0xe086
uid: 6364d85e960f23b9a843a506387e7970
search: [info]
- css: info
code: 0xe087
uid: 85fda3129wk4amvn25wrq843sbj3yzl0
search: [info]
- css: home-outline
code: 0xe080
uid: a42f298da5c64e646a5d532724cd6e15
search: [home]
- css: home
code: 0xe081
uid: w3nzesrlbezu6f30q7ytyq919p6gdlb6
search: [home]
- css: link-outline
code: 0xe090
uid: 3562ca2f2f16f6629b5ffabfe3cfa5a7
search: [link, url]
- css: link
code: 0xe091
uid: 45g23adv6rwe7nokwek4d471h8y09ayz
search: [link, url]
-
css: attach-outline
code: 0xe023
uid: 6310fc4804f3ffaebc4436ee30f3856e
search: [attach, clip]
-
css: attach
code: 0xe024
uid: 0f81c70dd389bf78f46387b794f2573f
search: [attach, clip]
- css: lock
code: 0xe096
uid: 3e1bb74572a30486bd647304d9fcaff6
search: [lock, close]
- css: lock-filled
code: 0xe097
uid: 4x5p6fnblkhqsj4ibuc724faotghuiaq
search: [lock, close]
- css: lock-open
code: 0xe098
uid: 75cff40f03567673e13b0e7d005b7741
search: [lock, unlock, open]
- css: lock-open-filled
code: 0xe099
uid: a33vyvfsje6eklq8loqtzb1jcgo37onm
search: [lock, unlock, open]
- css: pin-outline
code: 0xe0ba
uid: 6373242453e92e8ce419b8391463867a
search: [pin, pushpin]
- css: pin
code: 0xe0bb
uid: p57wgnf4glngbchbucdi029iptu8oxb8
search: [pin, pushpin]
- css: eye-outline
code: 0xe069
uid: 366c3c56b79031deacc953d7f92085e5
search: [eye, subscribe]
- css: eye
code: 0xe06a
uid: k7sao112253txym1egnte7822irbyphe
search: [eye, subscribe]
- css: tag
code: 0xe0f7
uid: z2kx6nr3u9112p0e1pfhxdhva9v7kd4k
search: [tag, category, price, offer]
- css: tags
code: 0xe0f8
uid: e417e4ca7774bb0f4aca5278ae3bfe49
search: [tags]
- css: bookmark
code: 0x1f516
uid: gr2i0fsmy50yfjhz6defsqkexnmctv8z
from: 0xe030
search: [bookmark]
- css: flag
code: 0xe06d
uid: d91495faa39f7bc987caa15275d96ae8
search: [flag]
- css: flag-filled
code: 0xe06e
uid: 4i0s2bklai5fywieqm4dqqngfz9ptfab
search: [flag]
- css: thumbs-up
code: 0x1f44d
uid: tau7t0t38662eqxrb80ozeiase5em2x9
from: 0xe103
search: [thumbs, up, like, vote]
- css: thumbs-down
code: 0x1f44e
uid: ani12ucvy2plqmykysnk4zd9i24cmxqp
from: 0xe102
search: [thumbs, down, unlike, vote]
-
css: download-outline
code: 0xe060
uid: 86157b2f942e37940f8702a4a3221a2b
search: [download]
-
css: download
code: 0x1f4e5
uid: 7yekfd0qlkgp6emwfbo10sjdmf8pewli
from: 0xe061
search: [download]
-
css: upload-outline
code: 0xe10c
uid: 9367acef93427f6301ee8ab42d45def7
search: [upload]
-
css: upload
code: 0xe10d
uid: f156d14a32cd7d5bc5a5f70382ab04ec
search: [upload]
-
css: upload-cloud-outline
code: 0xe051
uid: e9bce795d01ef5a058c63cab0a03dc66
search: [cloud, upload]
-
css: upload-cloud
code: 0xe048
uid: 4e77fc7fc71e69ba520ffa3b4d898e55
search: [cloud, upload]
- css: reply-outline
code: 0xe005
uid: c60f50a1729165e3752fa27a16325208
search: [reply]
- css: reply
code: 0xe006
uid: 28r0xthd180mg0wnfh8ek3mtn761hs11
search: [reply]
- css: forward-outline
code: 0xe00a
uid: ca92083691d138f832d6a9874d7636dc
search: [forward]
- css: forward
code: 0xe00b
uid: 7p5gflyid3o4gtesy94a6erq94e4pz7u
search: [forward]
-
css: code-outline
code: 0xe049
uid: 9e02faeda1ede96a076b72260f44e4b5
search: [code]
-
css: code
code: 0xe04a
uid: 8b202d3dd1fd0541ed0d47d1279ec8f3
search: [code]
- css: export-outline
code: 0xe067
uid: 44a6b866f720a1d2b11bf05023a4e089
search: [export, share]
- css: export
code: 0xe068
uid: wh8nbtrxjl2f67dpybsww6mri0xcaklm
search: [export, share]
- css: pencil
code: 0x270e
uid: 1e77a2yvsq3owssduo2lcgsiven57iv5
from: 0xe0b5
search: [pencil, write, reply, edit]
-
css: pen
code: 0xe0b4
uid: 8e50efd23ddcb26f05878476c2c1ce8f
search: [pen, stylo]
-
css: feather
code: 0xe06b
uid: d78522fbabf6251440fe30463756192c
search: [feather]
- css: edit
code: 0xe062
uid: jqzwo6i8oicjbn049sh2856d8anrqoli
search: [pencil, write, reply, edit]
-
css: print
code: 0xe0c6
uid: 9d4f81f2d81e14141b68706668498441
search: [print]
-
css: comment
code: 0xe0ab
uid: b90868gfogj970a1g0dnot6hm5r4uj55
search: [comment, reply, write]
-
css: chat
code: 0xe0aa
uid: 2hqh2lidoqvaujgq29tdkrtiay5s6tyk
search: [comment, reply, chat, talk]
-
css: chat-alt
code: 0xe0ac
uid: ccf71c505b173c61a2e4e8c8cb907dfa
search: [talk, chat]
-
css: bell
code: 0xe02e
uid: c155bb86da2f8da808394d58220b5146
search: [alert, bell, jingle]
-
css: attention
code: 0xe088
uid: 2a58da2238c31ffa3ff4dac966c2dc99
search: [attention, warning, alert]
-
css: attention-filled
code: 0x26a0
uid: rp4bhvranczqlvvwzerni2uuanp2gvqb
from: 0xe089
search: [attention, warning, alert]
-
css: warning-empty
code: 0xe11a
uid: 8f28d948aa6379b1a69d2a090e7531d4
search: [warning, alert, attention]
-
css: warning
code: 0xe11b
uid: dd4b00255957a608953c409346e7d7fb
search: [warning, alert, attention]
-
css: contacts
code: 0xe04f
uid: ba9ae3250633c7b1fe249587358c8383
search: [contacts]
-
css: vcard
code: 0xe033
uid: 933f454f9d3342a055217fd695475d44
search: [vcard, contact, card]
- css: address
code: 0xe059
uid: gruasbs60jlu9us53csv9q7nnwy4d990
search: [address]
-
css: location-outline
code: 0xe094
uid: 13289e807e02b1d46f2fe10d81d6fba6
search: [location, mark, marker]
-
css: location
code: 0xe095
uid: gjt8ba5q0n3nn8ptw6324sflr8qoaeam
search: [location, mark, marker]
-
css: map
code: 0xe09b
uid: 87d337fee4866c2c28f6082994ce0f41
search: [map]
-
css: direction-outline
code: 0xe092
uid: 0d5c609b66c40a8482943f18235da869
search: [direction]
-
css: direction
code: 0xe093
uid: cka09asalx8otiykquyp5d9tymlan1o3
search: [direction]
-
css: compass
code: 0xe04e
uid: 547c96163e3724fa7384f6ddce0c10e7
search: [compass]
- css: trash
code: 0xe10a
uid: csuoy0rqoun3unhsgjoy2uumpldzbfmt
search: [trash, delete]
-
css: doc
code: 0xe05f
uid: 85ef733b1e280809e8443f5f0167b5c2
search: [document]
-
css: doc-text
code: 0xe05e
uid: 6a06892e76b81e023da6ddfb38a26b37
search: [document, text]
-
css: doc-add
code: 0xe05c
uid: bd517dbd6ccbc464f6d80efca97abb7d
search: [document, add]
-
css: doc-remove
code: 0xe05d
uid: 72686f3e46dda4b891938886eca27c59
search: [document, remove]
-
css: news
code: 0xe0b1
uid: 56da5324fc5a04f131ab65668c36b931
search: [news]
-
css: folder
code: 0xe077
uid: 83e7b366e9b39bc4006b821f7c5efa4d
search: [folder]
-
css: folder-add
code: 0xe075
uid: e536c80e011366046360f5ffe669dbfd
search: [folder, add]
-
css: folder-delete
code: 0xe076
uid: aa0d87f43ed577ed479df28dc3724c11
search: [folder, delete]
-
css: archive
code: 0xe004
uid: f7f29824b6c2d0a9645adc48297f41f4
search: [archive]
-
css: box
code: 0xe0d1
uid: a3264f2df401aaeeee9d9eb800e455eb
search: [box]
- css: rss-outline
code: 0xe0cd
uid: aa7d4f131e866180ed30e6fbb504328c
search: [rss]
- css: rss
code: 0xe0ce
uid: 3o0pu4qbmgvcv8zqb5o3qh8vttzvhpy7
search: [rss]
- css: phone-outline
code: 0xe0b6
uid: eae068bed86aca956cdd10edcaaf24ee
search: [phone, call]
- css: phone
code: 0x1f4de
uid: 24eiet6l58t0myywueih34b0e5a30bw1
from: 0xe0b7
search: [phone, call]
- css: menu-outline
code: 0xe0fd
uid: a151e07df1262b33b210de5d956e4cc8
search: [editor, list, menu]
- css: menu
code: 0xe0fe
uid: jh3jpcb1t1bcm80gidkadilh080aq79h
search: [editor, list, menu]
-
css: cog-outline
code: 0xe04c
uid: 3a89ddb1c81111c15d6c4e26cc3c546a
search: [settings, cog, gear]
-
css: cog
code: 0x2699
uid: dpxunrtmigvk6jm0ieo7axfsgzx4awll
from: 0xe04d
search: [settings, cog, gear]
-
css: wrench-outline
code: 0xe0ee
uid: 9e717a7080503cfe84c7c7bd336ffe5f
search: [settings, wrench]
-
css: wrench
code: 0x1f527
uid: i7r8vgyqewsy2rlx0xhawybpw5uyss3z
from: 0xe0ef
search: [settings, wrench]
-
css: basket
code: 0xe0d2
uid: e0d15ef5945000f5f264acc35494002f
search: [basket, shopping, cart]
-
css: calendar-outlilne
code: 0xe035
uid: 3d211fe82ca138fce185f8869d38df26
search: [calendar, date]
-
css: calendar
code: 0xe036
uid: 4c2a3128819fef9548d6f0d38a5e291a
search: [calendar, date]
-
css: mic-outline
code: 0xe0ad
uid: b7bd78e163801889af145e513d6c5383
search: [mic]
-
css: mic
code: 0x1f3a4
uid: b1a40ej6b1xgsxjeh1b1urm8ptglt0hk
from: 0xe0ae
search: [mic]
-
css: volume-off
code: 0xe117
uid: 0a9d5a8bfa0ccfd44a38328b8ca276c2
search: [volume, sound, mute]
-
css: volume-low
code: 0xe119
uid: 43m0a70tvxqc6q7jxgzhz5lmlt3ce2iy
search: [volume, sound, mute]
-
css: volume-middle
code: 0xe116
uid: 3bf8e868324f7efb93c7bde31be9cc5e
search: [volume, sound]
-
css: volume-high
code: 0xe118
uid: okc52fdxu9uz2wnl0awdtv5373is429s
search: [volume, sound]
-
css: headphones
code: 0xe07d
uid: e5297b06d9300be7e7c347f78a9b8b61
search: [headphones, sound, music]
- css: clock
code: 0x1f554
uid: eh1m4shhgsndy7pmdzx3ynrakadhozgr
from: 0xe107
search: [clock, time]
- css: wristwatch
code: 0xe11c
uid: e5e2804a6d7681eb37e80a1fc380fe49
search: [clock, time, wristwatch]
-
css: stopwatch
code: 0xe0f4
uid: cb8b402e2efdc57d6d37ad7d3da819fe
search: [stopwatch, timer]
-
css: lightbulb
code: 0xe08f
uid: 12d16dda691bda304e3b57d7bc0de5a9
search: [idea, lamp, light, lightbulb]
- css: block-outline
code: 0xe039
uid: d8e8d6ef89a7e3992ade2b9e01b6b780
search: [block, deny]
- css: block
code: 0x1f6ab
uid: j6xzwioffey3gxe90yx3ie56j5dlt902
from: 0xe03a
search: [block, deny]
- css: resize-full-outline
code: 0xe011
uid: debaf3311987af708b9c1646fc192c15
search: [resize, fullscreen]
- css: resize-full
code: 0xe012
uid: cdfalpadi7huwv9ah4fef2gpfpb4c6qm
search: [resize, fullscreen]
- css: resize-normal-outline
code: 0xe013
uid: 1e4cf19f2a9f546c5f13f09af7c40ba9
search: [resize]
- css: resize-normal
code: 0xe014
uid: 8d2bc2d959a55e76466bbef6e84c8373
search: [resize]
- css: move-outline
code: 0xe015
uid: 2b9bcf0829f99d9bdaa653b0a8cf41f5
search: [move]
- css: move
code: 0xe016
uid: fhkechw94uv9ydw6tukba3ka2hhoif4n
search: [move]
-
css: popup
code: 0xe0f6
uid: ca1c07c0df52dbf2af6813c9e36c2611
search: [popup, window]
-
css: zoom-in-outline
code: 0xe12e
uid: 16bd6f8fd1c32a89b16d61e09a968c24
search: [zoom. scale, in]
- css: zoom-in
code: 0xe12f
uid: dfhp68fdlvh9dknvxk4tkf8yy0h7vw3r
search: [zoom. scale, in]
- css: zoom-out-outline
code: 0xe130
uid: abbfffb71ee797c071d628c374714083
search: [zoom. scale, out]
- css: zoom-out
code: 0xe131
uid: 1nkxlfe3u6kwarxqy3g4z3c9lrsgdu5h
search: [zoom. scale, out]
- css: popup
code: 0xe02f
uid: 493hui9b6xiqaf04slclmqnwpap3oxjj
search: [popup, window]
- css: left-open-outline
code: 0xe043
uid: d4ebe676479ff9cb41c7797f003aa54d
search: [arrow, left]
- css: left-open
code: 0xe044
uid: wlri7uftq4zbi82q2xuf08ayd8kpijlk
search: [arrow, left]
- css: right-open-outline
code: 0xe045
uid: 813cb2527308990d4870591d9d76f8cd
search: [arrow, right]
- css: right-open
code: 0xe046
uid: 6zhrgcf3co77hnljttd3b2mrc8z5fiq5
search: [arrow, right]
- css: down
code: 0xe008
uid: xq9z5jujkqhrf97s70hjek6otohmhr1y
search: [arrow, down]
- css: left
code: 0xe00d
uid: qqsxko9kqxh5g53lz33yonkpc2rpkvkn
search: [arrow, left]
- css: right
code: 0xe01a
uid: 4oaz56fmzfvx7vry2o540n9l4z79fz8t
search: [arrow, right]
- css: up
code: 0xe020
uid: mj2pxhfj0eumtbzirpdokhtzk00480uo
search: [arrow, up]
- css: down-outline
code: 0xe007
uid: 1d9b2bb0d0621cd616139c6a441ed442
search: [arrow, down]
- css: left-outline
code: 0xe00c
uid: ec3be32c1330a17ef251b378ebd7d3ac
search: [arrow, left]
- css: right-outline
code: 0xe019
uid: 86bc84e014767f8f1377723c47d1b153
search: [arrow, right]
- css: up-outline
code: 0xe01f
uid: abf264d54e3f10187167ebc0e833d12e
search: [arrow, up]
- css: down-small
code: 0xe009
uid: c16a63e911bc47b46dc2a7129d2f0c46
search: [arrow, down]