mod-base 1.0.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 (69) hide show
  1. package/.editorconfig +17 -0
  2. package/.sass-lint.yml +165 -0
  3. package/CHANGELOG.md +5 -0
  4. package/README.md +42 -0
  5. package/package.json +7 -0
  6. package/src/fonts/modstyle-icons/modicons-basic/Read Me.txt +7 -0
  7. package/src/fonts/modstyle-icons/modicons-basic/demo-files/demo.css +152 -0
  8. package/src/fonts/modstyle-icons/modicons-basic/demo-files/demo.js +30 -0
  9. package/src/fonts/modstyle-icons/modicons-basic/demo.html +346 -0
  10. package/src/fonts/modstyle-icons/modicons-basic/fonts/modicons-basic.eot +0 -0
  11. package/src/fonts/modstyle-icons/modicons-basic/fonts/modicons-basic.svg +32 -0
  12. package/src/fonts/modstyle-icons/modicons-basic/fonts/modicons-basic.ttf +0 -0
  13. package/src/fonts/modstyle-icons/modicons-basic/fonts/modicons-basic.woff +0 -0
  14. package/src/fonts/modstyle-icons/modicons-basic/selection.json +1 -0
  15. package/src/fonts/modstyle-icons/modicons-basic/style.css +93 -0
  16. package/src/fonts/modstyle-icons/modicons-fill/Read Me.txt +7 -0
  17. package/src/fonts/modstyle-icons/modicons-fill/demo-files/demo.css +152 -0
  18. package/src/fonts/modstyle-icons/modicons-fill/demo-files/demo.js +30 -0
  19. package/src/fonts/modstyle-icons/modicons-fill/demo.html +626 -0
  20. package/src/fonts/modstyle-icons/modicons-fill/fonts/modicons-fill.eot +0 -0
  21. package/src/fonts/modstyle-icons/modicons-fill/fonts/modicons-fill.svg +52 -0
  22. package/src/fonts/modstyle-icons/modicons-fill/fonts/modicons-fill.ttf +0 -0
  23. package/src/fonts/modstyle-icons/modicons-fill/fonts/modicons-fill.woff +0 -0
  24. package/src/fonts/modstyle-icons/modicons-fill/selection.json +1 -0
  25. package/src/fonts/modstyle-icons/modicons-fill/style.css +194 -0
  26. package/src/fonts/modstyle-icons/modicons-stroke/Read Me.txt +7 -0
  27. package/src/fonts/modstyle-icons/modicons-stroke/demo-files/demo.css +152 -0
  28. package/src/fonts/modstyle-icons/modicons-stroke/demo-files/demo.js +30 -0
  29. package/src/fonts/modstyle-icons/modicons-stroke/demo.html +990 -0
  30. package/src/fonts/modstyle-icons/modicons-stroke/fonts/modicons-stroke.eot +0 -0
  31. package/src/fonts/modstyle-icons/modicons-stroke/fonts/modicons-stroke.svg +79 -0
  32. package/src/fonts/modstyle-icons/modicons-stroke/fonts/modicons-stroke.ttf +0 -0
  33. package/src/fonts/modstyle-icons/modicons-stroke/fonts/modicons-stroke.woff +0 -0
  34. package/src/fonts/modstyle-icons/modicons-stroke/selection.json +1 -0
  35. package/src/fonts/modstyle-icons/modicons-stroke/style.css +290 -0
  36. package/src/fonts/modstyle-icons/modicons-stroke-md/Read Me.txt +7 -0
  37. package/src/fonts/modstyle-icons/modicons-stroke-md/demo-files/demo.css +152 -0
  38. package/src/fonts/modstyle-icons/modicons-stroke-md/demo-files/demo.js +30 -0
  39. package/src/fonts/modstyle-icons/modicons-stroke-md/demo.html +122 -0
  40. package/src/fonts/modstyle-icons/modicons-stroke-md/fonts/modicons-stroke-md.eot +0 -0
  41. package/src/fonts/modstyle-icons/modicons-stroke-md/fonts/modicons-stroke-md.svg +16 -0
  42. package/src/fonts/modstyle-icons/modicons-stroke-md/fonts/modicons-stroke-md.ttf +0 -0
  43. package/src/fonts/modstyle-icons/modicons-stroke-md/fonts/modicons-stroke-md.woff +0 -0
  44. package/src/fonts/modstyle-icons/modicons-stroke-md/selection.json +1 -0
  45. package/src/fonts/modstyle-icons/modicons-stroke-md/style.css +51 -0
  46. package/src/styles/base/_breakpoint-mixins.scss +30 -0
  47. package/src/styles/base/_colors.scss +115 -0
  48. package/src/styles/base/_flex.scss +7 -0
  49. package/src/styles/base/_fonts.scss +49 -0
  50. package/src/styles/base/_reset.scss +152 -0
  51. package/src/styles/base/index.scss +6 -0
  52. package/src/styles/icons/_basics.scss +6 -0
  53. package/src/styles/icons/_fill.scss +6 -0
  54. package/src/styles/icons/_font-face-basic.scss +10 -0
  55. package/src/styles/icons/_font-face-fill.scss +10 -0
  56. package/src/styles/icons/_font-face-stroke-md.scss +10 -0
  57. package/src/styles/icons/_font-face-stroke.scss +10 -0
  58. package/src/styles/icons/_icon-classes-basic.scss +163 -0
  59. package/src/styles/icons/_icon-classes-fill.scss +262 -0
  60. package/src/styles/icons/_icon-classes-stroke-md.scss +46 -0
  61. package/src/styles/icons/_icon-classes-stroke.scss +424 -0
  62. package/src/styles/icons/_mixin-basic.scss +6 -0
  63. package/src/styles/icons/_mixin-fill.scss +6 -0
  64. package/src/styles/icons/_mixin-stroke-md.scss +6 -0
  65. package/src/styles/icons/_mixin-stroke.scss +6 -0
  66. package/src/styles/icons/_stroke-md.scss +6 -0
  67. package/src/styles/icons/_stroke.scss +6 -0
  68. package/src/styles/icons/index.scss +4 -0
  69. package/src/styles/templates/_dark-mode.scss +346 -0
@@ -0,0 +1,346 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>ModIcons-Basic Demo</title>
6
+ <meta name="description" content="An Icon Font Generated By IcoMoon.io">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+ <link rel="stylesheet" href="demo-files/demo.css">
9
+ <link rel="stylesheet" href="style.css"></head>
10
+ <body>
11
+ <div class="bgc1 clearfix">
12
+ <h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> ModIcons-Basic <small class="fgc1">(Glyphs:&nbsp;22)</small></h1>
13
+ </div>
14
+ <div class="clearfix mhl ptl">
15
+ <h1 class="mvm mtn fgc1">Grid Size: Unknown</h1>
16
+ <div class="glyph fs1">
17
+ <div class="clearfix bshadow0 pbs">
18
+ <span class="icon-arrow-down"></span>
19
+ <span class="mls"> icon-arrow-down</span>
20
+ </div>
21
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
22
+ <input type="text" readonly value="e900" class="unit size1of2" />
23
+ <input type="text" maxlength="1" readonly value="&#xe900;" class="unitRight size1of2 talign-right" />
24
+ </fieldset>
25
+ <div class="fs0 bshadow0 clearfix hidden-true">
26
+ <span class="unit pvs fgc1">liga: </span>
27
+ <input type="text" readonly value="" class="liga unitRight" />
28
+ </div>
29
+ </div>
30
+ <div class="glyph fs1">
31
+ <div class="clearfix bshadow0 pbs">
32
+ <span class="icon-arrow-left"></span>
33
+ <span class="mls"> icon-arrow-left</span>
34
+ </div>
35
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
36
+ <input type="text" readonly value="e901" class="unit size1of2" />
37
+ <input type="text" maxlength="1" readonly value="&#xe901;" class="unitRight size1of2 talign-right" />
38
+ </fieldset>
39
+ <div class="fs0 bshadow0 clearfix hidden-true">
40
+ <span class="unit pvs fgc1">liga: </span>
41
+ <input type="text" readonly value="" class="liga unitRight" />
42
+ </div>
43
+ </div>
44
+ <div class="glyph fs1">
45
+ <div class="clearfix bshadow0 pbs">
46
+ <span class="icon-arrow-right"></span>
47
+ <span class="mls"> icon-arrow-right</span>
48
+ </div>
49
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
50
+ <input type="text" readonly value="e902" class="unit size1of2" />
51
+ <input type="text" maxlength="1" readonly value="&#xe902;" class="unitRight size1of2 talign-right" />
52
+ </fieldset>
53
+ <div class="fs0 bshadow0 clearfix hidden-true">
54
+ <span class="unit pvs fgc1">liga: </span>
55
+ <input type="text" readonly value="" class="liga unitRight" />
56
+ </div>
57
+ </div>
58
+ <div class="glyph fs1">
59
+ <div class="clearfix bshadow0 pbs">
60
+ <span class="icon-arrow-up"></span>
61
+ <span class="mls"> icon-arrow-up</span>
62
+ </div>
63
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
64
+ <input type="text" readonly value="e903" class="unit size1of2" />
65
+ <input type="text" maxlength="1" readonly value="&#xe903;" class="unitRight size1of2 talign-right" />
66
+ </fieldset>
67
+ <div class="fs0 bshadow0 clearfix hidden-true">
68
+ <span class="unit pvs fgc1">liga: </span>
69
+ <input type="text" readonly value="" class="liga unitRight" />
70
+ </div>
71
+ </div>
72
+ <div class="glyph fs1">
73
+ <div class="clearfix bshadow0 pbs">
74
+ <span class="icon-hamburger"></span>
75
+ <span class="mls"> icon-hamburger</span>
76
+ </div>
77
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
78
+ <input type="text" readonly value="e904" class="unit size1of2" />
79
+ <input type="text" maxlength="1" readonly value="&#xe904;" class="unitRight size1of2 talign-right" />
80
+ </fieldset>
81
+ <div class="fs0 bshadow0 clearfix hidden-true">
82
+ <span class="unit pvs fgc1">liga: </span>
83
+ <input type="text" readonly value="" class="liga unitRight" />
84
+ </div>
85
+ </div>
86
+ <div class="glyph fs1">
87
+ <div class="clearfix bshadow0 pbs">
88
+ <span class="icon-caret-down"></span>
89
+ <span class="mls"> icon-caret-down</span>
90
+ </div>
91
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
92
+ <input type="text" readonly value="e905" class="unit size1of2" />
93
+ <input type="text" maxlength="1" readonly value="&#xe905;" class="unitRight size1of2 talign-right" />
94
+ </fieldset>
95
+ <div class="fs0 bshadow0 clearfix hidden-true">
96
+ <span class="unit pvs fgc1">liga: </span>
97
+ <input type="text" readonly value="" class="liga unitRight" />
98
+ </div>
99
+ </div>
100
+ <div class="glyph fs1">
101
+ <div class="clearfix bshadow0 pbs">
102
+ <span class="icon-caret-left"></span>
103
+ <span class="mls"> icon-caret-left</span>
104
+ </div>
105
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
106
+ <input type="text" readonly value="e906" class="unit size1of2" />
107
+ <input type="text" maxlength="1" readonly value="&#xe906;" class="unitRight size1of2 talign-right" />
108
+ </fieldset>
109
+ <div class="fs0 bshadow0 clearfix hidden-true">
110
+ <span class="unit pvs fgc1">liga: </span>
111
+ <input type="text" readonly value="" class="liga unitRight" />
112
+ </div>
113
+ </div>
114
+ <div class="glyph fs1">
115
+ <div class="clearfix bshadow0 pbs">
116
+ <span class="icon-caret-right"></span>
117
+ <span class="mls"> icon-caret-right</span>
118
+ </div>
119
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
120
+ <input type="text" readonly value="e907" class="unit size1of2" />
121
+ <input type="text" maxlength="1" readonly value="&#xe907;" class="unitRight size1of2 talign-right" />
122
+ </fieldset>
123
+ <div class="fs0 bshadow0 clearfix hidden-true">
124
+ <span class="unit pvs fgc1">liga: </span>
125
+ <input type="text" readonly value="" class="liga unitRight" />
126
+ </div>
127
+ </div>
128
+ <div class="glyph fs1">
129
+ <div class="clearfix bshadow0 pbs">
130
+ <span class="icon-caret-up"></span>
131
+ <span class="mls"> icon-caret-up</span>
132
+ </div>
133
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
134
+ <input type="text" readonly value="e908" class="unit size1of2" />
135
+ <input type="text" maxlength="1" readonly value="&#xe908;" class="unitRight size1of2 talign-right" />
136
+ </fieldset>
137
+ <div class="fs0 bshadow0 clearfix hidden-true">
138
+ <span class="unit pvs fgc1">liga: </span>
139
+ <input type="text" readonly value="" class="liga unitRight" />
140
+ </div>
141
+ </div>
142
+ <div class="glyph fs1">
143
+ <div class="clearfix bshadow0 pbs">
144
+ <span class="icon-close"></span>
145
+ <span class="mls"> icon-close</span>
146
+ </div>
147
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
148
+ <input type="text" readonly value="e909" class="unit size1of2" />
149
+ <input type="text" maxlength="1" readonly value="&#xe909;" class="unitRight size1of2 talign-right" />
150
+ </fieldset>
151
+ <div class="fs0 bshadow0 clearfix hidden-true">
152
+ <span class="unit pvs fgc1">liga: </span>
153
+ <input type="text" readonly value="" class="liga unitRight" />
154
+ </div>
155
+ </div>
156
+ <div class="glyph fs1">
157
+ <div class="clearfix bshadow0 pbs">
158
+ <span class="icon-add"></span>
159
+ <span class="mls"> icon-add</span>
160
+ </div>
161
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
162
+ <input type="text" readonly value="e90a" class="unit size1of2" />
163
+ <input type="text" maxlength="1" readonly value="&#xe90a;" class="unitRight size1of2 talign-right" />
164
+ </fieldset>
165
+ <div class="fs0 bshadow0 clearfix hidden-true">
166
+ <span class="unit pvs fgc1">liga: </span>
167
+ <input type="text" readonly value="" class="liga unitRight" />
168
+ </div>
169
+ </div>
170
+ <div class="glyph fs1">
171
+ <div class="clearfix bshadow0 pbs">
172
+ <span class="icon-subtract"></span>
173
+ <span class="mls"> icon-subtract</span>
174
+ </div>
175
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
176
+ <input type="text" readonly value="e90b" class="unit size1of2" />
177
+ <input type="text" maxlength="1" readonly value="&#xe90b;" class="unitRight size1of2 talign-right" />
178
+ </fieldset>
179
+ <div class="fs0 bshadow0 clearfix hidden-true">
180
+ <span class="unit pvs fgc1">liga: </span>
181
+ <input type="text" readonly value="" class="liga unitRight" />
182
+ </div>
183
+ </div>
184
+ <div class="glyph fs1">
185
+ <div class="clearfix bshadow0 pbs">
186
+ <span class="icon-ellipsis"></span>
187
+ <span class="mls"> icon-ellipsis</span>
188
+ </div>
189
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
190
+ <input type="text" readonly value="e90c" class="unit size1of2" />
191
+ <input type="text" maxlength="1" readonly value="&#xe90c;" class="unitRight size1of2 talign-right" />
192
+ </fieldset>
193
+ <div class="fs0 bshadow0 clearfix hidden-true">
194
+ <span class="unit pvs fgc1">liga: </span>
195
+ <input type="text" readonly value="" class="liga unitRight" />
196
+ </div>
197
+ </div>
198
+ <div class="glyph fs1">
199
+ <div class="clearfix bshadow0 pbs">
200
+ <span class="icon-Facebook"></span>
201
+ <span class="mls"> icon-Facebook</span>
202
+ </div>
203
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
204
+ <input type="text" readonly value="e90d" class="unit size1of2" />
205
+ <input type="text" maxlength="1" readonly value="&#xe90d;" class="unitRight size1of2 talign-right" />
206
+ </fieldset>
207
+ <div class="fs0 bshadow0 clearfix hidden-true">
208
+ <span class="unit pvs fgc1">liga: </span>
209
+ <input type="text" readonly value="" class="liga unitRight" />
210
+ </div>
211
+ </div>
212
+ <div class="glyph fs1">
213
+ <div class="clearfix bshadow0 pbs">
214
+ <span class="icon-Link"></span>
215
+ <span class="mls"> icon-Link</span>
216
+ </div>
217
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
218
+ <input type="text" readonly value="e90e" class="unit size1of2" />
219
+ <input type="text" maxlength="1" readonly value="&#xe90e;" class="unitRight size1of2 talign-right" />
220
+ </fieldset>
221
+ <div class="fs0 bshadow0 clearfix hidden-true">
222
+ <span class="unit pvs fgc1">liga: </span>
223
+ <input type="text" readonly value="" class="liga unitRight" />
224
+ </div>
225
+ </div>
226
+ <div class="glyph fs1">
227
+ <div class="clearfix bshadow0 pbs">
228
+ <span class="icon-Pinterest"></span>
229
+ <span class="mls"> icon-Pinterest</span>
230
+ </div>
231
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
232
+ <input type="text" readonly value="e90f" class="unit size1of2" />
233
+ <input type="text" maxlength="1" readonly value="&#xe90f;" class="unitRight size1of2 talign-right" />
234
+ </fieldset>
235
+ <div class="fs0 bshadow0 clearfix hidden-true">
236
+ <span class="unit pvs fgc1">liga: </span>
237
+ <input type="text" readonly value="" class="liga unitRight" />
238
+ </div>
239
+ </div>
240
+ <div class="glyph fs1">
241
+ <div class="clearfix bshadow0 pbs">
242
+ <span class="icon-Twitter"></span>
243
+ <span class="mls"> icon-Twitter</span>
244
+ </div>
245
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
246
+ <input type="text" readonly value="e910" class="unit size1of2" />
247
+ <input type="text" maxlength="1" readonly value="&#xe910;" class="unitRight size1of2 talign-right" />
248
+ </fieldset>
249
+ <div class="fs0 bshadow0 clearfix hidden-true">
250
+ <span class="unit pvs fgc1">liga: </span>
251
+ <input type="text" readonly value="" class="liga unitRight" />
252
+ </div>
253
+ </div>
254
+ <div class="glyph fs1">
255
+ <div class="clearfix bshadow0 pbs">
256
+ <span class="icon-website"></span>
257
+ <span class="mls"> icon-website</span>
258
+ </div>
259
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
260
+ <input type="text" readonly value="e911" class="unit size1of2" />
261
+ <input type="text" maxlength="1" readonly value="&#xe911;" class="unitRight size1of2 talign-right" />
262
+ </fieldset>
263
+ <div class="fs0 bshadow0 clearfix hidden-true">
264
+ <span class="unit pvs fgc1">liga: </span>
265
+ <input type="text" readonly value="" class="liga unitRight" />
266
+ </div>
267
+ </div>
268
+ <div class="glyph fs1">
269
+ <div class="clearfix bshadow0 pbs">
270
+ <span class="icon-linkedin"></span>
271
+ <span class="mls"> icon-linkedin</span>
272
+ </div>
273
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
274
+ <input type="text" readonly value="e912" class="unit size1of2" />
275
+ <input type="text" maxlength="1" readonly value="&#xe912;" class="unitRight size1of2 talign-right" />
276
+ </fieldset>
277
+ <div class="fs0 bshadow0 clearfix hidden-true">
278
+ <span class="unit pvs fgc1">liga: </span>
279
+ <input type="text" readonly value="" class="liga unitRight" />
280
+ </div>
281
+ </div>
282
+ <div class="glyph fs1">
283
+ <div class="clearfix bshadow0 pbs">
284
+ <span class="icon-instagram"></span>
285
+ <span class="mls"> icon-instagram</span>
286
+ </div>
287
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
288
+ <input type="text" readonly value="e913" class="unit size1of2" />
289
+ <input type="text" maxlength="1" readonly value="&#xe913;" class="unitRight size1of2 talign-right" />
290
+ </fieldset>
291
+ <div class="fs0 bshadow0 clearfix hidden-true">
292
+ <span class="unit pvs fgc1">liga: </span>
293
+ <input type="text" readonly value="" class="liga unitRight" />
294
+ </div>
295
+ </div>
296
+ <div class="glyph fs1">
297
+ <div class="clearfix bshadow0 pbs">
298
+ <span class="icon-tiktok"></span>
299
+ <span class="mls"> icon-tiktok</span>
300
+ </div>
301
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
302
+ <input type="text" readonly value="e914" class="unit size1of2" />
303
+ <input type="text" maxlength="1" readonly value="&#xe914;" class="unitRight size1of2 talign-right" />
304
+ </fieldset>
305
+ <div class="fs0 bshadow0 clearfix hidden-true">
306
+ <span class="unit pvs fgc1">liga: </span>
307
+ <input type="text" readonly value="" class="liga unitRight" />
308
+ </div>
309
+ </div>
310
+ <div class="glyph fs1">
311
+ <div class="clearfix bshadow0 pbs">
312
+ <span class="icon-youtube"></span>
313
+ <span class="mls"> icon-youtube</span>
314
+ </div>
315
+ <fieldset class="fs0 size1of1 clearfix hidden-false">
316
+ <input type="text" readonly value="e915" class="unit size1of2" />
317
+ <input type="text" maxlength="1" readonly value="&#xe915;" class="unitRight size1of2 talign-right" />
318
+ </fieldset>
319
+ <div class="fs0 bshadow0 clearfix hidden-true">
320
+ <span class="unit pvs fgc1">liga: </span>
321
+ <input type="text" readonly value="" class="liga unitRight" />
322
+ </div>
323
+ </div>
324
+ </div>
325
+
326
+ <!--[if gt IE 8]><!-->
327
+ <div class="mhl clearfix mbl">
328
+ <h1>Font Test Drive</h1>
329
+ <label>
330
+ Font Size: <input id="fontSize" type="number" class="textbox0 mbm"
331
+ min="8" value="48" />
332
+ px
333
+ </label>
334
+ <input id="testText" type="text" class="phl size1of1 mvl"
335
+ placeholder="Type some text to test..." value=""/>
336
+ <div id="testDrive" class="icon-" style="font-family: 'ModIcons-Basic'">&nbsp;
337
+ </div>
338
+ </div>
339
+ <!--<![endif]-->
340
+ <div class="bgc1 clearfix">
341
+ <p class="mhl">Generated by <a href="https://icomoon.io/app">IcoMoon</a></p>
342
+ </div>
343
+
344
+ <script src="demo-files/demo.js"></script>
345
+ </body>
346
+ </html>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by IcoMoon</metadata>
5
+ <defs>
6
+ <font id="icomoon" horiz-adv-x="1024">
7
+ <font-face units-per-em="1024" ascent="960" descent="-64" />
8
+ <missing-glyph horiz-adv-x="1024" />
9
+ <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
10
+ <glyph unicode="&#xe900;" glyph-name="arrow-down" d="M576 154.51l274.745 274.745c24.994 24.994 65.516 24.994 90.51 0s24.994-65.516 0-90.51l-384-384c-24.994-24.994-65.516-24.994-90.51 0l-384 384c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.51 0l274.745-274.745v741.49c0 35.346 28.654 64 64 64s64-28.654 64-64v-741.49z" />
11
+ <glyph unicode="&#xe901;" glyph-name="arrow-left" d="M218.51 384l274.745-274.745c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0l-384 384c-24.994 24.994-24.994 65.516 0 90.51l384 384c24.994 24.994 65.516 24.994 90.51 0s24.994-65.516 0-90.51l-274.745-274.745h741.49c35.346 0 64-28.654 64-64s-28.654-64-64-64h-741.49z" />
12
+ <glyph unicode="&#xe902;" glyph-name="arrow-right" d="M805.49 512l-274.745 274.745c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.51 0l384-384c24.994-24.994 24.994-65.516 0-90.51l-384-384c-24.994-24.994-65.516-24.994-90.51 0s-24.994 65.516 0 90.51l274.745 274.745h-741.49c-35.346 0-64 28.654-64 64s28.654 64 64 64h741.49z" />
13
+ <glyph unicode="&#xe903;" glyph-name="arrow-up" d="M448 741.49l-274.745-274.745c-24.994-24.994-65.516-24.994-90.51 0s-24.994 65.516 0 90.51l384 384c24.994 24.994 65.516 24.994 90.51 0l384-384c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0l-274.745 274.745v-741.49c0-35.346-28.654-64-64-64s-64 28.654-64 64v741.49z" />
14
+ <glyph unicode="&#xe904;" glyph-name="hamburger" d="M64 896h896c35.346 0 64-28.654 64-64s-28.654-64-64-64h-896c-35.346 0-64 28.654-64 64s28.654 64 64 64zM64 512h896c35.346 0 64-28.654 64-64s-28.654-64-64-64h-896c-35.346 0-64 28.654-64 64s28.654 64 64 64zM64 128h896c35.346 0 64-28.654 64-64s-28.654-64-64-64h-896c-35.346 0-64 28.654-64 64s28.654 64 64 64z" />
15
+ <glyph unicode="&#xe905;" glyph-name="caret-down" d="M512 332.012l387.137 387.137c28.564 28.564 74.876 28.564 103.44 0s28.564-74.876 0-103.44l-438.857-438.857c-28.564-28.564-74.876-28.564-103.44 0l-438.857 438.857c-28.564 28.564-28.564 74.876 0 103.44s74.876 28.564 103.44 0l387.137-387.137z" />
16
+ <glyph unicode="&#xe906;" glyph-name="caret-left" d="M396.011 448l387.137-387.137c28.564-28.564 28.564-74.876 0-103.44s-74.876-28.564-103.44 0l-438.857 438.857c-28.564 28.564-28.564 74.876 0 103.44l438.857 438.857c28.564 28.564 74.876 28.564 103.44 0s28.564-74.876 0-103.44l-387.137-387.137z" />
17
+ <glyph unicode="&#xe907;" glyph-name="caret-right" d="M627.988 448l-387.137 387.137c-28.564 28.564-28.564 74.876 0 103.44s74.876 28.564 103.44 0l438.857-438.857c28.564-28.564 28.564-74.876 0-103.44l-438.857-438.857c-28.564-28.564-74.876-28.564-103.44 0s-28.564 74.876 0 103.44l387.137 387.137z" />
18
+ <glyph unicode="&#xe908;" glyph-name="caret-up" d="M512 563.989l-387.137-387.137c-28.564-28.564-74.876-28.564-103.44 0s-28.564 74.876 0 103.44l438.857 438.857c28.564 28.564 74.876 28.564 103.44 0l438.857-438.857c28.564-28.564 28.564-74.876 0-103.44s-74.876-28.564-103.44 0l-387.137 387.137z" />
19
+ <glyph unicode="&#xe909;" glyph-name="close" d="M512 551.174l386.142 386.142c68.782 68.782 171.957-34.392 103.174-103.174l-386.142-386.142 386.142-386.142c28.49-28.49 28.49-74.684 0-103.174s-74.684-28.49-103.174 0l-386.142 386.142-386.142-386.142c-68.782-68.782-171.957 34.392-103.174 103.174l386.142 386.142-386.142 386.142c-28.49 28.49-28.49 74.684 0 103.174s74.684 28.49 103.174 0l386.142-386.142z" />
20
+ <glyph unicode="&#xe90a;" glyph-name="add" d="M585.143 521.143h365.714c97.524 0 97.524-146.286 0-146.286h-365.714v-365.714c0-97.524-146.286-97.524-146.286 0v365.714h-365.714c-97.524 0-97.524 146.286 0 146.286h365.714v365.714c0 97.524 146.286 97.524 146.286 0v-365.714z" />
21
+ <glyph unicode="&#xe90b;" glyph-name="subtract" d="M73.143 521.143h877.714c97.524 0 97.524-146.286 0-146.286h-877.714c-97.524 0-97.524 146.286 0 146.286z" />
22
+ <glyph unicode="&#xe90c;" glyph-name="ellipsis" d="M128 320c-70.693 0-128 57.307-128 128s57.307 128 128 128c70.693 0 128-57.307 128-128s-57.307-128-128-128zM512 320c-70.693 0-128 57.307-128 128s57.307 128 128 128c70.693 0 128-57.307 128-128s-57.307-128-128-128zM896 320c-70.693 0-128 57.307-128 128s57.307 128 128 128c70.693 0 128-57.307 128-128s-57.307-128-128-128z" />
23
+ <glyph unicode="&#xe90d;" glyph-name="Facebook" d="M967.335 959.999c15.552 0 28.89-5.555 40-16.667s16.665-24.444 16.665-40v-910.667c0-15.552-5.555-28.89-16.665-40s-24.447-16.665-40-16.665h-260.665v396.665h132.665l20 154.667h-152.665v98.667c0 24.889 5.222 43.555 15.667 56s30.777 18.667 60.999 18.667l81.331 0.666v138c-28 4-67.552 6-118.669 6-60.441 0-108.775-17.777-144.999-53.332-36.217-35.556-54.33-85.777-54.33-150.667v-114h-133.336v-154.667h133.336v-396.665h-490.002c-15.556 0-28.889 5.555-40 16.665s-16.667 24.447-16.667 40v910.667c0 15.556 5.555 28.889 16.667 40s24.444 16.667 40 16.667h910.667z" />
24
+ <glyph unicode="&#xe90e;" glyph-name="Link" d="M66.432-2.402c-85.355 85.352-85.355 223.742 0 309.094l234.744 234.746c85.355 85.355 223.742 85.355 309.099 0 20.531-20.532 20.531-53.822 0-74.354-20.536-20.53-53.822-20.53-74.353 0-44.293 44.29-116.102 44.29-160.392 0l-234.744-234.745c-44.29-44.29-44.29-116.098 0-160.388s116.1-44.29 160.39 0l156.496 156.498c20.532 20.531 53.822 20.531 74.355 0 20.531-20.536 20.531-53.822 0-74.358l-156.496-156.492c-85.356-85.357-223.743-85.357-309.098 0zM962.397 893.564c85.352-85.355 85.352-223.742 0-309.097l-234.746-234.742c-85.357-85.357-223.742-85.357-309.097 0-20.532 20.531-20.532 53.816 0 74.353 20.532 20.531 53.822 20.531 74.354 0 44.293-44.29 116.101-44.29 160.391 0l234.746 234.742c44.29 44.291 44.29 116.1 0 160.39-44.295 44.29-116.103 44.29-160.393 0l-156.498-156.495c-20.531-20.532-53.822-20.532-74.352 0-20.532 20.532-20.532 53.822 0 74.354l156.496 156.495c85.357 85.355 223.742 85.355 309.099 0z" />
25
+ <glyph unicode="&#xe90f;" glyph-name="Pinterest" d="M1024 448c0-92.888-22.887-178.557-68.664-257.001s-107.89-140.556-186.333-186.333c-78.444-45.779-164.113-68.664-257.001-68.664-49.333 0-97.778 7.111-145.333 21.333 26.222 41.336 43.556 77.779 52 109.334 4 15.11 16 61.998 36 140.663 8.889-17.334 25.111-32.33 48.667-44.999 23.554-12.663 48.887-19.001 76-19.001 53.777 0 101.78 15.223 143.997 45.67 42.223 30.441 74.889 72.329 98.002 125.668 23.114 53.333 34.668 113.329 34.668 179.997 0 50.667-13.221 98.222-39.669 142.667-26.442 44.444-64.779 80.667-115.001 108.667s-106.889 42-170.001 42c-46.664 0-90.22-6.444-130.664-19.333s-74.778-30-103-51.333c-28.222-21.334-52.444-45.889-72.667-73.667s-35.111-56.554-44.667-86.333c-9.556-29.778-14.333-59.556-14.333-89.333 0-46.22 8.889-86.89 26.667-122.001s43.778-59.773 78-73.996c13.333-5.337 21.778-0.893 25.333 13.329 0.889 3.112 2.667 10.001 5.333 20.668s4.444 17.334 5.333 20.002c2.667 10.223 0.222 19.774-7.333 28.667-22.667 27.108-34 60.667-34 100.666 0 67.111 23.222 124.778 69.667 173s107.222 72.333 182.331 72.333c67.112 0 119.45-18.222 157.002-54.667 37.558-36.444 56.331-83.778 56.331-142 0-75.559-15.218-139.78-45.664-192.664-30.441-52.89-69.444-79.338-116.998-79.338-27.113 0-48.89 9.666-65.334 29.002-16.444 19.331-21.556 42.553-15.333 69.667 3.556 15.553 9.444 36.334 17.667 62.333s14.891 48.89 19.999 68.667c5.114 19.778 7.669 36.556 7.669 50.333 0 22.222-6.002 40.667-18 55.333-12.001 14.667-29.112 22-51.334 22-27.556 0-50.889-12.667-70-38s-28.667-56.889-28.667-94.667c0-32.446 5.556-59.553 16.667-81.331l-66-278.67c-7.556-31.112-10.444-70.446-8.667-117.999-91.556 40.442-165.556 102.889-222 187.336s-84.667 178.443-84.667 281.998c0 92.889 22.889 178.556 68.667 257s107.889 140.556 186.333 186.333c78.444 45.778 164.111 68.667 257 68.667s178.557-22.889 257.001-68.667 140.556-107.889 186.333-186.333c45.779-78.444 68.664-164.111 68.664-257z" />
26
+ <glyph unicode="&#xe910;" glyph-name="Twitter" d="M1024 756.209c-29.022-41.263-64.107-76.421-105.257-105.474 0.432-5.895 0.646-14.737 0.646-26.526 0-54.737-8.229-109.368-24.689-163.896-16.459-54.525-41.478-106.841-75.048-156.947-33.565-50.106-73.528-94.418-119.878-132.947-46.344-38.524-102.222-69.26-167.634-92.208-65.406-22.948-135.361-34.422-209.866-34.422-117.388 0-224.812 30.526-322.274 91.578 15.161-1.681 32.054-2.527 50.68-2.527 97.462 0 184.31 29.055 260.548 87.159-45.483 0.846-86.2 14.422-122.153 40.739s-60.643 59.894-74.072 100.735c14.295-2.102 27.506-3.158 39.635-3.158 18.626 0 37.036 2.318 55.228 6.947-48.515 9.685-88.69 33.161-120.528 70.424s-47.757 80.525-47.757 129.788v2.526c29.456-16 61.076-24.632 94.863-25.895-28.589 18.527-51.329 42.737-68.224 72.632s-25.34 62.316-25.34 97.263c0 37.053 9.529 71.368 28.588 102.947 52.414-62.737 116.196-112.947 191.35-150.631s155.614-58.632 241.379-62.842c-3.465 16-5.196 31.579-5.196 46.737 0 56.421 20.464 104.526 61.402 144.316 40.933 39.789 90.419 59.684 148.464 59.684 60.642 0 111.756-21.474 153.341-64.421 47.217 8.842 91.616 25.263 133.196 49.263-16.023-48.421-46.781-85.895-92.262-112.421 40.286 4.211 80.567 14.737 120.854 31.579z" />
27
+ <glyph unicode="&#xe911;" glyph-name="website" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512c281.6 0 512 230.4 512 512s-230.4 512-512 512zM916.48 499.2h-102.4c-5.12 107.52-30.72 209.92-71.68 286.72 97.28-66.56 158.72-168.96 174.080-286.72zM460.8 842.24v-343.040h-153.6c15.36 174.080 81.92 302.080 153.6 343.040zM460.8 396.8v-343.040c-71.68 40.96-138.24 168.96-153.6 343.040h153.6zM563.2 53.76v343.040h153.6c-15.36-174.080-81.92-302.080-153.6-343.040zM563.2 499.2v343.040c71.68-40.96 138.24-168.96 153.6-343.040h-153.6zM276.48 785.92c-35.84-76.8-61.44-179.2-71.68-286.72h-102.4c20.48 117.76 81.92 220.16 174.080 286.72zM107.52 396.8h102.4c5.12-107.52 30.72-209.92 71.68-286.72-97.28 66.56-158.72 168.96-174.080 286.72zM747.52 110.080c40.96 76.8 66.56 174.080 71.68 286.72h102.4c-20.48-117.76-81.92-220.16-174.080-286.72z" />
28
+ <glyph unicode="&#xe912;" glyph-name="linkedin" d="M273.2 801.447c0.4-30.553-9.7-56.082-30.3-76.591s-47.699-30.762-81.3-30.762h-1.2c-32.8 0-59.199 10.254-79.2 30.762s-30 46.038-30 76.591c0 30.971 10.3 56.606 30.9 76.904s47.5 30.448 80.7 30.448c33.2 0 59.8-10.149 79.8-30.448s30.2-45.933 30.6-76.904zM260.597 609.342v-622.142h-198v622.142h198zM590.592 554.098c-7.982-9.543-15.78-20.597-23.398-33.162v88.408h-197.401l0.6-30.134c0.4-20.089 0.6-82.031 0.6-185.825 0-103.798-0.4-239.191-1.2-406.185h197.401v347.172c0 21.345 2.202 38.292 6.6 50.852 8.402 21.345 21.1 39.235 38.098 53.673 17.004 14.441 38.103 21.661 63.304 21.661 34.396 0 59.699-12.451 75.899-37.353 16.2-24.904 24.3-59.325 24.3-103.27v-332.733h197.402v356.588c0 91.658-20.803 161.238-62.403 208.741s-96.599 71.255-164.997 71.255c-25.201 0-48.102-3.244-68.7-9.731-20.603-6.487-38.001-15.59-52.204-27.309-14.198-11.719-25.498-22.6-33.9-32.645z" />
29
+ <glyph unicode="&#xe913;" glyph-name="instagram" d="M298.584 960c-164.651 0-298.584-134.056-298.584-298.75v-426.667c0-164.649 134.056-298.583 298.75-298.583h426.667c164.649 0 298.583 134.057 298.583 298.752v426.664c0 164.651-134.057 298.584-298.752 298.584h-426.664zM810.665 789.334c23.552 0 42.67-19.115 42.67-42.667s-19.118-42.666-42.67-42.666c-23.552 0-42.665 19.114-42.665 42.666s19.113 42.667 42.665 42.667zM512 704c141.184 0 256-114.816 256-256s-114.816-256-256-256c-141.184 0-256 114.816-256 256s114.816 256 256 256zM512 618.666c-45.264 0-88.673-17.981-120.679-49.987s-49.987-75.416-49.987-120.679c0-45.266 17.981-88.673 49.987-120.678s75.416-49.987 120.679-49.987c45.266 0 88.673 17.981 120.678 49.987s49.987 75.412 49.987 120.678c0 45.264-17.981 88.673-49.987 120.679s-75.412 49.987-120.678 49.987z" />
30
+ <glyph unicode="&#xe914;" glyph-name="tiktok" horiz-adv-x="870" d="M870.164 545.782c-8.422-0.707-16.614-1.178-25.042-1.178-91.51 0-176.932 46.417-227.251 123.7v-420.818c0-171.766-138.32-311.014-308.937-311.014s-308.935 138.778-308.935 310.543c0 171.771 138.318 311.020 308.935 311.020 6.553 0 12.872-0.472 19.191-0.943v-153.39c-6.319 0.707-12.638 1.884-19.191 1.884-87.064 0-157.744-71.153-157.744-158.807 0-87.649 70.681-158.807 157.744-158.807s164.063 69.038 164.063 156.923l1.638 714.869h145.575c13.809-131.476 119.127-234.205 250.189-243.866v-170.353z" />
31
+ <glyph unicode="&#xe915;" glyph-name="youtube" d="M811.331 847.359h-598.659c-117.455 0-212.671-105.214-212.671-235.002v-330.685c0-129.792 95.216-235.003 212.671-235.003h598.659c117.453 0 212.669 105.211 212.669 235.003v330.685c0 129.788-95.217 235.002-212.669 235.002zM667.5 430.925l-280.011-147.574c-7.461-3.932-16.080 2.079-16.080 11.213v304.367c0 9.264 8.845 15.267 16.322 11.080l280.009-156.795c8.325-4.661 8.182-17.852-0.241-22.291z" />
32
+ </font></defs></svg>
@@ -0,0 +1 @@
1
+ {"IcoMoonType":"selection","icons":[{"icon":{"paths":["M576 805.49l274.745-274.745c24.994-24.994 65.516-24.994 90.51 0s24.994 65.516 0 90.51l-384 384c-24.994 24.994-65.516 24.994-90.51 0l-384-384c-24.994-24.994-24.994-65.516 0-90.51s65.516-24.994 90.51 0l274.745 274.745v-741.49c0-35.346 28.654-64 64-64s64 28.654 64 64v741.49z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-down"],"defaultCode":59648,"grid":0},"properties":{"id":1,"order":79,"ligatures":"","prevSize":32,"code":59648,"name":"arrow-down"},"setIdx":1,"setId":3,"iconIdx":0},{"icon":{"paths":["M218.51 576l274.745 274.745c24.994 24.994 24.994 65.516 0 90.51s-65.516 24.994-90.51 0l-384-384c-24.994-24.994-24.994-65.516 0-90.51l384-384c24.994-24.994 65.516-24.994 90.51 0s24.994 65.516 0 90.51l-274.745 274.745h741.49c35.346 0 64 28.654 64 64s-28.654 64-64 64h-741.49z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-left"],"defaultCode":59649,"grid":0},"properties":{"id":2,"order":80,"ligatures":"","prevSize":32,"code":59649,"name":"arrow-left"},"setIdx":1,"setId":3,"iconIdx":1},{"icon":{"paths":["M805.49 448l-274.745-274.745c-24.994-24.994-24.994-65.516 0-90.51s65.516-24.994 90.51 0l384 384c24.994 24.994 24.994 65.516 0 90.51l-384 384c-24.994 24.994-65.516 24.994-90.51 0s-24.994-65.516 0-90.51l274.745-274.745h-741.49c-35.346 0-64-28.654-64-64s28.654-64 64-64h741.49z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-right"],"defaultCode":59650,"grid":0},"properties":{"id":3,"order":112,"ligatures":"","prevSize":32,"code":59650,"name":"arrow-right"},"setIdx":1,"setId":3,"iconIdx":2},{"icon":{"paths":["M448 218.51l-274.745 274.745c-24.994 24.994-65.516 24.994-90.51 0s-24.994-65.516 0-90.51l384-384c24.994-24.994 65.516-24.994 90.51 0l384 384c24.994 24.994 24.994 65.516 0 90.51s-65.516 24.994-90.51 0l-274.745-274.745v741.49c0 35.346-28.654 64-64 64s-64-28.654-64-64v-741.49z"],"isMulticolor":false,"isMulticolor2":false,"tags":["arrow-up"],"defaultCode":59651,"grid":0},"properties":{"id":4,"order":97,"ligatures":"","prevSize":32,"code":59651,"name":"arrow-up"},"setIdx":1,"setId":3,"iconIdx":3},{"icon":{"paths":["M64 64h896c35.346 0 64 28.654 64 64s-28.654 64-64 64h-896c-35.346 0-64-28.654-64-64s28.654-64 64-64zM64 448h896c35.346 0 64 28.654 64 64s-28.654 64-64 64h-896c-35.346 0-64-28.654-64-64s28.654-64 64-64zM64 832h896c35.346 0 64 28.654 64 64s-28.654 64-64 64h-896c-35.346 0-64-28.654-64-64s28.654-64 64-64z"],"isMulticolor":false,"isMulticolor2":false,"tags":["hamburger"],"defaultCode":59652,"grid":0},"properties":{"id":5,"order":98,"ligatures":"","prevSize":32,"code":59652,"name":"hamburger"},"setIdx":1,"setId":3,"iconIdx":4},{"icon":{"paths":["M512 627.988l387.137-387.137c28.564-28.564 74.876-28.564 103.44 0s28.564 74.876 0 103.44l-438.857 438.857c-28.564 28.564-74.876 28.564-103.44 0l-438.857-438.857c-28.564-28.564-28.564-74.876 0-103.44s74.876-28.564 103.44 0l387.137 387.137z"],"isMulticolor":false,"isMulticolor2":false,"tags":["caret-down"],"defaultCode":59653,"grid":0},"properties":{"id":6,"order":99,"ligatures":"","prevSize":32,"code":59653,"name":"caret-down"},"setIdx":1,"setId":3,"iconIdx":5},{"icon":{"paths":["M396.011 512l387.137 387.137c28.564 28.564 28.564 74.876 0 103.44s-74.876 28.564-103.44 0l-438.857-438.857c-28.564-28.564-28.564-74.876 0-103.44l438.857-438.857c28.564-28.564 74.876-28.564 103.44 0s28.564 74.876 0 103.44l-387.137 387.137z"],"isMulticolor":false,"isMulticolor2":false,"tags":["caret-left"],"defaultCode":59654,"grid":0},"properties":{"id":7,"order":100,"ligatures":"","prevSize":32,"code":59654,"name":"caret-left"},"setIdx":1,"setId":3,"iconIdx":6},{"icon":{"paths":["M627.988 512l-387.137-387.137c-28.564-28.564-28.564-74.876 0-103.44s74.876-28.564 103.44 0l438.857 438.857c28.564 28.564 28.564 74.876 0 103.44l-438.857 438.857c-28.564 28.564-74.876 28.564-103.44 0s-28.564-74.876 0-103.44l387.137-387.137z"],"isMulticolor":false,"isMulticolor2":false,"tags":["caret-right"],"defaultCode":59655,"grid":0},"properties":{"id":8,"order":101,"ligatures":"","prevSize":32,"code":59655,"name":"caret-right"},"setIdx":1,"setId":3,"iconIdx":7},{"icon":{"paths":["M512 396.011l-387.137 387.137c-28.564 28.564-74.876 28.564-103.44 0s-28.564-74.876 0-103.44l438.857-438.857c28.564-28.564 74.876-28.564 103.44 0l438.857 438.857c28.564 28.564 28.564 74.876 0 103.44s-74.876 28.564-103.44 0l-387.137-387.137z"],"isMulticolor":false,"isMulticolor2":false,"tags":["caret-up"],"defaultCode":59656,"grid":0},"properties":{"id":9,"order":102,"ligatures":"","prevSize":32,"code":59656,"name":"caret-up"},"setIdx":1,"setId":3,"iconIdx":8},{"icon":{"paths":["M512 408.826l386.142-386.142c68.782-68.782 171.957 34.392 103.174 103.174l-386.142 386.142 386.142 386.142c28.49 28.49 28.49 74.684 0 103.174s-74.684 28.49-103.174 0l-386.142-386.142-386.142 386.142c-68.782 68.782-171.957-34.392-103.174-103.174l386.142-386.142-386.142-386.142c-28.49-28.49-28.49-74.684 0-103.174s74.684-28.49 103.174 0l386.142 386.142z"],"isMulticolor":false,"isMulticolor2":false,"tags":["close"],"defaultCode":59657,"grid":0},"properties":{"id":10,"order":103,"ligatures":"","prevSize":32,"code":59657,"name":"close"},"setIdx":1,"setId":3,"iconIdx":9},{"icon":{"paths":["M585.143 438.857h365.714c97.524 0 97.524 146.286 0 146.286h-365.714v365.714c0 97.524-146.286 97.524-146.286 0v-365.714h-365.714c-97.524 0-97.524-146.286 0-146.286h365.714v-365.714c0-97.524 146.286-97.524 146.286 0v365.714z"],"isMulticolor":false,"isMulticolor2":false,"tags":["add"],"defaultCode":59658,"grid":0},"properties":{"id":11,"order":104,"ligatures":"","prevSize":32,"code":59658,"name":"add"},"setIdx":1,"setId":3,"iconIdx":10},{"icon":{"paths":["M73.143 438.857h877.714c97.524 0 97.524 146.286 0 146.286h-877.714c-97.524 0-97.524-146.286 0-146.286z"],"isMulticolor":false,"isMulticolor2":false,"tags":["subtract"],"defaultCode":59659,"grid":0},"properties":{"id":12,"order":105,"ligatures":"","prevSize":32,"code":59659,"name":"subtract"},"setIdx":1,"setId":3,"iconIdx":11},{"icon":{"paths":["M128 640c-70.693 0-128-57.307-128-128s57.307-128 128-128c70.693 0 128 57.307 128 128s-57.307 128-128 128zM512 640c-70.693 0-128-57.307-128-128s57.307-128 128-128c70.693 0 128 57.307 128 128s-57.307 128-128 128zM896 640c-70.693 0-128-57.307-128-128s57.307-128 128-128c70.693 0 128 57.307 128 128s-57.307 128-128 128z"],"isMulticolor":false,"isMulticolor2":false,"tags":["ellipsis"],"defaultCode":59660,"grid":0},"properties":{"id":13,"order":106,"ligatures":"","prevSize":32,"code":59660,"name":"ellipsis"},"setIdx":1,"setId":3,"iconIdx":12},{"icon":{"paths":["M967.335 0.001c15.552 0 28.89 5.555 40 16.667s16.665 24.444 16.665 40v910.667c0 15.552-5.555 28.89-16.665 40s-24.447 16.665-40 16.665h-260.665v-396.665h132.665l20-154.667h-152.665v-98.667c0-24.889 5.222-43.555 15.667-56s30.777-18.667 60.999-18.667l81.331-0.666v-138c-28-4-67.552-6-118.669-6-60.441 0-108.775 17.777-144.999 53.332-36.217 35.556-54.33 85.777-54.33 150.667v114h-133.336v154.667h133.336v396.665h-490.002c-15.556 0-28.889-5.555-40-16.665s-16.667-24.447-16.667-40v-910.667c0-15.556 5.555-28.889 16.667-40s24.444-16.667 40-16.667h910.667z"],"isMulticolor":false,"isMulticolor2":false,"tags":["Facebook"],"defaultCode":59661,"grid":0},"properties":{"id":14,"order":107,"ligatures":"","prevSize":32,"code":59661,"name":"Facebook"},"setIdx":1,"setId":3,"iconIdx":13},{"icon":{"paths":["M66.432 962.402c-85.355-85.352-85.355-223.742 0-309.094l234.744-234.746c85.355-85.355 223.742-85.355 309.099 0 20.531 20.532 20.531 53.822 0 74.354-20.536 20.53-53.822 20.53-74.353 0-44.293-44.29-116.102-44.29-160.392 0l-234.744 234.745c-44.29 44.29-44.29 116.098 0 160.388s116.1 44.29 160.39 0l156.496-156.498c20.532-20.531 53.822-20.531 74.355 0 20.531 20.536 20.531 53.822 0 74.358l-156.496 156.492c-85.356 85.357-223.743 85.357-309.098 0zM962.397 66.436c85.352 85.355 85.352 223.742 0 309.097l-234.746 234.742c-85.357 85.357-223.742 85.357-309.097 0-20.532-20.531-20.532-53.816 0-74.353 20.532-20.531 53.822-20.531 74.354 0 44.293 44.29 116.101 44.29 160.391 0l234.746-234.742c44.29-44.291 44.29-116.1 0-160.39-44.295-44.29-116.103-44.29-160.393 0l-156.498 156.495c-20.531 20.532-53.822 20.532-74.352 0-20.532-20.532-20.532-53.822 0-74.354l156.496-156.495c85.357-85.355 223.742-85.355 309.099 0z"],"isMulticolor":false,"isMulticolor2":false,"tags":["Link"],"defaultCode":59662,"grid":0},"properties":{"id":15,"order":108,"ligatures":"","prevSize":32,"code":59662,"name":"Link"},"setIdx":1,"setId":3,"iconIdx":14},{"icon":{"paths":["M1024 512c0 92.888-22.887 178.557-68.664 257.001s-107.89 140.556-186.333 186.333c-78.444 45.779-164.113 68.664-257.001 68.664-49.333 0-97.778-7.111-145.333-21.333 26.222-41.336 43.556-77.779 52-109.334 4-15.11 16-61.998 36-140.663 8.889 17.334 25.111 32.33 48.667 44.999 23.554 12.663 48.887 19.001 76 19.001 53.777 0 101.78-15.223 143.997-45.67 42.223-30.441 74.889-72.329 98.002-125.668 23.114-53.333 34.668-113.329 34.668-179.997 0-50.667-13.221-98.222-39.669-142.667-26.442-44.444-64.779-80.667-115.001-108.667s-106.889-42-170.001-42c-46.664 0-90.22 6.444-130.664 19.333s-74.778 30-103 51.333c-28.222 21.334-52.444 45.889-72.667 73.667s-35.111 56.554-44.667 86.333c-9.556 29.778-14.333 59.556-14.333 89.333 0 46.22 8.889 86.89 26.667 122.001s43.778 59.773 78 73.996c13.333 5.337 21.778 0.893 25.333-13.329 0.889-3.112 2.667-10.001 5.333-20.668s4.444-17.334 5.333-20.002c2.667-10.223 0.222-19.774-7.333-28.667-22.667-27.108-34-60.667-34-100.666 0-67.111 23.222-124.778 69.667-173s107.222-72.333 182.331-72.333c67.112 0 119.45 18.222 157.002 54.667 37.558 36.444 56.331 83.778 56.331 142 0 75.559-15.218 139.78-45.664 192.664-30.441 52.89-69.444 79.338-116.998 79.338-27.113 0-48.89-9.666-65.334-29.002-16.444-19.331-21.556-42.553-15.333-69.667 3.556-15.553 9.444-36.334 17.667-62.333s14.891-48.89 19.999-68.667c5.114-19.778 7.669-36.556 7.669-50.333 0-22.222-6.002-40.667-18-55.333-12.001-14.667-29.112-22-51.334-22-27.556 0-50.889 12.667-70 38s-28.667 56.889-28.667 94.667c0 32.446 5.556 59.553 16.667 81.331l-66 278.67c-7.556 31.112-10.444 70.446-8.667 117.999-91.556-40.442-165.556-102.889-222-187.336s-84.667-178.443-84.667-281.998c0-92.889 22.889-178.556 68.667-257s107.889-140.556 186.333-186.333c78.444-45.778 164.111-68.667 257-68.667s178.557 22.889 257.001 68.667 140.556 107.889 186.333 186.333c45.779 78.444 68.664 164.111 68.664 257z"],"isMulticolor":false,"isMulticolor2":false,"tags":["Pinterest"],"defaultCode":59663,"grid":0},"properties":{"id":16,"order":109,"ligatures":"","prevSize":32,"code":59663,"name":"Pinterest"},"setIdx":1,"setId":3,"iconIdx":15},{"icon":{"paths":["M1024 203.791c-29.022 41.263-64.107 76.421-105.257 105.474 0.432 5.895 0.646 14.737 0.646 26.526 0 54.737-8.229 109.368-24.689 163.896-16.459 54.525-41.478 106.841-75.048 156.947-33.565 50.106-73.528 94.418-119.878 132.947-46.344 38.524-102.222 69.26-167.634 92.208-65.406 22.948-135.361 34.422-209.866 34.422-117.388 0-224.812-30.526-322.274-91.578 15.161 1.681 32.054 2.527 50.68 2.527 97.462 0 184.31-29.055 260.548-87.159-45.483-0.846-86.2-14.422-122.153-40.739s-60.643-59.894-74.072-100.735c14.295 2.102 27.506 3.158 39.635 3.158 18.626 0 37.036-2.318 55.228-6.947-48.515-9.685-88.69-33.161-120.528-70.424s-47.757-80.525-47.757-129.788v-2.526c29.456 16 61.076 24.632 94.863 25.895-28.589-18.527-51.329-42.737-68.224-72.632s-25.34-62.316-25.34-97.263c0-37.053 9.529-71.368 28.588-102.947 52.414 62.737 116.196 112.947 191.35 150.631s155.614 58.632 241.379 62.842c-3.465-16-5.196-31.579-5.196-46.737 0-56.421 20.464-104.526 61.402-144.316 40.933-39.789 90.419-59.684 148.464-59.684 60.642 0 111.756 21.474 153.341 64.421 47.217-8.842 91.616-25.263 133.196-49.263-16.023 48.421-46.781 85.895-92.262 112.421 40.286-4.211 80.567-14.737 120.854-31.579z"],"isMulticolor":false,"isMulticolor2":false,"tags":["Twitter"],"defaultCode":59664,"grid":0},"properties":{"id":17,"order":95,"ligatures":"","prevSize":32,"code":59664,"name":"Twitter"},"setIdx":1,"setId":3,"iconIdx":16},{"icon":{"paths":["M512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512c281.6 0 512-230.4 512-512s-230.4-512-512-512zM916.48 460.8h-102.4c-5.12-107.52-30.72-209.92-71.68-286.72 97.28 66.56 158.72 168.96 174.080 286.72zM460.8 117.76v343.040h-153.6c15.36-174.080 81.92-302.080 153.6-343.040zM460.8 563.2v343.040c-71.68-40.96-138.24-168.96-153.6-343.040h153.6zM563.2 906.24v-343.040h153.6c-15.36 174.080-81.92 302.080-153.6 343.040zM563.2 460.8v-343.040c71.68 40.96 138.24 168.96 153.6 343.040h-153.6zM276.48 174.080c-35.84 76.8-61.44 179.2-71.68 286.72h-102.4c20.48-117.76 81.92-220.16 174.080-286.72zM107.52 563.2h102.4c5.12 107.52 30.72 209.92 71.68 286.72-97.28-66.56-158.72-168.96-174.080-286.72zM747.52 849.92c40.96-76.8 66.56-174.080 71.68-286.72h102.4c-20.48 117.76-81.92 220.16-174.080 286.72z"],"isMulticolor":false,"isMulticolor2":false,"tags":["website"],"defaultCode":59665,"grid":0},"properties":{"id":18,"order":115,"ligatures":"","prevSize":32,"code":59665,"name":"website"},"setIdx":1,"setId":3,"iconIdx":17},{"icon":{"paths":["M273.2 158.553c0.4 30.553-9.7 56.082-30.3 76.591s-47.699 30.762-81.3 30.762h-1.2c-32.8 0-59.199-10.254-79.2-30.762s-30-46.038-30-76.591c0-30.971 10.3-56.606 30.9-76.904s47.5-30.448 80.7-30.448c33.2 0 59.8 10.149 79.8 30.448s30.2 45.933 30.6 76.904zM260.597 350.658v622.142h-198v-622.142h198zM590.592 405.902c-7.982 9.543-15.78 20.597-23.398 33.162v-88.408h-197.401l0.6 30.134c0.4 20.089 0.6 82.031 0.6 185.825 0 103.798-0.4 239.191-1.2 406.185h197.401v-347.172c0-21.345 2.202-38.292 6.6-50.852 8.402-21.345 21.1-39.235 38.098-53.673 17.004-14.441 38.103-21.661 63.304-21.661 34.396 0 59.699 12.451 75.899 37.353 16.2 24.904 24.3 59.325 24.3 103.27v332.733h197.402v-356.588c0-91.658-20.803-161.238-62.403-208.741s-96.599-71.255-164.997-71.255c-25.201 0-48.102 3.244-68.7 9.731-20.603 6.487-38.001 15.59-52.204 27.309-14.198 11.719-25.498 22.6-33.9 32.645z"],"isMulticolor":false,"isMulticolor2":false,"tags":["linkedin"],"defaultCode":59666,"grid":0},"properties":{"id":19,"order":114,"ligatures":"","prevSize":32,"code":59666,"name":"linkedin"},"setIdx":1,"setId":3,"iconIdx":18},{"icon":{"paths":["M298.584 0c-164.651 0-298.584 134.056-298.584 298.75v426.667c0 164.649 134.056 298.583 298.75 298.583h426.667c164.649 0 298.583-134.057 298.583-298.752v-426.664c0-164.651-134.057-298.584-298.752-298.584h-426.664zM810.665 170.666c23.552 0 42.67 19.115 42.67 42.667s-19.118 42.666-42.67 42.666c-23.552 0-42.665-19.114-42.665-42.666s19.113-42.667 42.665-42.667zM512 256c141.184 0 256 114.816 256 256s-114.816 256-256 256c-141.184 0-256-114.816-256-256s114.816-256 256-256zM512 341.334c-45.264 0-88.673 17.981-120.679 49.987s-49.987 75.416-49.987 120.679c0 45.266 17.981 88.673 49.987 120.678s75.416 49.987 120.679 49.987c45.266 0 88.673-17.981 120.678-49.987s49.987-75.412 49.987-120.678c0-45.264-17.981-88.673-49.987-120.679s-75.412-49.987-120.678-49.987z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["instagram"],"colorPermutations":{}},"attrs":[],"properties":{"order":113,"id":22,"name":"instagram","prevSize":32,"code":59667},"setIdx":1,"setId":3,"iconIdx":19},{"icon":{"paths":["M870.164 414.218c-8.422 0.707-16.614 1.178-25.042 1.178-91.51 0-176.932-46.417-227.251-123.7v420.818c0 171.766-138.32 311.014-308.937 311.014s-308.935-138.778-308.935-310.543c0-171.771 138.318-311.020 308.935-311.020 6.553 0 12.872 0.472 19.191 0.943v153.39c-6.319-0.707-12.638-1.884-19.191-1.884-87.064 0-157.744 71.153-157.744 158.807 0 87.649 70.681 158.807 157.744 158.807s164.063-69.038 164.063-156.923l1.638-714.869h145.575c13.809 131.476 119.127 234.205 250.189 243.866v170.353z"],"attrs":[],"width":870,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tiktok"],"colorPermutations":{}},"attrs":[],"properties":{"order":110,"id":21,"name":"tiktok","prevSize":32,"code":59668},"setIdx":1,"setId":3,"iconIdx":20},{"icon":{"paths":["M811.331 112.641h-598.659c-117.455 0-212.671 105.214-212.671 235.002v330.685c0 129.792 95.216 235.003 212.671 235.003h598.659c117.453 0 212.669-105.211 212.669-235.003v-330.685c0-129.788-95.217-235.002-212.669-235.002zM667.5 529.075l-280.011 147.574c-7.461 3.932-16.080-2.079-16.080-11.213v-304.367c0-9.264 8.845-15.267 16.322-11.080l280.009 156.795c8.325 4.661 8.182 17.852-0.241 22.291z"],"attrs":[],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["youtube"],"colorPermutations":{}},"attrs":[],"properties":{"order":111,"id":20,"name":"youtube","prevSize":32,"code":59669},"setIdx":1,"setId":3,"iconIdx":21}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon"},"historySize":50,"showCodes":true,"gridSize":16}}
@@ -0,0 +1,93 @@
1
+ @font-face {
2
+ font-family: 'modicons-basic';
3
+ src: url('fonts/modicons-basic.eot?y5w2xq');
4
+ src: url('fonts/modicons-basic.eot?y5w2xq#iefix') format('embedded-opentype'),
5
+ url('fonts/modicons-basic.ttf?y5w2xq') format('truetype'),
6
+ url('fonts/modicons-basic.woff?y5w2xq') format('woff'),
7
+ url('fonts/modicons-basic.svg?y5w2xq#modicons-basic') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ font-display: block;
11
+ }
12
+
13
+ [class^="icon-"], [class*=" icon-"] {
14
+ /* use !important to prevent issues with browser extensions that change fonts */
15
+ font-family: 'modicons-basic' !important;
16
+ speak: never;
17
+ font-style: normal;
18
+ font-weight: normal;
19
+ font-variant: normal;
20
+ text-transform: none;
21
+ line-height: 1;
22
+
23
+ /* Better Font Rendering =========== */
24
+ -webkit-font-smoothing: antialiased;
25
+ -moz-osx-font-smoothing: grayscale;
26
+ }
27
+
28
+ .icon-arrow-down:before {
29
+ content: "\e900";
30
+ }
31
+ .icon-arrow-left:before {
32
+ content: "\e901";
33
+ }
34
+ .icon-arrow-right:before {
35
+ content: "\e902";
36
+ }
37
+ .icon-arrow-up:before {
38
+ content: "\e903";
39
+ }
40
+ .icon-hamburger:before {
41
+ content: "\e904";
42
+ }
43
+ .icon-caret-down:before {
44
+ content: "\e905";
45
+ }
46
+ .icon-caret-left:before {
47
+ content: "\e906";
48
+ }
49
+ .icon-caret-right:before {
50
+ content: "\e907";
51
+ }
52
+ .icon-caret-up:before {
53
+ content: "\e908";
54
+ }
55
+ .icon-close:before {
56
+ content: "\e909";
57
+ }
58
+ .icon-add:before {
59
+ content: "\e90a";
60
+ }
61
+ .icon-subtract:before {
62
+ content: "\e90b";
63
+ }
64
+ .icon-ellipsis:before {
65
+ content: "\e90c";
66
+ }
67
+ .icon-Facebook:before {
68
+ content: "\e90d";
69
+ }
70
+ .icon-Link:before {
71
+ content: "\e90e";
72
+ }
73
+ .icon-Pinterest:before {
74
+ content: "\e90f";
75
+ }
76
+ .icon-Twitter:before {
77
+ content: "\e910";
78
+ }
79
+ .icon-website:before {
80
+ content: "\e911";
81
+ }
82
+ .icon-linkedin:before {
83
+ content: "\e912";
84
+ }
85
+ .icon-instagram:before {
86
+ content: "\e913";
87
+ }
88
+ .icon-tiktok:before {
89
+ content: "\e914";
90
+ }
91
+ .icon-youtube:before {
92
+ content: "\e915";
93
+ }
@@ -0,0 +1,7 @@
1
+ Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures.
2
+
3
+ To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts
4
+
5
+ You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects.
6
+
7
+ You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection.