entypo-rails 1.0.2 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +2 -1
- data/README.md +18 -2
- data/app/controllers/entypo/charmap_controller.rb +12 -0
- data/config/routes.rb +4 -0
- data/entypo-rails.gemspec +6 -4
- data/lib/assets/stylesheets/entypo-fonts.css.scss +9 -0
- data/lib/assets/stylesheets/entypo.css.scss +288 -288
- data/lib/entypo/charmap.rb +46 -0
- data/lib/{entypo-rails → entypo}/version.rb +1 -1
- data/vendor/assets/fonts/entypo.eot +0 -0
- data/vendor/assets/fonts/entypo.svg +849 -12
- data/vendor/assets/fonts/entypo.ttf +0 -0
- data/vendor/assets/fonts/entypo.woff +0 -0
- metadata +53 -69
- data/lib/assets/stylesheets/entypo-fonts.css.erb +0 -21
- data/vendor/.DS_Store +0 -0
- data/vendor/assets/fonts/entypo-social.eot +0 -0
- data/vendor/assets/fonts/entypo-social.svg +0 -13
- data/vendor/assets/fonts/entypo-social.ttf +0 -0
- data/vendor/assets/fonts/entypo-social.woff +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
ZmExZWQ0YmFjYWRlMzU0NmM4NjZjNDAzOTg2YjZmMjc3OWIyZDk1Mg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
NzNhNjk3YzhhOTkwYzYzM2JiMjM1YmVjZDMyYjI0NTFmYjhkMjEyOQ==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
YTY0YzU3NjZjYTQ5YjJiNGU2OGFlNDJiN2Q1MjJkNzM0YWY0MWE3MjhhMWQ2
|
10
|
+
MmMwY2U5YzY4N2EyZGE3Mjc3YjQ2MGQzMDZjZDY5ZmJjMmYxNWE3OTg2Mzc4
|
11
|
+
YjczODdkODQxYmQ1YzdiMTk0YzAwNDFjZDI2ODJjOTg5Zjc0Njk=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NGViNjA0ODQ2YTdlNmUzZmFmN2E0ZTQ4NTU0NTYwZGQyOTVhMDNlNDMzYzE2
|
14
|
+
NDY3YzZmYWMxNjZkMzNjYTc3NTEzZDUzNmU3MTg1NjI3MmI2ZjllOWU4NjMy
|
15
|
+
YTQxNDc5YWQxODI4ODI5YzI5ZjIyNGIwNmJhY2M4ZDQ0ZmYwMWU=
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -35,8 +35,9 @@ Either use the provided mappings, based on `icons-...` and the `:before`:
|
|
35
35
|
This is cool <i class="icon-thumbs-up"></i>.
|
36
36
|
```
|
37
37
|
|
38
|
-
or just include the entypo
|
39
|
-
|
38
|
+
or just include the entypo font face and do the mappings yourself, go to
|
39
|
+
http://localhost:3000/_entypo/charmap in your browser for a list of all
|
40
|
+
unicode codepoints and CSS classes.
|
40
41
|
|
41
42
|
```scss
|
42
43
|
// application.css[.scss]
|
@@ -53,6 +54,21 @@ i.cool:before { content: "\1F44D"; }
|
|
53
54
|
This is cool <i class="cool"></i>.
|
54
55
|
```
|
55
56
|
|
57
|
+
## Changes
|
58
|
+
|
59
|
+
_2.0.0_
|
60
|
+
|
61
|
+
- **Breaking**: combined entyo and entypo social font, so `entypo-social` font family no longer exists
|
62
|
+
- #2, #3, fixed display issues on Opera
|
63
|
+
|
64
|
+
_1.0.2_
|
65
|
+
|
66
|
+
- Bugfix release for Rails asset pipeline
|
67
|
+
|
68
|
+
_1.0.0_
|
69
|
+
|
70
|
+
- Initial release, with entypo fonts from 2012-10-31
|
71
|
+
|
56
72
|
## Contributing
|
57
73
|
|
58
74
|
1. Fork it
|
data/config/routes.rb
ADDED
data/entypo-rails.gemspec
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
require File.expand_path('../lib/entypo
|
2
|
+
require File.expand_path('../lib/entypo/version', __FILE__)
|
3
3
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Lukas Westermann", "Marco Pluess"]
|
@@ -10,12 +10,14 @@ Gem::Specification.new do |gem|
|
|
10
10
|
|
11
11
|
gem.licenses = ['MIT', 'CC BY 3.0', 'SIL Open Font License']
|
12
12
|
|
13
|
-
gem.files =
|
14
|
-
gem.executables = gem.files.grep(%r{^bin/})
|
13
|
+
gem.files = %w{.gitignore Gemfile Rakefile README.md LICENSE entypo-rails.gemspec} + Dir['**/*.{rb,scss,eot,svg,ttf,woff}']
|
14
|
+
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
15
15
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
16
|
+
|
16
17
|
gem.name = "entypo-rails"
|
17
18
|
gem.require_paths = ["lib"]
|
18
19
|
gem.version = Entypo::VERSION
|
19
20
|
|
20
|
-
gem.
|
21
|
+
gem.required_ruby_version = '>= 1.9'
|
22
|
+
gem.add_dependency "railties", ">= 3.1", "<= 5"
|
21
23
|
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'entypo';
|
3
|
+
src: font-url('entypo.eot');
|
4
|
+
src: font-url('entypo.eot?#iefix') format('embedded-opentype'),
|
5
|
+
font-url('entypo.woff') format('woff'),
|
6
|
+
font-url('entypo.ttf') format('truetype'),
|
7
|
+
font-url('entypo.svg#entypo') format('svg');
|
8
|
+
font-weight: normal; font-style: normal;
|
9
|
+
}
|
@@ -10,294 +10,294 @@
|
|
10
10
|
text-align: center;
|
11
11
|
}
|
12
12
|
|
13
|
-
[class^="icon-social-"], [class*=" icon-social-"] {
|
14
|
-
font-family: entypo-social;
|
15
|
-
}
|
16
|
-
|
17
13
|
/* main icon map */
|
18
|
-
.icon-phone:before { content:
|
19
|
-
.icon-mobile:before { content:
|
20
|
-
.icon-mouse:before { content:
|
21
|
-
.icon-address:before { content:
|
22
|
-
.icon-mail:before { content:
|
23
|
-
.icon-paper-plane:before { content:
|
24
|
-
.icon-pencil:before { content:
|
25
|
-
.icon-feather:before { content:
|
26
|
-
.icon-attach:before { content:
|
27
|
-
.icon-inbox:before { content:
|
28
|
-
.icon-reply:before { content:
|
29
|
-
.icon-reply-all:before { content:
|
30
|
-
.icon-forward:before { content:
|
31
|
-
.icon-user:before { content:
|
32
|
-
.icon-users:before { content:
|
33
|
-
.icon-add-user:before { content:
|
34
|
-
.icon-vcard:before { content:
|
35
|
-
.icon-export:before { content:
|
36
|
-
.icon-location:before { content:
|
37
|
-
.icon-map:before { content:
|
38
|
-
.icon-compass:before { content:
|
39
|
-
.icon-direction:before { content:
|
40
|
-
.icon-
|
41
|
-
.icon-
|
42
|
-
.icon-
|
43
|
-
.icon-heart:before { content:
|
44
|
-
.icon-
|
45
|
-
.icon-star:before { content:
|
46
|
-
.icon-
|
47
|
-
.icon-thumbs-
|
48
|
-
.icon-
|
49
|
-
.icon-
|
50
|
-
.icon-
|
51
|
-
.icon-
|
52
|
-
.icon-
|
53
|
-
.icon-
|
54
|
-
.icon-
|
55
|
-
.icon-
|
56
|
-
.icon-
|
57
|
-
.icon-
|
58
|
-
.icon-
|
59
|
-
.icon-
|
60
|
-
.icon-
|
61
|
-
.icon-
|
62
|
-
.icon-
|
63
|
-
.icon-
|
64
|
-
.icon-
|
65
|
-
.icon-
|
66
|
-
.icon-
|
67
|
-
.icon-
|
68
|
-
.icon-
|
69
|
-
.icon-note:before { content:
|
70
|
-
.icon-
|
71
|
-
.icon-
|
72
|
-
.icon-
|
73
|
-
.icon-
|
74
|
-
.icon-
|
75
|
-
.icon-
|
76
|
-
.icon-
|
77
|
-
.icon-
|
78
|
-
.icon-
|
79
|
-
.icon-
|
80
|
-
.icon-
|
81
|
-
.icon-
|
82
|
-
.icon-
|
83
|
-
.icon-
|
84
|
-
.icon-
|
85
|
-
.icon-
|
86
|
-
.icon-
|
87
|
-
.icon-
|
88
|
-
.icon-
|
89
|
-
.icon-
|
90
|
-
.icon-
|
91
|
-
.icon-
|
92
|
-
.icon-
|
93
|
-
.icon-
|
94
|
-
.icon-
|
95
|
-
.icon-
|
96
|
-
.icon-
|
97
|
-
.icon-
|
98
|
-
.icon-
|
99
|
-
.icon-
|
100
|
-
.icon-
|
101
|
-
.icon-
|
102
|
-
.icon-
|
103
|
-
.icon-
|
104
|
-
.icon-
|
105
|
-
.icon-
|
106
|
-
.icon-
|
107
|
-
.icon-
|
108
|
-
.icon-
|
109
|
-
.icon-
|
110
|
-
.icon-
|
111
|
-
.icon-
|
112
|
-
.icon-
|
113
|
-
.icon-
|
114
|
-
.icon-
|
115
|
-
.icon-
|
116
|
-
.icon-
|
117
|
-
.icon-
|
118
|
-
.icon-
|
119
|
-
.icon-
|
120
|
-
.icon-
|
121
|
-
.icon-
|
122
|
-
.icon-
|
123
|
-
.icon-
|
124
|
-
.icon-
|
125
|
-
.icon-
|
126
|
-
.icon-
|
127
|
-
.icon-
|
128
|
-
.icon-
|
129
|
-
.icon-
|
130
|
-
.icon-
|
131
|
-
.icon-
|
132
|
-
.icon-
|
133
|
-
.icon-
|
134
|
-
.icon-
|
135
|
-
.icon-
|
136
|
-
.icon-
|
137
|
-
.icon-
|
138
|
-
.icon-
|
139
|
-
.icon-
|
140
|
-
.icon-
|
141
|
-
.icon-
|
142
|
-
.icon-
|
143
|
-
.icon-
|
144
|
-
.icon-
|
145
|
-
.icon-
|
146
|
-
.icon-
|
147
|
-
.icon-
|
148
|
-
.icon-
|
149
|
-
.icon-
|
150
|
-
.icon-
|
151
|
-
.icon-
|
152
|
-
.icon-
|
153
|
-
.icon-
|
154
|
-
.icon-
|
155
|
-
.icon-
|
156
|
-
.icon-
|
157
|
-
.icon-
|
158
|
-
.icon-
|
159
|
-
.icon-
|
160
|
-
.icon-
|
161
|
-
.icon-
|
162
|
-
.icon-
|
163
|
-
.icon-
|
164
|
-
.icon-
|
165
|
-
.icon-
|
166
|
-
.icon-
|
167
|
-
.icon-
|
168
|
-
.icon-
|
169
|
-
.icon-
|
170
|
-
.icon-
|
171
|
-
.icon-
|
172
|
-
.icon-
|
173
|
-
.icon-
|
174
|
-
.icon-
|
175
|
-
.icon-
|
176
|
-
.icon-
|
177
|
-
.icon-
|
178
|
-
.icon-
|
179
|
-
.icon-
|
180
|
-
.icon-
|
181
|
-
.icon-
|
182
|
-
.icon-
|
183
|
-
.icon-
|
184
|
-
.icon-
|
185
|
-
.icon-
|
186
|
-
.icon-
|
187
|
-
.icon-
|
188
|
-
.icon-
|
189
|
-
.icon-
|
190
|
-
.icon-
|
191
|
-
.icon-
|
192
|
-
.icon-
|
193
|
-
.icon-
|
194
|
-
.icon-
|
195
|
-
.icon-
|
196
|
-
.icon-
|
197
|
-
.icon-
|
198
|
-
.icon-
|
199
|
-
.icon-
|
200
|
-
.icon-
|
201
|
-
.icon-
|
202
|
-
.icon-
|
203
|
-
.icon-
|
204
|
-
.icon-
|
205
|
-
.icon-
|
206
|
-
.icon-
|
207
|
-
.icon-
|
208
|
-
.icon-
|
209
|
-
.icon-
|
210
|
-
.icon-
|
211
|
-
.icon-
|
212
|
-
.icon-
|
213
|
-
.icon-
|
214
|
-
.icon-
|
215
|
-
.icon-
|
216
|
-
.icon-
|
217
|
-
.icon-
|
218
|
-
.icon-
|
219
|
-
.icon-
|
220
|
-
.icon-
|
221
|
-
.icon-
|
222
|
-
.icon-
|
223
|
-
.icon-
|
224
|
-
.icon-chevron-down:before { content:
|
225
|
-
.icon-chevron-
|
226
|
-
.icon-chevron-right:before { content:
|
227
|
-
.icon-chevron-
|
228
|
-
.icon-chevron-small-down:before { content:
|
229
|
-
.icon-chevron-small-
|
230
|
-
.icon-chevron-small-right:before { content:
|
231
|
-
.icon-chevron-
|
232
|
-
.icon-chevron-thin-down:before { content:
|
233
|
-
.icon-chevron-thin-
|
234
|
-
.icon-chevron-thin-right:before { content:
|
235
|
-
.icon-
|
236
|
-
.icon-
|
237
|
-
.icon-
|
238
|
-
.icon-
|
239
|
-
.icon-
|
240
|
-
.icon-
|
241
|
-
.icon-
|
242
|
-
.icon-
|
243
|
-
.icon-
|
244
|
-
.icon-
|
245
|
-
.icon-
|
246
|
-
.icon-
|
247
|
-
.icon-
|
248
|
-
.icon-
|
249
|
-
.icon-
|
250
|
-
.icon-
|
251
|
-
.icon-
|
252
|
-
.icon-
|
253
|
-
.icon-
|
254
|
-
.icon-
|
255
|
-
.icon-
|
14
|
+
.icon-phone:before { content: '📞'; } /* 1f4de */
|
15
|
+
.icon-mobile:before { content: '📱'; } /* 1f4f1 */
|
16
|
+
.icon-mouse:before { content: '\e789'; } /* e789 */
|
17
|
+
.icon-address:before { content: '\e723'; } /* e723 */
|
18
|
+
.icon-mail:before { content: '\2709'; } /* 2709 */
|
19
|
+
.icon-paper-plane:before { content: '\e79b'; } /* e79b */
|
20
|
+
.icon-pencil:before { content: '\270e'; } /* 270e */
|
21
|
+
.icon-feather:before { content: '\2712'; } /* 2712 */
|
22
|
+
.icon-attach:before { content: '📎'; } /* 1f4ce */
|
23
|
+
.icon-inbox:before { content: '\e777'; } /* e777 */
|
24
|
+
.icon-reply:before { content: '\e712'; } /* e712 */
|
25
|
+
.icon-reply-all:before { content: '\e713'; } /* e713 */
|
26
|
+
.icon-forward:before { content: '\27a6'; } /* 27a6 */
|
27
|
+
.icon-user:before { content: '👤'; } /* 1f464 */
|
28
|
+
.icon-users:before { content: '👥'; } /* 1f465 */
|
29
|
+
.icon-add-user:before { content: '\e700'; } /* e700 */
|
30
|
+
.icon-vcard:before { content: '\e722'; } /* e722 */
|
31
|
+
.icon-export:before { content: '\e715'; } /* e715 */
|
32
|
+
.icon-location:before { content: '\e724'; } /* e724 */
|
33
|
+
.icon-map:before { content: '\e727'; } /* e727 */
|
34
|
+
.icon-compass:before { content: '\e728'; } /* e728 */
|
35
|
+
.icon-direction:before { content: '\27a2'; } /* 27a2 */
|
36
|
+
.icon-share:before { content: '\e73c'; } /* e73c */
|
37
|
+
.icon-shareable:before { content: '\e73e'; } /* e73e */
|
38
|
+
.icon-heart:before { content: '\2665'; } /* 2665 */
|
39
|
+
.icon-heart-empty:before { content: '\2661'; } /* 2661 */
|
40
|
+
.icon-star:before { content: '\2605'; } /* 2605 */
|
41
|
+
.icon-star-empty:before { content: '\2606'; } /* 2606 */
|
42
|
+
.icon-thumbs-up:before { content: '👍'; } /* 1f44d */
|
43
|
+
.icon-thumbs-down:before { content: '👎'; } /* 1f44e */
|
44
|
+
.icon-chat:before { content: '\e720'; } /* e720 */
|
45
|
+
.icon-comment:before { content: '\e718'; } /* e718 */
|
46
|
+
.icon-quote:before { content: '\275e'; } /* 275e */
|
47
|
+
.icon-home:before { content: '\2302'; } /* 2302 */
|
48
|
+
.icon-popup:before { content: '\e74c'; } /* e74c */
|
49
|
+
.icon-search:before { content: '🔍'; } /* 1f50d */
|
50
|
+
.icon-flashlight:before { content: '🔦'; } /* 1f526 */
|
51
|
+
.icon-print:before { content: '\e716'; } /* e716 */
|
52
|
+
.icon-bell:before { content: '🔔'; } /* 1f514 */
|
53
|
+
.icon-link:before { content: '🔗'; } /* 1f517 */
|
54
|
+
.icon-flag:before { content: '\2691'; } /* 2691 */
|
55
|
+
.icon-cog:before { content: '\2699'; } /* 2699 */
|
56
|
+
.icon-tools:before { content: '\2692'; } /* 2692 */
|
57
|
+
.icon-trophy:before { content: '🏆'; } /* 1f3c6 */
|
58
|
+
.icon-tag:before { content: '\e70c'; } /* e70c */
|
59
|
+
.icon-camera:before { content: '📷'; } /* 1f4f7 */
|
60
|
+
.icon-megaphone:before { content: '📣'; } /* 1f4e3 */
|
61
|
+
.icon-moon:before { content: '\263d'; } /* 263d */
|
62
|
+
.icon-palette:before { content: '🎨'; } /* 1f3a8 */
|
63
|
+
.icon-leaf:before { content: '🍂'; } /* 1f342 */
|
64
|
+
.icon-note:before { content: '\266a'; } /* 266a */
|
65
|
+
.icon-beamed-note:before { content: '\266b'; } /* 266b */
|
66
|
+
.icon-graduation-cap:before { content: '🎓'; } /* 1f393 */
|
67
|
+
.icon-book:before { content: '📕'; } /* 1f4d5 */
|
68
|
+
.icon-newspaper:before { content: '📰'; } /* 1f4f0 */
|
69
|
+
.icon-bag:before { content: '👜'; } /* 1f45c */
|
70
|
+
.icon-lifebuoy:before { content: '\e788'; } /* e788 */
|
71
|
+
.icon-eye:before { content: '\e70a'; } /* e70a */
|
72
|
+
.icon-clock:before { content: '🕔'; } /* 1f554 */
|
73
|
+
.icon-mic:before { content: '🎤'; } /* 1f3a4 */
|
74
|
+
.icon-calendar:before { content: '📅'; } /* 1f4c5 */
|
75
|
+
.icon-flash:before { content: '\26a1'; } /* 26a1 */
|
76
|
+
.icon-thunder-cloud:before { content: '\26c8'; } /* 26c8 */
|
77
|
+
.icon-droplet:before { content: '💧'; } /* 1f4a7 */
|
78
|
+
.icon-cd:before { content: '💿'; } /* 1f4bf */
|
79
|
+
.icon-briefcase:before { content: '💼'; } /* 1f4bc */
|
80
|
+
.icon-air:before { content: '\e753'; } /* e753 */
|
81
|
+
.icon-hourglass:before { content: '\23f3'; } /* 23f3 */
|
82
|
+
.icon-gauge:before { content: '\e7a2'; } /* e7a2 */
|
83
|
+
.icon-language:before { content: '\e752'; } /* e752 */
|
84
|
+
.icon-network:before { content: '\e776'; } /* e776 */
|
85
|
+
.icon-key:before { content: '🔑'; } /* 1f511 */
|
86
|
+
.icon-battery:before { content: '🔋'; } /* 1f50b */
|
87
|
+
.icon-bucket:before { content: '\e756'; } /* e756 */
|
88
|
+
.icon-magnet:before { content: '\e7a1'; } /* e7a1 */
|
89
|
+
.icon-drive:before { content: '\e755'; } /* e755 */
|
90
|
+
.icon-cup:before { content: '\2615'; } /* 2615 */
|
91
|
+
.icon-rocket:before { content: '🚀'; } /* 1f680 */
|
92
|
+
.icon-brush:before { content: '\e79a'; } /* e79a */
|
93
|
+
.icon-suitcase:before { content: '\e78e'; } /* e78e */
|
94
|
+
.icon-traffic-cone:before { content: '\e7a3'; } /* e7a3 */
|
95
|
+
.icon-globe:before { content: '🌎'; } /* 1f30e */
|
96
|
+
.icon-keyboard:before { content: '\2328'; } /* 2328 */
|
97
|
+
.icon-publish:before { content: '\e74d'; } /* e74d */
|
98
|
+
.icon-progress-3:before { content: '\e76b'; } /* e76b */
|
99
|
+
.icon-progress-2:before { content: '\e76a'; } /* e76a */
|
100
|
+
.icon-progress-1:before { content: '\e769'; } /* e769 */
|
101
|
+
.icon-progress-0:before { content: '\e768'; } /* e768 */
|
102
|
+
.icon-light-down:before { content: '🔅'; } /* 1f505' */
|
103
|
+
.icon-light-up:before { content: '🔆'; } /* 1f506 */
|
104
|
+
.icon-adjust:before { content: '\25d1'; } /* 25d1 */
|
105
|
+
.icon-code:before { content: '\e714'; } /* e714 */
|
106
|
+
.icon-monitor:before { content: '💻'; } /* 1f4bb */
|
107
|
+
.icon-infinity:before { content: '\221e'; } /* 221e */
|
108
|
+
.icon-credit-card:before { content: '💳'; } /* 1f4b3 */
|
109
|
+
.icon-database:before { content: '\e754'; } /* e754 */
|
110
|
+
.icon-clipboard:before { content: '📋'; } /* 1f4cb */
|
111
|
+
.icon-box:before { content: '📦'; } /* 1f4e6 */
|
112
|
+
.icon-ticket:before { content: '🎫'; } /* 1f3ab */
|
113
|
+
.icon-rss:before { content: '\e73a'; } /* e73a */
|
114
|
+
.icon-signal:before { content: '📶'; } /* 1f4f6 */
|
115
|
+
.icon-thermometer:before { content: '\e757'; } /* e757 */
|
116
|
+
.icon-water:before { content: '💦'; } /* 1f4a6 */
|
117
|
+
.icon-sweden:before { content: '\f601'; } /* f601 */
|
118
|
+
.icon-lock:before { content: '🔒'; } /* 1f512 */
|
119
|
+
.icon-lock-open:before { content: '🔓'; } /* 1f513 */
|
120
|
+
.icon-logout:before { content: '\e741'; } /* e741 */
|
121
|
+
.icon-login:before { content: '\e740'; } /* e740 */
|
122
|
+
.icon-check:before { content: '\2713'; } /* 2713 */
|
123
|
+
.icon-squared-plus:before { content: '\229e'; } /* 229e */
|
124
|
+
.icon-squared-minus:before { content: '\229f'; } /* 229f */
|
125
|
+
.icon-circled-plus:before { content: '\2795'; } /* 2795 */
|
126
|
+
.icon-circled-minus:before { content: '\2796'; } /* 2796 */
|
127
|
+
.icon-plus:before { content: '\2b'; } /* 2b */
|
128
|
+
.icon-minus:before { content: '\2d'; } /* 2d */
|
129
|
+
.icon-erase:before { content: '\232b'; } /* 232b */
|
130
|
+
.icon-block:before { content: '🚫'; } /* 1f6ab */
|
131
|
+
.icon-info:before { content: '\2139'; } /* 2139 */
|
132
|
+
.icon-circled-info:before { content: '\e705'; } /* e705 */
|
133
|
+
.icon-help:before { content: '\2753'; } /* 2753 */
|
134
|
+
.icon-circled-help:before { content: '\e704'; } /* e704 */
|
135
|
+
.icon-ccw:before { content: '\27f2'; } /* 27f2 */
|
136
|
+
.icon-cw:before { content: '\27f3'; } /* 27f3 */
|
137
|
+
.icon-shuffle:before { content: '🔀'; } /* 1f500 */
|
138
|
+
.icon-back:before { content: '🔙'; } /* 1f519 */
|
139
|
+
.icon-level-up:before { content: '\21b0'; } /* 21b0 */
|
140
|
+
.icon-level-down:before { content: '\21b3'; } /* 21b3 */
|
141
|
+
.icon-retweet:before { content: '\e717'; } /* e717 */
|
142
|
+
.icon-loop:before { content: '🔁'; } /* 1f501 */
|
143
|
+
.icon-back-in-time:before { content: '\e771'; } /* e771 */
|
144
|
+
.icon-switch:before { content: '\21c6'; } /* 21c6 */
|
145
|
+
.icon-layout:before { content: '\268f'; } /* 268f */
|
146
|
+
.icon-list:before { content: '\2630'; } /* 2630 */
|
147
|
+
.icon-doc:before { content: '\e730'; } /* e730 */
|
148
|
+
.icon-docs:before { content: '\e736'; } /* e736 */
|
149
|
+
.icon-text-doc-inverted:before { content: '\e731'; } /* e731 */
|
150
|
+
.icon-landscape-doc:before { content: '\e737'; } /* e737 */
|
151
|
+
.icon-picture:before { content: '🌄'; } /* 1f304 */
|
152
|
+
.icon-video:before { content: '🎬'; } /* 1f3ac */
|
153
|
+
.icon-music:before { content: '🎵'; } /* 1f3b5 */
|
154
|
+
.icon-folder:before { content: '📁'; } /* 1f4c1 */
|
155
|
+
.icon-archive:before { content: '\e738'; } /* e738 */
|
156
|
+
.icon-trash:before { content: '\e729'; } /* e729 */
|
157
|
+
.icon-upload:before { content: '📤'; } /* 1f4e4 */
|
158
|
+
.icon-download:before { content: '📥'; } /* 1f4e5 */
|
159
|
+
.icon-install:before { content: '\e778'; } /* e778 */
|
160
|
+
.icon-cloud:before { content: '\2601'; } /* 2601 */
|
161
|
+
.icon-upload-cloud:before { content: '\e711'; } /* e711 */
|
162
|
+
.icon-bookmark:before { content: '🔖'; } /* 1f516 */
|
163
|
+
.icon-bookmarks:before { content: '📑'; } /* 1f4d1 */
|
164
|
+
.icon-play:before { content: '\25b6'; } /* 25b6 */
|
165
|
+
.icon-paus:before { content: '\2389'; } /* 2389 */
|
166
|
+
.icon-record:before { content: '\26ab'; } /* 26ab */
|
167
|
+
.icon-stop:before { content: '\25a0'; } /* 25a0 */
|
168
|
+
.icon-to-end:before { content: '\23ed'; } /* 23ed */
|
169
|
+
.icon-to-start:before { content: '\23ee'; } /* 23ee */
|
170
|
+
.icon-resize-full:before { content: '\e744'; } /* e744 */
|
171
|
+
.icon-resize-small:before { content: '\e746'; } /* e746 */
|
172
|
+
.icon-volume:before { content: '\e742'; } /* e742 */
|
173
|
+
.icon-sound:before { content: '🔊'; } /* 1f50a */
|
174
|
+
.icon-mute:before { content: '🔇'; } /* 1f507 */
|
175
|
+
.icon-flow-cascade:before { content: '\e790'; } /* e790 */
|
176
|
+
.icon-flow-branch:before { content: '\e791'; } /* e791 */
|
177
|
+
.icon-flow-tree:before { content: '\e792'; } /* e792 */
|
178
|
+
.icon-flow-line:before { content: '\e793'; } /* e793 */
|
179
|
+
.icon-flow-parallel:before { content: '\e794'; } /* e794 */
|
180
|
+
.icon-left-bold:before { content: '\e4ad'; } /* e4ad */
|
181
|
+
.icon-right-bold:before { content: '\e4ae'; } /* e4ae */
|
182
|
+
.icon-up-bold:before { content: '\e4af'; } /* e4af */
|
183
|
+
.icon-down-bold:before { content: '\e4b0'; } /* e4b0 */
|
184
|
+
.icon-left:before { content: '\261c'; } /* 261c */
|
185
|
+
.icon-up:before { content: '\261d'; } /* 261d */
|
186
|
+
.icon-right:before { content: '\261e'; } /* 261e */
|
187
|
+
.icon-down:before { content: '\261f'; } /* 261f */
|
188
|
+
.icon-circled-down:before { content: '\e758'; } /* e758 */
|
189
|
+
.icon-circled-left:before { content: '\e759'; } /* e759 */
|
190
|
+
.icon-circled-right:before { content: '\e75a'; } /* e75a */
|
191
|
+
.icon-circled-up:before { content: '\e75b'; } /* e75b */
|
192
|
+
.icon-left-thin:before { content: '\2190'; } /* 2190 */
|
193
|
+
.icon-up-thin:before { content: '\2191'; } /* 2191 */
|
194
|
+
.icon-right-thin:before { content: '\2192'; } /* 2192 */
|
195
|
+
.icon-down-thin:before { content: '\2193'; } /* 2193 */
|
196
|
+
.icon-arrow-combo:before { content: '\e74f'; } /* e74f */
|
197
|
+
.icon-dot:before { content: '\e78b'; } /* e78b */
|
198
|
+
.icon-two-dots:before { content: '\e78c'; } /* e78c */
|
199
|
+
.icon-three-dots:before { content: '\e78d'; } /* e78d */
|
200
|
+
.icon-cc:before { content: '\e7a5'; } /* e7a5 */
|
201
|
+
.icon-cc-by:before { content: '\e7a6'; } /* e7a6 */
|
202
|
+
.icon-cc-nc:before { content: '\e7a7'; } /* e7a7 */
|
203
|
+
.icon-cc-nc-eu:before { content: '\e7a8'; } /* e7a8 */
|
204
|
+
.icon-cc-nc-jp:before { content: '\e7a9'; } /* e7a9 */
|
205
|
+
.icon-cc-sa:before { content: '\e7aa'; } /* e7aa */
|
206
|
+
.icon-cc-nd:before { content: '\e7ab'; } /* e7ab */
|
207
|
+
.icon-cc-pd:before { content: '\e7ac'; } /* e7ac */
|
208
|
+
.icon-cc-zero:before { content: '\e7ad'; } /* e7ad */
|
209
|
+
.icon-cc-share:before { content: '\e7ae'; } /* e7ae */
|
210
|
+
.icon-cc-remix:before { content: '\e7af'; } /* e7af */
|
211
|
+
.icon-db-logo:before { content: '\f603'; } /* f603 */
|
212
|
+
.icon-db-shape:before { content: '\f600'; } /* f600 */
|
213
|
+
.icon-save:before { content: '💾'; } /* 1f4be */
|
214
|
+
.icon-ff:before { content: '\23e9'; } /* 23e9 */
|
215
|
+
.icon-fb:before { content: '\23ea'; } /* 23ea */
|
216
|
+
.icon-pie-chart:before { content: '\e751'; } /* e751 */
|
217
|
+
.icon-line-graph:before { content: '📈'; } /* 1f4c8 */
|
218
|
+
.icon-bar-graph:before { content: '📊'; } /* 1f4ca */
|
219
|
+
.icon-area-graph:before { content: '🔾'; } /* 1f53e */
|
220
|
+
.icon-chevron-down:before { content: '\e75c'; } /* e75c */
|
221
|
+
.icon-chevron-left:before { content: '\e75d'; } /* e75d */
|
222
|
+
.icon-chevron-right:before { content: '\e75e'; } /* e75e */
|
223
|
+
.icon-chevron-up:before { content: '\e75f'; } /* e75f */
|
224
|
+
.icon-chevron-small-down:before { content: '\e760'; } /* e760 */
|
225
|
+
.icon-chevron-small-left:before { content: '\e761'; } /* e761 */
|
226
|
+
.icon-chevron-small-right:before { content: '\e762'; } /* e762 */
|
227
|
+
.icon-chevron-small-up:before { content: '\e763'; } /* e763 */
|
228
|
+
.icon-chevron-thin-down:before { content: '\e764'; } /* e764 */
|
229
|
+
.icon-chevron-thin-left:before { content: '\e765'; } /* e765 */
|
230
|
+
.icon-chevron-thin-right:before { content: '\e766'; } /* e766 */
|
231
|
+
.icon-chevron-thin-up:before { content: '\e767'; } /* e767 */
|
232
|
+
.icon-text-doc:before { content: '📄'; } /* 1f4c4 */
|
233
|
+
.icon-open-book:before { content: '📖'; } /* 1f4d6 */
|
234
|
+
.icon-voicemail:before { content: '\2707'; } /* 2707 */
|
235
|
+
.icon-triangle-right:before { content: '\25b8'; } /* 25b8 */
|
236
|
+
.icon-triangle-up:before { content: '\25b4'; } /* 25b4 */
|
237
|
+
.icon-triangle-down:before { content: '\25be'; } /* 25be */
|
238
|
+
.icon-triangle-left:before { content: '\25c2'; } /* 25c2 */
|
239
|
+
.icon-airplane:before { content: '\2708'; } /* 2708 */
|
240
|
+
.icon-light-bulb:before { content: '💡'; } /* 1f4a1 */
|
241
|
+
.icon-add-to-list:before { content: '\e003'; } /* e003 */
|
242
|
+
.icon-browser:before { content: '\e74e'; } /* e74e */
|
243
|
+
.icon-cart:before { content: '\e73d'; } /* e73d */
|
244
|
+
.icon-cross-hair:before { content: '🎯'; } /* 1f3af */
|
245
|
+
.icon-squared-cross:before { content: '\274e'; } /* 274e */
|
246
|
+
.icon-circled-cross:before { content: '\2716'; } /* 2716 */
|
247
|
+
.icon-warning:before { content: '\26a0'; } /* 26a0 */
|
248
|
+
.icon-cross:before { content: '\2715'; } /* 2715 */
|
249
|
+
.icon-new:before { content: '💥'; } /* 1f4a5 */
|
250
|
+
.icon-cycle:before { content: '🔄'; } /* 1f504 */
|
251
|
+
.icon-numbered-list:before { content: '\e005'; } /* e005 */
|
252
|
+
.icon-right-1:before { content: '\27a1'; } /* 27a1 */
|
253
|
+
.icon-left-1:before { content: '\2b05'; } /* 2b05 */
|
254
|
+
.icon-up-1:before { content: '\2b06'; } /* 2b06 */
|
255
|
+
.icon-down-1:before { content: '\2b07'; } /* 2b07 */
|
256
256
|
|
257
257
|
/* social extention map */
|
258
|
-
.icon-social-github:before { content:
|
259
|
-
.icon-social-c-github:before { content:
|
260
|
-
.icon-social-flickr:before { content:
|
261
|
-
.icon-social-c-flickr:before { content:
|
262
|
-
.icon-social-vimeo:before { content:
|
263
|
-
.icon-social-c-vimeo:before { content:
|
264
|
-
.icon-social-twitter:before { content:
|
265
|
-
.icon-social-c-twitter:before { content:
|
266
|
-
.icon-social-facebook:before { content:
|
267
|
-
.icon-social-c-facebook:before { content:
|
268
|
-
.icon-social-s-facebook:before { content:
|
269
|
-
.icon-social-google+:before { content:
|
270
|
-
.icon-social-c-google+:before { content:
|
271
|
-
.icon-social-pinterest:before { content:
|
272
|
-
.icon-social-c-pinterest:before { content:
|
273
|
-
.icon-social-tumblr:before { content:
|
274
|
-
.icon-social-c-tumblr:before { content:
|
275
|
-
.icon-social-linkedin:before { content:
|
276
|
-
.icon-social-c-linkedin:before { content:
|
277
|
-
.icon-social-dribbble:before { content:
|
278
|
-
.icon-social-c-dribbble:before { content:
|
279
|
-
.icon-social-stumbleupon:before { content:
|
280
|
-
.icon-social-c-stumbleupon:before { content:
|
281
|
-
.icon-social-lastfm:before { content:
|
282
|
-
.icon-social-c-lastfm:before { content:
|
283
|
-
.icon-social-rdio:before { content:
|
284
|
-
.icon-social-c-rdio:before { content:
|
285
|
-
.icon-social-spotify:before { content:
|
286
|
-
.icon-social-c-spotify:before { content:
|
287
|
-
.icon-social-qq:before { content:
|
288
|
-
.icon-social-instagram:before { content:
|
289
|
-
.icon-social-dropbox:before { content:
|
290
|
-
.icon-social-evernote:before { content:
|
291
|
-
.icon-social-flattr:before { content:
|
292
|
-
.icon-social-skype:before { content:
|
293
|
-
.icon-social-c-skype:before { content:
|
294
|
-
.icon-social-renren:before { content:
|
295
|
-
.icon-social-sina-weibo:before { content:
|
296
|
-
.icon-social-paypal:before { content:
|
297
|
-
.icon-social-picasa:before { content:
|
298
|
-
.icon-social-soundcloud:before { content:
|
299
|
-
.icon-social-mixi:before { content:
|
300
|
-
.icon-social-behance:before { content:
|
301
|
-
.icon-social-google-circles:before { content:
|
302
|
-
.icon-social-vk:before { content:
|
303
|
-
.icon-social-smashing:before { content:
|
258
|
+
.icon-social-github:before { content: '\f300'; } /* f300 */
|
259
|
+
.icon-social-social-c-github:before { content: '\f301'; } /* f301 */
|
260
|
+
.icon-social-flickr:before { content: '\f303'; } /* f303 */
|
261
|
+
.icon-social-c-flickr:before { content: '\f304'; } /* f304 */
|
262
|
+
.icon-social-vimeo:before { content: '\f306'; } /* f306 */
|
263
|
+
.icon-social-c-vimeo:before { content: '\f307'; } /* f307 */
|
264
|
+
.icon-social-twitter:before { content: '\f309'; } /* f309 */
|
265
|
+
.icon-social-c-twitter:before { content: '\f30a'; } /* f30a */
|
266
|
+
.icon-social-facebook:before { content: '\f30c'; } /* f30c */
|
267
|
+
.icon-social-c-facebook:before { content: '\f30d'; } /* f30d */
|
268
|
+
.icon-social-s-facebook:before { content: '\f30e'; } /* f30e */
|
269
|
+
.icon-social-google+:before { content: '\f30f'; } /* f30f */
|
270
|
+
.icon-social-c-google+:before { content: '\f310'; } /* f310 */
|
271
|
+
.icon-social-pinterest:before { content: '\f312'; } /* f312 */
|
272
|
+
.icon-social-c-pinterest:before { content: '\f313'; } /* f313 */
|
273
|
+
.icon-social-tumblr:before { content: '\f315'; } /* f315 */
|
274
|
+
.icon-social-c-tumblr:before { content: '\f316'; } /* f316 */
|
275
|
+
.icon-social-linkedin:before { content: '\f318'; } /* f318 */
|
276
|
+
.icon-social-c-linkedin:before { content: '\f319'; } /* f319 */
|
277
|
+
.icon-social-dribbble:before { content: '\f31b'; } /* f31b */
|
278
|
+
.icon-social-c-dribbble:before { content: '\f31c'; } /* f31c */
|
279
|
+
.icon-social-stumbleupon:before { content: '\f31e'; } /* f31e */
|
280
|
+
.icon-social-c-stumbleupon:before { content: '\f31f'; } /* f31f */
|
281
|
+
.icon-social-lastfm:before { content: '\f321'; } /* f321 */
|
282
|
+
.icon-social-c-lastfm:before { content: '\f322'; } /* f322 */
|
283
|
+
.icon-social-rdio:before { content: '\f324'; } /* f324 */
|
284
|
+
.icon-social-c-rdio:before { content: '\f325'; } /* f325 */
|
285
|
+
.icon-social-spotify:before { content: '\f327'; } /* f327 */
|
286
|
+
.icon-social-c-spotify:before { content: '\f328'; } /* f328 */
|
287
|
+
.icon-social-qq:before { content: '\f32a'; } /* f32a */
|
288
|
+
.icon-social-instagram:before { content: '\f32d'; } /* f32d */
|
289
|
+
.icon-social-dropbox:before { content: '\f330'; } /* f330 */
|
290
|
+
.icon-social-evernote:before { content: '\f333'; } /* f333 */
|
291
|
+
.icon-social-flattr:before { content: '\f336'; } /* f336 */
|
292
|
+
.icon-social-skype:before { content: '\f339'; } /* f339 */
|
293
|
+
.icon-social-c-skype:before { content: '\f33a'; } /* f33a */
|
294
|
+
.icon-social-renren:before { content: '\f33c'; } /* f33c */
|
295
|
+
.icon-social-sina-weibo:before { content: '\f33f'; } /* f33f */
|
296
|
+
.icon-social-paypal:before { content: '\f342'; } /* f342 */
|
297
|
+
.icon-social-picasa:before { content: '\f345'; } /* f345 */
|
298
|
+
.icon-social-soundcloud:before { content: '\f348'; } /* f348 */
|
299
|
+
.icon-social-mixi:before { content: '\f34b'; } /* f34b */
|
300
|
+
.icon-social-behance:before { content: '\f34e'; } /* f34e */
|
301
|
+
.icon-social-google-circles:before { content: '\f351'; } /* f351 */
|
302
|
+
.icon-social-vk:before { content: '\f354'; } /* f354 */
|
303
|
+
.icon-social-smashing:before { content: '\f357'; } /* f357 */
|