@geira/iconfont 0.2.1 → 0.2.2

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 (42) hide show
  1. package/package.json +1 -1
  2. package/src/fonts/GeiraIcons-Regular.eot +0 -0
  3. package/src/fonts/GeiraIcons-Regular.ttf +0 -0
  4. package/src/fonts/GeiraIcons-Regular.woff +0 -0
  5. package/src/fonts/GeiraIcons-Regular.woff2 +0 -0
  6. package/src/js/data.js +44 -2
  7. package/src/js/data.json +1 -1
  8. package/src/js/flutter.txt +7 -0
  9. package/src/js/flutter2.txt +7 -0
  10. package/src/js/icons.json +44 -2
  11. package/dist/data.min.js +0 -2
  12. package/dist/data.min.js.map +0 -1
  13. package/dist/fonts/GeiraIcons-Regular.eot +0 -0
  14. package/dist/fonts/GeiraIcons-Regular.ttf +0 -0
  15. package/dist/fonts/GeiraIcons-Regular.woff +0 -0
  16. package/dist/fonts/GeiraIcons-Regular.woff2 +0 -0
  17. package/dist/geira-icons.min.css +0 -3
  18. package/dist/geira-icons.min.css.map +0 -1
  19. package/dist/geira-icons.min.js +0 -2
  20. package/dist/geira-icons.min.js.map +0 -1
  21. package/dist/geira-icons.scss +0 -150
  22. package/dist/icons.json +0 -1142
  23. package/dist/images/favicon/android-chrome-192x192.png +0 -0
  24. package/dist/images/favicon/android-chrome-512x512.png +0 -0
  25. package/dist/images/favicon/apple-touch-icon.png +0 -0
  26. package/dist/images/favicon/browserconfig.xml +0 -9
  27. package/dist/images/favicon/favicon-16x16.png +0 -0
  28. package/dist/images/favicon/favicon-32x32.png +0 -0
  29. package/dist/images/favicon/favicon.ico +0 -0
  30. package/dist/images/favicon/mstile-150x150.png +0 -0
  31. package/dist/images/favicon/safari-pinned-tab.svg +0 -38
  32. package/dist/images/favicon/site.webmanifest +0 -19
  33. package/dist/index.html +0 -1
  34. package/dist/main.min.js +0 -2
  35. package/dist/main.min.js.map +0 -1
  36. package/dist/styles.min.css +0 -3
  37. package/dist/styles.min.css.map +0 -1
  38. package/dist/styles.min.js +0 -2
  39. package/dist/styles.min.js.map +0 -1
  40. package/dist/usage.html +0 -1
  41. package/dist/utils.min.js +0 -2
  42. package/dist/utils.min.js.map +0 -1
@@ -1,150 +0,0 @@
1
- @charset "UTF-8";
2
- @font-face {
3
- font-family : 'Geira Icons';
4
- font-style : normal;
5
- font-weight : 400;
6
- font-display : block;
7
- src : url(./fonts/GeiraIcons-Regular.eot);
8
- src : local('Geira Icons'),
9
- local('GeiraIcons-Regular'),
10
- url(./fonts/GeiraIcons-Regular.woff2) format('woff2'),
11
- url(./fonts/GeiraIcons-Regular.woff) format('woff'),
12
- url(./fonts/GeiraIcons-Regular.ttf) format('truetype');
13
- }
14
-
15
- .geira-icons, .geira-icons:before {
16
- font-family : 'Geira Icons';
17
- font-weight : normal;
18
- font-style : normal;
19
- font-size : 24px;
20
- display : inline-block;
21
- line-height : 1;
22
- text-transform : none;
23
- letter-spacing : normal;
24
- word-wrap : normal;
25
- white-space : nowrap;
26
- direction : ltr;
27
- -webkit-font-smoothing : antialiased;
28
- text-rendering : optimizeLegibility;
29
- -moz-osx-font-smoothing : grayscale;
30
- font-feature-settings : 'liga';
31
- }
32
-
33
- span.geira-icons:before {
34
- content : "\E001";
35
- }
36
-
37
- .gi-18, .gi-18:before {
38
- font-size : 18px !important
39
- }
40
-
41
- .gi-24, .gi-24:before {
42
- font-size : 24px !important
43
- }
44
-
45
- .gi-36, .gi-36:before {
46
- font-size : 36px !important
47
- }
48
-
49
- .gi-48, .gi-48:before {
50
- font-size : 48px !important
51
- }
52
-
53
- .gi-dark, .gi-dark:before {
54
- color : rgba(0, 0, 0, 0.54)
55
- }
56
-
57
- .gi-dark.gi-inactive, .gi-dark.gi-inactive:before {
58
- color : rgba(0, 0, 0, 0.26)
59
- }
60
-
61
- .gi-light, .gi-light:before {
62
- color : #ffffff
63
- }
64
-
65
- .gi-light.gi-inactive, .gi-light.gi-inactive:before {
66
- color : rgba(255, 255, 255, 0.3)
67
- }
68
-
69
- .gi-rotate-45, .gi-rotate-45:before {
70
- -webkit-transform : rotate(45deg);
71
- -ms-transform : rotate(45deg);
72
- transform : rotate(45deg)
73
- }
74
-
75
- .gi-rotate-90, .gi-rotate-90:before {
76
- -webkit-transform : rotate(90deg);
77
- -ms-transform : rotate(90deg);
78
- transform : rotate(90deg)
79
- }
80
-
81
- .gi-rotate-135, .gi-rotate-135:before {
82
- -webkit-transform : rotate(135deg);
83
- -ms-transform : rotate(135deg);
84
- transform : rotate(135deg)
85
- }
86
-
87
- .gi-rotate-180, .gi-rotate-180:before {
88
- -webkit-transform : rotate(180deg);
89
- -ms-transform : rotate(180deg);
90
- transform : rotate(180deg)
91
- }
92
-
93
- .gi-rotate-225, .gi-rotate-225:before {
94
- -webkit-transform : rotate(225deg);
95
- -ms-transform : rotate(225deg);
96
- transform : rotate(225deg)
97
- }
98
-
99
- .gi-rotate-270, .gi-rotate-270:before {
100
- -webkit-transform : rotate(270deg);
101
- -ms-transform : rotate(270deg);
102
- transform : rotate(270deg)
103
- }
104
-
105
- .gi-rotate-315, .gi-rotate-315:before {
106
- -webkit-transform : rotate(315deg);
107
- -ms-transform : rotate(315deg);
108
- transform : rotate(315deg)
109
- }
110
-
111
- .gi-flip-h, .gi-flip-h:before {
112
- -webkit-transform : scaleX(-1);
113
- transform : scaleX(-1);
114
- filter : FlipH;
115
- -ms-filter : "FlipH"
116
- }
117
-
118
- .gi-flip-v, .gi-flip-v:before {
119
- -webkit-transform : scaleY(-1);
120
- transform : scaleY(-1);
121
- filter : FlipV;
122
- -ms-filter : "FlipV"
123
- }
124
-
125
- .gi-spin, .gi-spin:before {
126
- -webkit-animation : gi-spin 2s infinite linear;
127
- animation : gi-spin 2s infinite linear
128
- }
129
-
130
- @-webkit-keyframes gi-spin {
131
- 0% {
132
- -webkit-transform : rotate(0deg);
133
- transform : rotate(0deg)
134
- }
135
- 100% {
136
- -webkit-transform : rotate(359deg);
137
- transform : rotate(359deg)
138
- }
139
- }
140
-
141
- @keyframes gi-spin {
142
- 0% {
143
- -webkit-transform : rotate(0deg);
144
- transform : rotate(0deg)
145
- }
146
- 100% {
147
- -webkit-transform : rotate(359deg);
148
- transform : rotate(359deg)
149
- }
150
- }