macbury-metro-ui-rails 0.15.9
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +21 -0
- data/.gitmodules +3 -0
- data/Gemfile +4 -0
- data/README.md +44 -0
- data/Rakefile +74 -0
- data/lib/generators/metro/layout/layout_generator.rb +19 -0
- data/lib/generators/metro/layout/templates/layout.html.erb +92 -0
- data/lib/metro/ui/rails/engine.rb +16 -0
- data/lib/metro/ui/rails/metro.rb +2 -0
- data/lib/metro/ui/rails/version.rb +7 -0
- data/lib/metro-ui-rails.rb +10 -0
- data/metro-ui-rails.gemspec +20 -0
- data/vendor/assets/fonts/metro-ui/iconFont.eot +0 -0
- data/vendor/assets/fonts/metro-ui/iconFont.svg +2005 -0
- data/vendor/assets/fonts/metro-ui/iconFont.ttf +0 -0
- data/vendor/assets/fonts/metro-ui/iconFont.woff +0 -0
- data/vendor/assets/javascripts/metro-ui/accordion.js +44 -0
- data/vendor/assets/javascripts/metro-ui/buttonset.js +34 -0
- data/vendor/assets/javascripts/metro-ui/carousel.js +368 -0
- data/vendor/assets/javascripts/metro-ui/dropdown.js +95 -0
- data/vendor/assets/javascripts/metro-ui/input-control.js +103 -0
- data/vendor/assets/javascripts/metro-ui/pagecontrol.js +64 -0
- data/vendor/assets/javascripts/metro-ui/rating.js +249 -0
- data/vendor/assets/javascripts/metro-ui/slider.js +248 -0
- data/vendor/assets/javascripts/metro-ui/tile-drag.js +332 -0
- data/vendor/assets/javascripts/metro-ui/tile-slider.js +196 -0
- data/vendor/assets/javascripts/metro-ui.js +10 -0
- data/vendor/toolkit/metro-ui/accordion.less +69 -0
- data/vendor/toolkit/metro-ui/bricks.less +59 -0
- data/vendor/toolkit/metro-ui/buttons.less +434 -0
- data/vendor/toolkit/metro-ui/cards.less +113 -0
- data/vendor/toolkit/metro-ui/carousel.less +109 -0
- data/vendor/toolkit/metro-ui/code.less +47 -0
- data/vendor/toolkit/metro-ui/colors.less +115 -0
- data/vendor/toolkit/metro-ui/forms.less +434 -0
- data/vendor/toolkit/metro-ui/grid.less +115 -0
- data/vendor/toolkit/metro-ui/hero.less +18 -0
- data/vendor/toolkit/metro-ui/icons.less +1168 -0
- data/vendor/toolkit/metro-ui/images.less +121 -0
- data/vendor/toolkit/metro-ui/jqgrid.less +12 -0
- data/vendor/toolkit/metro-ui/layout.less +287 -0
- data/vendor/toolkit/metro-ui/listview.less +143 -0
- data/vendor/toolkit/metro-ui/menus.less +249 -0
- data/vendor/toolkit/metro-ui/modern-responsive-max480.less +147 -0
- data/vendor/toolkit/metro-ui/modern-responsive-max767.less +241 -0
- data/vendor/toolkit/metro-ui/modern-responsive-max979.less +97 -0
- data/vendor/toolkit/metro-ui/modern-responsive-min1200.less +28 -0
- data/vendor/toolkit/metro-ui/modern-responsive.less +13 -0
- data/vendor/toolkit/metro-ui/modern.less +35 -0
- data/vendor/toolkit/metro-ui/notices.less +185 -0
- data/vendor/toolkit/metro-ui/pagecontrol.less +100 -0
- data/vendor/toolkit/metro-ui/progress.less +22 -0
- data/vendor/toolkit/metro-ui/rating.less +80 -0
- data/vendor/toolkit/metro-ui/reset.less +504 -0
- data/vendor/toolkit/metro-ui/routines.less +141 -0
- data/vendor/toolkit/metro-ui/sidebar.less +136 -0
- data/vendor/toolkit/metro-ui/slider.less +67 -0
- data/vendor/toolkit/metro-ui/tables.less +164 -0
- data/vendor/toolkit/metro-ui/theme-dark.less +54 -0
- data/vendor/toolkit/metro-ui/tiles.less +285 -0
- data/vendor/toolkit/metro-ui/typography.less +347 -0
- metadata +139 -0
@@ -0,0 +1,1168 @@
|
|
1
|
+
/*
|
2
|
+
Icon Set: Broccolidry -- http://dribbble.com/shots/587469-Free-16px-Broccolidryiconsaniconsetitisfullof-icons
|
3
|
+
License: Aribitrary -- http://licence.visualidiot.com/
|
4
|
+
|
5
|
+
|
6
|
+
Icon Set: Meteocons -- http://www.alessioatzeni.com/meteocons/
|
7
|
+
License: Arbitrary -- http://www.alessioatzeni.com/meteocons/#about
|
8
|
+
|
9
|
+
|
10
|
+
Icon Set: IcoMoon - Free -- http://keyamoon.com/icomoon/
|
11
|
+
License: CC BY-SA 3.0 -- http://creativecommons.org/licenses/by-sa/3.0/
|
12
|
+
*/
|
13
|
+
|
14
|
+
@font-face {
|
15
|
+
font-family: 'iconFont';
|
16
|
+
src:font-url('metro-ui/iconFont.eot');
|
17
|
+
src:font-url('metro-ui/iconFont.eot') format('embedded-opentype'),
|
18
|
+
font-url('metro-ui/iconFont.svg') format('svg'),
|
19
|
+
font-url('metro-ui/iconFont.woff') format('woff'),
|
20
|
+
font-url('metro-ui/iconFont.ttf') format('truetype');
|
21
|
+
font-weight: normal;
|
22
|
+
font-style: normal;
|
23
|
+
}
|
24
|
+
|
25
|
+
/* Use the following CSS code if you want to use data attributes for inserting your icons */
|
26
|
+
[data-icon]:before {
|
27
|
+
font-family: 'iconFont';
|
28
|
+
content: attr(data-icon);
|
29
|
+
speak: none;
|
30
|
+
font-weight: normal;
|
31
|
+
font-style: normal;
|
32
|
+
display: inline-block;
|
33
|
+
text-decoration: inherit;
|
34
|
+
-webkit-font-smoothing: antialiased;
|
35
|
+
border:1px transparent solid;
|
36
|
+
}
|
37
|
+
|
38
|
+
/* Use the following CSS code if you want to have a class per icon */
|
39
|
+
[class^="icon-"]:before, [class*=" icon-"]:before {
|
40
|
+
font-family: 'iconFont';
|
41
|
+
font-style: normal;
|
42
|
+
speak: none;
|
43
|
+
font-weight: normal;
|
44
|
+
display: inline-block;
|
45
|
+
text-decoration: inherit;
|
46
|
+
margin: 0 2px;
|
47
|
+
-webkit-font-smoothing: antialiased;
|
48
|
+
border:1px transparent solid;
|
49
|
+
}
|
50
|
+
|
51
|
+
.icon-large:before {
|
52
|
+
vertical-align: middle;
|
53
|
+
font-size: 4/3em;
|
54
|
+
margin-top: -8px;
|
55
|
+
}
|
56
|
+
|
57
|
+
button, .button {
|
58
|
+
&.mini {
|
59
|
+
font-size: .9em !important;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
.tool-btn {
|
64
|
+
}
|
65
|
+
|
66
|
+
a {
|
67
|
+
[class^="icon-"],
|
68
|
+
[class*=" icon-"] {
|
69
|
+
border: 1px transparent solid;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
li {
|
74
|
+
[class^="icon-"],
|
75
|
+
[class*=" icon-"] {
|
76
|
+
display: inline-block;
|
77
|
+
width: 1.25em;
|
78
|
+
text-align: center;
|
79
|
+
}
|
80
|
+
.icon-large:before,
|
81
|
+
.icon-large:before {
|
82
|
+
width: 1.5*1.25em;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
86
|
+
.icon-home:before {
|
87
|
+
content: "\e000";
|
88
|
+
}
|
89
|
+
.icon-newspaper:before {
|
90
|
+
content: "\e001";
|
91
|
+
}
|
92
|
+
.icon-pencil:before {
|
93
|
+
content: "\e002";
|
94
|
+
}
|
95
|
+
.icon-droplet:before {
|
96
|
+
content: "\e003";
|
97
|
+
}
|
98
|
+
.icon-pictures:before {
|
99
|
+
content: "\e004";
|
100
|
+
}
|
101
|
+
.icon-camera:before {
|
102
|
+
content: "\e005";
|
103
|
+
}
|
104
|
+
.icon-music:before {
|
105
|
+
content: "\e006";
|
106
|
+
}
|
107
|
+
.icon-film:before {
|
108
|
+
content: "\e007";
|
109
|
+
}
|
110
|
+
.icon-camera-2:before {
|
111
|
+
content: "\e008";
|
112
|
+
}
|
113
|
+
.icon-spades:before {
|
114
|
+
content: "\e009";
|
115
|
+
}
|
116
|
+
.icon-clubs:before {
|
117
|
+
content: "\e00a";
|
118
|
+
}
|
119
|
+
.icon-diamonds:before {
|
120
|
+
content: "\e00b";
|
121
|
+
}
|
122
|
+
.icon-broadcast:before {
|
123
|
+
content: "\e00c";
|
124
|
+
}
|
125
|
+
.icon-mic:before {
|
126
|
+
content: "\e00d";
|
127
|
+
}
|
128
|
+
.icon-book:before {
|
129
|
+
content: "\e00e";
|
130
|
+
}
|
131
|
+
.icon-file:before {
|
132
|
+
content: "\e00f";
|
133
|
+
}
|
134
|
+
.icon-new:before {
|
135
|
+
content: "\e010";
|
136
|
+
}
|
137
|
+
.icon-copy:before {
|
138
|
+
content: "\e011";
|
139
|
+
}
|
140
|
+
.icon-folder:before {
|
141
|
+
content: "\e012";
|
142
|
+
}
|
143
|
+
.icon-folder-2:before {
|
144
|
+
content: "\e013";
|
145
|
+
}
|
146
|
+
.icon-tag:before {
|
147
|
+
content: "\e014";
|
148
|
+
}
|
149
|
+
.icon-cart:before {
|
150
|
+
content: "\e015";
|
151
|
+
}
|
152
|
+
.icon-basket:before {
|
153
|
+
content: "\e016";
|
154
|
+
}
|
155
|
+
.icon-calculate:before {
|
156
|
+
content: "\e017";
|
157
|
+
}
|
158
|
+
.icon-support:before {
|
159
|
+
content: "\e018";
|
160
|
+
}
|
161
|
+
.icon-phone:before {
|
162
|
+
content: "\e019";
|
163
|
+
}
|
164
|
+
.icon-mail:before {
|
165
|
+
content: "\e01a";
|
166
|
+
}
|
167
|
+
.icon-location:before {
|
168
|
+
content: "\e01b";
|
169
|
+
}
|
170
|
+
.icon-compass:before {
|
171
|
+
content: "\e01c";
|
172
|
+
}
|
173
|
+
.icon-history:before {
|
174
|
+
content: "\e01d";
|
175
|
+
}
|
176
|
+
.icon-clock:before {
|
177
|
+
content: "\e01e";
|
178
|
+
}
|
179
|
+
.icon-bell:before {
|
180
|
+
content: "\e01f";
|
181
|
+
}
|
182
|
+
.icon-calendar:before {
|
183
|
+
content: "\e020";
|
184
|
+
}
|
185
|
+
.icon-printer:before {
|
186
|
+
content: "\e021";
|
187
|
+
}
|
188
|
+
.icon-mouse:before {
|
189
|
+
content: "\e022";
|
190
|
+
}
|
191
|
+
.icon-screen:before {
|
192
|
+
content: "\e023";
|
193
|
+
}
|
194
|
+
.icon-laptop:before {
|
195
|
+
content: "\e024";
|
196
|
+
}
|
197
|
+
.icon-mobile:before {
|
198
|
+
content: "\e025";
|
199
|
+
}
|
200
|
+
.icon-cabinet:before {
|
201
|
+
content: "\e026";
|
202
|
+
}
|
203
|
+
.icon-drawer:before {
|
204
|
+
content: "\e027";
|
205
|
+
}
|
206
|
+
.icon-drawer-2:before {
|
207
|
+
content: "\e028";
|
208
|
+
}
|
209
|
+
.icon-box:before {
|
210
|
+
content: "\e029";
|
211
|
+
}
|
212
|
+
.icon-box-add:before {
|
213
|
+
content: "\e02a";
|
214
|
+
}
|
215
|
+
.icon-box-remove:before {
|
216
|
+
content: "\e02b";
|
217
|
+
}
|
218
|
+
.icon-download:before {
|
219
|
+
content: "\e02c";
|
220
|
+
}
|
221
|
+
.icon-upload:before {
|
222
|
+
content: "\e02d";
|
223
|
+
}
|
224
|
+
.icon-database:before {
|
225
|
+
content: "\e02e";
|
226
|
+
}
|
227
|
+
.icon-flip:before {
|
228
|
+
content: "\e02f";
|
229
|
+
}
|
230
|
+
.icon-flip-2:before {
|
231
|
+
content: "\e030";
|
232
|
+
}
|
233
|
+
.icon-undo:before {
|
234
|
+
content: "\e031";
|
235
|
+
}
|
236
|
+
.icon-redo:before {
|
237
|
+
content: "\e032";
|
238
|
+
}
|
239
|
+
.icon-forward:before {
|
240
|
+
content: "\e033";
|
241
|
+
}
|
242
|
+
.icon-reply:before {
|
243
|
+
content: "\e034";
|
244
|
+
}
|
245
|
+
.icon-reply-2:before {
|
246
|
+
content: "\e035";
|
247
|
+
}
|
248
|
+
.icon-comments:before {
|
249
|
+
content: "\e036";
|
250
|
+
}
|
251
|
+
.icon-comments-2:before {
|
252
|
+
content: "\e037";
|
253
|
+
}
|
254
|
+
.icon-comments-3:before {
|
255
|
+
content: "\e038";
|
256
|
+
}
|
257
|
+
.icon-comments-4:before {
|
258
|
+
content: "\e039";
|
259
|
+
}
|
260
|
+
.icon-comments-5:before {
|
261
|
+
content: "\e03a";
|
262
|
+
}
|
263
|
+
.icon-user:before {
|
264
|
+
content: "\e03b";
|
265
|
+
}
|
266
|
+
.icon-user-2:before {
|
267
|
+
content: "\e03c";
|
268
|
+
}
|
269
|
+
.icon-user-3:before {
|
270
|
+
content: "\e03d";
|
271
|
+
}
|
272
|
+
.icon-busy:before {
|
273
|
+
content: "\e03e";
|
274
|
+
}
|
275
|
+
.icon-loading:before {
|
276
|
+
content: "\e03f";
|
277
|
+
}
|
278
|
+
.icon-loading-2:before {
|
279
|
+
content: "\e040";
|
280
|
+
}
|
281
|
+
.icon-search:before {
|
282
|
+
content: "\e041";
|
283
|
+
}
|
284
|
+
.icon-zoom-in:before {
|
285
|
+
content: "\e042";
|
286
|
+
}
|
287
|
+
.icon-zoom-out:before {
|
288
|
+
content: "\e043";
|
289
|
+
}
|
290
|
+
.icon-key:before {
|
291
|
+
content: "\e044";
|
292
|
+
}
|
293
|
+
.icon-key-2:before {
|
294
|
+
content: "\e045";
|
295
|
+
}
|
296
|
+
.icon-locked:before {
|
297
|
+
content: "\e046";
|
298
|
+
}
|
299
|
+
.icon-unlocked:before {
|
300
|
+
content: "\e047";
|
301
|
+
}
|
302
|
+
.icon-wrench:before {
|
303
|
+
content: "\e048";
|
304
|
+
}
|
305
|
+
.icon-equalizer:before {
|
306
|
+
content: "\e049";
|
307
|
+
}
|
308
|
+
.icon-cog:before {
|
309
|
+
content: "\e04a";
|
310
|
+
}
|
311
|
+
.icon-pie:before {
|
312
|
+
content: "\e04b";
|
313
|
+
}
|
314
|
+
.icon-bars:before {
|
315
|
+
content: "\e04c";
|
316
|
+
}
|
317
|
+
.icon-stats-up:before {
|
318
|
+
content: "\e04d";
|
319
|
+
}
|
320
|
+
.icon-gift:before {
|
321
|
+
content: "\e04e";
|
322
|
+
}
|
323
|
+
.icon-trophy:before {
|
324
|
+
content: "\e04f";
|
325
|
+
}
|
326
|
+
.icon-diamond:before {
|
327
|
+
content: "\e050";
|
328
|
+
}
|
329
|
+
.icon-coffee:before {
|
330
|
+
content: "\e051";
|
331
|
+
}
|
332
|
+
.icon-rocket:before {
|
333
|
+
content: "\e052";
|
334
|
+
}
|
335
|
+
.icon-meter-slow:before {
|
336
|
+
content: "\e053";
|
337
|
+
}
|
338
|
+
.icon-meter-medium:before {
|
339
|
+
content: "\e054";
|
340
|
+
}
|
341
|
+
.icon-meter-fast:before {
|
342
|
+
content: "\e055";
|
343
|
+
}
|
344
|
+
.icon-dashboard:before {
|
345
|
+
content: "\e056";
|
346
|
+
}
|
347
|
+
.icon-fire:before {
|
348
|
+
content: "\e057";
|
349
|
+
}
|
350
|
+
.icon-lab:before {
|
351
|
+
content: "\e058";
|
352
|
+
}
|
353
|
+
.icon-remove:before {
|
354
|
+
content: "\e059";
|
355
|
+
}
|
356
|
+
.icon-briefcase:before {
|
357
|
+
content: "\e05a";
|
358
|
+
}
|
359
|
+
.icon-briefcase-2:before {
|
360
|
+
content: "\e05b";
|
361
|
+
}
|
362
|
+
.icon-cars:before {
|
363
|
+
content: "\e05c";
|
364
|
+
}
|
365
|
+
.icon-bus:before {
|
366
|
+
content: "\e05d";
|
367
|
+
}
|
368
|
+
.icon-cube:before {
|
369
|
+
content: "\e05e";
|
370
|
+
}
|
371
|
+
.icon-cube-2:before {
|
372
|
+
content: "\e05f";
|
373
|
+
}
|
374
|
+
.icon-puzzle:before {
|
375
|
+
content: "\e060";
|
376
|
+
}
|
377
|
+
.icon-glasses:before {
|
378
|
+
content: "\e061";
|
379
|
+
}
|
380
|
+
.icon-glasses-2:before {
|
381
|
+
content: "\e062";
|
382
|
+
}
|
383
|
+
.icon-accessibility:before {
|
384
|
+
content: "\e063";
|
385
|
+
}
|
386
|
+
.icon-accessibility-2:before {
|
387
|
+
content: "\e064";
|
388
|
+
}
|
389
|
+
.icon-target:before {
|
390
|
+
content: "\e065";
|
391
|
+
}
|
392
|
+
.icon-target-2:before {
|
393
|
+
content: "\e066";
|
394
|
+
}
|
395
|
+
.icon-lightning:before {
|
396
|
+
content: "\e067";
|
397
|
+
}
|
398
|
+
.icon-power:before {
|
399
|
+
content: "\e068";
|
400
|
+
}
|
401
|
+
.icon-power-2:before {
|
402
|
+
content: "\e069";
|
403
|
+
}
|
404
|
+
.icon-clipboard:before {
|
405
|
+
content: "\e06a";
|
406
|
+
}
|
407
|
+
.icon-clipboard-2:before {
|
408
|
+
content: "\e06b";
|
409
|
+
}
|
410
|
+
.icon-playlist:before {
|
411
|
+
content: "\e06c";
|
412
|
+
}
|
413
|
+
.icon-grid-view:before {
|
414
|
+
content: "\e06d";
|
415
|
+
}
|
416
|
+
.icon-tree-view:before {
|
417
|
+
content: "\e06e";
|
418
|
+
}
|
419
|
+
.icon-cloud:before {
|
420
|
+
content: "\e06f";
|
421
|
+
}
|
422
|
+
.icon-cloud-2:before {
|
423
|
+
content: "\e070";
|
424
|
+
}
|
425
|
+
.icon-download-2:before {
|
426
|
+
content: "\e071";
|
427
|
+
}
|
428
|
+
.icon-upload-2:before {
|
429
|
+
content: "\e072";
|
430
|
+
}
|
431
|
+
.icon-upload-3:before {
|
432
|
+
content: "\e073";
|
433
|
+
}
|
434
|
+
.icon-link:before {
|
435
|
+
content: "\e074";
|
436
|
+
}
|
437
|
+
.icon-link-2:before {
|
438
|
+
content: "\e075";
|
439
|
+
}
|
440
|
+
.icon-flag:before {
|
441
|
+
content: "\e076";
|
442
|
+
}
|
443
|
+
.icon-flag-2:before {
|
444
|
+
content: "\e077";
|
445
|
+
}
|
446
|
+
.icon-attachment:before {
|
447
|
+
content: "\e078";
|
448
|
+
}
|
449
|
+
.icon-eye:before {
|
450
|
+
content: "\e079";
|
451
|
+
}
|
452
|
+
.icon-bookmark:before {
|
453
|
+
content: "\e07a";
|
454
|
+
}
|
455
|
+
.icon-bookmark-2:before {
|
456
|
+
content: "\e07b";
|
457
|
+
}
|
458
|
+
.icon-star:before {
|
459
|
+
content: "\e07c";
|
460
|
+
}
|
461
|
+
.icon-star-2:before {
|
462
|
+
content: "\e07d";
|
463
|
+
}
|
464
|
+
.icon-star-3:before {
|
465
|
+
content: "\e07e";
|
466
|
+
}
|
467
|
+
.icon-heart:before {
|
468
|
+
content: "\e07f";
|
469
|
+
}
|
470
|
+
.icon-heart-2:before {
|
471
|
+
content: "\e080";
|
472
|
+
}
|
473
|
+
.icon-thumbs-up:before {
|
474
|
+
content: "\e081";
|
475
|
+
}
|
476
|
+
.icon-thumbs-down:before {
|
477
|
+
content: "\e082";
|
478
|
+
}
|
479
|
+
.icon-plus:before {
|
480
|
+
content: "\e083";
|
481
|
+
}
|
482
|
+
.icon-minus:before {
|
483
|
+
content: "\e084";
|
484
|
+
}
|
485
|
+
.icon-help:before {
|
486
|
+
content: "\e085";
|
487
|
+
}
|
488
|
+
.icon-help-2:before {
|
489
|
+
content: "\e086";
|
490
|
+
}
|
491
|
+
.icon-blocked:before {
|
492
|
+
content: "\e087";
|
493
|
+
}
|
494
|
+
.icon-cancel:before {
|
495
|
+
content: "\e088";
|
496
|
+
}
|
497
|
+
.icon-cancel-2:before {
|
498
|
+
content: "\e089";
|
499
|
+
}
|
500
|
+
.icon-checkmark:before {
|
501
|
+
content: "\e08a";
|
502
|
+
}
|
503
|
+
.icon-minus-2:before {
|
504
|
+
content: "\e08b";
|
505
|
+
}
|
506
|
+
.icon-plus-2:before {
|
507
|
+
content: "\e08c";
|
508
|
+
}
|
509
|
+
.icon-enter:before {
|
510
|
+
content: "\e08d";
|
511
|
+
}
|
512
|
+
.icon-exit:before {
|
513
|
+
content: "\e08e";
|
514
|
+
}
|
515
|
+
.icon-loop:before {
|
516
|
+
content: "\e08f";
|
517
|
+
}
|
518
|
+
.icon-arrow-up-left:before {
|
519
|
+
content: "\e090";
|
520
|
+
}
|
521
|
+
.icon-arrow-up:before {
|
522
|
+
content: "\e091";
|
523
|
+
}
|
524
|
+
.icon-arrow-up-right:before {
|
525
|
+
content: "\e092";
|
526
|
+
}
|
527
|
+
.icon-arrow-right:before {
|
528
|
+
content: "\e093";
|
529
|
+
}
|
530
|
+
.icon-arrow-down-right:before {
|
531
|
+
content: "\e094";
|
532
|
+
}
|
533
|
+
.icon-arrow-down:before {
|
534
|
+
content: "\e095";
|
535
|
+
}
|
536
|
+
.icon-arrow-down-left:before {
|
537
|
+
content: "\e096";
|
538
|
+
}
|
539
|
+
.icon-arrow-left:before {
|
540
|
+
content: "\e097";
|
541
|
+
}
|
542
|
+
.icon-arrow-up-2:before {
|
543
|
+
content: "\e098";
|
544
|
+
}
|
545
|
+
.icon-arrow-right-2:before {
|
546
|
+
content: "\e099";
|
547
|
+
}
|
548
|
+
.icon-arrow-down-2:before {
|
549
|
+
content: "\e09a";
|
550
|
+
}
|
551
|
+
.icon-arrow-left-2:before {
|
552
|
+
content: "\e09b";
|
553
|
+
}
|
554
|
+
.icon-arrow-up-3:before {
|
555
|
+
content: "\e09c";
|
556
|
+
}
|
557
|
+
.icon-arrow-right-3:before {
|
558
|
+
content: "\e09d";
|
559
|
+
}
|
560
|
+
.icon-arrow-down-3:before {
|
561
|
+
content: "\e09e";
|
562
|
+
}
|
563
|
+
.icon-arrow-left-3:before {
|
564
|
+
content: "\e09f";
|
565
|
+
}
|
566
|
+
.icon-menu:before {
|
567
|
+
content: "\e0a0";
|
568
|
+
}
|
569
|
+
.icon-enter-2:before {
|
570
|
+
content: "\e0a1";
|
571
|
+
}
|
572
|
+
.icon-backspace:before {
|
573
|
+
content: "\e0a2";
|
574
|
+
}
|
575
|
+
.icon-backspace-2:before {
|
576
|
+
content: "\e0a3";
|
577
|
+
}
|
578
|
+
.icon-tab:before {
|
579
|
+
content: "\e0a4";
|
580
|
+
}
|
581
|
+
.icon-tab-2:before {
|
582
|
+
content: "\e0a5";
|
583
|
+
}
|
584
|
+
.icon-checkbox:before {
|
585
|
+
content: "\e0a6";
|
586
|
+
}
|
587
|
+
.icon-checkbox-unchecked:before {
|
588
|
+
content: "\e0a7";
|
589
|
+
}
|
590
|
+
.icon-checkbox-partial:before {
|
591
|
+
content: "\e0a8";
|
592
|
+
}
|
593
|
+
.icon-radio-checked:before {
|
594
|
+
content: "\e0a9";
|
595
|
+
}
|
596
|
+
.icon-radio-unchecked:before {
|
597
|
+
content: "\e0aa";
|
598
|
+
}
|
599
|
+
.icon-font:before {
|
600
|
+
content: "\e0ab";
|
601
|
+
}
|
602
|
+
.icon-paragraph-left:before {
|
603
|
+
content: "\e0ac";
|
604
|
+
}
|
605
|
+
.icon-paragraph-center:before {
|
606
|
+
content: "\e0ad";
|
607
|
+
}
|
608
|
+
.icon-paragraph-right:before {
|
609
|
+
content: "\e0ae";
|
610
|
+
}
|
611
|
+
.icon-paragraph-justify:before {
|
612
|
+
content: "\e0af";
|
613
|
+
}
|
614
|
+
.icon-left-to-right:before {
|
615
|
+
content: "\e0b0";
|
616
|
+
}
|
617
|
+
.icon-right-to-left:before {
|
618
|
+
content: "\e0b1";
|
619
|
+
}
|
620
|
+
.icon-share:before {
|
621
|
+
content: "\e0b2";
|
622
|
+
}
|
623
|
+
.icon-new-tab:before {
|
624
|
+
content: "\e0b3";
|
625
|
+
}
|
626
|
+
.icon-new-tab-2:before {
|
627
|
+
content: "\e0b4";
|
628
|
+
}
|
629
|
+
.icon-embed:before {
|
630
|
+
content: "\e0b5";
|
631
|
+
}
|
632
|
+
.icon-code:before {
|
633
|
+
content: "\e0b6";
|
634
|
+
}
|
635
|
+
.icon-bluetooth:before {
|
636
|
+
content: "\e0b7";
|
637
|
+
}
|
638
|
+
.icon-share-2:before {
|
639
|
+
content: "\e0b8";
|
640
|
+
}
|
641
|
+
.icon-share-3:before {
|
642
|
+
content: "\e0b9";
|
643
|
+
}
|
644
|
+
.icon-mail-2:before {
|
645
|
+
content: "\e0ba";
|
646
|
+
}
|
647
|
+
.icon-google:before {
|
648
|
+
content: "\e0bb";
|
649
|
+
}
|
650
|
+
.icon-google-plus:before {
|
651
|
+
content: "\e0bc";
|
652
|
+
}
|
653
|
+
.icon-google-drive:before {
|
654
|
+
content: "\e0bd";
|
655
|
+
}
|
656
|
+
.icon-facebook:before {
|
657
|
+
content: "\e0be";
|
658
|
+
}
|
659
|
+
.icon-instagram:before {
|
660
|
+
content: "\e0bf";
|
661
|
+
}
|
662
|
+
.icon-twitter:before {
|
663
|
+
content: "\e0c0";
|
664
|
+
}
|
665
|
+
.icon-feed:before {
|
666
|
+
content: "\e0c1";
|
667
|
+
}
|
668
|
+
.icon-youtube:before {
|
669
|
+
content: "\e0c2";
|
670
|
+
}
|
671
|
+
.icon-vimeo:before {
|
672
|
+
content: "\e0c3";
|
673
|
+
}
|
674
|
+
.icon-flickr:before {
|
675
|
+
content: "\e0c4";
|
676
|
+
}
|
677
|
+
.icon-picassa:before {
|
678
|
+
content: "\e0c5";
|
679
|
+
}
|
680
|
+
.icon-dribbble:before {
|
681
|
+
content: "\e0c6";
|
682
|
+
}
|
683
|
+
.icon-deviantart:before {
|
684
|
+
content: "\e0c7";
|
685
|
+
}
|
686
|
+
.icon-github:before {
|
687
|
+
content: "\e0c8";
|
688
|
+
}
|
689
|
+
.icon-github-2:before {
|
690
|
+
content: "\e0c9";
|
691
|
+
}
|
692
|
+
.icon-github-3:before {
|
693
|
+
content: "\e0ca";
|
694
|
+
}
|
695
|
+
.icon-github-4:before {
|
696
|
+
content: "\e0cb";
|
697
|
+
}
|
698
|
+
.icon-github-5:before {
|
699
|
+
content: "\e0cc";
|
700
|
+
}
|
701
|
+
.icon-git:before {
|
702
|
+
content: "\e0cd";
|
703
|
+
}
|
704
|
+
.icon-github-6:before {
|
705
|
+
content: "\e0ce";
|
706
|
+
}
|
707
|
+
.icon-wordpress:before {
|
708
|
+
content: "\e0cf";
|
709
|
+
}
|
710
|
+
.icon-joomla:before {
|
711
|
+
content: "\e0d0";
|
712
|
+
}
|
713
|
+
.icon-blogger:before {
|
714
|
+
content: "\e0d1";
|
715
|
+
}
|
716
|
+
.icon-tumblr:before {
|
717
|
+
content: "\e0d2";
|
718
|
+
}
|
719
|
+
.icon-yahoo:before {
|
720
|
+
content: "\e0d3";
|
721
|
+
}
|
722
|
+
.icon-amazon:before {
|
723
|
+
content: "\e0d4";
|
724
|
+
}
|
725
|
+
.icon-tux:before {
|
726
|
+
content: "\e0d5";
|
727
|
+
}
|
728
|
+
.icon-apple:before {
|
729
|
+
content: "\e0d6";
|
730
|
+
}
|
731
|
+
.icon-finder:before {
|
732
|
+
content: "\e0d7";
|
733
|
+
}
|
734
|
+
.icon-android:before {
|
735
|
+
content: "\e0d8";
|
736
|
+
}
|
737
|
+
.icon-windows:before {
|
738
|
+
content: "\e0d9";
|
739
|
+
}
|
740
|
+
.icon-soundcloud:before {
|
741
|
+
content: "\e0da";
|
742
|
+
}
|
743
|
+
.icon-skype:before {
|
744
|
+
content: "\e0db";
|
745
|
+
}
|
746
|
+
.icon-reddit:before {
|
747
|
+
content: "\e0dc";
|
748
|
+
}
|
749
|
+
.icon-linkedin:before {
|
750
|
+
content: "\e0dd";
|
751
|
+
}
|
752
|
+
.icon-lastfm:before {
|
753
|
+
content: "\e0de";
|
754
|
+
}
|
755
|
+
.icon-delicious:before {
|
756
|
+
content: "\e0df";
|
757
|
+
}
|
758
|
+
.icon-stumbleupon:before {
|
759
|
+
content: "\e0e0";
|
760
|
+
}
|
761
|
+
.icon-pinterest:before {
|
762
|
+
content: "\e0e1";
|
763
|
+
}
|
764
|
+
.icon-xing:before {
|
765
|
+
content: "\e0e2";
|
766
|
+
}
|
767
|
+
.icon-flattr:before {
|
768
|
+
content: "\e0e3";
|
769
|
+
}
|
770
|
+
.icon-foursquare:before {
|
771
|
+
content: "\e0e4";
|
772
|
+
}
|
773
|
+
.icon-paypal:before {
|
774
|
+
content: "\e0e5";
|
775
|
+
}
|
776
|
+
.icon-yelp:before {
|
777
|
+
content: "\e0e6";
|
778
|
+
}
|
779
|
+
.icon-libreoffice:before {
|
780
|
+
content: "\e0e7";
|
781
|
+
}
|
782
|
+
.icon-file-pdf:before {
|
783
|
+
content: "\e0e8";
|
784
|
+
}
|
785
|
+
.icon-file-openoffice:before {
|
786
|
+
content: "\e0e9";
|
787
|
+
}
|
788
|
+
.icon-file-word:before {
|
789
|
+
content: "\e0ea";
|
790
|
+
}
|
791
|
+
.icon-file-excel:before {
|
792
|
+
content: "\e0eb";
|
793
|
+
}
|
794
|
+
.icon-file-powerpoint:before {
|
795
|
+
content: "\e0ec";
|
796
|
+
}
|
797
|
+
.icon-file-zip:before {
|
798
|
+
content: "\e0ed";
|
799
|
+
}
|
800
|
+
.icon-file-xml:before {
|
801
|
+
content: "\e0ee";
|
802
|
+
}
|
803
|
+
.icon-file-css:before {
|
804
|
+
content: "\e0ef";
|
805
|
+
}
|
806
|
+
.icon-html5:before {
|
807
|
+
content: "\e0f0";
|
808
|
+
}
|
809
|
+
.icon-html5-2:before {
|
810
|
+
content: "\e0f1";
|
811
|
+
}
|
812
|
+
.icon-css3:before {
|
813
|
+
content: "\e0f2";
|
814
|
+
}
|
815
|
+
.icon-chrome:before {
|
816
|
+
content: "\e0f3";
|
817
|
+
}
|
818
|
+
.icon-firefox:before {
|
819
|
+
content: "\e0f4";
|
820
|
+
}
|
821
|
+
.icon-IE:before {
|
822
|
+
content: "\e0f5";
|
823
|
+
}
|
824
|
+
.icon-opera:before {
|
825
|
+
content: "\e0f6";
|
826
|
+
}
|
827
|
+
.icon-safari:before {
|
828
|
+
content: "\e0f7";
|
829
|
+
}
|
830
|
+
.icon-IcoMoon:before {
|
831
|
+
content: "\e0f8";
|
832
|
+
}
|
833
|
+
.icon-sunrise:before {
|
834
|
+
content: "\e0f9";
|
835
|
+
}
|
836
|
+
.icon-sun:before {
|
837
|
+
content: "\e0fa";
|
838
|
+
}
|
839
|
+
.icon-moon:before {
|
840
|
+
content: "\e0fb";
|
841
|
+
}
|
842
|
+
.icon-sun-2:before {
|
843
|
+
content: "\e0fc";
|
844
|
+
}
|
845
|
+
.icon-windy:before {
|
846
|
+
content: "\e0fd";
|
847
|
+
}
|
848
|
+
.icon-wind:before {
|
849
|
+
content: "\e0fe";
|
850
|
+
}
|
851
|
+
.icon-snowflake:before {
|
852
|
+
content: "\e0ff";
|
853
|
+
}
|
854
|
+
.icon-cloudy:before {
|
855
|
+
content: "\e100";
|
856
|
+
}
|
857
|
+
.icon-cloud-3:before {
|
858
|
+
content: "\e101";
|
859
|
+
}
|
860
|
+
.icon-weather:before {
|
861
|
+
content: "\e102";
|
862
|
+
}
|
863
|
+
.icon-weather-2:before {
|
864
|
+
content: "\e103";
|
865
|
+
}
|
866
|
+
.icon-weather-3:before {
|
867
|
+
content: "\e104";
|
868
|
+
}
|
869
|
+
.icon-lines:before {
|
870
|
+
content: "\e105";
|
871
|
+
}
|
872
|
+
.icon-cloud-4:before {
|
873
|
+
content: "\e106";
|
874
|
+
}
|
875
|
+
.icon-lightning-2:before {
|
876
|
+
content: "\e107";
|
877
|
+
}
|
878
|
+
.icon-lightning-3:before {
|
879
|
+
content: "\e108";
|
880
|
+
}
|
881
|
+
.icon-rainy:before {
|
882
|
+
content: "\e109";
|
883
|
+
}
|
884
|
+
.icon-rainy-2:before {
|
885
|
+
content: "\e10a";
|
886
|
+
}
|
887
|
+
.icon-windy-2:before {
|
888
|
+
content: "\e10b";
|
889
|
+
}
|
890
|
+
.icon-windy-3:before {
|
891
|
+
content: "\e10c";
|
892
|
+
}
|
893
|
+
.icon-snowy:before {
|
894
|
+
content: "\e10d";
|
895
|
+
}
|
896
|
+
.icon-snowy-2:before {
|
897
|
+
content: "\e10e";
|
898
|
+
}
|
899
|
+
.icon-snowy-3:before {
|
900
|
+
content: "\e10f";
|
901
|
+
}
|
902
|
+
.icon-weather-4:before {
|
903
|
+
content: "\e110";
|
904
|
+
}
|
905
|
+
.icon-cloudy-2:before {
|
906
|
+
content: "\e111";
|
907
|
+
}
|
908
|
+
.icon-cloud-5:before {
|
909
|
+
content: "\e112";
|
910
|
+
}
|
911
|
+
.icon-lightning-4:before {
|
912
|
+
content: "\e113";
|
913
|
+
}
|
914
|
+
.icon-sun-3:before {
|
915
|
+
content: "\e114";
|
916
|
+
}
|
917
|
+
.icon-moon-2:before {
|
918
|
+
content: "\e115";
|
919
|
+
}
|
920
|
+
.icon-cloudy-3:before {
|
921
|
+
content: "\e116";
|
922
|
+
}
|
923
|
+
.icon-cloud-6:before {
|
924
|
+
content: "\e117";
|
925
|
+
}
|
926
|
+
.icon-cloud-7:before {
|
927
|
+
content: "\e118";
|
928
|
+
}
|
929
|
+
.icon-lightning-5:before {
|
930
|
+
content: "\e119";
|
931
|
+
}
|
932
|
+
.icon-rainy-3:before {
|
933
|
+
content: "\e11a";
|
934
|
+
}
|
935
|
+
.icon-rainy-4:before {
|
936
|
+
content: "\e11b";
|
937
|
+
}
|
938
|
+
.icon-windy-4:before {
|
939
|
+
content: "\e11c";
|
940
|
+
}
|
941
|
+
.icon-windy-5:before {
|
942
|
+
content: "\e11d";
|
943
|
+
}
|
944
|
+
.icon-snowy-4:before {
|
945
|
+
content: "\e11e";
|
946
|
+
}
|
947
|
+
.icon-snowy-5:before {
|
948
|
+
content: "\e11f";
|
949
|
+
}
|
950
|
+
.icon-weather-5:before {
|
951
|
+
content: "\e120";
|
952
|
+
}
|
953
|
+
.icon-cloudy-4:before {
|
954
|
+
content: "\e121";
|
955
|
+
}
|
956
|
+
.icon-lightning-6:before {
|
957
|
+
content: "\e122";
|
958
|
+
}
|
959
|
+
.icon-thermometer:before {
|
960
|
+
content: "\e123";
|
961
|
+
}
|
962
|
+
.icon-compass-2:before {
|
963
|
+
content: "\e124";
|
964
|
+
}
|
965
|
+
.icon-none:before {
|
966
|
+
content: "\e125";
|
967
|
+
}
|
968
|
+
.icon-Celsius:before {
|
969
|
+
content: "\e126";
|
970
|
+
}
|
971
|
+
.icon-Fahrenheit:before {
|
972
|
+
content: "\e127";
|
973
|
+
}
|
974
|
+
.icon-forrst:before {
|
975
|
+
content: "\e128";
|
976
|
+
}
|
977
|
+
.icon-headphones:before {
|
978
|
+
content: "\e129";
|
979
|
+
}
|
980
|
+
.icon-bug:before {
|
981
|
+
content: "\e12a";
|
982
|
+
}
|
983
|
+
.icon-cart-2:before {
|
984
|
+
content: "\e12b";
|
985
|
+
}
|
986
|
+
.icon-earth:before {
|
987
|
+
content: "\e12c";
|
988
|
+
}
|
989
|
+
.icon-battery:before {
|
990
|
+
content: "\e12d";
|
991
|
+
}
|
992
|
+
.icon-list:before {
|
993
|
+
content: "\e12e";
|
994
|
+
}
|
995
|
+
.icon-grid:before {
|
996
|
+
content: "\e12f";
|
997
|
+
}
|
998
|
+
.icon-alarm:before {
|
999
|
+
content: "\e130";
|
1000
|
+
}
|
1001
|
+
.icon-location-2:before {
|
1002
|
+
content: "\e131";
|
1003
|
+
}
|
1004
|
+
.icon-pointer:before {
|
1005
|
+
content: "\e132";
|
1006
|
+
}
|
1007
|
+
.icon-diary:before {
|
1008
|
+
content: "\e133";
|
1009
|
+
}
|
1010
|
+
.icon-eye-2:before {
|
1011
|
+
content: "\e134";
|
1012
|
+
}
|
1013
|
+
.icon-console:before {
|
1014
|
+
content: "\e135";
|
1015
|
+
}
|
1016
|
+
.icon-location-3:before {
|
1017
|
+
content: "\e136";
|
1018
|
+
}
|
1019
|
+
.icon-move:before {
|
1020
|
+
content: "\e137";
|
1021
|
+
}
|
1022
|
+
.icon-gift-2:before {
|
1023
|
+
content: "\e138";
|
1024
|
+
}
|
1025
|
+
.icon-monitor:before {
|
1026
|
+
content: "\e139";
|
1027
|
+
}
|
1028
|
+
.icon-mobile-2:before {
|
1029
|
+
content: "\e13a";
|
1030
|
+
}
|
1031
|
+
.icon-switch:before {
|
1032
|
+
content: "\e13b";
|
1033
|
+
}
|
1034
|
+
.icon-star-4:before {
|
1035
|
+
content: "\e13c";
|
1036
|
+
}
|
1037
|
+
.icon-address-book:before {
|
1038
|
+
content: "\e13d";
|
1039
|
+
}
|
1040
|
+
.icon-shit:before {
|
1041
|
+
content: "\e13e";
|
1042
|
+
}
|
1043
|
+
.icon-cone:before {
|
1044
|
+
content: "\e13f";
|
1045
|
+
}
|
1046
|
+
.icon-credit-card:before {
|
1047
|
+
content: "\e140";
|
1048
|
+
}
|
1049
|
+
.icon-type:before {
|
1050
|
+
content: "\e141";
|
1051
|
+
}
|
1052
|
+
.icon-volume:before {
|
1053
|
+
content: "\e142";
|
1054
|
+
}
|
1055
|
+
.icon-volume-2:before {
|
1056
|
+
content: "\e143";
|
1057
|
+
}
|
1058
|
+
.icon-locked-2:before {
|
1059
|
+
content: "\e144";
|
1060
|
+
}
|
1061
|
+
.icon-warning:before {
|
1062
|
+
content: "\e145";
|
1063
|
+
}
|
1064
|
+
.icon-info:before {
|
1065
|
+
content: "\e146";
|
1066
|
+
}
|
1067
|
+
.icon-filter:before {
|
1068
|
+
content: "\e147";
|
1069
|
+
}
|
1070
|
+
.icon-bookmark-3:before {
|
1071
|
+
content: "\e148";
|
1072
|
+
}
|
1073
|
+
.icon-bookmark-4:before {
|
1074
|
+
content: "\e149";
|
1075
|
+
}
|
1076
|
+
.icon-stats:before {
|
1077
|
+
content: "\e14a";
|
1078
|
+
}
|
1079
|
+
.icon-compass-3:before {
|
1080
|
+
content: "\e14b";
|
1081
|
+
}
|
1082
|
+
.icon-keyboard:before {
|
1083
|
+
content: "\e14c";
|
1084
|
+
}
|
1085
|
+
.icon-award-fill:before {
|
1086
|
+
content: "\e14d";
|
1087
|
+
}
|
1088
|
+
.icon-award-stroke:before {
|
1089
|
+
content: "\e14e";
|
1090
|
+
}
|
1091
|
+
.icon-beaker-alt:before {
|
1092
|
+
content: "\e14f";
|
1093
|
+
}
|
1094
|
+
.icon-beaker:before {
|
1095
|
+
content: "\e150";
|
1096
|
+
}
|
1097
|
+
.icon-move-vertical:before {
|
1098
|
+
content: "\e151";
|
1099
|
+
}
|
1100
|
+
.icon-move-horizontal:before {
|
1101
|
+
content: "\e153";
|
1102
|
+
}
|
1103
|
+
.icon-steering-wheel:before {
|
1104
|
+
content: "\e152";
|
1105
|
+
}
|
1106
|
+
.icon-volume-3:before {
|
1107
|
+
content: "\e154";
|
1108
|
+
}
|
1109
|
+
.icon-volume-mute:before {
|
1110
|
+
content: "\e155";
|
1111
|
+
}
|
1112
|
+
.icon-play:before {
|
1113
|
+
content: "\e156";
|
1114
|
+
}
|
1115
|
+
.icon-pause:before {
|
1116
|
+
content: "\e157";
|
1117
|
+
}
|
1118
|
+
.icon-stop:before {
|
1119
|
+
content: "\e158";
|
1120
|
+
}
|
1121
|
+
.icon-eject:before {
|
1122
|
+
content: "\e159";
|
1123
|
+
}
|
1124
|
+
.icon-first:before {
|
1125
|
+
content: "\e15a";
|
1126
|
+
}
|
1127
|
+
.icon-last:before {
|
1128
|
+
content: "\e15b";
|
1129
|
+
}
|
1130
|
+
.icon-play-alt:before {
|
1131
|
+
content: "\e15c";
|
1132
|
+
}
|
1133
|
+
.icon-battery-empty:before {
|
1134
|
+
content: "\e15d";
|
1135
|
+
}
|
1136
|
+
.icon-battery-half:before {
|
1137
|
+
content: "\e15e";
|
1138
|
+
}
|
1139
|
+
.icon-battery-full:before {
|
1140
|
+
content: "\e15f";
|
1141
|
+
}
|
1142
|
+
.icon-battery-charging:before {
|
1143
|
+
content: "\e160";
|
1144
|
+
}
|
1145
|
+
.icon-left-quote:before {
|
1146
|
+
content: "\e161";
|
1147
|
+
}
|
1148
|
+
.icon-right-quote:before {
|
1149
|
+
content: "\e162";
|
1150
|
+
}
|
1151
|
+
.icon-left-quote-alt:before {
|
1152
|
+
content: "\e163";
|
1153
|
+
}
|
1154
|
+
.icon-right-quote-alt:before {
|
1155
|
+
content: "\e164";
|
1156
|
+
}
|
1157
|
+
.icon-smiley:before {
|
1158
|
+
content: "\e165";
|
1159
|
+
}
|
1160
|
+
.icon-umbrella:before {
|
1161
|
+
content: "\e166";
|
1162
|
+
}
|
1163
|
+
.icon-info-2:before {
|
1164
|
+
content: "\e167";
|
1165
|
+
}
|
1166
|
+
.icon-chart-alt:before {
|
1167
|
+
content: "\e168";
|
1168
|
+
}
|