jekyll-theme-hydejack 6.4.1 → 6.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.md +5 -6
- data/README.md +19 -19
- data/_includes/about.html +1 -1
- data/_includes/body.html +9 -9
- data/_includes/footer.html +1 -1
- data/_includes/head.html +40 -20
- data/_includes/{copyright-header.txt → header.txt} +3 -2
- data/_includes/my-scripts.html +7 -0
- data/_includes/scripts.html +2 -25
- data/_includes/sidebar.html +3 -2
- data/_includes/social-list-item.html +21 -9
- data/_includes/social.html +8 -0
- data/_includes/styles/inline.scss +5 -2
- data/_includes/styles/style.scss +5 -2
- data/_layouts/about.html +1 -1
- data/_layouts/base.html +2 -2
- data/_layouts/compress.html +1 -1
- data/_layouts/default.html +31 -26
- data/_layouts/home.html +37 -1
- data/_layouts/not-found.html +4 -1
- data/_layouts/page.html +1 -1
- data/_sass/hydejack/_sidebar-inline.scss +6 -1
- data/_sass/hydejack/_sidebar.scss +6 -1
- data/_sass/my-inline.scss +16 -0
- data/_sass/my-style.scss +0 -0
- data/_sass/pooleparty/_pagination.scss +4 -0
- data/assets/css/hydejack.css +1 -1
- data/assets/icomoon/demo.html +17 -1
- data/assets/icomoon/fonts/icomoon.eot +0 -0
- data/assets/icomoon/fonts/icomoon.svg +1 -0
- data/assets/icomoon/fonts/icomoon.ttf +0 -0
- data/assets/icomoon/fonts/icomoon.woff +0 -0
- data/assets/icomoon/selection.json +184 -150
- data/assets/icomoon/style.css +8 -5
- data/assets/js/hydejack.js +4 -3
- data/assets/version.json +1 -1
- data/licenses/Apache-2.0.md +203 -0
- data/licenses/MIT.md +23 -0
- data/licenses/PRO-license.md +145 -0
- metadata +81 -19
data/_layouts/default.html
CHANGED
@@ -2,33 +2,38 @@
|
|
2
2
|
layout: base
|
3
3
|
---
|
4
4
|
|
5
|
-
<
|
6
|
-
<
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
{% include message.html text=text %}
|
11
|
-
<hr/>
|
5
|
+
<article class="page" role="article">
|
6
|
+
<header>
|
7
|
+
<h1 class="page-title">{{ page.title | default:"Home"}}</h1>
|
8
|
+
{% include message.html text=page.description %}
|
9
|
+
</header>
|
12
10
|
|
13
11
|
{{ content }}
|
14
12
|
|
15
|
-
<
|
16
|
-
<ul class="related-posts">
|
17
|
-
{% for post in site.posts %}
|
18
|
-
{% include post-list-item.html post=post %}
|
19
|
-
{% endfor %}
|
20
|
-
</ul>
|
13
|
+
<hr class="dingbat"/>
|
21
14
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
{%
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
15
|
+
{% if site.posts.size > 0 %}
|
16
|
+
<h2 class="hr">Posts</h2>
|
17
|
+
<ul class="related-posts">
|
18
|
+
{% for post in site.posts limit:5 %}
|
19
|
+
{% include post-list-item.html post=post %}
|
20
|
+
{% endfor %}
|
21
|
+
</ul>
|
22
|
+
{% endif %}
|
23
|
+
|
24
|
+
{% assign pages = site.html_pages | where:"layout","page" %}
|
25
|
+
{% if pages.size > 0 %}
|
26
|
+
<h2 class="hr">Pages</h2>
|
27
|
+
<ul class="related-posts">
|
28
|
+
{% for page in pages limit:5 %}
|
29
|
+
{% if page.layout == 'page' %}
|
30
|
+
<li class="h4">
|
31
|
+
<a href="{{ page.url | relative_url }}" data-flip="title">
|
32
|
+
<span>{{ page.title }}</span>
|
33
|
+
</a>
|
34
|
+
</li>
|
35
|
+
{% endif %}
|
36
|
+
{% endfor %}
|
37
|
+
</ul>
|
38
|
+
{% endif %}
|
39
|
+
</article>
|
data/_layouts/home.html
CHANGED
@@ -1,3 +1,39 @@
|
|
1
1
|
---
|
2
|
-
layout:
|
2
|
+
layout: base
|
3
3
|
---
|
4
|
+
|
5
|
+
<article class="page" role="article">
|
6
|
+
<header>
|
7
|
+
<h1 class="page-title">{{ page.title | default:"Home"}}</h1>
|
8
|
+
{% include message.html text=page.description %}
|
9
|
+
</header>
|
10
|
+
|
11
|
+
{{ content }}
|
12
|
+
|
13
|
+
<hr class="dingbat"/>
|
14
|
+
|
15
|
+
{% if site.posts.size > 0 %}
|
16
|
+
<h2 class="hr">Posts</h2>
|
17
|
+
<ul class="related-posts">
|
18
|
+
{% for post in site.posts limit:5 %}
|
19
|
+
{% include post-list-item.html post=post %}
|
20
|
+
{% endfor %}
|
21
|
+
</ul>
|
22
|
+
{% endif %}
|
23
|
+
|
24
|
+
{% assign pages = site.html_pages | where:"layout","page" %}
|
25
|
+
{% if pages.size > 0 %}
|
26
|
+
<h2 class="hr">Pages</h2>
|
27
|
+
<ul class="related-posts">
|
28
|
+
{% for page in pages limit:5 %}
|
29
|
+
{% if page.layout == 'page' %}
|
30
|
+
<li class="h4">
|
31
|
+
<a href="{{ page.url | relative_url }}" data-flip="title">
|
32
|
+
<span>{{ page.title }}</span>
|
33
|
+
</a>
|
34
|
+
</li>
|
35
|
+
{% endif %}
|
36
|
+
{% endfor %}
|
37
|
+
</ul>
|
38
|
+
{% endif %}
|
39
|
+
</article>
|
data/_layouts/not-found.html
CHANGED
@@ -4,5 +4,8 @@ layout: base
|
|
4
4
|
|
5
5
|
<div class="page">
|
6
6
|
<h1 class="page-title">{{ page.title | default: "404: Page Not Found" }}</h1>
|
7
|
-
<p class="lead">
|
7
|
+
<p class="lead">
|
8
|
+
Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.
|
9
|
+
<a href="{{ '/' | relative_url }}">Head back home</a> to try finding it again.
|
10
|
+
</p>
|
8
11
|
</div>
|
data/_layouts/page.html
CHANGED
@@ -0,0 +1,16 @@
|
|
1
|
+
// Uncomment below to remove border radius on projects and pagination items (pre v6.5)
|
2
|
+
/*
|
3
|
+
.card, .pagination-item {
|
4
|
+
border-radius: 0!important;
|
5
|
+
}
|
6
|
+
*/
|
7
|
+
|
8
|
+
// Uncomment below to restore the old (pre v6.5) sidebar
|
9
|
+
/*
|
10
|
+
@media screen {
|
11
|
+
.sidebar-sticky {
|
12
|
+
left: 2rem;
|
13
|
+
max-width: none;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
*/
|
data/_sass/my-style.scss
ADDED
File without changes
|
@@ -54,9 +54,13 @@
|
|
54
54
|
|
55
55
|
&:first-child > * {
|
56
56
|
margin-bottom: 0;
|
57
|
+
border-top-left-radius: 0.25rem;
|
58
|
+
border-bottom-left-radius: 0.25rem;
|
57
59
|
}
|
58
60
|
&:last-child > * {
|
59
61
|
margin-left: -1px;
|
62
|
+
border-top-right-radius: 0.25rem;
|
63
|
+
border-bottom-right-radius: 0.25rem;
|
60
64
|
}
|
61
65
|
}
|
62
66
|
}
|
data/assets/css/hydejack.css
CHANGED
data/assets/icomoon/demo.html
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
<link rel="stylesheet" href="style.css"></head>
|
10
10
|
<body>
|
11
11
|
<div class="bgc1 clearfix">
|
12
|
-
<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> icomoon <small class="fgc1">(Glyphs:
|
12
|
+
<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> icomoon <small class="fgc1">(Glyphs: 73)</small></h1>
|
13
13
|
</div>
|
14
14
|
<div class="clearfix mhl ptl">
|
15
15
|
<h1 class="mvm mtn fgc1">Grid Size: 16</h1>
|
@@ -1165,6 +1165,22 @@
|
|
1165
1165
|
<input type="text" readonly value="feed3, rss2" class="liga unitRight" />
|
1166
1166
|
</div>
|
1167
1167
|
</div>
|
1168
|
+
<div class="glyph fs1">
|
1169
|
+
<div class="clearfix bshadow0 pbs">
|
1170
|
+
<span class="icon-box-add">
|
1171
|
+
|
1172
|
+
</span>
|
1173
|
+
<span class="mls"> icon-box-add</span>
|
1174
|
+
</div>
|
1175
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
1176
|
+
<input type="text" readonly value="e95e" class="unit size1of2" />
|
1177
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
1178
|
+
</fieldset>
|
1179
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
1180
|
+
<span class="unit pvs fgc1">liga: </span>
|
1181
|
+
<input type="text" readonly value="box-add, box3" class="liga unitRight" />
|
1182
|
+
</div>
|
1183
|
+
</div>
|
1168
1184
|
</div>
|
1169
1185
|
|
1170
1186
|
<!--[if gt IE 8]><!-->
|
Binary file
|
@@ -12,6 +12,7 @@
|
|
12
12
|
<glyph unicode="" glyph-name="phone" d="M704 320c-64-64-64-128-128-128s-128 64-192 128-128 128-128 192 64 64 128 128-128 256-192 256-192-192-192-192c0-128 131.5-387.5 256-512s384-256 512-256c0 0 192 128 192 192s-192 256-256 192z" />
|
13
13
|
<glyph unicode="" glyph-name="envelop" d="M928 832h-832c-52.8 0-96-43.2-96-96v-640c0-52.8 43.2-96 96-96h832c52.8 0 96 43.2 96 96v640c0 52.8-43.2 96-96 96zM398.74 409.628l-270.74-210.892v501.642l270.74-290.75zM176.38 704h671.24l-335.62-252-335.62 252zM409.288 398.302l102.712-110.302 102.71 110.302 210.554-270.302h-626.528l210.552 270.302zM625.26 409.628l270.74 290.75v-501.642l-270.74 210.892z" />
|
14
14
|
<glyph unicode="" glyph-name="location" d="M512 960c-176.732 0-320-143.268-320-320 0-320 320-704 320-704s320 384 320 704c0 176.732-143.27 320-320 320zM512 448c-106.040 0-192 85.96-192 192s85.96 192 192 192 192-85.96 192-192-85.96-192-192-192z" />
|
15
|
+
<glyph unicode="" glyph-name="box-add" d="M832 896h-640l-192-192v-672c0-17.674 14.326-32 32-32h960c17.672 0 32 14.326 32 32v672l-192 192zM512 128l-320 256h192v192h256v-192h192l-320-256zM154.51 768l64 64h586.978l64-64h-714.978z" />
|
15
16
|
<glyph unicode="" glyph-name="bubbles" horiz-adv-x="1152" d="M1088 58.834c0-45.5 26.028-84.908 64-104.184v-15.938c-10.626-1.454-21.472-2.224-32.5-2.224-68.008 0-129.348 28.528-172.722 74.264-26.222-6.982-54.002-10.752-82.778-10.752-159.058 0-288 114.616-288 256s128.942 256 288 256c159.058 0 288-114.616 288-256 0-55.348-19.764-106.592-53.356-148.466-6.824-14.824-10.644-31.312-10.644-48.7zM512 960c278.458 0 504.992-180.614 511.836-405.52-49.182 21.92-103.586 33.52-159.836 33.52-95.56 0-185.816-33.446-254.138-94.178-70.846-62.972-109.862-147.434-109.862-237.822 0-44.672 9.544-87.888 27.736-127.788-5.228-0.126-10.468-0.212-15.736-0.212-27.156 0-53.81 1.734-79.824 5.044-109.978-109.978-241.25-129.7-368.176-132.596v26.916c68.536 33.578 128 94.74 128 164.636 0 9.754-0.758 19.33-2.164 28.696-115.796 76.264-189.836 192.754-189.836 323.304 0 229.75 229.23 416 512 416z" />
|
16
17
|
<glyph unicode="" glyph-name="quotes-right" d="M800 320c-123.712 0-224 100.29-224 224 0 123.712 100.288 224 224 224s224-100.288 224-224l1-32c0-247.424-200.576-448-448-448v128c85.474 0 165.834 33.286 226.274 93.726 11.634 11.636 22.252 24.016 31.83 37.020-11.438-1.8-23.16-2.746-35.104-2.746zM224 320c-123.71 0-224 100.29-224 224 0 123.712 100.29 224 224 224s224-100.288 224-224l1-32c0-247.424-200.576-448-448-448v128c85.474 0 165.834 33.286 226.274 93.726 11.636 11.636 22.254 24.016 31.832 37.020-11.44-1.8-23.16-2.746-35.106-2.746z" />
|
17
18
|
<glyph unicode="" glyph-name="wrench" d="M1002.934 142.124l-460.552 394.76c21.448 40.298 33.618 86.282 33.618 135.116 0 159.058-128.942 288-288 288-29.094 0-57.172-4.332-83.646-12.354l166.39-166.39c24.89-24.89 24.89-65.62 0-90.51l-101.49-101.49c-24.89-24.89-65.62-24.89-90.51 0l-166.39 166.39c-8.022-26.474-12.354-54.552-12.354-83.646 0-159.058 128.942-288 288-288 48.834 0 94.818 12.17 135.116 33.62l394.76-460.552c22.908-26.724 62.016-28.226 86.904-3.338l101.492 101.492c24.888 24.888 23.386 63.994-3.338 86.902z" />
|
Binary file
|
Binary file
|
@@ -23,13 +23,13 @@
|
|
23
23
|
"ligatures": "book, read",
|
24
24
|
"name": "book",
|
25
25
|
"order": 76,
|
26
|
-
"id":
|
26
|
+
"id": 0,
|
27
27
|
"prevSize": 32,
|
28
28
|
"code": 59679
|
29
29
|
},
|
30
30
|
"setIdx": 0,
|
31
31
|
"setId": 2,
|
32
|
-
"iconIdx":
|
32
|
+
"iconIdx": 0
|
33
33
|
},
|
34
34
|
{
|
35
35
|
"icon": {
|
@@ -54,13 +54,13 @@
|
|
54
54
|
"ligatures": "library2, bank",
|
55
55
|
"name": "library",
|
56
56
|
"order": 81,
|
57
|
-
"id":
|
57
|
+
"id": 1,
|
58
58
|
"prevSize": 32,
|
59
59
|
"code": 59681
|
60
60
|
},
|
61
61
|
"setIdx": 0,
|
62
62
|
"setId": 2,
|
63
|
-
"iconIdx":
|
63
|
+
"iconIdx": 1
|
64
64
|
},
|
65
65
|
{
|
66
66
|
"icon": {
|
@@ -85,13 +85,13 @@
|
|
85
85
|
"ligatures": "phone, telephone",
|
86
86
|
"name": "phone",
|
87
87
|
"order": 4,
|
88
|
-
"id":
|
88
|
+
"id": 2,
|
89
89
|
"prevSize": 32,
|
90
90
|
"code": 59714
|
91
91
|
},
|
92
92
|
"setIdx": 0,
|
93
93
|
"setId": 2,
|
94
|
-
"iconIdx":
|
94
|
+
"iconIdx": 2
|
95
95
|
},
|
96
96
|
{
|
97
97
|
"icon": {
|
@@ -116,13 +116,13 @@
|
|
116
116
|
"ligatures": "envelop, mail",
|
117
117
|
"name": "envelop",
|
118
118
|
"order": 3,
|
119
|
-
"id":
|
119
|
+
"id": 3,
|
120
120
|
"prevSize": 32,
|
121
121
|
"code": 59717
|
122
122
|
},
|
123
123
|
"setIdx": 0,
|
124
124
|
"setId": 2,
|
125
|
-
"iconIdx":
|
125
|
+
"iconIdx": 3
|
126
126
|
},
|
127
127
|
{
|
128
128
|
"icon": {
|
@@ -145,13 +145,13 @@
|
|
145
145
|
"ligatures": "location, map-marker",
|
146
146
|
"name": "location",
|
147
147
|
"order": 2,
|
148
|
-
"id":
|
148
|
+
"id": 4,
|
149
149
|
"prevSize": 32,
|
150
150
|
"code": 59719
|
151
151
|
},
|
152
152
|
"setIdx": 0,
|
153
153
|
"setId": 2,
|
154
|
-
"iconIdx":
|
154
|
+
"iconIdx": 4
|
155
155
|
},
|
156
156
|
{
|
157
157
|
"icon": {
|
@@ -176,13 +176,13 @@
|
|
176
176
|
"ligatures": "bubbles, comments",
|
177
177
|
"name": "bubbles",
|
178
178
|
"order": 75,
|
179
|
-
"id":
|
179
|
+
"id": 5,
|
180
180
|
"prevSize": 32,
|
181
181
|
"code": 59756
|
182
182
|
},
|
183
183
|
"setIdx": 0,
|
184
184
|
"setId": 2,
|
185
|
-
"iconIdx":
|
185
|
+
"iconIdx": 5
|
186
186
|
},
|
187
187
|
{
|
188
188
|
"icon": {
|
@@ -204,13 +204,13 @@
|
|
204
204
|
"ligatures": "quotes-right, rdquo",
|
205
205
|
"name": "quotes-right",
|
206
206
|
"order": 84,
|
207
|
-
"id":
|
207
|
+
"id": 6,
|
208
208
|
"prevSize": 32,
|
209
209
|
"code": 59768
|
210
210
|
},
|
211
211
|
"setIdx": 0,
|
212
212
|
"setId": 2,
|
213
|
-
"iconIdx":
|
213
|
+
"iconIdx": 6
|
214
214
|
},
|
215
215
|
{
|
216
216
|
"icon": {
|
@@ -237,13 +237,13 @@
|
|
237
237
|
"ligatures": "wrench, tool",
|
238
238
|
"name": "wrench",
|
239
239
|
"order": 90,
|
240
|
-
"id":
|
240
|
+
"id": 7,
|
241
241
|
"prevSize": 32,
|
242
242
|
"code": 59793
|
243
243
|
},
|
244
244
|
"setIdx": 0,
|
245
245
|
"setId": 2,
|
246
|
-
"iconIdx":
|
246
|
+
"iconIdx": 7
|
247
247
|
},
|
248
248
|
{
|
249
249
|
"icon": {
|
@@ -269,13 +269,13 @@
|
|
269
269
|
"ligatures": "trophy, cup",
|
270
270
|
"name": "trophy",
|
271
271
|
"order": 74,
|
272
|
-
"id":
|
272
|
+
"id": 8,
|
273
273
|
"prevSize": 32,
|
274
274
|
"code": 59806
|
275
275
|
},
|
276
276
|
"setIdx": 0,
|
277
277
|
"setId": 2,
|
278
|
-
"iconIdx":
|
278
|
+
"iconIdx": 8
|
279
279
|
},
|
280
280
|
{
|
281
281
|
"icon": {
|
@@ -301,13 +301,13 @@
|
|
301
301
|
"ligatures": "briefcase, portfolio",
|
302
302
|
"name": "briefcase",
|
303
303
|
"order": 72,
|
304
|
-
"id":
|
304
|
+
"id": 9,
|
305
305
|
"prevSize": 32,
|
306
306
|
"code": 59822
|
307
307
|
},
|
308
308
|
"setIdx": 0,
|
309
309
|
"setId": 2,
|
310
|
-
"iconIdx":
|
310
|
+
"iconIdx": 9
|
311
311
|
},
|
312
312
|
{
|
313
313
|
"icon": {
|
@@ -334,13 +334,13 @@
|
|
334
334
|
"ligatures": "earth, globe2",
|
335
335
|
"name": "earth",
|
336
336
|
"order": 88,
|
337
|
-
"id":
|
337
|
+
"id": 10,
|
338
338
|
"prevSize": 32,
|
339
339
|
"code": 59850
|
340
340
|
},
|
341
341
|
"setIdx": 0,
|
342
342
|
"setId": 2,
|
343
|
-
"iconIdx":
|
343
|
+
"iconIdx": 10
|
344
344
|
},
|
345
345
|
{
|
346
346
|
"icon": {
|
@@ -366,13 +366,13 @@
|
|
366
366
|
"ligatures": "link, chain",
|
367
367
|
"name": "link",
|
368
368
|
"order": 68,
|
369
|
-
"id":
|
369
|
+
"id": 11,
|
370
370
|
"prevSize": 32,
|
371
371
|
"code": 59851
|
372
372
|
},
|
373
373
|
"setIdx": 0,
|
374
374
|
"setId": 2,
|
375
|
-
"iconIdx":
|
375
|
+
"iconIdx": 11
|
376
376
|
},
|
377
377
|
{
|
378
378
|
"icon": {
|
@@ -397,13 +397,13 @@
|
|
397
397
|
"ligatures": "star-empty, rate",
|
398
398
|
"name": "star-empty",
|
399
399
|
"order": 69,
|
400
|
-
"id":
|
400
|
+
"id": 12,
|
401
401
|
"prevSize": 32,
|
402
402
|
"code": 59863
|
403
403
|
},
|
404
404
|
"setIdx": 0,
|
405
405
|
"setId": 2,
|
406
|
-
"iconIdx":
|
406
|
+
"iconIdx": 12
|
407
407
|
},
|
408
408
|
{
|
409
409
|
"icon": {
|
@@ -426,13 +426,13 @@
|
|
426
426
|
"ligatures": "star-half, rate2",
|
427
427
|
"name": "star-half",
|
428
428
|
"order": 70,
|
429
|
-
"id":
|
429
|
+
"id": 13,
|
430
430
|
"prevSize": 32,
|
431
431
|
"code": 59864
|
432
432
|
},
|
433
433
|
"setIdx": 0,
|
434
434
|
"setId": 2,
|
435
|
-
"iconIdx":
|
435
|
+
"iconIdx": 13
|
436
436
|
},
|
437
437
|
{
|
438
438
|
"icon": {
|
@@ -457,13 +457,13 @@
|
|
457
457
|
"ligatures": "star-full, rate3",
|
458
458
|
"name": "star-full",
|
459
459
|
"order": 71,
|
460
|
-
"id":
|
460
|
+
"id": 14,
|
461
461
|
"prevSize": 32,
|
462
462
|
"code": 59865
|
463
463
|
},
|
464
464
|
"setIdx": 0,
|
465
465
|
"setId": 2,
|
466
|
-
"iconIdx":
|
466
|
+
"iconIdx": 14
|
467
467
|
},
|
468
468
|
{
|
469
469
|
"icon": {
|
@@ -487,13 +487,13 @@
|
|
487
487
|
"ligatures": "heart, like",
|
488
488
|
"name": "heart",
|
489
489
|
"order": 4,
|
490
|
-
"id":
|
490
|
+
"id": 15,
|
491
491
|
"prevSize": 32,
|
492
492
|
"code": 59866
|
493
493
|
},
|
494
494
|
"setIdx": 0,
|
495
495
|
"setId": 2,
|
496
|
-
"iconIdx":
|
496
|
+
"iconIdx": 15
|
497
497
|
},
|
498
498
|
{
|
499
499
|
"icon": {
|
@@ -521,13 +521,13 @@
|
|
521
521
|
"ligatures": "new-tab, out2",
|
522
522
|
"name": "new-tab",
|
523
523
|
"order": 92,
|
524
|
-
"id":
|
524
|
+
"id": 16,
|
525
525
|
"prevSize": 32,
|
526
526
|
"code": 60030
|
527
527
|
},
|
528
528
|
"setIdx": 0,
|
529
529
|
"setId": 2,
|
530
|
-
"iconIdx":
|
530
|
+
"iconIdx": 16
|
531
531
|
},
|
532
532
|
{
|
533
533
|
"icon": {
|
@@ -551,13 +551,13 @@
|
|
551
551
|
"name": "amazon",
|
552
552
|
"ligatures": "amazon, brand",
|
553
553
|
"order": 61,
|
554
|
-
"id":
|
554
|
+
"id": 17,
|
555
555
|
"prevSize": 32,
|
556
556
|
"code": 60039
|
557
557
|
},
|
558
558
|
"setIdx": 0,
|
559
559
|
"setId": 2,
|
560
|
-
"iconIdx":
|
560
|
+
"iconIdx": 17
|
561
561
|
},
|
562
562
|
{
|
563
563
|
"icon": {
|
@@ -579,13 +579,13 @@
|
|
579
579
|
"name": "google",
|
580
580
|
"ligatures": "google, brand2",
|
581
581
|
"order": 10,
|
582
|
-
"id":
|
582
|
+
"id": 18,
|
583
583
|
"prevSize": 32,
|
584
584
|
"code": 60040
|
585
585
|
},
|
586
586
|
"setIdx": 0,
|
587
587
|
"setId": 2,
|
588
|
-
"iconIdx":
|
588
|
+
"iconIdx": 18
|
589
589
|
},
|
590
590
|
{
|
591
591
|
"icon": {
|
@@ -609,13 +609,13 @@
|
|
609
609
|
"ligatures": "google-plus, brand5",
|
610
610
|
"name": "google-plus",
|
611
611
|
"order": 52,
|
612
|
-
"id":
|
612
|
+
"id": 19,
|
613
613
|
"prevSize": 32,
|
614
614
|
"code": 60043
|
615
615
|
},
|
616
616
|
"setIdx": 0,
|
617
617
|
"setId": 2,
|
618
|
-
"iconIdx":
|
618
|
+
"iconIdx": 19
|
619
619
|
},
|
620
620
|
{
|
621
621
|
"icon": {
|
@@ -639,13 +639,13 @@
|
|
639
639
|
"ligatures": "google-drive, brand9",
|
640
640
|
"name": "google-drive",
|
641
641
|
"order": 65,
|
642
|
-
"id":
|
642
|
+
"id": 20,
|
643
643
|
"prevSize": 32,
|
644
644
|
"code": 60047
|
645
645
|
},
|
646
646
|
"setIdx": 0,
|
647
647
|
"setId": 2,
|
648
|
-
"iconIdx":
|
648
|
+
"iconIdx": 20
|
649
649
|
},
|
650
650
|
{
|
651
651
|
"icon": {
|
@@ -668,13 +668,13 @@
|
|
668
668
|
"ligatures": "facebook, brand10",
|
669
669
|
"name": "facebook",
|
670
670
|
"order": 11,
|
671
|
-
"id":
|
671
|
+
"id": 21,
|
672
672
|
"prevSize": 32,
|
673
673
|
"code": 60048
|
674
674
|
},
|
675
675
|
"setIdx": 0,
|
676
676
|
"setId": 2,
|
677
|
-
"iconIdx":
|
677
|
+
"iconIdx": 21
|
678
678
|
},
|
679
679
|
{
|
680
680
|
"icon": {
|
@@ -699,13 +699,13 @@
|
|
699
699
|
"ligatures": "instagram, brand12",
|
700
700
|
"name": "instagram",
|
701
701
|
"order": 12,
|
702
|
-
"id":
|
702
|
+
"id": 22,
|
703
703
|
"prevSize": 32,
|
704
704
|
"code": 60050
|
705
705
|
},
|
706
706
|
"setIdx": 0,
|
707
707
|
"setId": 2,
|
708
|
-
"iconIdx":
|
708
|
+
"iconIdx": 22
|
709
709
|
},
|
710
710
|
{
|
711
711
|
"icon": {
|
@@ -728,13 +728,13 @@
|
|
728
728
|
"name": "whatsapp",
|
729
729
|
"ligatures": "whatsapp, brand13",
|
730
730
|
"order": 53,
|
731
|
-
"id":
|
731
|
+
"id": 23,
|
732
732
|
"prevSize": 32,
|
733
733
|
"code": 60051
|
734
734
|
},
|
735
735
|
"setIdx": 0,
|
736
736
|
"setId": 2,
|
737
|
-
"iconIdx":
|
737
|
+
"iconIdx": 23
|
738
738
|
},
|
739
739
|
{
|
740
740
|
"icon": {
|
@@ -757,13 +757,13 @@
|
|
757
757
|
"name": "spotify",
|
758
758
|
"ligatures": "spotify, brand14",
|
759
759
|
"order": 13,
|
760
|
-
"id":
|
760
|
+
"id": 24,
|
761
761
|
"prevSize": 32,
|
762
762
|
"code": 60052
|
763
763
|
},
|
764
764
|
"setIdx": 0,
|
765
765
|
"setId": 2,
|
766
|
-
"iconIdx":
|
766
|
+
"iconIdx": 24
|
767
767
|
},
|
768
768
|
{
|
769
769
|
"icon": {
|
@@ -786,13 +786,13 @@
|
|
786
786
|
"name": "telegram",
|
787
787
|
"ligatures": "telegram, brand15",
|
788
788
|
"order": 54,
|
789
|
-
"id":
|
789
|
+
"id": 25,
|
790
790
|
"prevSize": 32,
|
791
791
|
"code": 60053
|
792
792
|
},
|
793
793
|
"setIdx": 0,
|
794
794
|
"setId": 2,
|
795
|
-
"iconIdx":
|
795
|
+
"iconIdx": 25
|
796
796
|
},
|
797
797
|
{
|
798
798
|
"icon": {
|
@@ -816,13 +816,13 @@
|
|
816
816
|
"ligatures": "twitter, brand16",
|
817
817
|
"name": "twitter",
|
818
818
|
"order": 14,
|
819
|
-
"id":
|
819
|
+
"id": 26,
|
820
820
|
"prevSize": 32,
|
821
821
|
"code": 60054
|
822
822
|
},
|
823
823
|
"setIdx": 0,
|
824
824
|
"setId": 2,
|
825
|
-
"iconIdx":
|
825
|
+
"iconIdx": 26
|
826
826
|
},
|
827
827
|
{
|
828
828
|
"icon": {
|
@@ -845,13 +845,13 @@
|
|
845
845
|
"name": "vine",
|
846
846
|
"ligatures": "vine, brand17",
|
847
847
|
"order": 15,
|
848
|
-
"id":
|
848
|
+
"id": 27,
|
849
849
|
"prevSize": 32,
|
850
850
|
"code": 60055
|
851
851
|
},
|
852
852
|
"setIdx": 0,
|
853
853
|
"setId": 2,
|
854
|
-
"iconIdx":
|
854
|
+
"iconIdx": 27
|
855
855
|
},
|
856
856
|
{
|
857
857
|
"icon": {
|
@@ -874,13 +874,13 @@
|
|
874
874
|
"name": "vk",
|
875
875
|
"ligatures": "vk, brand18",
|
876
876
|
"order": 16,
|
877
|
-
"id":
|
877
|
+
"id": 28,
|
878
878
|
"prevSize": 32,
|
879
879
|
"code": 60056
|
880
880
|
},
|
881
881
|
"setIdx": 0,
|
882
882
|
"setId": 2,
|
883
|
-
"iconIdx":
|
883
|
+
"iconIdx": 28
|
884
884
|
},
|
885
885
|
{
|
886
886
|
"icon": {
|
@@ -905,13 +905,13 @@
|
|
905
905
|
"name": "renren",
|
906
906
|
"ligatures": "renren, brand19",
|
907
907
|
"order": 55,
|
908
|
-
"id":
|
908
|
+
"id": 29,
|
909
909
|
"prevSize": 32,
|
910
910
|
"code": 60057
|
911
911
|
},
|
912
912
|
"setIdx": 0,
|
913
913
|
"setId": 2,
|
914
|
-
"iconIdx":
|
914
|
+
"iconIdx": 29
|
915
915
|
},
|
916
916
|
{
|
917
917
|
"icon": {
|
@@ -937,13 +937,13 @@
|
|
937
937
|
"name": "sina-weibo",
|
938
938
|
"ligatures": "sina-weibo, brand20",
|
939
939
|
"order": 56,
|
940
|
-
"id":
|
940
|
+
"id": 30,
|
941
941
|
"prevSize": 32,
|
942
942
|
"code": 60058
|
943
943
|
},
|
944
944
|
"setIdx": 0,
|
945
945
|
"setId": 2,
|
946
|
-
"iconIdx":
|
946
|
+
"iconIdx": 30
|
947
947
|
},
|
948
948
|
{
|
949
949
|
"icon": {
|
@@ -966,13 +966,13 @@
|
|
966
966
|
"ligatures": "feed2, rss",
|
967
967
|
"name": "rss",
|
968
968
|
"order": 9,
|
969
|
-
"id":
|
969
|
+
"id": 31,
|
970
970
|
"prevSize": 32,
|
971
971
|
"code": 60059
|
972
972
|
},
|
973
973
|
"setIdx": 0,
|
974
974
|
"setId": 2,
|
975
|
-
"iconIdx":
|
975
|
+
"iconIdx": 31
|
976
976
|
},
|
977
977
|
{
|
978
978
|
"icon": {
|
@@ -995,13 +995,13 @@
|
|
995
995
|
"ligatures": "youtube, brand21",
|
996
996
|
"name": "youtube",
|
997
997
|
"order": 8,
|
998
|
-
"id":
|
998
|
+
"id": 32,
|
999
999
|
"prevSize": 32,
|
1000
1000
|
"code": 60061
|
1001
1001
|
},
|
1002
1002
|
"setIdx": 0,
|
1003
1003
|
"setId": 2,
|
1004
|
-
"iconIdx":
|
1004
|
+
"iconIdx": 32
|
1005
1005
|
},
|
1006
1006
|
{
|
1007
1007
|
"icon": {
|
@@ -1026,13 +1026,13 @@
|
|
1026
1026
|
"ligatures": "twitch, brand23",
|
1027
1027
|
"name": "twitch",
|
1028
1028
|
"order": 17,
|
1029
|
-
"id":
|
1029
|
+
"id": 33,
|
1030
1030
|
"prevSize": 32,
|
1031
1031
|
"code": 60063
|
1032
1032
|
},
|
1033
1033
|
"setIdx": 0,
|
1034
1034
|
"setId": 2,
|
1035
|
-
"iconIdx":
|
1035
|
+
"iconIdx": 33
|
1036
1036
|
},
|
1037
1037
|
{
|
1038
1038
|
"icon": {
|
@@ -1055,13 +1055,13 @@
|
|
1055
1055
|
"ligatures": "vimeo, brand24",
|
1056
1056
|
"name": "vimeo",
|
1057
1057
|
"order": 18,
|
1058
|
-
"id":
|
1058
|
+
"id": 34,
|
1059
1059
|
"prevSize": 32,
|
1060
1060
|
"code": 60064
|
1061
1061
|
},
|
1062
1062
|
"setIdx": 0,
|
1063
1063
|
"setId": 2,
|
1064
|
-
"iconIdx":
|
1064
|
+
"iconIdx": 34
|
1065
1065
|
},
|
1066
1066
|
{
|
1067
1067
|
"icon": {
|
@@ -1083,13 +1083,13 @@
|
|
1083
1083
|
"ligatures": "lanyrd, brand26",
|
1084
1084
|
"name": "lanyrd",
|
1085
1085
|
"order": 51,
|
1086
|
-
"id":
|
1086
|
+
"id": 35,
|
1087
1087
|
"prevSize": 32,
|
1088
1088
|
"code": 60066
|
1089
1089
|
},
|
1090
1090
|
"setIdx": 0,
|
1091
1091
|
"setId": 2,
|
1092
|
-
"iconIdx":
|
1092
|
+
"iconIdx": 35
|
1093
1093
|
},
|
1094
1094
|
{
|
1095
1095
|
"icon": {
|
@@ -1112,13 +1112,13 @@
|
|
1112
1112
|
"ligatures": "flickr2, brand28",
|
1113
1113
|
"name": "flickr2",
|
1114
1114
|
"order": 19,
|
1115
|
-
"id":
|
1115
|
+
"id": 36,
|
1116
1116
|
"prevSize": 32,
|
1117
1117
|
"code": 60068
|
1118
1118
|
},
|
1119
1119
|
"setIdx": 0,
|
1120
1120
|
"setId": 2,
|
1121
|
-
"iconIdx":
|
1121
|
+
"iconIdx": 36
|
1122
1122
|
},
|
1123
1123
|
{
|
1124
1124
|
"icon": {
|
@@ -1141,13 +1141,13 @@
|
|
1141
1141
|
"ligatures": "dribbble, brand31",
|
1142
1142
|
"name": "dribbble",
|
1143
1143
|
"order": 20,
|
1144
|
-
"id":
|
1144
|
+
"id": 37,
|
1145
1145
|
"prevSize": 32,
|
1146
1146
|
"code": 60071
|
1147
1147
|
},
|
1148
1148
|
"setIdx": 0,
|
1149
1149
|
"setId": 2,
|
1150
|
-
"iconIdx":
|
1150
|
+
"iconIdx": 37
|
1151
1151
|
},
|
1152
1152
|
{
|
1153
1153
|
"icon": {
|
@@ -1172,13 +1172,13 @@
|
|
1172
1172
|
"name": "behance",
|
1173
1173
|
"ligatures": "behance, brand32",
|
1174
1174
|
"order": 21,
|
1175
|
-
"id":
|
1175
|
+
"id": 38,
|
1176
1176
|
"prevSize": 32,
|
1177
1177
|
"code": 60072
|
1178
1178
|
},
|
1179
1179
|
"setIdx": 0,
|
1180
1180
|
"setId": 2,
|
1181
|
-
"iconIdx":
|
1181
|
+
"iconIdx": 38
|
1182
1182
|
},
|
1183
1183
|
{
|
1184
1184
|
"icon": {
|
@@ -1201,13 +1201,13 @@
|
|
1201
1201
|
"ligatures": "deviantart, brand34",
|
1202
1202
|
"name": "deviantart",
|
1203
1203
|
"order": 60,
|
1204
|
-
"id":
|
1204
|
+
"id": 39,
|
1205
1205
|
"prevSize": 32,
|
1206
1206
|
"code": 60074
|
1207
1207
|
},
|
1208
1208
|
"setIdx": 0,
|
1209
1209
|
"setId": 2,
|
1210
|
-
"iconIdx":
|
1210
|
+
"iconIdx": 39
|
1211
1211
|
},
|
1212
1212
|
{
|
1213
1213
|
"icon": {
|
@@ -1230,13 +1230,13 @@
|
|
1230
1230
|
"name": "500px",
|
1231
1231
|
"ligatures": "500px, brand35",
|
1232
1232
|
"order": 22,
|
1233
|
-
"id":
|
1233
|
+
"id": 40,
|
1234
1234
|
"prevSize": 32,
|
1235
1235
|
"code": 60075
|
1236
1236
|
},
|
1237
1237
|
"setIdx": 0,
|
1238
1238
|
"setId": 2,
|
1239
|
-
"iconIdx":
|
1239
|
+
"iconIdx": 40
|
1240
1240
|
},
|
1241
1241
|
{
|
1242
1242
|
"icon": {
|
@@ -1259,13 +1259,13 @@
|
|
1259
1259
|
"ligatures": "steam, brand36",
|
1260
1260
|
"name": "steam",
|
1261
1261
|
"order": 23,
|
1262
|
-
"id":
|
1262
|
+
"id": 41,
|
1263
1263
|
"prevSize": 32,
|
1264
1264
|
"code": 60076
|
1265
1265
|
},
|
1266
1266
|
"setIdx": 0,
|
1267
1267
|
"setId": 2,
|
1268
|
-
"iconIdx":
|
1268
|
+
"iconIdx": 41
|
1269
1269
|
},
|
1270
1270
|
{
|
1271
1271
|
"icon": {
|
@@ -1291,13 +1291,13 @@
|
|
1291
1291
|
"ligatures": "dropbox, brand38",
|
1292
1292
|
"name": "dropbox",
|
1293
1293
|
"order": 64,
|
1294
|
-
"id":
|
1294
|
+
"id": 42,
|
1295
1295
|
"prevSize": 32,
|
1296
1296
|
"code": 60078
|
1297
1297
|
},
|
1298
1298
|
"setIdx": 0,
|
1299
1299
|
"setId": 2,
|
1300
|
-
"iconIdx":
|
1300
|
+
"iconIdx": 42
|
1301
1301
|
},
|
1302
1302
|
{
|
1303
1303
|
"icon": {
|
@@ -1320,13 +1320,13 @@
|
|
1320
1320
|
"ligatures": "onedrive, brand39",
|
1321
1321
|
"name": "onedrive",
|
1322
1322
|
"order": 63,
|
1323
|
-
"id":
|
1323
|
+
"id": 43,
|
1324
1324
|
"prevSize": 32,
|
1325
1325
|
"code": 60079
|
1326
1326
|
},
|
1327
1327
|
"setIdx": 0,
|
1328
1328
|
"setId": 2,
|
1329
|
-
"iconIdx":
|
1329
|
+
"iconIdx": 43
|
1330
1330
|
},
|
1331
1331
|
{
|
1332
1332
|
"icon": {
|
@@ -1350,13 +1350,13 @@
|
|
1350
1350
|
"ligatures": "github, brand40",
|
1351
1351
|
"name": "github",
|
1352
1352
|
"order": 24,
|
1353
|
-
"id":
|
1353
|
+
"id": 44,
|
1354
1354
|
"prevSize": 32,
|
1355
1355
|
"code": 60080
|
1356
1356
|
},
|
1357
1357
|
"setIdx": 0,
|
1358
1358
|
"setId": 2,
|
1359
|
-
"iconIdx":
|
1359
|
+
"iconIdx": 44
|
1360
1360
|
},
|
1361
1361
|
{
|
1362
1362
|
"icon": {
|
@@ -1378,13 +1378,13 @@
|
|
1378
1378
|
"name": "npm",
|
1379
1379
|
"ligatures": "npm, brand41",
|
1380
1380
|
"order": 25,
|
1381
|
-
"id":
|
1381
|
+
"id": 45,
|
1382
1382
|
"prevSize": 32,
|
1383
1383
|
"code": 60081
|
1384
1384
|
},
|
1385
1385
|
"setIdx": 0,
|
1386
1386
|
"setId": 2,
|
1387
|
-
"iconIdx":
|
1387
|
+
"iconIdx": 45
|
1388
1388
|
},
|
1389
1389
|
{
|
1390
1390
|
"icon": {
|
@@ -1406,13 +1406,13 @@
|
|
1406
1406
|
"name": "basecamp",
|
1407
1407
|
"ligatures": "basecamp, brand42",
|
1408
1408
|
"order": 62,
|
1409
|
-
"id":
|
1409
|
+
"id": 46,
|
1410
1410
|
"prevSize": 32,
|
1411
1411
|
"code": 60082
|
1412
1412
|
},
|
1413
1413
|
"setIdx": 0,
|
1414
1414
|
"setId": 2,
|
1415
|
-
"iconIdx":
|
1415
|
+
"iconIdx": 46
|
1416
1416
|
},
|
1417
1417
|
{
|
1418
1418
|
"icon": {
|
@@ -1434,13 +1434,13 @@
|
|
1434
1434
|
"name": "trello",
|
1435
1435
|
"ligatures": "trello, brand43",
|
1436
1436
|
"order": 27,
|
1437
|
-
"id":
|
1437
|
+
"id": 47,
|
1438
1438
|
"prevSize": 32,
|
1439
1439
|
"code": 60083
|
1440
1440
|
},
|
1441
1441
|
"setIdx": 0,
|
1442
1442
|
"setId": 2,
|
1443
|
-
"iconIdx":
|
1443
|
+
"iconIdx": 47
|
1444
1444
|
},
|
1445
1445
|
{
|
1446
1446
|
"icon": {
|
@@ -1464,13 +1464,13 @@
|
|
1464
1464
|
"ligatures": "wordpress, brand44",
|
1465
1465
|
"name": "wordpress",
|
1466
1466
|
"order": 45,
|
1467
|
-
"id":
|
1467
|
+
"id": 48,
|
1468
1468
|
"prevSize": 32,
|
1469
1469
|
"code": 60084
|
1470
1470
|
},
|
1471
1471
|
"setIdx": 0,
|
1472
1472
|
"setId": 2,
|
1473
|
-
"iconIdx":
|
1473
|
+
"iconIdx": 48
|
1474
1474
|
},
|
1475
1475
|
{
|
1476
1476
|
"icon": {
|
@@ -1493,13 +1493,13 @@
|
|
1493
1493
|
"ligatures": "joomla, brand45",
|
1494
1494
|
"name": "joomla",
|
1495
1495
|
"order": 47,
|
1496
|
-
"id":
|
1496
|
+
"id": 49,
|
1497
1497
|
"prevSize": 32,
|
1498
1498
|
"code": 60085
|
1499
1499
|
},
|
1500
1500
|
"setIdx": 0,
|
1501
1501
|
"setId": 2,
|
1502
|
-
"iconIdx":
|
1502
|
+
"iconIdx": 49
|
1503
1503
|
},
|
1504
1504
|
{
|
1505
1505
|
"icon": {
|
@@ -1522,13 +1522,13 @@
|
|
1522
1522
|
"ligatures": "ello, brand46",
|
1523
1523
|
"name": "ello",
|
1524
1524
|
"order": 46,
|
1525
|
-
"id":
|
1525
|
+
"id": 50,
|
1526
1526
|
"prevSize": 32,
|
1527
1527
|
"code": 60086
|
1528
1528
|
},
|
1529
1529
|
"setIdx": 0,
|
1530
1530
|
"setId": 2,
|
1531
|
-
"iconIdx":
|
1531
|
+
"iconIdx": 50
|
1532
1532
|
},
|
1533
1533
|
{
|
1534
1534
|
"icon": {
|
@@ -1551,13 +1551,13 @@
|
|
1551
1551
|
"ligatures": "blogger, brand47",
|
1552
1552
|
"name": "blogger",
|
1553
1553
|
"order": 28,
|
1554
|
-
"id":
|
1554
|
+
"id": 51,
|
1555
1555
|
"prevSize": 32,
|
1556
1556
|
"code": 60087
|
1557
1557
|
},
|
1558
1558
|
"setIdx": 0,
|
1559
1559
|
"setId": 2,
|
1560
|
-
"iconIdx":
|
1560
|
+
"iconIdx": 51
|
1561
1561
|
},
|
1562
1562
|
{
|
1563
1563
|
"icon": {
|
@@ -1580,13 +1580,13 @@
|
|
1580
1580
|
"ligatures": "tumblr, brand49",
|
1581
1581
|
"name": "tumblr",
|
1582
1582
|
"order": 29,
|
1583
|
-
"id":
|
1583
|
+
"id": 52,
|
1584
1584
|
"prevSize": 32,
|
1585
1585
|
"code": 60089
|
1586
1586
|
},
|
1587
1587
|
"setIdx": 0,
|
1588
1588
|
"setId": 2,
|
1589
|
-
"iconIdx":
|
1589
|
+
"iconIdx": 52
|
1590
1590
|
},
|
1591
1591
|
{
|
1592
1592
|
"icon": {
|
@@ -1609,13 +1609,13 @@
|
|
1609
1609
|
"ligatures": "yahoo, brand51",
|
1610
1610
|
"name": "yahoo",
|
1611
1611
|
"order": 30,
|
1612
|
-
"id":
|
1612
|
+
"id": 53,
|
1613
1613
|
"prevSize": 32,
|
1614
1614
|
"code": 60091
|
1615
1615
|
},
|
1616
1616
|
"setIdx": 0,
|
1617
1617
|
"setId": 2,
|
1618
|
-
"iconIdx":
|
1618
|
+
"iconIdx": 53
|
1619
1619
|
},
|
1620
1620
|
{
|
1621
1621
|
"icon": {
|
@@ -1638,13 +1638,13 @@
|
|
1638
1638
|
"ligatures": "soundcloud, brand58",
|
1639
1639
|
"name": "soundcloud",
|
1640
1640
|
"order": 31,
|
1641
|
-
"id":
|
1641
|
+
"id": 54,
|
1642
1642
|
"prevSize": 32,
|
1643
1643
|
"code": 60099
|
1644
1644
|
},
|
1645
1645
|
"setIdx": 0,
|
1646
1646
|
"setId": 2,
|
1647
|
-
"iconIdx":
|
1647
|
+
"iconIdx": 54
|
1648
1648
|
},
|
1649
1649
|
{
|
1650
1650
|
"icon": {
|
@@ -1671,13 +1671,13 @@
|
|
1671
1671
|
"ligatures": "skype, brand60",
|
1672
1672
|
"name": "skype",
|
1673
1673
|
"order": 32,
|
1674
|
-
"id":
|
1674
|
+
"id": 55,
|
1675
1675
|
"prevSize": 32,
|
1676
1676
|
"code": 60101
|
1677
1677
|
},
|
1678
1678
|
"setIdx": 0,
|
1679
1679
|
"setId": 2,
|
1680
|
-
"iconIdx":
|
1680
|
+
"iconIdx": 55
|
1681
1681
|
},
|
1682
1682
|
{
|
1683
1683
|
"icon": {
|
@@ -1700,13 +1700,13 @@
|
|
1700
1700
|
"ligatures": "reddit, brand61",
|
1701
1701
|
"name": "reddit",
|
1702
1702
|
"order": 33,
|
1703
|
-
"id":
|
1703
|
+
"id": 56,
|
1704
1704
|
"prevSize": 32,
|
1705
1705
|
"code": 60102
|
1706
1706
|
},
|
1707
1707
|
"setIdx": 0,
|
1708
1708
|
"setId": 2,
|
1709
|
-
"iconIdx":
|
1709
|
+
"iconIdx": 56
|
1710
1710
|
},
|
1711
1711
|
{
|
1712
1712
|
"icon": {
|
@@ -1731,13 +1731,13 @@
|
|
1731
1731
|
"name": "hackernews",
|
1732
1732
|
"ligatures": "hackernews, brand62",
|
1733
1733
|
"order": 34,
|
1734
|
-
"id":
|
1734
|
+
"id": 57,
|
1735
1735
|
"prevSize": 32,
|
1736
1736
|
"code": 60103
|
1737
1737
|
},
|
1738
1738
|
"setIdx": 0,
|
1739
1739
|
"setId": 2,
|
1740
|
-
"iconIdx":
|
1740
|
+
"iconIdx": 57
|
1741
1741
|
},
|
1742
1742
|
{
|
1743
1743
|
"icon": {
|
@@ -1759,13 +1759,13 @@
|
|
1759
1759
|
"name": "wikipedia",
|
1760
1760
|
"ligatures": "wikipedia, brand63",
|
1761
1761
|
"order": 40,
|
1762
|
-
"id":
|
1762
|
+
"id": 58,
|
1763
1763
|
"prevSize": 32,
|
1764
1764
|
"code": 60104
|
1765
1765
|
},
|
1766
1766
|
"setIdx": 0,
|
1767
1767
|
"setId": 2,
|
1768
|
-
"iconIdx":
|
1768
|
+
"iconIdx": 58
|
1769
1769
|
},
|
1770
1770
|
{
|
1771
1771
|
"icon": {
|
@@ -1790,13 +1790,13 @@
|
|
1790
1790
|
"ligatures": "linkedin2, brand65",
|
1791
1791
|
"name": "linkedin2",
|
1792
1792
|
"order": 39,
|
1793
|
-
"id":
|
1793
|
+
"id": 59,
|
1794
1794
|
"prevSize": 32,
|
1795
1795
|
"code": 60106
|
1796
1796
|
},
|
1797
1797
|
"setIdx": 0,
|
1798
1798
|
"setId": 2,
|
1799
|
-
"iconIdx":
|
1799
|
+
"iconIdx": 59
|
1800
1800
|
},
|
1801
1801
|
{
|
1802
1802
|
"icon": {
|
@@ -1819,13 +1819,13 @@
|
|
1819
1819
|
"ligatures": "lastfm, brand66",
|
1820
1820
|
"name": "lastfm",
|
1821
1821
|
"order": 37,
|
1822
|
-
"id":
|
1822
|
+
"id": 60,
|
1823
1823
|
"prevSize": 32,
|
1824
1824
|
"code": 60107
|
1825
1825
|
},
|
1826
1826
|
"setIdx": 0,
|
1827
1827
|
"setId": 2,
|
1828
|
-
"iconIdx":
|
1828
|
+
"iconIdx": 60
|
1829
1829
|
},
|
1830
1830
|
{
|
1831
1831
|
"icon": {
|
@@ -1848,13 +1848,13 @@
|
|
1848
1848
|
"ligatures": "delicious, brand68",
|
1849
1849
|
"name": "delicious",
|
1850
1850
|
"order": 38,
|
1851
|
-
"id":
|
1851
|
+
"id": 61,
|
1852
1852
|
"prevSize": 32,
|
1853
1853
|
"code": 60109
|
1854
1854
|
},
|
1855
1855
|
"setIdx": 0,
|
1856
1856
|
"setId": 2,
|
1857
|
-
"iconIdx":
|
1857
|
+
"iconIdx": 61
|
1858
1858
|
},
|
1859
1859
|
{
|
1860
1860
|
"icon": {
|
@@ -1878,13 +1878,13 @@
|
|
1878
1878
|
"name": "stumbleupon",
|
1879
1879
|
"ligatures": "stumbleupon, brand69",
|
1880
1880
|
"order": 36,
|
1881
|
-
"id":
|
1881
|
+
"id": 62,
|
1882
1882
|
"prevSize": 32,
|
1883
1883
|
"code": 60110
|
1884
1884
|
},
|
1885
1885
|
"setIdx": 0,
|
1886
1886
|
"setId": 2,
|
1887
|
-
"iconIdx":
|
1887
|
+
"iconIdx": 62
|
1888
1888
|
},
|
1889
1889
|
{
|
1890
1890
|
"icon": {
|
@@ -1907,13 +1907,13 @@
|
|
1907
1907
|
"ligatures": "stackoverflow, brand71",
|
1908
1908
|
"name": "stackoverflow",
|
1909
1909
|
"order": 58,
|
1910
|
-
"id":
|
1910
|
+
"id": 63,
|
1911
1911
|
"prevSize": 32,
|
1912
1912
|
"code": 60112
|
1913
1913
|
},
|
1914
1914
|
"setIdx": 0,
|
1915
1915
|
"setId": 2,
|
1916
|
-
"iconIdx":
|
1916
|
+
"iconIdx": 63
|
1917
1917
|
},
|
1918
1918
|
{
|
1919
1919
|
"icon": {
|
@@ -1936,13 +1936,13 @@
|
|
1936
1936
|
"ligatures": "pinterest2, brand73",
|
1937
1937
|
"name": "pinterest2",
|
1938
1938
|
"order": 59,
|
1939
|
-
"id":
|
1939
|
+
"id": 64,
|
1940
1940
|
"prevSize": 32,
|
1941
1941
|
"code": 60114
|
1942
1942
|
},
|
1943
1943
|
"setIdx": 0,
|
1944
1944
|
"setId": 2,
|
1945
|
-
"iconIdx":
|
1945
|
+
"iconIdx": 64
|
1946
1946
|
},
|
1947
1947
|
{
|
1948
1948
|
"icon": {
|
@@ -1969,13 +1969,13 @@
|
|
1969
1969
|
61231
|
1970
1970
|
],
|
1971
1971
|
"order": 41,
|
1972
|
-
"id":
|
1972
|
+
"id": 65,
|
1973
1973
|
"prevSize": 32,
|
1974
1974
|
"code": 60116
|
1975
1975
|
},
|
1976
1976
|
"setIdx": 0,
|
1977
1977
|
"setId": 2,
|
1978
|
-
"iconIdx":
|
1978
|
+
"iconIdx": 65
|
1979
1979
|
},
|
1980
1980
|
{
|
1981
1981
|
"icon": {
|
@@ -1999,13 +1999,13 @@
|
|
1999
1999
|
"ligatures": "flattr, brand76",
|
2000
2000
|
"name": "flattr",
|
2001
2001
|
"order": 67,
|
2002
|
-
"id":
|
2002
|
+
"id": 66,
|
2003
2003
|
"prevSize": 32,
|
2004
2004
|
"code": 60117
|
2005
2005
|
},
|
2006
2006
|
"setIdx": 0,
|
2007
2007
|
"setId": 2,
|
2008
|
-
"iconIdx":
|
2008
|
+
"iconIdx": 66
|
2009
2009
|
},
|
2010
2010
|
{
|
2011
2011
|
"icon": {
|
@@ -2028,13 +2028,13 @@
|
|
2028
2028
|
"ligatures": "foursquare, brand77",
|
2029
2029
|
"name": "foursquare",
|
2030
2030
|
"order": 43,
|
2031
|
-
"id":
|
2031
|
+
"id": 67,
|
2032
2032
|
"prevSize": 32,
|
2033
2033
|
"code": 60118
|
2034
2034
|
},
|
2035
2035
|
"setIdx": 0,
|
2036
2036
|
"setId": 2,
|
2037
|
-
"iconIdx":
|
2037
|
+
"iconIdx": 67
|
2038
2038
|
},
|
2039
2039
|
{
|
2040
2040
|
"icon": {
|
@@ -2057,13 +2057,13 @@
|
|
2057
2057
|
"ligatures": "yelp, brand78",
|
2058
2058
|
"name": "yelp",
|
2059
2059
|
"order": 44,
|
2060
|
-
"id":
|
2060
|
+
"id": 68,
|
2061
2061
|
"prevSize": 32,
|
2062
2062
|
"code": 60119
|
2063
2063
|
},
|
2064
2064
|
"setIdx": 0,
|
2065
2065
|
"setId": 2,
|
2066
|
-
"iconIdx":
|
2066
|
+
"iconIdx": 68
|
2067
2067
|
},
|
2068
2068
|
{
|
2069
2069
|
"icon": {
|
@@ -2090,19 +2090,22 @@
|
|
2090
2090
|
61234
|
2091
2091
|
],
|
2092
2092
|
"order": 42,
|
2093
|
-
"id":
|
2093
|
+
"id": 69,
|
2094
2094
|
"prevSize": 32,
|
2095
2095
|
"code": 60120
|
2096
2096
|
},
|
2097
2097
|
"setIdx": 0,
|
2098
2098
|
"setId": 2,
|
2099
|
-
"iconIdx":
|
2099
|
+
"iconIdx": 69
|
2100
2100
|
},
|
2101
2101
|
{
|
2102
2102
|
"icon": {
|
2103
2103
|
"paths": [
|
2104
2104
|
"M853.31 0h-682.62c-93.88 0-170.69 76.784-170.69 170.658v682.656c0 93.876 76.81 170.686 170.69 170.686h682.622c93.938 0 170.688-76.81 170.688-170.686v-682.656c0-93.874-76.75-170.658-170.69-170.658zM256 256h512c9.138 0 18.004 1.962 26.144 5.662l-282.144 329.168-282.144-329.17c8.14-3.696 17.006-5.66 26.144-5.66zM192 704v-384c0-1.34 0.056-2.672 0.14-4l187.664 218.94-185.598 185.6c-1.444-5.338-2.206-10.886-2.206-16.54zM768 768h-512c-5.654 0-11.202-0.762-16.54-2.206l182.118-182.118 90.422 105.496 90.424-105.494 182.116 182.118c-5.34 1.442-10.886 2.204-16.54 2.204zM832 704c0 5.654-0.762 11.2-2.206 16.54l-185.598-185.598 187.664-218.942c0.084 1.328 0.14 2.66 0.14 4v384z"
|
2105
2105
|
],
|
2106
|
+
"attrs": [],
|
2107
|
+
"isMulticolor": false,
|
2108
|
+
"isMulticolor2": false,
|
2106
2109
|
"tags": [
|
2107
2110
|
"mail",
|
2108
2111
|
"contact",
|
@@ -2114,48 +2117,79 @@
|
|
2114
2117
|
"social"
|
2115
2118
|
],
|
2116
2119
|
"defaultCode": 60035,
|
2117
|
-
"grid": 16
|
2118
|
-
"attrs": []
|
2120
|
+
"grid": 16
|
2119
2121
|
},
|
2120
2122
|
"attrs": [],
|
2121
2123
|
"properties": {
|
2122
2124
|
"ligatures": "mail2, contact2",
|
2123
2125
|
"name": "mail",
|
2124
2126
|
"order": 8,
|
2125
|
-
"id":
|
2127
|
+
"id": 70,
|
2126
2128
|
"prevSize": 32,
|
2127
2129
|
"code": 60035
|
2128
2130
|
},
|
2129
|
-
"setIdx":
|
2130
|
-
"setId":
|
2131
|
-
"iconIdx":
|
2131
|
+
"setIdx": 0,
|
2132
|
+
"setId": 2,
|
2133
|
+
"iconIdx": 70
|
2132
2134
|
},
|
2133
2135
|
{
|
2134
2136
|
"icon": {
|
2135
2137
|
"paths": [
|
2136
2138
|
"M928 0h-832c-52.8 0-96 43.2-96 96v832c0 52.8 43.2 96 96 96h832c52.8 0 96-43.2 96-96v-832c0-52.8-43.2-96-96-96zM279 831.2c-48 0-87-38.6-87-86.6 0-47.6 39-86.8 87-86.8 48.2 0 87 39.2 87 86.8 0 48-39 86.6-87 86.6zM497.4 832c0-81.8-31.8-158.8-89.4-216.4-57.8-57.8-134.4-89.6-216-89.6v-125.2c237.6 0 431.2 193.4 431.2 431.2h-125.8zM719.6 832c0-291-236.6-528-527.4-528v-125.2c360 0 653 293.2 653 653.2h-125.6z"
|
2137
2139
|
],
|
2140
|
+
"attrs": [],
|
2141
|
+
"isMulticolor": false,
|
2142
|
+
"isMulticolor2": false,
|
2138
2143
|
"tags": [
|
2139
2144
|
"feed",
|
2140
2145
|
"rss",
|
2141
2146
|
"social"
|
2142
2147
|
],
|
2143
2148
|
"defaultCode": 60060,
|
2144
|
-
"grid": 16
|
2145
|
-
"attrs": []
|
2149
|
+
"grid": 16
|
2146
2150
|
},
|
2147
2151
|
"attrs": [],
|
2148
2152
|
"properties": {
|
2149
2153
|
"ligatures": "feed3, rss2",
|
2150
2154
|
"name": "rss2",
|
2151
2155
|
"order": 7,
|
2152
|
-
"id":
|
2156
|
+
"id": 71,
|
2153
2157
|
"prevSize": 32,
|
2154
2158
|
"code": 60060
|
2155
2159
|
},
|
2160
|
+
"setIdx": 0,
|
2161
|
+
"setId": 2,
|
2162
|
+
"iconIdx": 71
|
2163
|
+
},
|
2164
|
+
{
|
2165
|
+
"icon": {
|
2166
|
+
"paths": [
|
2167
|
+
"M832 64h-640l-192 192v672c0 17.674 14.326 32 32 32h960c17.672 0 32-14.326 32-32v-672l-192-192zM512 832l-320-256h192v-192h256v192h192l-320 256zM154.51 192l64-64h586.978l64 64h-714.978z"
|
2168
|
+
],
|
2169
|
+
"tags": [
|
2170
|
+
"box-add",
|
2171
|
+
"box",
|
2172
|
+
"download",
|
2173
|
+
"storage",
|
2174
|
+
"inbox",
|
2175
|
+
"archive"
|
2176
|
+
],
|
2177
|
+
"defaultCode": 59742,
|
2178
|
+
"grid": 16,
|
2179
|
+
"attrs": []
|
2180
|
+
},
|
2181
|
+
"attrs": [],
|
2182
|
+
"properties": {
|
2183
|
+
"ligatures": "box-add, box3",
|
2184
|
+
"name": "box-add",
|
2185
|
+
"order": 98,
|
2186
|
+
"id": 95,
|
2187
|
+
"prevSize": 32,
|
2188
|
+
"code": 59742
|
2189
|
+
},
|
2156
2190
|
"setIdx": 1,
|
2157
2191
|
"setId": 1,
|
2158
|
-
"iconIdx":
|
2192
|
+
"iconIdx": 94
|
2159
2193
|
}
|
2160
2194
|
],
|
2161
2195
|
"height": 1024,
|