metro-ui-rails 0.15.8.13 → 0.15.8.14
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.
- checksums.yaml +15 -0
- data/Rakefile +6 -4
- data/lib/generators/metro/layout/templates/layout.html.erb +1 -1
- data/lib/metro/ui/rails/version.rb +1 -1
- data/vendor/assets/fonts/metro-ui/iconFont.eot +0 -0
- data/vendor/assets/fonts/metro-ui/iconFont.svg +26 -20
- data/vendor/assets/fonts/metro-ui/iconFont.ttf +0 -0
- data/vendor/assets/fonts/metro-ui/iconFont.woff +0 -0
- data/vendor/assets/javascripts/jquery.mousewheel.min.js +84 -0
- data/vendor/assets/javascripts/metro-ui/calendar.js +557 -0
- data/vendor/assets/javascripts/metro-ui/dialog.js +1 -1
- data/vendor/assets/javascripts/metro-ui/input-control.js +3 -3
- data/vendor/assets/javascripts/metro-ui/slider.js +2 -2
- data/vendor/assets/javascripts/metro-ui/tile-drag.js +5 -1
- data/vendor/assets/javascripts/metro-ui.js +9 -7
- data/vendor/toolkit/metro-ui/accordion.less +3 -2
- data/vendor/toolkit/metro-ui/bricks.less +2 -2
- data/vendor/toolkit/metro-ui/buttons.less +26 -17
- data/vendor/toolkit/metro-ui/calendar.less +81 -0
- data/vendor/toolkit/metro-ui/cards.less +18 -12
- data/vendor/toolkit/metro-ui/carousel.less +2 -3
- data/vendor/toolkit/metro-ui/code.less +2 -2
- data/vendor/toolkit/metro-ui/colors.less +21 -5
- data/vendor/toolkit/metro-ui/dialog.less +16 -16
- data/vendor/toolkit/metro-ui/forms.less +57 -32
- data/vendor/toolkit/metro-ui/grid.less +2 -2
- data/vendor/toolkit/metro-ui/hero.less +2 -2
- data/vendor/toolkit/metro-ui/icons.less +519 -1126
- data/vendor/toolkit/metro-ui/images.less +3 -3
- data/vendor/toolkit/metro-ui/layout.less +13 -9
- data/vendor/toolkit/metro-ui/listview.less +4 -3
- data/vendor/toolkit/metro-ui/menus.less +14 -7
- data/vendor/toolkit/metro-ui/modern-responsive-max480.less +7 -4
- data/vendor/toolkit/metro-ui/modern-responsive-max767.less +8 -3
- data/vendor/toolkit/metro-ui/modern-responsive-max979.less +8 -4
- data/vendor/toolkit/metro-ui/modern-responsive-min1200.less +9 -3
- data/vendor/toolkit/metro-ui/modern-responsive.less +4 -3
- data/vendor/toolkit/metro-ui/modern.less +32 -30
- data/vendor/toolkit/metro-ui/notices.less +6 -2
- data/vendor/toolkit/metro-ui/pagecontrol.less +5 -4
- data/vendor/toolkit/metro-ui/progress.less +4 -3
- data/vendor/toolkit/metro-ui/rating.less +4 -3
- data/vendor/toolkit/metro-ui/routines.less +12 -2
- data/vendor/toolkit/metro-ui/sidebar.less +4 -3
- data/vendor/toolkit/metro-ui/slider.less +2 -2
- data/vendor/toolkit/metro-ui/tables.less +2 -2
- data/vendor/toolkit/metro-ui/theme-dark.less +3 -3
- data/vendor/toolkit/metro-ui/tiles.less +7 -2
- data/vendor/toolkit/metro-ui/typography.less +50 -11
- metadata +8 -12
@@ -1,72 +1,80 @@
|
|
1
1
|
/*
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
2
|
+
* Metro UI CSS
|
3
|
+
* (c) 2012-2013 by Sergey Pimenov
|
4
|
+
* Licensed under the MIT License and Commercial
|
5
|
+
*
|
6
|
+
* Icons.less
|
7
|
+
*
|
8
|
+
*/
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
@IconFontName: "iconFont";
|
11
|
+
@IconFontPath: "metro-ui";
|
12
|
+
@borderColor: #eee;
|
13
|
+
@iconMuted: #eee;
|
13
14
|
|
14
15
|
@font-face {
|
15
|
-
font-family:
|
16
|
-
src:font-url('
|
17
|
-
src:font-url('
|
18
|
-
|
19
|
-
|
20
|
-
|
16
|
+
font-family: @IconFontName;
|
17
|
+
src:font-url('@{IconFontPath}/@{IconFontName}.eot');
|
18
|
+
src:font-url('@{IconFontPath}/@{IconFontName}.eot?#iefix') format('embedded-opentype'),
|
19
|
+
font-url('@{IconFontPath}/@{IconFontName}.svg#iconFont') format('svg'),
|
20
|
+
font-url('@{IconFontPath}/@{IconFontName}.woff') format('woff'),
|
21
|
+
font-url('@{IconFontPath}/@{IconFontName}.ttf') format('truetype');
|
21
22
|
font-weight: normal;
|
22
23
|
font-style: normal;
|
23
24
|
}
|
24
25
|
|
25
|
-
|
26
|
-
[
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
font-weight: normal;
|
31
|
-
font-style: normal;
|
32
|
-
display: inline-block;
|
26
|
+
[class^="icon-"],
|
27
|
+
[class*=" icon-"] {
|
28
|
+
font-family: @IconFontName;
|
29
|
+
font-weight: normal;
|
30
|
+
font-style: normal;
|
33
31
|
text-decoration: inherit;
|
34
|
-
|
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;
|
32
|
+
-webkit-font-smoothing: antialiased;
|
44
33
|
display: inline-block;
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
34
|
+
width: auto;
|
35
|
+
height: auto;
|
36
|
+
line-height: normal;
|
37
|
+
vertical-align: baseline;
|
38
|
+
background-image: none;
|
39
|
+
background-position: 0% 0%;
|
40
|
+
background-repeat: repeat;
|
41
|
+
margin-top: 0;
|
42
|
+
position: relative;
|
49
43
|
}
|
50
44
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
45
|
+
[class^="icon-"]:before,
|
46
|
+
[class*=" icon-"]:before {
|
47
|
+
text-decoration: inherit;
|
48
|
+
display: inline-block;
|
49
|
+
speak: none;
|
55
50
|
}
|
56
51
|
|
57
|
-
|
58
|
-
|
59
|
-
|
52
|
+
a {
|
53
|
+
[class^="icon-"],
|
54
|
+
[class*=" icon-"] {
|
55
|
+
display: inline-block;
|
60
56
|
}
|
61
57
|
}
|
62
58
|
|
63
|
-
.
|
59
|
+
.icon-large:before {
|
60
|
+
vertical-align: -10%;
|
61
|
+
font-size: 4/3em;
|
64
62
|
}
|
65
63
|
|
66
|
-
a {
|
64
|
+
a, button, .button, .page-control > ul > li {
|
67
65
|
[class^="icon-"],
|
68
66
|
[class*=" icon-"] {
|
69
|
-
|
67
|
+
vertical-align: -10%;
|
68
|
+
font-size: 6/5em;
|
69
|
+
display: inline-block;
|
70
|
+
&.icon-large { line-height: .9em; }
|
71
|
+
}
|
72
|
+
|
73
|
+
&.big {
|
74
|
+
[class^="icon-"],
|
75
|
+
[class*=" icon-"] {
|
76
|
+
font-size: 4/3em;
|
77
|
+
}
|
70
78
|
}
|
71
79
|
}
|
72
80
|
|
@@ -74,1095 +82,480 @@ li {
|
|
74
82
|
[class^="icon-"],
|
75
83
|
[class*=" icon-"] {
|
76
84
|
display: inline-block;
|
77
|
-
width: 1.
|
85
|
+
width: 1.2em;
|
78
86
|
text-align: center;
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
width: 1.5*1.25em;
|
87
|
+
&.icon-large {
|
88
|
+
width: 1.25*1.25em;
|
89
|
+
}
|
83
90
|
}
|
84
91
|
}
|
85
92
|
|
86
|
-
.
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
}
|
98
|
-
|
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";
|
93
|
+
ol.icons {
|
94
|
+
list-style-type: none;
|
95
|
+
|
96
|
+
li {
|
97
|
+
|
98
|
+
line-height: 24px;
|
99
|
+
|
100
|
+
[class^="icon-"],
|
101
|
+
[class*=" icon-"] {
|
102
|
+
vertical-align: -10%;
|
103
|
+
font-size: 6/5em;
|
104
|
+
}
|
105
|
+
}
|
1141
106
|
}
|
1142
|
-
|
1143
|
-
|
107
|
+
|
108
|
+
.icon-muted {
|
109
|
+
color: @iconMuted;
|
1144
110
|
}
|
1145
|
-
|
1146
|
-
|
111
|
+
|
112
|
+
// Icon Borders
|
113
|
+
// -------------------------
|
114
|
+
|
115
|
+
.icon-border {
|
116
|
+
border: solid 1px @borderColor;
|
117
|
+
padding: .2em .25em .15em;
|
1147
118
|
}
|
1148
|
-
|
1149
|
-
|
119
|
+
|
120
|
+
// Icon Sizes
|
121
|
+
// -------------------------
|
122
|
+
|
123
|
+
.icon-2x {
|
124
|
+
font-size: 2em;
|
125
|
+
&.icon-border {
|
126
|
+
border-width: 2px;
|
127
|
+
}
|
1150
128
|
}
|
1151
|
-
.icon-
|
1152
|
-
|
129
|
+
.icon-3x {
|
130
|
+
font-size: 3em;
|
131
|
+
&.icon-border {
|
132
|
+
border-width: 3px;
|
133
|
+
}
|
1153
134
|
}
|
1154
|
-
.icon-
|
1155
|
-
|
135
|
+
.icon-4x {
|
136
|
+
font-size: 4em;
|
137
|
+
&.icon-border {
|
138
|
+
border-width: 4px;
|
139
|
+
}
|
1156
140
|
}
|
1157
|
-
|
1158
|
-
|
141
|
+
|
142
|
+
a, button, .button, .page-control > ul > li {
|
143
|
+
[class^="icon-"],
|
144
|
+
[class*=" icon-"] {
|
145
|
+
margin-right: 5px;
|
146
|
+
|
147
|
+
&.right {
|
148
|
+
margin-left: 5px;
|
149
|
+
margin-right: auto;
|
150
|
+
}
|
151
|
+
|
152
|
+
}
|
1159
153
|
}
|
1160
|
-
|
1161
|
-
|
154
|
+
|
155
|
+
.toolbar {
|
156
|
+
[class^="icon-"], [class*=" icon-"] {
|
157
|
+
margin: 0 !important;
|
158
|
+
}
|
1162
159
|
}
|
1163
|
-
|
1164
|
-
|
160
|
+
|
161
|
+
.image-button {
|
162
|
+
[class^="icon-"], [class*=" icon-"] {
|
163
|
+
position: absolute;
|
164
|
+
right: 0;
|
165
|
+
margin-left: 32px;
|
166
|
+
padding: 5px;
|
167
|
+
height: 100%;
|
168
|
+
top: 0px;
|
169
|
+
box-sizing: border-box;
|
170
|
+
border: 1px transparent solid;
|
171
|
+
z-index: 2;
|
172
|
+
margin: 0;
|
173
|
+
font-size: 16px;
|
174
|
+
}
|
1165
175
|
}
|
1166
|
-
|
1167
|
-
|
176
|
+
|
177
|
+
.shortcut {
|
178
|
+
& > .icon {
|
179
|
+
[class^="icon-"], [class*=" icon-"] {
|
180
|
+
font-size: 32px;
|
181
|
+
line-height: 32px;
|
182
|
+
height: 32px;
|
183
|
+
margin: 0 !important;
|
184
|
+
}
|
185
|
+
}
|
1168
186
|
}
|
187
|
+
|
188
|
+
/*************************************** Icons **************************************************/
|
189
|
+
|
190
|
+
.icon-home:before { content: "\e000";}
|
191
|
+
.icon-newspaper:before { content: "\e001";}
|
192
|
+
.icon-pencil:before { content: "\e002";}
|
193
|
+
.icon-droplet:before { content: "\e003";}
|
194
|
+
.icon-pictures:before { content: "\e004";}
|
195
|
+
.icon-camera:before { content: "\e005";}
|
196
|
+
.icon-music:before { content: "\e006";}
|
197
|
+
.icon-film:before { content: "\e007";}
|
198
|
+
.icon-camera-2:before { content: "\e008";}
|
199
|
+
.icon-spades:before { content: "\e009";}
|
200
|
+
.icon-clubs:before { content: "\e00a";}
|
201
|
+
.icon-diamonds:before { content: "\e00b";}
|
202
|
+
.icon-broadcast:before { content: "\e00c";}
|
203
|
+
.icon-mic:before { content: "\e00d";}
|
204
|
+
.icon-book:before { content: "\e00e";}
|
205
|
+
.icon-file:before { content: "\e00f";}
|
206
|
+
.icon-new:before { content: "\e010";}
|
207
|
+
.icon-copy:before { content: "\e011";}
|
208
|
+
.icon-folder:before { content: "\e012";}
|
209
|
+
.icon-folder-2:before { content: "\e013";}
|
210
|
+
.icon-tag:before { content: "\e014";}
|
211
|
+
.icon-cart:before { content: "\e015";}
|
212
|
+
.icon-basket:before { content: "\e016";}
|
213
|
+
.icon-calculate:before { content: "\e017";}
|
214
|
+
.icon-support:before { content: "\e018";}
|
215
|
+
.icon-phone:before { content: "\e019";}
|
216
|
+
.icon-mail:before { content: "\e01a";}
|
217
|
+
.icon-location:before { content: "\e01b";}
|
218
|
+
.icon-compass:before { content: "\e01c";}
|
219
|
+
.icon-history:before { content: "\e01d";}
|
220
|
+
.icon-clock:before { content: "\e01e";}
|
221
|
+
.icon-bell:before { content: "\e01f";}
|
222
|
+
.icon-calendar:before { content: "\e020";}
|
223
|
+
.icon-printer:before { content: "\e021";}
|
224
|
+
.icon-mouse:before { content: "\e022";}
|
225
|
+
.icon-screen:before { content: "\e023";}
|
226
|
+
.icon-laptop:before { content: "\e024";}
|
227
|
+
.icon-mobile:before { content: "\e025";}
|
228
|
+
.icon-cabinet:before { content: "\e026";}
|
229
|
+
.icon-drawer:before { content: "\e027";}
|
230
|
+
.icon-drawer-2:before { content: "\e028";}
|
231
|
+
.icon-box:before { content: "\e029";}
|
232
|
+
.icon-box-add:before { content: "\e02a";}
|
233
|
+
.icon-box-remove:before { content: "\e02b";}
|
234
|
+
.icon-download:before { content: "\e02c";}
|
235
|
+
.icon-upload:before { content: "\e02d";}
|
236
|
+
.icon-database:before { content: "\e02e";}
|
237
|
+
.icon-flip:before { content: "\e02f";}
|
238
|
+
.icon-flip-2:before { content: "\e030";}
|
239
|
+
.icon-undo:before { content: "\e031";}
|
240
|
+
.icon-redo:before { content: "\e032";}
|
241
|
+
.icon-forward:before { content: "\e033";}
|
242
|
+
.icon-reply:before { content: "\e034";}
|
243
|
+
.icon-reply-2:before { content: "\e035";}
|
244
|
+
.icon-comments:before { content: "\e036";}
|
245
|
+
.icon-comments-2:before { content: "\e037";}
|
246
|
+
.icon-comments-3:before { content: "\e038";}
|
247
|
+
.icon-comments-4:before { content: "\e039";}
|
248
|
+
.icon-comments-5:before { content: "\e03a";}
|
249
|
+
.icon-user:before { content: "\e03b";}
|
250
|
+
.icon-user-2:before { content: "\e03c";}
|
251
|
+
.icon-user-3:before { content: "\e03d";}
|
252
|
+
.icon-busy:before { content: "\e03e";}
|
253
|
+
.icon-loading:before { content: "\e03f";}
|
254
|
+
.icon-loading-2:before { content: "\e040";}
|
255
|
+
.icon-search:before { content: "\e041";}
|
256
|
+
.icon-zoom-in:before { content: "\e042";}
|
257
|
+
.icon-zoom-out:before { content: "\e043";}
|
258
|
+
.icon-key:before { content: "\e044";}
|
259
|
+
.icon-key-2:before { content: "\e045";}
|
260
|
+
.icon-locked:before { content: "\e046";}
|
261
|
+
.icon-unlocked:before { content: "\e047";}
|
262
|
+
.icon-wrench:before { content: "\e048";}
|
263
|
+
.icon-equalizer:before { content: "\e049";}
|
264
|
+
.icon-cog:before { content: "\e04a";}
|
265
|
+
.icon-pie:before { content: "\e04b";}
|
266
|
+
.icon-bars:before { content: "\e04c";}
|
267
|
+
.icon-stats-up:before { content: "\e04d";}
|
268
|
+
.icon-gift:before { content: "\e04e";}
|
269
|
+
.icon-trophy:before { content: "\e04f";}
|
270
|
+
.icon-diamond:before { content: "\e050";}
|
271
|
+
.icon-coffee:before { content: "\e051";}
|
272
|
+
.icon-rocket:before { content: "\e052";}
|
273
|
+
.icon-meter-slow:before { content: "\e053";}
|
274
|
+
.icon-meter-medium:before { content: "\e054";}
|
275
|
+
.icon-meter-fast:before { content: "\e055";}
|
276
|
+
.icon-dashboard:before { content: "\e056";}
|
277
|
+
.icon-fire:before { content: "\e057";}
|
278
|
+
.icon-lab:before { content: "\e058";}
|
279
|
+
.icon-remove:before { content: "\e059";}
|
280
|
+
.icon-briefcase:before { content: "\e05a";}
|
281
|
+
.icon-briefcase-2:before { content: "\e05b";}
|
282
|
+
.icon-cars:before { content: "\e05c";}
|
283
|
+
.icon-bus:before { content: "\e05d";}
|
284
|
+
.icon-cube:before { content: "\e05e";}
|
285
|
+
.icon-cube-2:before { content: "\e05f";}
|
286
|
+
.icon-puzzle:before { content: "\e060";}
|
287
|
+
.icon-glasses:before { content: "\e061";}
|
288
|
+
.icon-glasses-2:before { content: "\e062";}
|
289
|
+
.icon-accessibility:before { content: "\e063";}
|
290
|
+
.icon-accessibility-2:before { content: "\e064";}
|
291
|
+
.icon-target:before { content: "\e065";}
|
292
|
+
.icon-target-2:before { content: "\e066";}
|
293
|
+
.icon-lightning:before { content: "\e067";}
|
294
|
+
.icon-power:before { content: "\e068";}
|
295
|
+
.icon-power-2:before { content: "\e069";}
|
296
|
+
.icon-clipboard:before { content: "\e06a";}
|
297
|
+
.icon-clipboard-2:before { content: "\e06b";}
|
298
|
+
.icon-playlist:before { content: "\e06c";}
|
299
|
+
.icon-grid-view:before { content: "\e06d";}
|
300
|
+
.icon-tree-view:before { content: "\e06e";}
|
301
|
+
.icon-cloud:before { content: "\e06f";}
|
302
|
+
.icon-cloud-2:before { content: "\e070";}
|
303
|
+
.icon-download-2:before { content: "\e071";}
|
304
|
+
.icon-upload-2:before { content: "\e072";}
|
305
|
+
.icon-upload-3:before { content: "\e073";}
|
306
|
+
.icon-link:before { content: "\e074";}
|
307
|
+
.icon-link-2:before { content: "\e075";}
|
308
|
+
.icon-flag:before { content: "\e076";}
|
309
|
+
.icon-flag-2:before { content: "\e077";}
|
310
|
+
.icon-attachment:before { content: "\e078";}
|
311
|
+
.icon-eye:before { content: "\e079";}
|
312
|
+
.icon-bookmark:before { content: "\e07a";}
|
313
|
+
.icon-bookmark-2:before { content: "\e07b";}
|
314
|
+
.icon-star:before { content: "\e07c";}
|
315
|
+
.icon-star-2:before { content: "\e07d";}
|
316
|
+
.icon-star-3:before { content: "\e07e";}
|
317
|
+
.icon-heart:before { content: "\e07f";}
|
318
|
+
.icon-heart-2:before { content: "\e080";}
|
319
|
+
.icon-thumbs-up:before { content: "\e081";}
|
320
|
+
.icon-thumbs-down:before { content: "\e082";}
|
321
|
+
.icon-plus:before { content: "\e083";}
|
322
|
+
.icon-minus:before { content: "\e084";}
|
323
|
+
.icon-help:before { content: "\e085";}
|
324
|
+
.icon-help-2:before { content: "\e086";}
|
325
|
+
.icon-blocked:before { content: "\e087";}
|
326
|
+
.icon-cancel:before { content: "\e088";}
|
327
|
+
.icon-cancel-2:before { content: "\e089";}
|
328
|
+
.icon-checkmark:before { content: "\e08a";}
|
329
|
+
.icon-minus-2:before { content: "\e08b";}
|
330
|
+
.icon-plus-2:before { content: "\e08c";}
|
331
|
+
.icon-enter:before { content: "\e08d";}
|
332
|
+
.icon-exit:before { content: "\e08e";}
|
333
|
+
.icon-loop:before { content: "\e08f";}
|
334
|
+
.icon-arrow-up-left:before { content: "\e090";}
|
335
|
+
.icon-arrow-up:before { content: "\e091";}
|
336
|
+
.icon-arrow-up-right:before { content: "\e092";}
|
337
|
+
.icon-arrow-right:before { content: "\e093";}
|
338
|
+
.icon-arrow-down-right:before { content: "\e094";}
|
339
|
+
.icon-arrow-down:before { content: "\e095";}
|
340
|
+
.icon-arrow-down-left:before { content: "\e096";}
|
341
|
+
.icon-arrow-left:before { content: "\e097";}
|
342
|
+
.icon-arrow-up-2:before { content: "\e098";}
|
343
|
+
.icon-arrow-right-2:before { content: "\e099";}
|
344
|
+
.icon-arrow-down-2:before { content: "\e09a";}
|
345
|
+
.icon-arrow-left-2:before { content: "\e09b";}
|
346
|
+
.icon-arrow-up-3:before { content: "\e09c";}
|
347
|
+
.icon-arrow-right-3:before { content: "\e09d";}
|
348
|
+
.icon-arrow-down-3:before { content: "\e09e";}
|
349
|
+
.icon-arrow-left-3:before { content: "\e09f";}
|
350
|
+
.icon-menu:before { content: "\e0a0";}
|
351
|
+
.icon-enter-2:before { content: "\e0a1";}
|
352
|
+
.icon-backspace:before { content: "\e0a2";}
|
353
|
+
.icon-backspace-2:before { content: "\e0a3";}
|
354
|
+
.icon-tab:before { content: "\e0a4";}
|
355
|
+
.icon-tab-2:before { content: "\e0a5";}
|
356
|
+
.icon-checkbox:before { content: "\e0a6";}
|
357
|
+
.icon-checkbox-unchecked:before { content: "\e0a7";}
|
358
|
+
.icon-checkbox-partial:before { content: "\e0a8";}
|
359
|
+
.icon-radio-checked:before { content: "\e0a9";}
|
360
|
+
.icon-radio-unchecked:before { content: "\e0aa";}
|
361
|
+
.icon-font:before { content: "\e0ab";}
|
362
|
+
.icon-paragraph-left:before { content: "\e0ac";}
|
363
|
+
.icon-paragraph-center:before { content: "\e0ad";}
|
364
|
+
.icon-paragraph-right:before { content: "\e0ae";}
|
365
|
+
.icon-paragraph-justify:before { content: "\e0af";}
|
366
|
+
.icon-left-to-right:before { content: "\e0b0";}
|
367
|
+
.icon-right-to-left:before { content: "\e0b1";}
|
368
|
+
.icon-share:before { content: "\e0b2";}
|
369
|
+
.icon-new-tab:before { content: "\e0b3";}
|
370
|
+
.icon-new-tab-2:before { content: "\e0b4";}
|
371
|
+
.icon-embed:before { content: "\e0b5";}
|
372
|
+
.icon-code:before { content: "\e0b6";}
|
373
|
+
.icon-bluetooth:before { content: "\e0b7";}
|
374
|
+
.icon-share-2:before { content: "\e0b8";}
|
375
|
+
.icon-share-3:before { content: "\e0b9";}
|
376
|
+
.icon-mail-2:before { content: "\e0ba";}
|
377
|
+
.icon-google:before { content: "\e0bb";}
|
378
|
+
.icon-google-plus:before { content: "\e0bc";}
|
379
|
+
.icon-google-drive:before { content: "\e0bd";}
|
380
|
+
.icon-facebook:before { content: "\e0be";}
|
381
|
+
.icon-instagram:before { content: "\e0bf";}
|
382
|
+
.icon-twitter:before { content: "\e0c0";}
|
383
|
+
.icon-feed:before { content: "\e0c1";}
|
384
|
+
.icon-youtube:before { content: "\e0c2";}
|
385
|
+
.icon-vimeo:before { content: "\e0c3";}
|
386
|
+
.icon-flickr:before { content: "\e0c4";}
|
387
|
+
.icon-picassa:before { content: "\e0c5";}
|
388
|
+
.icon-dribbble:before { content: "\e0c6";}
|
389
|
+
.icon-deviantart:before { content: "\e0c7";}
|
390
|
+
.icon-github:before { content: "\e0c8";}
|
391
|
+
.icon-github-2:before { content: "\e0c9";}
|
392
|
+
.icon-github-3:before { content: "\e0ca";}
|
393
|
+
.icon-github-4:before { content: "\e0cb";}
|
394
|
+
.icon-github-5:before { content: "\e0cc";}
|
395
|
+
.icon-git:before { content: "\e0cd";}
|
396
|
+
.icon-github-6:before { content: "\e0ce";}
|
397
|
+
.icon-wordpress:before { content: "\e0cf";}
|
398
|
+
.icon-joomla:before { content: "\e0d0";}
|
399
|
+
.icon-blogger:before { content: "\e0d1";}
|
400
|
+
.icon-tumblr:before { content: "\e0d2";}
|
401
|
+
.icon-yahoo:before { content: "\e0d3";}
|
402
|
+
.icon-amazon:before { content: "\e0d4";}
|
403
|
+
.icon-tux:before { content: "\e0d5";}
|
404
|
+
.icon-apple:before { content: "\e0d6";}
|
405
|
+
.icon-finder:before { content: "\e0d7";}
|
406
|
+
.icon-android:before { content: "\e0d8";}
|
407
|
+
.icon-windows:before { content: "\e0d9";}
|
408
|
+
.icon-soundcloud:before { content: "\e0da";}
|
409
|
+
.icon-skype:before { content: "\e0db";}
|
410
|
+
.icon-reddit:before { content: "\e0dc";}
|
411
|
+
.icon-linkedin:before { content: "\e0dd";}
|
412
|
+
.icon-lastfm:before { content: "\e0de";}
|
413
|
+
.icon-delicious:before { content: "\e0df";}
|
414
|
+
.icon-stumbleupon:before { content: "\e0e0";}
|
415
|
+
.icon-pinterest:before { content: "\e0e1";}
|
416
|
+
.icon-xing:before { content: "\e0e2";}
|
417
|
+
.icon-flattr:before { content: "\e0e3";}
|
418
|
+
.icon-foursquare:before { content: "\e0e4";}
|
419
|
+
.icon-paypal:before { content: "\e0e5";}
|
420
|
+
.icon-yelp:before { content: "\e0e6";}
|
421
|
+
.icon-libreoffice:before { content: "\e0e7";}
|
422
|
+
.icon-file-pdf:before { content: "\e0e8";}
|
423
|
+
.icon-file-openoffice:before { content: "\e0e9";}
|
424
|
+
.icon-file-word:before { content: "\e0ea";}
|
425
|
+
.icon-file-excel:before { content: "\e0eb";}
|
426
|
+
.icon-file-powerpoint:before { content: "\e0ec";}
|
427
|
+
.icon-file-zip:before { content: "\e0ed";}
|
428
|
+
.icon-file-xml:before { content: "\e0ee";}
|
429
|
+
.icon-file-css:before { content: "\e0ef";}
|
430
|
+
.icon-html5:before { content: "\e0f0";}
|
431
|
+
.icon-html5-2:before { content: "\e0f1";}
|
432
|
+
.icon-css3:before { content: "\e0f2";}
|
433
|
+
.icon-chrome:before { content: "\e0f3";}
|
434
|
+
.icon-firefox:before { content: "\e0f4";}
|
435
|
+
.icon-IE:before { content: "\e0f5";}
|
436
|
+
.icon-opera:before { content: "\e0f6";}
|
437
|
+
.icon-safari:before { content: "\e0f7";}
|
438
|
+
.icon-IcoMoon:before { content: "\e0f8";}
|
439
|
+
.icon-sunrise:before { content: "\e0f9";}
|
440
|
+
.icon-sun:before { content: "\e0fa";}
|
441
|
+
.icon-moon:before { content: "\e0fb";}
|
442
|
+
.icon-sun-2:before { content: "\e0fc";}
|
443
|
+
.icon-windy:before { content: "\e0fd";}
|
444
|
+
.icon-wind:before { content: "\e0fe";}
|
445
|
+
.icon-snowflake:before { content: "\e0ff";}
|
446
|
+
.icon-cloudy:before { content: "\e100";}
|
447
|
+
.icon-cloud-3:before { content: "\e101";}
|
448
|
+
.icon-weather:before { content: "\e102";}
|
449
|
+
.icon-weather-2:before { content: "\e103";}
|
450
|
+
.icon-weather-3:before { content: "\e104";}
|
451
|
+
.icon-lines:before { content: "\e105";}
|
452
|
+
.icon-cloud-4:before { content: "\e106";}
|
453
|
+
.icon-lightning-2:before { content: "\e107";}
|
454
|
+
.icon-lightning-3:before { content: "\e108";}
|
455
|
+
.icon-rainy:before { content: "\e109";}
|
456
|
+
.icon-rainy-2:before { content: "\e10a";}
|
457
|
+
.icon-windy-2:before { content: "\e10b";}
|
458
|
+
.icon-windy-3:before { content: "\e10c";}
|
459
|
+
.icon-snowy:before { content: "\e10d";}
|
460
|
+
.icon-snowy-2:before { content: "\e10e";}
|
461
|
+
.icon-snowy-3:before { content: "\e10f";}
|
462
|
+
.icon-weather-4:before { content: "\e110";}
|
463
|
+
.icon-cloudy-2:before { content: "\e111";}
|
464
|
+
.icon-cloud-5:before { content: "\e112";}
|
465
|
+
.icon-lightning-4:before { content: "\e113";}
|
466
|
+
.icon-sun-3:before { content: "\e114";}
|
467
|
+
.icon-moon-2:before { content: "\e115";}
|
468
|
+
.icon-cloudy-3:before { content: "\e116";}
|
469
|
+
.icon-cloud-6:before { content: "\e117";}
|
470
|
+
.icon-cloud-7:before { content: "\e118";}
|
471
|
+
.icon-lightning-5:before { content: "\e119";}
|
472
|
+
.icon-rainy-3:before { content: "\e11a";}
|
473
|
+
.icon-rainy-4:before { content: "\e11b";}
|
474
|
+
.icon-windy-4:before { content: "\e11c";}
|
475
|
+
.icon-windy-5:before { content: "\e11d";}
|
476
|
+
.icon-snowy-4:before { content: "\e11e";}
|
477
|
+
.icon-snowy-5:before { content: "\e11f";}
|
478
|
+
.icon-weather-5:before { content: "\e120";}
|
479
|
+
.icon-cloudy-4:before { content: "\e121";}
|
480
|
+
.icon-lightning-6:before { content: "\e122";}
|
481
|
+
.icon-thermometer:before { content: "\e123";}
|
482
|
+
.icon-compass-2:before { content: "\e124";}
|
483
|
+
.icon-none:before { content: "\e125";}
|
484
|
+
.icon-Celsius:before { content: "\e126";}
|
485
|
+
.icon-Fahrenheit:before { content: "\e127";}
|
486
|
+
.icon-forrst:before { content: "\e128";}
|
487
|
+
.icon-headphones:before { content: "\e129";}
|
488
|
+
.icon-bug:before { content: "\e12a";}
|
489
|
+
.icon-cart-2:before { content: "\e12b";}
|
490
|
+
.icon-earth:before { content: "\e12c";}
|
491
|
+
.icon-battery:before { content: "\e12d";}
|
492
|
+
.icon-list:before { content: "\e12e";}
|
493
|
+
.icon-grid:before { content: "\e12f";}
|
494
|
+
.icon-alarm:before { content: "\e130";}
|
495
|
+
.icon-location-2:before { content: "\e131";}
|
496
|
+
.icon-pointer:before { content: "\e132";}
|
497
|
+
.icon-diary:before { content: "\e133";}
|
498
|
+
.icon-eye-2:before { content: "\e134";}
|
499
|
+
.icon-console:before { content: "\e135";}
|
500
|
+
.icon-location-3:before { content: "\e136";}
|
501
|
+
.icon-move:before { content: "\e137";}
|
502
|
+
.icon-gift-2:before { content: "\e138";}
|
503
|
+
.icon-monitor:before { content: "\e139";}
|
504
|
+
.icon-mobile-2:before { content: "\e13a";}
|
505
|
+
.icon-switch:before { content: "\e13b";}
|
506
|
+
.icon-star-4:before { content: "\e13c";}
|
507
|
+
.icon-address-book:before { content: "\e13d";}
|
508
|
+
.icon-shit:before { content: "\e13e";}
|
509
|
+
.icon-cone:before { content: "\e13f";}
|
510
|
+
.icon-credit-card:before { content: "\e140";}
|
511
|
+
.icon-type:before { content: "\e141";}
|
512
|
+
.icon-volume:before { content: "\e142";}
|
513
|
+
.icon-volume-2:before { content: "\e143";}
|
514
|
+
.icon-locked-2:before { content: "\e144";}
|
515
|
+
.icon-warning:before { content: "\e145";}
|
516
|
+
.icon-info:before { content: "\e146";}
|
517
|
+
.icon-filter:before { content: "\e147";}
|
518
|
+
.icon-bookmark-3:before { content: "\e148";}
|
519
|
+
.icon-bookmark-4:before { content: "\e149";}
|
520
|
+
.icon-stats:before { content: "\e14a";}
|
521
|
+
.icon-compass-3:before { content: "\e14b";}
|
522
|
+
.icon-keyboard:before { content: "\e14c";}
|
523
|
+
.icon-award-fill:before { content: "\e14d";}
|
524
|
+
.icon-award-stroke:before { content: "\e14e";}
|
525
|
+
.icon-beaker-alt:before { content: "\e14f";}
|
526
|
+
.icon-beaker:before { content: "\e150";}
|
527
|
+
.icon-move-vertical:before { content: "\e151";}
|
528
|
+
.icon-move-horizontal:before { content: "\e153";}
|
529
|
+
.icon-steering-wheel:before { content: "\e152";}
|
530
|
+
.icon-volume-3:before { content: "\e154";}
|
531
|
+
.icon-volume-mute:before { content: "\e155";}
|
532
|
+
.icon-play:before { content: "\e156";}
|
533
|
+
.icon-pause:before { content: "\e157";}
|
534
|
+
.icon-stop:before { content: "\e158";}
|
535
|
+
.icon-eject:before { content: "\e159";}
|
536
|
+
.icon-first:before { content: "\e15a";}
|
537
|
+
.icon-last:before { content: "\e15b";}
|
538
|
+
.icon-play-alt:before { content: "\e15c";}
|
539
|
+
.icon-battery-empty:before { content: "\e15d";}
|
540
|
+
.icon-battery-half:before { content: "\e15e";}
|
541
|
+
.icon-battery-full:before { content: "\e15f";}
|
542
|
+
.icon-battery-charging:before { content: "\e160";}
|
543
|
+
.icon-left-quote:before { content: "\e161";}
|
544
|
+
.icon-right-quote:before { content: "\e162";}
|
545
|
+
.icon-left-quote-alt:before { content: "\e163";}
|
546
|
+
.icon-right-quote-alt:before { content: "\e164";}
|
547
|
+
.icon-smiley:before { content: "\e165";}
|
548
|
+
.icon-umbrella:before { content: "\e166";}
|
549
|
+
.icon-info-2:before { content: "\e167";}
|
550
|
+
.icon-chart-alt:before { content: "\e168";}
|
551
|
+
.icon-save:before { content: "\e169";}
|
552
|
+
|
553
|
+
/*
|
554
|
+
Icon Set: Broccolidry -- http://dribbble.com/shots/587469-Free-16px-Broccolidryiconsaniconsetitisfullof-icons
|
555
|
+
License: Aribitrary -- http://licence.visualidiot.com/
|
556
|
+
Icon Set: Meteocons -- http://www.alessioatzeni.com/meteocons/
|
557
|
+
License: Arbitrary -- http://www.alessioatzeni.com/meteocons/#about
|
558
|
+
Icon Set: IcoMoon - Free -- http://keyamoon.com/icomoon/
|
559
|
+
License: CC BY-SA 3.0 -- http://creativecommons.org/licenses/by-sa/3.0/
|
560
|
+
*/
|
561
|
+
|