@geira/iconfont 0.3.3 → 4.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.
- package/README.md +95 -32
- package/dist/{images/favicon/favicon.ico → favicon.ico} +0 -0
- package/dist/geira-icons.css +315 -0
- package/dist/geira-icons.scss +303 -138
- package/dist/icons.json +265 -1567
- package/dist/index.html +496 -1
- package/dist/{images/favicon/android-chrome-512x512.png → logo.png} +0 -0
- package/package.json +15 -40
- package/tags.json +2119 -0
- package/.idea/geira-icons-tool.iml +0 -9
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/.idea/workspace.xml +0 -43
- package/clean.html +0 -1077
- package/dist/data.min.js +0 -2
- package/dist/data.min.js.map +0 -1
- package/dist/fonts/GeiraIcons-Regular-SVG.ttf +0 -0
- package/dist/fonts/GeiraIcons-Regular-SVG.woff2 +0 -0
- package/dist/geira-icons.min.css +0 -3
- package/dist/geira-icons.min.css.map +0 -1
- package/dist/geira-icons.min.js +0 -0
- package/dist/images/favicon/android-chrome-192x192.png +0 -0
- package/dist/images/favicon/apple-touch-icon.png +0 -0
- package/dist/images/favicon/browserconfig.xml +0 -9
- package/dist/images/favicon/favicon-16x16.png +0 -0
- package/dist/images/favicon/favicon-32x32.png +0 -0
- package/dist/images/favicon/mstile-150x150.png +0 -0
- package/dist/images/favicon/safari-pinned-tab.svg +0 -38
- package/dist/images/favicon/site.webmanifest +0 -19
- package/dist/main.min.js +0 -2
- package/dist/main.min.js.map +0 -1
- package/dist/styles.min.css +0 -3
- package/dist/styles.min.css.map +0 -1
- package/dist/styles.min.js +0 -0
- package/dist/usage.html +0 -1
- package/dist/utils.min.js +0 -2
- package/dist/utils.min.js.map +0 -1
- package/src/fonts/GeiraIcons-Regular-SVG.ttf +0 -0
- package/src/fonts/GeiraIcons-Regular-SVG.woff2 +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/android-chrome-192x192.png +0 -0
- package/src/images/favicon/android-chrome-512x512.png +0 -0
- package/src/images/favicon/apple-touch-icon.png +0 -0
- package/src/images/favicon/browserconfig.xml +0 -9
- package/src/images/favicon/favicon-16x16.png +0 -0
- package/src/images/favicon/favicon-32x32.png +0 -0
- package/src/images/favicon/favicon.ico +0 -0
- package/src/images/favicon/mstile-150x150.png +0 -0
- package/src/images/favicon/safari-pinned-tab.svg +0 -38
- package/src/images/favicon/site.webmanifest +0 -19
- package/src/index.html +0 -50
- package/src/js/data.js +0 -1568
- package/src/js/data.json +0 -1
- package/src/js/flutter.txt +0 -261
- package/src/js/flutter2.txt +0 -261
- package/src/js/icons.json +0 -1568
- package/src/js/script.js +0 -51
- package/src/js/utils.js +0 -74
- package/src/scss/geira-icons.scss +0 -150
- package/src/scss/styles.scss +0 -286
- package/src/usage.html +0 -376
- package/webpack.config.js +0 -100
package/dist/geira-icons.scss
CHANGED
|
@@ -1,150 +1,315 @@
|
|
|
1
|
-
@charset "UTF-8";
|
|
2
1
|
@font-face {
|
|
3
|
-
font-family
|
|
4
|
-
font-style
|
|
5
|
-
font-weight
|
|
6
|
-
font-display
|
|
7
|
-
src
|
|
8
|
-
|
|
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');
|
|
2
|
+
font-family: 'Geira Icons';
|
|
3
|
+
font-style: normal;
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
font-display: block;
|
|
6
|
+
src: url('./fonts/GeiraIcons-Regular.woff2?v=4.0.0') format('woff2'),
|
|
7
|
+
url('./fonts/GeiraIcons-Regular.ttf?v=4.0.0') format('truetype');
|
|
13
8
|
}
|
|
14
9
|
|
|
15
|
-
.geira-icons
|
|
16
|
-
font-family
|
|
17
|
-
font-weight
|
|
18
|
-
font-style
|
|
19
|
-
font-size
|
|
20
|
-
display
|
|
21
|
-
line-height
|
|
22
|
-
text-transform
|
|
23
|
-
letter-spacing
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
-
|
|
28
|
-
|
|
29
|
-
-
|
|
30
|
-
font-feature-settings : 'liga';
|
|
10
|
+
.geira-icons {
|
|
11
|
+
font-family: 'Geira Icons';
|
|
12
|
+
font-weight: normal;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-size: 24px;
|
|
15
|
+
display: inline-block;
|
|
16
|
+
line-height: 1;
|
|
17
|
+
text-transform: none;
|
|
18
|
+
letter-spacing: normal;
|
|
19
|
+
white-space: nowrap;
|
|
20
|
+
direction: ltr;
|
|
21
|
+
-webkit-font-smoothing: antialiased;
|
|
22
|
+
text-rendering: optimizeLegibility;
|
|
23
|
+
-moz-osx-font-smoothing: grayscale;
|
|
24
|
+
font-feature-settings: 'liga';
|
|
31
25
|
}
|
|
32
26
|
|
|
33
|
-
|
|
34
|
-
|
|
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
|
-
}
|
|
27
|
+
.gi-18 { font-size: 18px !important; }
|
|
28
|
+
.gi-24 { font-size: 24px !important; }
|
|
29
|
+
.gi-36 { font-size: 36px !important; }
|
|
30
|
+
.gi-48 { font-size: 48px !important; }
|
|
98
31
|
|
|
99
|
-
.gi-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
}
|
|
32
|
+
.gi-dark { color: rgba(0, 0, 0, 0.54); }
|
|
33
|
+
.gi-dark.gi-inactive { color: rgba(0, 0, 0, 0.26); }
|
|
34
|
+
.gi-light { color: #ffffff; }
|
|
35
|
+
.gi-light.gi-inactive { color: rgba(255, 255, 255, 0.3); }
|
|
104
36
|
|
|
105
|
-
.gi-rotate-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
}
|
|
37
|
+
.gi-rotate-45 { transform: rotate(45deg); }
|
|
38
|
+
.gi-rotate-90 { transform: rotate(90deg); }
|
|
39
|
+
.gi-rotate-135 { transform: rotate(135deg); }
|
|
40
|
+
.gi-rotate-180 { transform: rotate(180deg); }
|
|
41
|
+
.gi-rotate-225 { transform: rotate(225deg); }
|
|
42
|
+
.gi-rotate-270 { transform: rotate(270deg); }
|
|
43
|
+
.gi-rotate-315 { transform: rotate(315deg); }
|
|
110
44
|
|
|
111
|
-
.gi-flip-h
|
|
112
|
-
|
|
113
|
-
transform : scaleX(-1);
|
|
114
|
-
filter : FlipH;
|
|
115
|
-
-ms-filter : "FlipH"
|
|
116
|
-
}
|
|
45
|
+
.gi-flip-h { transform: scaleX(-1); }
|
|
46
|
+
.gi-flip-v { transform: scaleY(-1); }
|
|
117
47
|
|
|
118
|
-
.gi-
|
|
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
|
-
}
|
|
48
|
+
.gi-spin { animation: gi-spin 2s infinite linear; }
|
|
140
49
|
|
|
141
50
|
@keyframes gi-spin {
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
transform : rotate(0deg)
|
|
145
|
-
}
|
|
146
|
-
100% {
|
|
147
|
-
-webkit-transform : rotate(359deg);
|
|
148
|
-
transform : rotate(359deg)
|
|
149
|
-
}
|
|
51
|
+
from { transform: rotate(0deg); }
|
|
52
|
+
to { transform: rotate(359deg); }
|
|
150
53
|
}
|
|
54
|
+
|
|
55
|
+
.gi-none::before { content: "\E000"; }
|
|
56
|
+
.gi-pencil::before { content: "\E001"; }
|
|
57
|
+
.gi-brush::before { content: "\E002"; }
|
|
58
|
+
.gi-wifi::before { content: "\E004"; }
|
|
59
|
+
.gi-chat::before { content: "\E005"; }
|
|
60
|
+
.gi-notifications::before { content: "\E007"; }
|
|
61
|
+
.gi-notifications-off::before { content: "\E008"; }
|
|
62
|
+
.gi-notifications-active::before { content: "\E009"; }
|
|
63
|
+
.gi-send::before { content: "\E00A"; }
|
|
64
|
+
.gi-person::before { content: "\E00B"; }
|
|
65
|
+
.gi-people::before { content: "\E00C"; }
|
|
66
|
+
.gi-no-show::before { content: "\E00D"; }
|
|
67
|
+
.gi-person-status::before { content: "\E00E"; }
|
|
68
|
+
.gi-chart::before { content: "\E013"; }
|
|
69
|
+
.gi-back-ten::before { content: "\E01C"; }
|
|
70
|
+
.gi-forth-ten::before { content: "\E01D"; }
|
|
71
|
+
.gi-shuffle::before { content: "\E01E"; }
|
|
72
|
+
.gi-restore::before { content: "\E01F"; }
|
|
73
|
+
.gi-undo::before { content: "\E02A"; }
|
|
74
|
+
.gi-update::before { content: "\E02B"; }
|
|
75
|
+
.gi-refresh::before { content: "\E02C"; }
|
|
76
|
+
.gi-chevron-up::before { content: "\E02D"; }
|
|
77
|
+
.gi-chevron-right::before { content: "\E02E"; }
|
|
78
|
+
.gi-chevron-down::before { content: "\E02F"; }
|
|
79
|
+
.gi-chevron-left::before { content: "\E03A"; }
|
|
80
|
+
.gi-arrow-up::before { content: "\E03B"; }
|
|
81
|
+
.gi-arrow-right::before { content: "\E03C"; }
|
|
82
|
+
.gi-arrow-down::before { content: "\E03D"; }
|
|
83
|
+
.gi-arrow-left::before { content: "\E03E"; }
|
|
84
|
+
.gi-delete::before { content: "\E03F"; }
|
|
85
|
+
.gi-volume::before { content: "\E04C"; }
|
|
86
|
+
.gi-volume-low::before { content: "\E04D"; }
|
|
87
|
+
.gi-volume-medium::before { content: "\E04E"; }
|
|
88
|
+
.gi-volume-up::before { content: "\E04F"; }
|
|
89
|
+
.gi-volume-off::before { content: "\E05A"; }
|
|
90
|
+
.gi-hearing::before { content: "\E05B"; }
|
|
91
|
+
.gi-mic::before { content: "\E05C"; }
|
|
92
|
+
.gi-mic-off::before { content: "\E05D"; }
|
|
93
|
+
.gi-recording::before { content: "\E05E"; }
|
|
94
|
+
.gi-no-audio::before { content: "\E05F"; }
|
|
95
|
+
.gi-refresh-audio::before { content: "\E06A"; }
|
|
96
|
+
.gi-load-audio::before { content: "\E06B"; }
|
|
97
|
+
.gi-play-circle::before { content: "\E06D"; }
|
|
98
|
+
.gi-pause-circle::before { content: "\E06E"; }
|
|
99
|
+
.gi-stop-circle::before { content: "\E06F"; }
|
|
100
|
+
.gi-next-circle::before { content: "\E07A"; }
|
|
101
|
+
.gi-back-circle::before { content: "\E07B"; }
|
|
102
|
+
.gi-record-circle::before { content: "\E07C"; }
|
|
103
|
+
.gi-play::before { content: "\E07D"; }
|
|
104
|
+
.gi-pause::before { content: "\E07E"; }
|
|
105
|
+
.gi-stop::before { content: "\E07F"; }
|
|
106
|
+
.gi-skip-next::before { content: "\E08A"; }
|
|
107
|
+
.gi-skip-previous::before { content: "\E08B"; }
|
|
108
|
+
.gi-previous::before { content: "\E08C"; }
|
|
109
|
+
.gi-next::before { content: "\E08D"; }
|
|
110
|
+
.gi-cloud::before { content: "\E097"; }
|
|
111
|
+
.gi-upload::before { content: "\E098"; }
|
|
112
|
+
.gi-up-balls::before { content: "\E099"; }
|
|
113
|
+
.gi-download::before { content: "\E09A"; }
|
|
114
|
+
.gi-rearrange::before { content: "\E09B"; }
|
|
115
|
+
.gi-slider::before { content: "\E09D"; }
|
|
116
|
+
.gi-list::before { content: "\E09E"; }
|
|
117
|
+
.gi-sidebar-close::before { content: "\E09F"; }
|
|
118
|
+
.gi-sidebar-open::before { content: "\E0A0"; }
|
|
119
|
+
.gi-open-menu::before { content: "\E0A1"; }
|
|
120
|
+
.gi-close-menu::before { content: "\E0A2"; }
|
|
121
|
+
.gi-down-menu::before { content: "\E0A3"; }
|
|
122
|
+
.gi-up-menu::before { content: "\E0A4"; }
|
|
123
|
+
.gi-launch::before { content: "\E0A5"; }
|
|
124
|
+
.gi-exit-to-app::before { content: "\E0A6"; }
|
|
125
|
+
.gi-menu::before { content: "\E0A7"; }
|
|
126
|
+
.gi-more-vert::before { content: "\E0A8"; }
|
|
127
|
+
.gi-more-horiz::before { content: "\E0A9"; }
|
|
128
|
+
.gi-cell-phone::before { content: "\E0B8"; }
|
|
129
|
+
.gi-phone::before { content: "\E0B9"; }
|
|
130
|
+
.gi-home::before { content: "\E0BA"; }
|
|
131
|
+
.gi-language::before { content: "\E0BB"; }
|
|
132
|
+
.gi-url::before { content: "\E0BC"; }
|
|
133
|
+
.gi-lang::before { content: "\E0BD"; }
|
|
134
|
+
.gi-lang-help::before { content: "\E0BE"; }
|
|
135
|
+
.gi-map::before { content: "\E0BF"; }
|
|
136
|
+
.gi-country::before { content: "\E0C0"; }
|
|
137
|
+
.gi-navigation::before { content: "\E0C1"; }
|
|
138
|
+
.gi-notification::before { content: "\E0C8"; }
|
|
139
|
+
.gi-flag::before { content: "\E0C9"; }
|
|
140
|
+
.gi-place::before { content: "\E0CA"; }
|
|
141
|
+
.gi-mail::before { content: "\E0CB"; }
|
|
142
|
+
.gi-award::before { content: "\E0E7"; }
|
|
143
|
+
.gi-trophy::before { content: "\E0E8"; }
|
|
144
|
+
.gi-shopping-cart::before { content: "\E0F5"; }
|
|
145
|
+
.gi-bet::before { content: "\E0F6"; }
|
|
146
|
+
.gi-add-balance::before { content: "\E0F7"; }
|
|
147
|
+
.gi-payment::before { content: "\E0F8"; }
|
|
148
|
+
.gi-bill::before { content: "\E0F9"; }
|
|
149
|
+
.gi-deal::before { content: "\E0FA"; }
|
|
150
|
+
.gi-gift::before { content: "\E0FB"; }
|
|
151
|
+
.gi-time::before { content: "\E0FC"; }
|
|
152
|
+
.gi-chronometer::before { content: "\E0FD"; }
|
|
153
|
+
.gi-time-record::before { content: "\E0FE"; }
|
|
154
|
+
.gi-hourglass::before { content: "\E100"; }
|
|
155
|
+
.gi-folder::before { content: "\E111"; }
|
|
156
|
+
.gi-folder-open::before { content: "\E112"; }
|
|
157
|
+
.gi-folder-add::before { content: "\E113"; }
|
|
158
|
+
.gi-folder-special::before { content: "\E114"; }
|
|
159
|
+
.gi-folder-delete::before { content: "\E115"; }
|
|
160
|
+
.gi-folder-secure::before { content: "\E116"; }
|
|
161
|
+
.gi-page::before { content: "\E117"; }
|
|
162
|
+
.gi-book::before { content: "\E118"; }
|
|
163
|
+
.gi-test::before { content: "\E119"; }
|
|
164
|
+
.gi-flash-cards::before { content: "\E11A"; }
|
|
165
|
+
.gi-test-repeat::before { content: "\E11B"; }
|
|
166
|
+
.gi-test-star::before { content: "\E11C"; }
|
|
167
|
+
.gi-test-daily::before { content: "\E11D"; }
|
|
168
|
+
.gi-audiobook::before { content: "\E123"; }
|
|
169
|
+
.gi-pdf::before { content: "\E124"; }
|
|
170
|
+
.gi-doc::before { content: "\E125"; }
|
|
171
|
+
.gi-jpg::before { content: "\E126"; }
|
|
172
|
+
.gi-png::before { content: "\E127"; }
|
|
173
|
+
.gi-chevron-tr::before { content: "\E130"; }
|
|
174
|
+
.gi-chevron-dr::before { content: "\E131"; }
|
|
175
|
+
.gi-chevron-dl::before { content: "\E132"; }
|
|
176
|
+
.gi-chevron-tl::before { content: "\E133"; }
|
|
177
|
+
.gi-check::before { content: "\E134"; }
|
|
178
|
+
.gi-check-outline::before { content: "\E135"; }
|
|
179
|
+
.gi-checked::before { content: "\E136"; }
|
|
180
|
+
.gi-unchecked::before { content: "\E137"; }
|
|
181
|
+
.gi-rb-checked::before { content: "\E139"; }
|
|
182
|
+
.gi-rb-unchecked::before { content: "\E13A"; }
|
|
183
|
+
.gi-match::before { content: "\E13B"; }
|
|
184
|
+
.gi-thunder::before { content: "\E162"; }
|
|
185
|
+
.gi-temperature::before { content: "\E163"; }
|
|
186
|
+
.gi-odd-even::before { content: "\E164"; }
|
|
187
|
+
.gi-hot::before { content: "\E165"; }
|
|
188
|
+
.gi-cold::before { content: "\E166"; }
|
|
189
|
+
.gi-hot-cold::before { content: "\E167"; }
|
|
190
|
+
.gi-delta::before { content: "\E168"; }
|
|
191
|
+
.gi-delta-cold::before { content: "\E169"; }
|
|
192
|
+
.gi-delta-hot::before { content: "\E16A"; }
|
|
193
|
+
.gi-sum::before { content: "\E16B"; }
|
|
194
|
+
.gi-sum-hot::before { content: "\E16C"; }
|
|
195
|
+
.gi-sum-cold::before { content: "\E16D"; }
|
|
196
|
+
.gi-face-id::before { content: "\E177"; }
|
|
197
|
+
.gi-scan::before { content: "\E17F"; }
|
|
198
|
+
.gi-retry-scan::before { content: "\E180"; }
|
|
199
|
+
.gi-ar-horiz::before { content: "\E181"; }
|
|
200
|
+
.gi-ar-vert::before { content: "\E182"; }
|
|
201
|
+
.gi-parking::before { content: "\E19F"; }
|
|
202
|
+
.gi-bike::before { content: "\E1A0"; }
|
|
203
|
+
.gi-walk::before { content: "\E1A1"; }
|
|
204
|
+
.gi-girl::before { content: "\E1A2"; }
|
|
205
|
+
.gi-boy::before { content: "\E1A3"; }
|
|
206
|
+
.gi-disabled::before { content: "\E1A4"; }
|
|
207
|
+
.gi-photo-id::before { content: "\E1A5"; }
|
|
208
|
+
.gi-learn::before { content: "\E1A6"; }
|
|
209
|
+
.gi-examen::before { content: "\E1A7"; }
|
|
210
|
+
.gi-video-call::before { content: "\E1A8"; }
|
|
211
|
+
.gi-interview::before { content: "\E1A9"; }
|
|
212
|
+
.gi-politician::before { content: "\E1CC"; }
|
|
213
|
+
.gi-bull::before { content: "\E1CD"; }
|
|
214
|
+
.gi-cow::before { content: "\E1CE"; }
|
|
215
|
+
.gi-verified::before { content: "\E1E1"; }
|
|
216
|
+
.gi-verified-user::before { content: "\E1E2"; }
|
|
217
|
+
.gi-lock::before { content: "\E1E3"; }
|
|
218
|
+
.gi-lock-open::before { content: "\E1E4"; }
|
|
219
|
+
.gi-advertising::before { content: "\E1FA"; }
|
|
220
|
+
.gi-no-advertising::before { content: "\E1FB"; }
|
|
221
|
+
.gi-video::before { content: "\E1FC"; }
|
|
222
|
+
.gi-alert::before { content: "\E200"; }
|
|
223
|
+
.gi-question-answer::before { content: "\E201"; }
|
|
224
|
+
.gi-info::before { content: "\E202"; }
|
|
225
|
+
.gi-help::before { content: "\E203"; }
|
|
226
|
+
.gi-error::before { content: "\E204"; }
|
|
227
|
+
.gi-visibility::before { content: "\E205"; }
|
|
228
|
+
.gi-visibility-off::before { content: "\E206"; }
|
|
229
|
+
.gi-thumb-up::before { content: "\E207"; }
|
|
230
|
+
.gi-thumb-down::before { content: "\E208"; }
|
|
231
|
+
.gi-favorite-border::before { content: "\E209"; }
|
|
232
|
+
.gi-favorite::before { content: "\E20A"; }
|
|
233
|
+
.gi-favorite-dislike::before { content: "\E20B"; }
|
|
234
|
+
.gi-share::before { content: "\E20C"; }
|
|
235
|
+
.gi-bookmark::before { content: "\E20D"; }
|
|
236
|
+
.gi-star-border::before { content: "\E20E"; }
|
|
237
|
+
.gi-star-half::before { content: "\E20F"; }
|
|
238
|
+
.gi-star::before { content: "\E210"; }
|
|
239
|
+
.gi-rate::before { content: "\E211"; }
|
|
240
|
+
.gi-ticket::before { content: "\E212"; }
|
|
241
|
+
.gi-game::before { content: "\E213"; }
|
|
242
|
+
.gi-lotto::before { content: "\E214"; }
|
|
243
|
+
.gi-cabala::before { content: "\E215"; }
|
|
244
|
+
.gi-clover::before { content: "\E216"; }
|
|
245
|
+
.gi-legal::before { content: "\E219"; }
|
|
246
|
+
.gi-sad-face::before { content: "\E22D"; }
|
|
247
|
+
.gi-happy-face::before { content: "\E22E"; }
|
|
248
|
+
.gi-dictation::before { content: "\E22F"; }
|
|
249
|
+
.gi-oral::before { content: "\E230"; }
|
|
250
|
+
.gi-event-available::before { content: "\E231"; }
|
|
251
|
+
.gi-upcoming::before { content: "\E232"; }
|
|
252
|
+
.gi-past::before { content: "\E233"; }
|
|
253
|
+
.gi-event::before { content: "\E234"; }
|
|
254
|
+
.gi-no-event::before { content: "\E235"; }
|
|
255
|
+
.gi-month::before { content: "\E236"; }
|
|
256
|
+
.gi-dashboard::before { content: "\E23A"; }
|
|
257
|
+
.gi-campaign::before { content: "\E23B"; }
|
|
258
|
+
.gi-unpin::before { content: "\E243"; }
|
|
259
|
+
.gi-push-pin::before { content: "\E244"; }
|
|
260
|
+
.gi-search::before { content: "\E245"; }
|
|
261
|
+
.gi-search-page::before { content: "\E246"; }
|
|
262
|
+
.gi-search-person::before { content: "\E247"; }
|
|
263
|
+
.gi-search-number::before { content: "\E248"; }
|
|
264
|
+
.gi-camera::before { content: "\E254"; }
|
|
265
|
+
.gi-no-image::before { content: "\E255"; }
|
|
266
|
+
.gi-images::before { content: "\E256"; }
|
|
267
|
+
.gi-remove::before { content: "\E257"; }
|
|
268
|
+
.gi-remove-circle::before { content: "\E258"; }
|
|
269
|
+
.gi-add::before { content: "\E259"; }
|
|
270
|
+
.gi-add-circle::before { content: "\E25A"; }
|
|
271
|
+
.gi-close::before { content: "\E25B"; }
|
|
272
|
+
.gi-cancel::before { content: "\E25C"; }
|
|
273
|
+
.gi-filter::before { content: "\E25D"; }
|
|
274
|
+
.gi-edit::before { content: "\E25E"; }
|
|
275
|
+
.gi-settings::before { content: "\E25F"; }
|
|
276
|
+
.gi-save::before { content: "\E260"; }
|
|
277
|
+
.gi-add-square::before { content: "\E262"; }
|
|
278
|
+
.gi-remove-square::before { content: "\E263"; }
|
|
279
|
+
.gi-more-less::before { content: "\E264"; }
|
|
280
|
+
.gi-total::before { content: "\E265"; }
|
|
281
|
+
.gi-number::before { content: "\E266"; }
|
|
282
|
+
.gi-television::before { content: "\E26B"; }
|
|
283
|
+
.gi-store::before { content: "\E26C"; }
|
|
284
|
+
.gi-drink::before { content: "\E26D"; }
|
|
285
|
+
.gi-open-box::before { content: "\E271"; }
|
|
286
|
+
.gi-briefcase::before { content: "\E274"; }
|
|
287
|
+
.gi-bulb-number::before { content: "\E279"; }
|
|
288
|
+
.gi-bulb-on::before { content: "\E27A"; }
|
|
289
|
+
.gi-bulb::before { content: "\E27B"; }
|
|
290
|
+
.gi-cashier::before { content: "\E27C"; }
|
|
291
|
+
.gi-afternoon::before { content: "\E285"; }
|
|
292
|
+
.gi-evening::before { content: "\E286"; }
|
|
293
|
+
.gi-full-square::before { content: "\E287"; }
|
|
294
|
+
.gi-full-dot::before { content: "\E288"; }
|
|
295
|
+
.gi-brightness-1::before { content: "\E289"; }
|
|
296
|
+
.gi-brightness-2::before { content: "\E28A"; }
|
|
297
|
+
.gi-brightness-3::before { content: "\E28B"; }
|
|
298
|
+
.gi-brightness-4::before { content: "\E28C"; }
|
|
299
|
+
.gi-brightness-5::before { content: "\E28D"; }
|
|
300
|
+
.gi-brightness-6::before { content: "\E28E"; }
|
|
301
|
+
.gi-brightness-7::before { content: "\E28F"; }
|
|
302
|
+
.gi-facebook::before { content: "\E291"; }
|
|
303
|
+
.gi-twitter::before { content: "\E292"; }
|
|
304
|
+
.gi-youtube::before { content: "\E293"; }
|
|
305
|
+
.gi-instagram::before { content: "\E294"; }
|
|
306
|
+
.gi-linkedin::before { content: "\E295"; }
|
|
307
|
+
.gi-github::before { content: "\E2A0"; }
|
|
308
|
+
.gi-gitlab::before { content: "\E2A1"; }
|
|
309
|
+
.gi-npm::before { content: "\E2A2"; }
|
|
310
|
+
.gi-apple-logo::before { content: "\E2A3"; }
|
|
311
|
+
.gi-facebook-logo::before { content: "\E2A4"; }
|
|
312
|
+
.gi-google-logo::before { content: "\E2A5"; }
|
|
313
|
+
.gi-whatsapp-logo::before { content: "\E2A6"; }
|
|
314
|
+
.gi-x-logo::before { content: "\E2A7"; }
|
|
315
|
+
.gi-logo::before { content: "\E2AF"; }
|