less-rails-fontawesome 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/README.md +3 -0
- data/lib/less-rails-fontawesome/version.rb +1 -1
- data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.svg +247 -167
- data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/stylesheets/fontawesome.less +265 -188
- metadata +5 -6
- data/vendor/assets/fonts/fontawesome-webfont.svgz +0 -0
Binary file
|
@@ -18,23 +18,19 @@
|
|
18
18
|
-------------------------------------------------------
|
19
19
|
Email: dave@davegandy.com
|
20
20
|
Twitter: http://twitter.com/fortaweso_me
|
21
|
-
Work: http://
|
21
|
+
Work: Lead Product Designer @ http://kyruus.com
|
22
22
|
|
23
|
-
Email: matwb@ug.edu.pl
|
24
|
-
|
25
|
-
TODO: use font-url helper from the less-rails gem
|
26
23
|
*/
|
27
24
|
|
28
25
|
@font-face {
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
font-style: normal;
|
26
|
+
font-family: 'FontAwesome';
|
27
|
+
src: url('/assets/fontawesome-webfont.eot');
|
28
|
+
src: url('/assets/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
|
29
|
+
url('/assets/fontawesome-webfont.woff') format('woff'),
|
30
|
+
url('/assets/fontawesome-webfont.ttf') format('truetype'),
|
31
|
+
url('/assets/fontawesome-webfont.svg#FontAwesome') format('svg');
|
32
|
+
font-weight: normal;
|
33
|
+
font-style: normal;
|
38
34
|
}
|
39
35
|
|
40
36
|
/* sprites.less reset */
|
@@ -58,210 +54,291 @@ li[class*=" icon-"] {
|
|
58
54
|
------------------------------------------------------- */
|
59
55
|
[class^="icon-"]:before,
|
60
56
|
[class*=" icon-"]:before {
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
57
|
+
font-family: FontAwesome;
|
58
|
+
font-weight: normal;
|
59
|
+
font-style: normal;
|
60
|
+
display: inline-block;
|
61
|
+
text-decoration: inherit;
|
66
62
|
}
|
67
63
|
|
68
64
|
a [class^="icon-"],
|
69
65
|
a [class*=" icon-"] {
|
70
|
-
|
71
|
-
|
66
|
+
display: inline-block;
|
67
|
+
text-decoration: inherit;
|
72
68
|
}
|
73
69
|
|
74
70
|
/* makes the font 33% larger relative to the icon container */
|
75
71
|
.icon-large:before {
|
76
|
-
|
77
|
-
|
72
|
+
vertical-align: middle;
|
73
|
+
font-size: 4/3em;
|
78
74
|
}
|
79
75
|
|
80
|
-
.btn {
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
76
|
+
.btn, .nav-tabs {
|
77
|
+
[class^="icon-"],
|
78
|
+
[class*=" icon-"] {
|
79
|
+
/* keeps button heights with and without icons the same */
|
80
|
+
line-height: .9em;
|
81
|
+
}
|
86
82
|
}
|
87
83
|
|
88
84
|
li {
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
85
|
+
[class^="icon-"],
|
86
|
+
[class*=" icon-"] {
|
87
|
+
display: inline-block;
|
88
|
+
width: 1.25em;
|
89
|
+
text-align: center;
|
90
|
+
}
|
91
|
+
.icon-large:before,
|
92
|
+
.icon-large:before {
|
93
|
+
/* 1.5 increased font size for icon-large * 1.25 width */
|
94
|
+
width: 1.5*1.25em;
|
95
|
+
}
|
100
96
|
}
|
101
97
|
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
98
|
+
ul.icons {
|
99
|
+
list-style-type: none;
|
100
|
+
margin-left: 2em;
|
101
|
+
text-indent: -.8em;
|
106
102
|
|
107
|
-
|
108
|
-
|
109
|
-
|
103
|
+
li {
|
104
|
+
[class^="icon-"],
|
105
|
+
[class*=" icon-"] {
|
106
|
+
width: .8em;
|
110
107
|
}
|
111
|
-
|
112
|
-
|
108
|
+
.icon-large:before,
|
109
|
+
.icon-large:before {
|
110
|
+
/* 1.5 increased font size for icon-large * 1.25 width */
|
111
|
+
vertical-align: initial;
|
112
|
+
// width: 1.5*1.25em;
|
113
113
|
}
|
114
|
+
}
|
114
115
|
}
|
115
116
|
|
116
117
|
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
117
118
|
readers do not read off random characters that represent icons */
|
118
|
-
.icon-glass:before
|
119
|
-
.icon-music:before
|
120
|
-
.icon-search:before
|
121
|
-
.icon-envelope:before
|
122
|
-
.icon-heart:before
|
123
|
-
.icon-star:before
|
124
|
-
.icon-star-empty:before
|
125
|
-
.icon-user:before
|
126
|
-
.icon-film:before
|
127
|
-
.icon-th-large:before
|
128
|
-
.icon-th:before
|
129
|
-
.icon-th-list:before
|
130
|
-
.icon-ok:before
|
131
|
-
.icon-remove:before
|
132
|
-
.icon-zoom-in:before
|
119
|
+
.icon-glass:before { content: "\f000"; }
|
120
|
+
.icon-music:before { content: "\f001"; }
|
121
|
+
.icon-search:before { content: "\f002"; }
|
122
|
+
.icon-envelope:before { content: "\f003"; }
|
123
|
+
.icon-heart:before { content: "\f004"; }
|
124
|
+
.icon-star:before { content: "\f005"; }
|
125
|
+
.icon-star-empty:before { content: "\f006"; }
|
126
|
+
.icon-user:before { content: "\f007"; }
|
127
|
+
.icon-film:before { content: "\f008"; }
|
128
|
+
.icon-th-large:before { content: "\f009"; }
|
129
|
+
.icon-th:before { content: "\f00a"; }
|
130
|
+
.icon-th-list:before { content: "\f00b"; }
|
131
|
+
.icon-ok:before { content: "\f00c"; }
|
132
|
+
.icon-remove:before { content: "\f00d"; }
|
133
|
+
.icon-zoom-in:before { content: "\f00e"; }
|
133
134
|
|
134
|
-
.icon-zoom-out:before
|
135
|
-
.icon-off:before
|
136
|
-
.icon-signal:before
|
137
|
-
.icon-cog:before
|
138
|
-
.icon-trash:before
|
139
|
-
.icon-home:before
|
140
|
-
.icon-file:before
|
141
|
-
.icon-time:before
|
142
|
-
.icon-road:before
|
143
|
-
.icon-download-alt:before
|
144
|
-
.icon-download:before
|
145
|
-
.icon-upload:before
|
146
|
-
.icon-inbox:before
|
147
|
-
.icon-play-circle:before
|
148
|
-
.icon-repeat:before
|
135
|
+
.icon-zoom-out:before { content: "\f010"; }
|
136
|
+
.icon-off:before { content: "\f011"; }
|
137
|
+
.icon-signal:before { content: "\f012"; }
|
138
|
+
.icon-cog:before { content: "\f013"; }
|
139
|
+
.icon-trash:before { content: "\f014"; }
|
140
|
+
.icon-home:before { content: "\f015"; }
|
141
|
+
.icon-file:before { content: "\f016"; }
|
142
|
+
.icon-time:before { content: "\f017"; }
|
143
|
+
.icon-road:before { content: "\f018"; }
|
144
|
+
.icon-download-alt:before { content: "\f019"; }
|
145
|
+
.icon-download:before { content: "\f01a"; }
|
146
|
+
.icon-upload:before { content: "\f01b"; }
|
147
|
+
.icon-inbox:before { content: "\f01c"; }
|
148
|
+
.icon-play-circle:before { content: "\f01d"; }
|
149
|
+
.icon-repeat:before { content: "\f01e"; }
|
149
150
|
|
150
151
|
/* \f020 is not a valid unicode character. all shifted one down */
|
151
|
-
.icon-refresh:before
|
152
|
-
.icon-list-alt:before
|
153
|
-
.icon-lock:before
|
154
|
-
.icon-flag:before
|
155
|
-
.icon-headphones:before
|
156
|
-
.icon-volume-off:before
|
157
|
-
.icon-volume-down:before
|
158
|
-
.icon-volume-up:before
|
159
|
-
.icon-qrcode:before
|
160
|
-
.icon-barcode:before
|
161
|
-
.icon-tag:before
|
162
|
-
.icon-tags:before
|
163
|
-
.icon-book:before
|
164
|
-
.icon-bookmark:before
|
165
|
-
.icon-print:before
|
152
|
+
.icon-refresh:before { content: "\f021"; }
|
153
|
+
.icon-list-alt:before { content: "\f022"; }
|
154
|
+
.icon-lock:before { content: "\f023"; }
|
155
|
+
.icon-flag:before { content: "\f024"; }
|
156
|
+
.icon-headphones:before { content: "\f025"; }
|
157
|
+
.icon-volume-off:before { content: "\f026"; }
|
158
|
+
.icon-volume-down:before { content: "\f027"; }
|
159
|
+
.icon-volume-up:before { content: "\f028"; }
|
160
|
+
.icon-qrcode:before { content: "\f029"; }
|
161
|
+
.icon-barcode:before { content: "\f02a"; }
|
162
|
+
.icon-tag:before { content: "\f02b"; }
|
163
|
+
.icon-tags:before { content: "\f02c"; }
|
164
|
+
.icon-book:before { content: "\f02d"; }
|
165
|
+
.icon-bookmark:before { content: "\f02e"; }
|
166
|
+
.icon-print:before { content: "\f02f"; }
|
167
|
+
|
168
|
+
.icon-camera:before { content: "\f030"; }
|
169
|
+
.icon-font:before { content: "\f031"; }
|
170
|
+
.icon-bold:before { content: "\f032"; }
|
171
|
+
.icon-italic:before { content: "\f033"; }
|
172
|
+
.icon-text-height:before { content: "\f034"; }
|
173
|
+
.icon-text-width:before { content: "\f035"; }
|
174
|
+
.icon-align-left:before { content: "\f036"; }
|
175
|
+
.icon-align-center:before { content: "\f037"; }
|
176
|
+
.icon-align-right:before { content: "\f038"; }
|
177
|
+
.icon-align-justify:before { content: "\f039"; }
|
178
|
+
.icon-list:before { content: "\f03a"; }
|
179
|
+
.icon-indent-left:before { content: "\f03b"; }
|
180
|
+
.icon-indent-right:before { content: "\f03c"; }
|
181
|
+
.icon-facetime-video:before { content: "\f03d"; }
|
182
|
+
.icon-picture:before { content: "\f03e"; }
|
183
|
+
|
184
|
+
.icon-pencil:before { content: "\f040"; }
|
185
|
+
.icon-map-marker:before { content: "\f041"; }
|
186
|
+
.icon-adjust:before { content: "\f042"; }
|
187
|
+
.icon-tint:before { content: "\f043"; }
|
188
|
+
.icon-edit:before { content: "\f044"; }
|
189
|
+
.icon-share:before { content: "\f045"; }
|
190
|
+
.icon-check:before { content: "\f046"; }
|
191
|
+
.icon-move:before { content: "\f047"; }
|
192
|
+
.icon-step-backward:before { content: "\f048"; }
|
193
|
+
.icon-fast-backward:before { content: "\f049"; }
|
194
|
+
.icon-backward:before { content: "\f04a"; }
|
195
|
+
.icon-play:before { content: "\f04b"; }
|
196
|
+
.icon-pause:before { content: "\f04c"; }
|
197
|
+
.icon-stop:before { content: "\f04d"; }
|
198
|
+
.icon-forward:before { content: "\f04e"; }
|
199
|
+
|
200
|
+
.icon-fast-forward:before { content: "\f050"; }
|
201
|
+
.icon-step-forward:before { content: "\f051"; }
|
202
|
+
.icon-eject:before { content: "\f052"; }
|
203
|
+
.icon-chevron-left:before { content: "\f053"; }
|
204
|
+
.icon-chevron-right:before { content: "\f054"; }
|
205
|
+
.icon-plus-sign:before { content: "\f055"; }
|
206
|
+
.icon-minus-sign:before { content: "\f056"; }
|
207
|
+
.icon-remove-sign:before { content: "\f057"; }
|
208
|
+
.icon-ok-sign:before { content: "\f058"; }
|
209
|
+
.icon-question-sign:before { content: "\f059"; }
|
210
|
+
.icon-info-sign:before { content: "\f05a"; }
|
211
|
+
.icon-screenshot:before { content: "\f05b"; }
|
212
|
+
.icon-remove-circle:before { content: "\f05c"; }
|
213
|
+
.icon-ok-circle:before { content: "\f05d"; }
|
214
|
+
.icon-ban-circle:before { content: "\f05e"; }
|
215
|
+
|
216
|
+
.icon-arrow-left:before { content: "\f060"; }
|
217
|
+
.icon-arrow-right:before { content: "\f061"; }
|
218
|
+
.icon-arrow-up:before { content: "\f062"; }
|
219
|
+
.icon-arrow-down:before { content: "\f063"; }
|
220
|
+
.icon-share-alt:before { content: "\f064"; }
|
221
|
+
.icon-resize-full:before { content: "\f065"; }
|
222
|
+
.icon-resize-small:before { content: "\f066"; }
|
223
|
+
.icon-plus:before { content: "\f067"; }
|
224
|
+
.icon-minus:before { content: "\f068"; }
|
225
|
+
.icon-asterisk:before { content: "\f069"; }
|
226
|
+
.icon-exclamation-sign:before { content: "\f06a"; }
|
227
|
+
.icon-gift:before { content: "\f06b"; }
|
228
|
+
.icon-leaf:before { content: "\f06c"; }
|
229
|
+
.icon-fire:before { content: "\f06d"; }
|
230
|
+
.icon-eye-open:before { content: "\f06e"; }
|
231
|
+
|
232
|
+
.icon-eye-close:before { content: "\f070"; }
|
233
|
+
.icon-warning-sign:before { content: "\f071"; }
|
234
|
+
.icon-plane:before { content: "\f072"; }
|
235
|
+
.icon-calendar:before { content: "\f073"; }
|
236
|
+
.icon-random:before { content: "\f074"; }
|
237
|
+
.icon-comment:before { content: "\f075"; }
|
238
|
+
.icon-magnet:before { content: "\f076"; }
|
239
|
+
.icon-chevron-up:before { content: "\f077"; }
|
240
|
+
.icon-chevron-down:before { content: "\f078"; }
|
241
|
+
.icon-retweet:before { content: "\f079"; }
|
242
|
+
.icon-shopping-cart:before { content: "\f07a"; }
|
243
|
+
.icon-folder-close:before { content: "\f07b"; }
|
244
|
+
.icon-folder-open:before { content: "\f07c"; }
|
245
|
+
.icon-resize-vertical:before { content: "\f07d"; }
|
246
|
+
.icon-resize-horizontal:before { content: "\f07e"; }
|
247
|
+
|
248
|
+
.icon-bar-chart:before { content: "\f080"; }
|
249
|
+
.icon-twitter-sign:before { content: "\f081"; }
|
250
|
+
.icon-facebook-sign:before { content: "\f082"; }
|
251
|
+
.icon-camera-retro:before { content: "\f083"; }
|
252
|
+
.icon-key:before { content: "\f084"; }
|
253
|
+
.icon-cogs:before { content: "\f085"; }
|
254
|
+
.icon-comments:before { content: "\f086"; }
|
255
|
+
.icon-thumbs-up:before { content: "\f087"; }
|
256
|
+
.icon-thumbs-down:before { content: "\f088"; }
|
257
|
+
.icon-star-half:before { content: "\f089"; }
|
258
|
+
.icon-heart-empty:before { content: "\f08a"; }
|
259
|
+
.icon-signout:before { content: "\f08b"; }
|
260
|
+
.icon-linkedin-sign:before { content: "\f08c"; }
|
261
|
+
.icon-pushpin:before { content: "\f08d"; }
|
262
|
+
.icon-external-link:before { content: "\f08e"; }
|
166
263
|
|
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-
|
264
|
+
.icon-signin:before { content: "\f090"; }
|
265
|
+
.icon-trophy:before { content: "\f091"; }
|
266
|
+
.icon-github-sign:before { content: "\f092"; }
|
267
|
+
.icon-upload-alt:before { content: "\f093"; }
|
268
|
+
.icon-lemon:before { content: "\f094"; }
|
269
|
+
.icon-phone:before { content: "\f095"; }
|
270
|
+
.icon-check-empty:before { content: "\f096"; }
|
271
|
+
.icon-bookmark-empty:before { content: "\f097"; }
|
272
|
+
.icon-phone-sign:before { content: "\f098"; }
|
273
|
+
.icon-twitter:before { content: "\f099"; }
|
274
|
+
.icon-facebook:before { content: "\f09a"; }
|
275
|
+
.icon-github:before { content: "\f09b"; }
|
276
|
+
.icon-unlock:before { content: "\f09c"; }
|
277
|
+
.icon-credit-card:before { content: "\f09d"; }
|
278
|
+
.icon-rss:before { content: "\f09e"; }
|
182
279
|
|
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-
|
280
|
+
.icon-hdd:before { content: "\f0a0"; }
|
281
|
+
.icon-bullhorn:before { content: "\f0a1"; }
|
282
|
+
.icon-bell:before { content: "\f0a2"; }
|
283
|
+
.icon-certificate:before { content: "\f0a3"; }
|
284
|
+
.icon-hand-right:before { content: "\f0a4"; }
|
285
|
+
.icon-hand-left:before { content: "\f0a5"; }
|
286
|
+
.icon-hand-up:before { content: "\f0a6"; }
|
287
|
+
.icon-hand-down:before { content: "\f0a7"; }
|
288
|
+
.icon-circle-arrow-left:before { content: "\f0a8"; }
|
289
|
+
.icon-circle-arrow-right:before { content: "\f0a9"; }
|
290
|
+
.icon-circle-arrow-up:before { content: "\f0aa"; }
|
291
|
+
.icon-circle-arrow-down:before { content: "\f0ab"; }
|
292
|
+
.icon-globe:before { content: "\f0ac"; }
|
293
|
+
.icon-wrench:before { content: "\f0ad"; }
|
294
|
+
.icon-tasks:before { content: "\f0ae"; }
|
198
295
|
|
199
|
-
.icon-
|
200
|
-
.icon-
|
201
|
-
.icon-
|
202
|
-
.icon-chevron-left:before { content: "\f053"; }
|
203
|
-
.icon-chevron-right:before { content: "\f054"; }
|
204
|
-
.icon-plus-sign:before { content: "\f055"; }
|
205
|
-
.icon-minus-sign:before { content: "\f056"; }
|
206
|
-
.icon-remove-sign:before { content: "\f057"; }
|
207
|
-
.icon-ok-sign:before { content: "\f058"; }
|
208
|
-
.icon-question-sign:before { content: "\f059"; }
|
209
|
-
.icon-info-sign:before { content: "\f05a"; }
|
210
|
-
.icon-screenshot:before { content: "\f05b"; }
|
211
|
-
.icon-remove-circle:before { content: "\f05c"; }
|
212
|
-
.icon-ok-circle:before { content: "\f05d"; }
|
213
|
-
.icon-ban-circle:before { content: "\f05e"; }
|
296
|
+
.icon-filter:before { content: "\f0b0"; }
|
297
|
+
.icon-briefcase:before { content: "\f0b1"; }
|
298
|
+
.icon-fullscreen:before { content: "\f0b2"; }
|
214
299
|
|
215
|
-
.icon-
|
216
|
-
.icon-
|
217
|
-
.icon-
|
218
|
-
.icon-
|
219
|
-
.icon-
|
220
|
-
.icon-
|
221
|
-
.icon-
|
222
|
-
.icon-
|
223
|
-
.icon-
|
224
|
-
.icon-
|
225
|
-
.icon-
|
226
|
-
.icon-
|
227
|
-
.icon-
|
228
|
-
.icon-
|
229
|
-
.icon-
|
300
|
+
.icon-group:before { content: "\f0c0"; }
|
301
|
+
.icon-link:before { content: "\f0c1"; }
|
302
|
+
.icon-cloud:before { content: "\f0c2"; }
|
303
|
+
.icon-beaker:before { content: "\f0c3"; }
|
304
|
+
.icon-cut:before { content: "\f0c4"; }
|
305
|
+
.icon-copy:before { content: "\f0c5"; }
|
306
|
+
.icon-paper-clip:before { content: "\f0c6"; }
|
307
|
+
.icon-save:before { content: "\f0c7"; }
|
308
|
+
.icon-sign-blank:before { content: "\f0c8"; }
|
309
|
+
.icon-reorder:before { content: "\f0c9"; }
|
310
|
+
.icon-list-ul:before { content: "\f0ca"; }
|
311
|
+
.icon-list-ol:before { content: "\f0cb"; }
|
312
|
+
.icon-strikethrough:before { content: "\f0cc"; }
|
313
|
+
.icon-underline:before { content: "\f0cd"; }
|
314
|
+
.icon-table:before { content: "\f0ce"; }
|
230
315
|
|
231
|
-
.icon-
|
232
|
-
.icon-
|
233
|
-
.icon-
|
234
|
-
.icon-
|
235
|
-
.icon-
|
236
|
-
.icon-
|
237
|
-
.icon-
|
238
|
-
.icon-
|
239
|
-
.icon-
|
240
|
-
.icon-
|
241
|
-
.icon-
|
242
|
-
.icon-
|
243
|
-
.icon-
|
244
|
-
.icon-
|
245
|
-
.icon-
|
316
|
+
.icon-magic:before { content: "\f0d0"; }
|
317
|
+
.icon-truck:before { content: "\f0d1"; }
|
318
|
+
.icon-pinterest:before { content: "\f0d2"; }
|
319
|
+
.icon-pinterest-sign:before { content: "\f0d3"; }
|
320
|
+
.icon-google-plus-sign:before { content: "\f0d4"; }
|
321
|
+
.icon-google-plus:before { content: "\f0d5"; }
|
322
|
+
.icon-money:before { content: "\f0d6"; }
|
323
|
+
.icon-caret-down:before { content: "\f0d7"; }
|
324
|
+
.icon-caret-up:before { content: "\f0d8"; }
|
325
|
+
.icon-caret-left:before { content: "\f0d9"; }
|
326
|
+
.icon-caret-right:before { content: "\f0da"; }
|
327
|
+
.icon-columns:before { content: "\f0db"; }
|
328
|
+
.icon-sort:before { content: "\f0dc"; }
|
329
|
+
.icon-sort-down:before { content: "\f0dd"; }
|
330
|
+
.icon-sort-up:before { content: "\f0de"; }
|
246
331
|
|
247
|
-
.icon-
|
248
|
-
.icon-
|
249
|
-
.icon-
|
250
|
-
.icon-
|
251
|
-
.icon-
|
252
|
-
.icon-
|
253
|
-
.icon-comments:before
|
254
|
-
.icon-
|
255
|
-
.icon-
|
256
|
-
.icon-
|
257
|
-
.icon-
|
258
|
-
.icon-signout:before { content: "\f08b"; }
|
259
|
-
.icon-linkedin-sign:before { content: "\f08c"; }
|
260
|
-
.icon-pushpin:before { content: "\f08d"; }
|
261
|
-
.icon-external-link:before { content: "\f08e"; }
|
332
|
+
.icon-envelope-alt:before { content: "\f0e0"; }
|
333
|
+
.icon-linkedin:before { content: "\f0e1"; }
|
334
|
+
.icon-undo:before { content: "\f0e2"; }
|
335
|
+
.icon-legal:before { content: "\f0e3"; }
|
336
|
+
.icon-dashboard:before { content: "\f0e4"; }
|
337
|
+
.icon-comment-alt:before { content: "\f0e5"; }
|
338
|
+
.icon-comments-alt:before { content: "\f0e6"; }
|
339
|
+
.icon-bolt:before { content: "\f0e7"; }
|
340
|
+
.icon-sitemap:before { content: "\f0e8"; }
|
341
|
+
.icon-umbrella:before { content: "\f0e9"; }
|
342
|
+
.icon-paste:before { content: "\f0ea"; }
|
262
343
|
|
263
|
-
.icon-
|
264
|
-
.icon-trophy:before { content: "\f091"; }
|
265
|
-
.icon-github-sign:before { content: "\f092"; }
|
266
|
-
.icon-upload-alt:before { content: "\f093"; }
|
267
|
-
.icon-lemon:before { content: "\f094"; }
|
344
|
+
.icon-user-md:before { content: "\f200"; }
|