@geira/iconfont 0.2.0 → 0.2.3

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 (57) hide show
  1. package/.editorconfig +16 -16
  2. package/.idea/encodings.xml +6 -0
  3. package/.idea/geira-icons-tool.iml +12 -0
  4. package/.idea/misc.xml +71 -0
  5. package/.idea/modules.xml +8 -0
  6. package/.idea/vcs.xml +6 -0
  7. package/README.md +1 -1
  8. package/dist/data.min.js +2 -0
  9. package/dist/data.min.js.map +1 -0
  10. package/dist/fonts/GeiraIcons-Regular.eot +0 -0
  11. package/dist/fonts/GeiraIcons-Regular.ttf +0 -0
  12. package/dist/fonts/GeiraIcons-Regular.woff +0 -0
  13. package/dist/fonts/GeiraIcons-Regular.woff2 +0 -0
  14. package/dist/geira-icons.min.css +3 -0
  15. package/dist/geira-icons.min.css.map +1 -0
  16. package/dist/geira-icons.min.js +2 -0
  17. package/dist/geira-icons.min.js.map +1 -0
  18. package/dist/geira-icons.scss +150 -0
  19. package/dist/icons.json +998 -0
  20. package/dist/images/favicon/android-chrome-192x192.png +0 -0
  21. package/dist/images/favicon/android-chrome-512x512.png +0 -0
  22. package/dist/images/favicon/apple-touch-icon.png +0 -0
  23. package/dist/images/favicon/browserconfig.xml +9 -0
  24. package/dist/images/favicon/favicon-16x16.png +0 -0
  25. package/dist/images/favicon/favicon-32x32.png +0 -0
  26. package/dist/images/favicon/favicon.ico +0 -0
  27. package/dist/images/favicon/mstile-150x150.png +0 -0
  28. package/dist/images/favicon/safari-pinned-tab.svg +38 -0
  29. package/dist/images/favicon/site.webmanifest +19 -0
  30. package/dist/index.html +1 -0
  31. package/dist/main.min.js +2 -0
  32. package/dist/main.min.js.map +1 -0
  33. package/dist/styles.min.css +3 -0
  34. package/dist/styles.min.css.map +1 -0
  35. package/dist/styles.min.js +2 -0
  36. package/dist/styles.min.js.map +1 -0
  37. package/dist/usage.html +1 -0
  38. package/dist/utils.min.js +2 -0
  39. package/dist/utils.min.js.map +1 -0
  40. package/package.json +1 -1
  41. package/src/fonts/GeiraIcons-Regular.eot +0 -0
  42. package/src/fonts/GeiraIcons-Regular.ttf +0 -0
  43. package/src/fonts/GeiraIcons-Regular.woff +0 -0
  44. package/src/fonts/GeiraIcons-Regular.woff2 +0 -0
  45. package/src/images/favicon/browserconfig.xml +9 -9
  46. package/src/images/favicon/safari-pinned-tab.svg +38 -38
  47. package/src/images/favicon/site.webmanifest +19 -19
  48. package/src/js/data.js +14 -158
  49. package/src/js/data.json +1 -1
  50. package/src/js/flutter.txt +0 -24
  51. package/src/js/flutter2.txt +0 -24
  52. package/src/js/icons.json +14 -158
  53. package/src/js/script.js +50 -50
  54. package/src/js/utils.js +74 -74
  55. package/src/scss/geira-icons.scss +150 -150
  56. package/src/scss/styles.scss +286 -286
  57. package/webpack.config.js +98 -98
@@ -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
+ }