@geira/iconfont 0.3.2 → 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/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.css +315 -0
- package/dist/geira-icons.scss +303 -138
- package/dist/icons.json +265 -1561
- 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 -1562
- package/src/js/data.json +0 -1
- package/src/js/flutter.txt +0 -260
- package/src/js/flutter2.txt +0 -260
- package/src/js/icons.json +0 -1562
- 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/README.md
CHANGED
|
@@ -1,74 +1,137 @@
|
|
|
1
|
-
# Geira
|
|
1
|
+
# Geira Icons
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@geira/iconfont)
|
|
4
|
+
[](https://pub.dev/packages/geira_icons)
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
A clean, ligature-based icon font for web and Flutter.
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
Browse all icons at [icons.geira.com](https://icons.geira.com).
|
|
8
9
|
|
|
9
10
|
## Installation
|
|
10
11
|
|
|
11
|
-
```
|
|
12
|
-
npm install
|
|
12
|
+
```bash
|
|
13
|
+
npm install @geira/iconfont
|
|
13
14
|
```
|
|
14
15
|
|
|
15
16
|
## Usage
|
|
16
17
|
|
|
17
18
|
### CSS
|
|
18
19
|
|
|
19
|
-
Add the
|
|
20
|
+
Add the stylesheet inside your HTML `<head>`:
|
|
20
21
|
|
|
21
22
|
```html
|
|
22
|
-
<link href="
|
|
23
|
+
<link rel="stylesheet" href="node_modules/@geira/iconfont/dist/geira-icons.css">
|
|
23
24
|
```
|
|
24
25
|
|
|
25
26
|
### SCSS
|
|
26
27
|
|
|
27
|
-
Import the provided SCSS file in your main SCSS file, ex: `styles.scss`:
|
|
28
|
-
|
|
29
28
|
```scss
|
|
30
|
-
@
|
|
29
|
+
@use '@geira/iconfont/dist/geira-icons';
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Class-based (recommended)
|
|
33
|
+
|
|
34
|
+
```html
|
|
35
|
+
<span class="geira-icons gi-pencil"></span>
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Ligature-based
|
|
39
|
+
|
|
40
|
+
```html
|
|
41
|
+
<span class="geira-icons">pencil</span>
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### Size modifiers
|
|
45
|
+
|
|
46
|
+
```html
|
|
47
|
+
<span class="geira-icons gi-pencil gi-18"></span>
|
|
48
|
+
<span class="geira-icons gi-pencil gi-24"></span>
|
|
49
|
+
<span class="geira-icons gi-pencil gi-36"></span>
|
|
50
|
+
<span class="geira-icons gi-pencil gi-48"></span>
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### Color modifiers
|
|
54
|
+
|
|
55
|
+
```html
|
|
56
|
+
<span class="geira-icons gi-pencil gi-dark"></span>
|
|
57
|
+
<span class="geira-icons gi-pencil gi-dark gi-inactive"></span>
|
|
58
|
+
<span class="geira-icons gi-pencil gi-light"></span>
|
|
31
59
|
```
|
|
32
60
|
|
|
61
|
+
### Transform modifiers
|
|
62
|
+
|
|
63
|
+
```html
|
|
64
|
+
<span class="geira-icons gi-pencil gi-rotate-90"></span>
|
|
65
|
+
<span class="geira-icons gi-pencil gi-flip-h"></span>
|
|
66
|
+
<span class="geira-icons gi-wifi gi-spin"></span>
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Flutter
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
flutter pub add geira_icons
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
See the [pub.dev package](https://pub.dev/packages/geira_icons) for Flutter usage details.
|
|
76
|
+
|
|
33
77
|
## Development
|
|
34
78
|
|
|
35
|
-
|
|
79
|
+
### Setup
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
git clone https://github.com/liontude/geira-icons-tool
|
|
83
|
+
cd geira-icons-tool
|
|
84
|
+
npm install
|
|
85
|
+
cp .env.example .env # fill in SFTP credentials
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
### Build
|
|
36
89
|
|
|
37
|
-
|
|
90
|
+
```bash
|
|
91
|
+
npm run build
|
|
92
|
+
```
|
|
38
93
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
a) compile by executing:
|
|
94
|
+
Reads `src/fonts/GeiraIcons-Regular.ttf`, syncs `tags.json`, and writes everything to `dist/`.
|
|
42
95
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
96
|
+
### Dev server
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
npm run dev
|
|
100
|
+
```
|
|
48
101
|
|
|
49
|
-
|
|
102
|
+
Opens `http://localhost:3000`. Rebuilds automatically when the font or `tags.json` changes.
|
|
50
103
|
|
|
51
|
-
|
|
104
|
+
### Updating the font
|
|
52
105
|
|
|
53
|
-
|
|
106
|
+
1. Export from FontLab → TTF + WOFF2 + WOFF
|
|
107
|
+
2. Replace the three files in `src/fonts/`
|
|
108
|
+
3. `npm run build`
|
|
54
109
|
|
|
55
|
-
|
|
110
|
+
If the build warns about icons with empty tags, edit `tags.json` and run `npm run build` again.
|
|
56
111
|
|
|
57
|
-
|
|
112
|
+
### Improving search tags
|
|
58
113
|
|
|
59
|
-
|
|
114
|
+
Edit `tags.json`, then `npm run build`.
|
|
60
115
|
|
|
61
|
-
|
|
116
|
+
## Releasing
|
|
62
117
|
|
|
63
|
-
|
|
118
|
+
```bash
|
|
119
|
+
npm run release:patch # 0.3.3 → 0.3.4
|
|
120
|
+
npm run release:minor # 0.3.3 → 0.4.0
|
|
121
|
+
npm run release:major # 0.3.3 → 1.0.0
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
Each command bumps the version, builds, publishes to npm, and deploys the demo to icons.geira.com.
|
|
125
|
+
After that, push the version commit and tag:
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
git push && git push --tags
|
|
129
|
+
```
|
|
64
130
|
|
|
65
131
|
## License
|
|
66
132
|
|
|
67
133
|
The MIT License (MIT)
|
|
68
134
|
|
|
69
|
-
Copyright (c) Leo Roderick<br>
|
|
70
|
-
Copyright (c) Diosney Sarmiento<br>
|
|
71
|
-
Copyright (c) Jose Mojena<br>
|
|
72
135
|
Copyright (c) Liontude, LLC
|
|
73
136
|
|
|
74
137
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,315 @@
|
|
|
1
|
+
@font-face {
|
|
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');
|
|
8
|
+
}
|
|
9
|
+
|
|
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';
|
|
25
|
+
}
|
|
26
|
+
|
|
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; }
|
|
31
|
+
|
|
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); }
|
|
36
|
+
|
|
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); }
|
|
44
|
+
|
|
45
|
+
.gi-flip-h { transform: scaleX(-1); }
|
|
46
|
+
.gi-flip-v { transform: scaleY(-1); }
|
|
47
|
+
|
|
48
|
+
.gi-spin { animation: gi-spin 2s infinite linear; }
|
|
49
|
+
|
|
50
|
+
@keyframes gi-spin {
|
|
51
|
+
from { transform: rotate(0deg); }
|
|
52
|
+
to { transform: rotate(359deg); }
|
|
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"; }
|