@geira/iconfont 0.2.4 → 0.2.7
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.
- package/.editorconfig +16 -16
- package/.idea/geira-icons-tool.iml +9 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/.idea/workspace.xml +43 -0
- package/README.md +0 -0
- package/dist/data.min.js +1 -1
- package/dist/data.min.js.map +1 -1
- package/dist/fonts/GeiraIcons-Regular.eot +0 -0
- package/dist/fonts/GeiraIcons-Regular.ttf +0 -0
- package/dist/fonts/GeiraIcons-Regular.woff +0 -0
- package/dist/fonts/GeiraIcons-Regular.woff2 +0 -0
- package/dist/geira-icons.scss +150 -150
- package/dist/icons.json +119 -23
- package/dist/images/favicon/browserconfig.xml +9 -9
- package/dist/images/favicon/safari-pinned-tab.svg +38 -38
- package/dist/images/favicon/site.webmanifest +19 -19
- package/dist/main.min.js.map +1 -1
- package/dist/utils.min.js.map +1 -1
- package/package.json +62 -62
- package/src/fonts/GeiraIcons-Regular.eot +0 -0
- package/src/fonts/GeiraIcons-Regular.ttf +0 -0
- package/src/fonts/GeiraIcons-Regular.woff +0 -0
- package/src/fonts/GeiraIcons-Regular.woff2 +0 -0
- package/src/images/favicon/browserconfig.xml +9 -9
- package/src/images/favicon/safari-pinned-tab.svg +38 -38
- package/src/images/favicon/site.webmanifest +19 -19
- package/src/js/data.js +119 -23
- package/src/js/flutter.txt +18 -2
- package/src/js/flutter2.txt +18 -2
- package/src/js/icons.json +119 -23
- package/src/js/script.js +50 -50
- package/src/js/utils.js +74 -74
- package/src/scss/geira-icons.scss +150 -150
- package/src/scss/styles.scss +286 -286
- package/webpack.config.js +98 -98
package/src/scss/styles.scss
CHANGED
|
@@ -1,286 +1,286 @@
|
|
|
1
|
-
* {
|
|
2
|
-
margin : 0;
|
|
3
|
-
padding : 0;
|
|
4
|
-
color : #263238;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
html, body {
|
|
8
|
-
height : 100%;
|
|
9
|
-
min-width: 320px;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
body {
|
|
13
|
-
font-family : "Trebuchet MS", Helvetica, sans-serif;
|
|
14
|
-
font-size : 1.2em;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.main {
|
|
18
|
-
display : flex;
|
|
19
|
-
flex-direction : column;
|
|
20
|
-
min-height : 100%;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
h2, h3, h4, h5 {
|
|
24
|
-
margin-bottom : 15px;
|
|
25
|
-
color : #546e7a;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
h2 {
|
|
29
|
-
font-weight : normal;
|
|
30
|
-
color : #ff8a65;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
h5 {
|
|
34
|
-
color : #ff8a65;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
a {
|
|
38
|
-
text-decoration : none;
|
|
39
|
-
color : #00acc1;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
header {
|
|
43
|
-
padding : 0;
|
|
44
|
-
background-color : #fbe9e7;
|
|
45
|
-
box-shadow : 0 0 8px rgba(0, 0, 0, .3);
|
|
46
|
-
position : fixed;
|
|
47
|
-
width : 100%;
|
|
48
|
-
text-align : center;
|
|
49
|
-
z-index : 2;
|
|
50
|
-
display : flex;
|
|
51
|
-
align-content : center;
|
|
52
|
-
align-items : center;
|
|
53
|
-
place-content : center space-between;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
header h1 {
|
|
57
|
-
font-size : 1.5em;
|
|
58
|
-
color : #e64a19;
|
|
59
|
-
padding : 20px 20px;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
header a {
|
|
63
|
-
color : #00838f;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
header ul li {
|
|
67
|
-
display : inline-block;
|
|
68
|
-
padding : 8px 20px;
|
|
69
|
-
text-transform : uppercase;
|
|
70
|
-
font-size : 1em;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
header ul.logos {
|
|
74
|
-
padding-right : 10px;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
header ul.logos li {
|
|
78
|
-
padding : 0 10px;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
header ul li a {
|
|
82
|
-
color : #00838f;
|
|
83
|
-
text-decoration : none;
|
|
84
|
-
display : flex;
|
|
85
|
-
align-items : center;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
header ul.logos li a i {
|
|
89
|
-
color : #00838f;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
header ul li.active a {
|
|
93
|
-
color : #ff8a65;
|
|
94
|
-
cursor : default;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.title-h2 {
|
|
98
|
-
margin-top: 110px;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.container {
|
|
102
|
-
flex-grow : 1;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.search {
|
|
106
|
-
display : flex;
|
|
107
|
-
margin-top : 110px;
|
|
108
|
-
align-items : center;
|
|
109
|
-
place-content : center;
|
|
110
|
-
margin-bottom : 20px;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.search #match {
|
|
114
|
-
max-width : 400px;
|
|
115
|
-
width : 90%;
|
|
116
|
-
padding : 15px 20px;
|
|
117
|
-
font-size : 18px;
|
|
118
|
-
border-radius : 10px;
|
|
119
|
-
border : 1px solid #cfd8dc;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.center {
|
|
123
|
-
text-align : center;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
p {
|
|
127
|
-
margin-bottom : 10px;
|
|
128
|
-
font-size : .8em;
|
|
129
|
-
line-height : 1.3;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
.block {
|
|
133
|
-
background-color : #eceff1;
|
|
134
|
-
margin-bottom : 30px;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.icons-preview {
|
|
138
|
-
line-height : 0;
|
|
139
|
-
padding : 10px;
|
|
140
|
-
background-color : #fbe9e7;
|
|
141
|
-
display : flex;
|
|
142
|
-
align-items : center;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.icons-code {
|
|
146
|
-
padding : 20px;
|
|
147
|
-
text-align : center;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
.row {
|
|
151
|
-
display : flex;
|
|
152
|
-
flex-direction : row;
|
|
153
|
-
align-items : stretch;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.some-class:before {
|
|
157
|
-
content : "\E0BA";
|
|
158
|
-
font-size : 48px;
|
|
159
|
-
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.geira-icons {
|
|
163
|
-
font-size : 48px;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
#icons {
|
|
167
|
-
height : 100%;
|
|
168
|
-
min-height : 100%;
|
|
169
|
-
min-width : 100%;
|
|
170
|
-
width : 100%;
|
|
171
|
-
flex-flow : row wrap;
|
|
172
|
-
box-sizing : border-box;
|
|
173
|
-
display : flex;
|
|
174
|
-
place-content : center;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.icon {
|
|
178
|
-
flex : 1 1 10%;
|
|
179
|
-
box-sizing : border-box;
|
|
180
|
-
max-width : 10%;
|
|
181
|
-
padding : 10px;
|
|
182
|
-
list-style : none;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.icon > div {
|
|
186
|
-
height : 100%;
|
|
187
|
-
min-height : 100%;
|
|
188
|
-
min-width : 100%;
|
|
189
|
-
width : 100%;
|
|
190
|
-
place-content : center;
|
|
191
|
-
align-items : center;
|
|
192
|
-
flex-direction : column;
|
|
193
|
-
box-sizing : border-box;
|
|
194
|
-
display : flex;
|
|
195
|
-
border : 1px solid #eceff1;
|
|
196
|
-
border-radius : 10px;
|
|
197
|
-
padding : 10px 5px 5px;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.icon i {
|
|
201
|
-
color : #d84315;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.icon span {
|
|
205
|
-
margin : 5px 0;
|
|
206
|
-
font-size : .6em;
|
|
207
|
-
font-weight : bold;
|
|
208
|
-
color : #b0bec5;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
span.name {
|
|
212
|
-
font-size : .8em;
|
|
213
|
-
color : #455a64;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
span.tags {
|
|
217
|
-
display : none;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
#quantity {
|
|
221
|
-
color : #90a4ae;
|
|
222
|
-
font-size : .8em;
|
|
223
|
-
background-color : #ffffff;
|
|
224
|
-
padding : 2px 5px;
|
|
225
|
-
margin-left : 4px;
|
|
226
|
-
border-radius : 5px;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
#version {
|
|
230
|
-
font-size : .4em;
|
|
231
|
-
color : #546e7a;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
footer {
|
|
235
|
-
background-color : #fbe9e7;
|
|
236
|
-
padding : 15px;
|
|
237
|
-
text-align : center;
|
|
238
|
-
margin-top : 40px;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
footer p {
|
|
242
|
-
margin : 0;
|
|
243
|
-
font-size : .6em;
|
|
244
|
-
color : #607d8b;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
@media all and (max-width: 1400px) {
|
|
248
|
-
.icon {
|
|
249
|
-
flex : 1 1 16.6%;
|
|
250
|
-
max-width : 16.6%;
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
@media all and (max-width: 1100px) {
|
|
255
|
-
.icon {
|
|
256
|
-
flex : 1 1 25%;
|
|
257
|
-
max-width : 25%;
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
@media all and (max-width: 876px) {
|
|
262
|
-
.icon {
|
|
263
|
-
flex : 1 1 33.3%;
|
|
264
|
-
max-width : 33.3%;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
header {
|
|
268
|
-
position : inherit;
|
|
269
|
-
width : 100%;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
.search {
|
|
273
|
-
margin-top: 30px;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.title-h2 {
|
|
277
|
-
margin-top: 30px;
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
@media all and (max-width: 600px) {
|
|
282
|
-
.icon {
|
|
283
|
-
flex : 1 1 50%;
|
|
284
|
-
max-width : 50%;
|
|
285
|
-
}
|
|
286
|
-
}
|
|
1
|
+
* {
|
|
2
|
+
margin : 0;
|
|
3
|
+
padding : 0;
|
|
4
|
+
color : #263238;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
html, body {
|
|
8
|
+
height : 100%;
|
|
9
|
+
min-width: 320px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
body {
|
|
13
|
+
font-family : "Trebuchet MS", Helvetica, sans-serif;
|
|
14
|
+
font-size : 1.2em;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.main {
|
|
18
|
+
display : flex;
|
|
19
|
+
flex-direction : column;
|
|
20
|
+
min-height : 100%;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
h2, h3, h4, h5 {
|
|
24
|
+
margin-bottom : 15px;
|
|
25
|
+
color : #546e7a;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
h2 {
|
|
29
|
+
font-weight : normal;
|
|
30
|
+
color : #ff8a65;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
h5 {
|
|
34
|
+
color : #ff8a65;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
a {
|
|
38
|
+
text-decoration : none;
|
|
39
|
+
color : #00acc1;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
header {
|
|
43
|
+
padding : 0;
|
|
44
|
+
background-color : #fbe9e7;
|
|
45
|
+
box-shadow : 0 0 8px rgba(0, 0, 0, .3);
|
|
46
|
+
position : fixed;
|
|
47
|
+
width : 100%;
|
|
48
|
+
text-align : center;
|
|
49
|
+
z-index : 2;
|
|
50
|
+
display : flex;
|
|
51
|
+
align-content : center;
|
|
52
|
+
align-items : center;
|
|
53
|
+
place-content : center space-between;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
header h1 {
|
|
57
|
+
font-size : 1.5em;
|
|
58
|
+
color : #e64a19;
|
|
59
|
+
padding : 20px 20px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
header a {
|
|
63
|
+
color : #00838f;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
header ul li {
|
|
67
|
+
display : inline-block;
|
|
68
|
+
padding : 8px 20px;
|
|
69
|
+
text-transform : uppercase;
|
|
70
|
+
font-size : 1em;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
header ul.logos {
|
|
74
|
+
padding-right : 10px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
header ul.logos li {
|
|
78
|
+
padding : 0 10px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
header ul li a {
|
|
82
|
+
color : #00838f;
|
|
83
|
+
text-decoration : none;
|
|
84
|
+
display : flex;
|
|
85
|
+
align-items : center;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
header ul.logos li a i {
|
|
89
|
+
color : #00838f;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
header ul li.active a {
|
|
93
|
+
color : #ff8a65;
|
|
94
|
+
cursor : default;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.title-h2 {
|
|
98
|
+
margin-top: 110px;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.container {
|
|
102
|
+
flex-grow : 1;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.search {
|
|
106
|
+
display : flex;
|
|
107
|
+
margin-top : 110px;
|
|
108
|
+
align-items : center;
|
|
109
|
+
place-content : center;
|
|
110
|
+
margin-bottom : 20px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.search #match {
|
|
114
|
+
max-width : 400px;
|
|
115
|
+
width : 90%;
|
|
116
|
+
padding : 15px 20px;
|
|
117
|
+
font-size : 18px;
|
|
118
|
+
border-radius : 10px;
|
|
119
|
+
border : 1px solid #cfd8dc;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.center {
|
|
123
|
+
text-align : center;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
p {
|
|
127
|
+
margin-bottom : 10px;
|
|
128
|
+
font-size : .8em;
|
|
129
|
+
line-height : 1.3;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.block {
|
|
133
|
+
background-color : #eceff1;
|
|
134
|
+
margin-bottom : 30px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.icons-preview {
|
|
138
|
+
line-height : 0;
|
|
139
|
+
padding : 10px;
|
|
140
|
+
background-color : #fbe9e7;
|
|
141
|
+
display : flex;
|
|
142
|
+
align-items : center;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.icons-code {
|
|
146
|
+
padding : 20px;
|
|
147
|
+
text-align : center;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.row {
|
|
151
|
+
display : flex;
|
|
152
|
+
flex-direction : row;
|
|
153
|
+
align-items : stretch;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.some-class:before {
|
|
157
|
+
content : "\E0BA";
|
|
158
|
+
font-size : 48px;
|
|
159
|
+
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.geira-icons {
|
|
163
|
+
font-size : 48px;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
#icons {
|
|
167
|
+
height : 100%;
|
|
168
|
+
min-height : 100%;
|
|
169
|
+
min-width : 100%;
|
|
170
|
+
width : 100%;
|
|
171
|
+
flex-flow : row wrap;
|
|
172
|
+
box-sizing : border-box;
|
|
173
|
+
display : flex;
|
|
174
|
+
place-content : center;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.icon {
|
|
178
|
+
flex : 1 1 10%;
|
|
179
|
+
box-sizing : border-box;
|
|
180
|
+
max-width : 10%;
|
|
181
|
+
padding : 10px;
|
|
182
|
+
list-style : none;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.icon > div {
|
|
186
|
+
height : 100%;
|
|
187
|
+
min-height : 100%;
|
|
188
|
+
min-width : 100%;
|
|
189
|
+
width : 100%;
|
|
190
|
+
place-content : center;
|
|
191
|
+
align-items : center;
|
|
192
|
+
flex-direction : column;
|
|
193
|
+
box-sizing : border-box;
|
|
194
|
+
display : flex;
|
|
195
|
+
border : 1px solid #eceff1;
|
|
196
|
+
border-radius : 10px;
|
|
197
|
+
padding : 10px 5px 5px;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.icon i {
|
|
201
|
+
color : #d84315;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.icon span {
|
|
205
|
+
margin : 5px 0;
|
|
206
|
+
font-size : .6em;
|
|
207
|
+
font-weight : bold;
|
|
208
|
+
color : #b0bec5;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
span.name {
|
|
212
|
+
font-size : .8em;
|
|
213
|
+
color : #455a64;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
span.tags {
|
|
217
|
+
display : none;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
#quantity {
|
|
221
|
+
color : #90a4ae;
|
|
222
|
+
font-size : .8em;
|
|
223
|
+
background-color : #ffffff;
|
|
224
|
+
padding : 2px 5px;
|
|
225
|
+
margin-left : 4px;
|
|
226
|
+
border-radius : 5px;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
#version {
|
|
230
|
+
font-size : .4em;
|
|
231
|
+
color : #546e7a;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
footer {
|
|
235
|
+
background-color : #fbe9e7;
|
|
236
|
+
padding : 15px;
|
|
237
|
+
text-align : center;
|
|
238
|
+
margin-top : 40px;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
footer p {
|
|
242
|
+
margin : 0;
|
|
243
|
+
font-size : .6em;
|
|
244
|
+
color : #607d8b;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
@media all and (max-width: 1400px) {
|
|
248
|
+
.icon {
|
|
249
|
+
flex : 1 1 16.6%;
|
|
250
|
+
max-width : 16.6%;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
@media all and (max-width: 1100px) {
|
|
255
|
+
.icon {
|
|
256
|
+
flex : 1 1 25%;
|
|
257
|
+
max-width : 25%;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
@media all and (max-width: 876px) {
|
|
262
|
+
.icon {
|
|
263
|
+
flex : 1 1 33.3%;
|
|
264
|
+
max-width : 33.3%;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
header {
|
|
268
|
+
position : inherit;
|
|
269
|
+
width : 100%;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.search {
|
|
273
|
+
margin-top: 30px;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.title-h2 {
|
|
277
|
+
margin-top: 30px;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
@media all and (max-width: 600px) {
|
|
282
|
+
.icon {
|
|
283
|
+
flex : 1 1 50%;
|
|
284
|
+
max-width : 50%;
|
|
285
|
+
}
|
|
286
|
+
}
|