ellipsis-compass 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +15 -0
  2. data/lib/ellipsis-compass.rb +4 -0
  3. data/stylesheets/animation/_animate.scss +1206 -0
  4. data/stylesheets/animation/_animation.scss +121 -0
  5. data/stylesheets/animation/_animations.scss +771 -0
  6. data/stylesheets/animation/_transit.scss +425 -0
  7. data/stylesheets/animation/_transitions.scss +320 -0
  8. data/stylesheets/base/_breakpoints.scss +64 -0
  9. data/stylesheets/base/_document.scss +219 -0
  10. data/stylesheets/base/_global.scss +88 -0
  11. data/stylesheets/base/_normalize.scss +406 -0
  12. data/stylesheets/component/_component.scss +939 -0
  13. data/stylesheets/component/_ui.scss +955 -0
  14. data/stylesheets/flexbox/_flexbox.scss +305 -0
  15. data/stylesheets/font/_icons.scss +1492 -0
  16. data/stylesheets/font/_ubuntu.scss +38 -0
  17. data/stylesheets/form/_form.scss +836 -0
  18. data/stylesheets/grid/_grid.scss +312 -0
  19. data/stylesheets/helpers/_all.scss +8 -0
  20. data/stylesheets/helpers/_component.scss +177 -0
  21. data/stylesheets/helpers/_convenience.scss +277 -0
  22. data/stylesheets/helpers/_functions.scss +427 -0
  23. data/stylesheets/helpers/_grid.scss +39 -0
  24. data/stylesheets/helpers/_hardware-acceleration.scss +22 -0
  25. data/stylesheets/helpers/_mixins.scss +207 -0
  26. data/stylesheets/helpers/_touch.scss +107 -0
  27. data/stylesheets/helpers/_visibility.scss +138 -0
  28. data/stylesheets/image/_images.scss +19 -0
  29. data/stylesheets/imports/elements/_autosearch.scss +11 -0
  30. data/stylesheets/imports/elements/_badge.scss +23 -0
  31. data/stylesheets/imports/elements/_barchart.scss +254 -0
  32. data/stylesheets/imports/elements/_form.scss +8 -0
  33. data/stylesheets/imports/elements/_loginform.scss +6 -0
  34. data/stylesheets/imports/elements/_modellist.scss +14 -0
  35. data/stylesheets/imports/elements/_pluralize.scss +8 -0
  36. data/stylesheets/imports/elements/_signupform.scss +6 -0
  37. data/stylesheets/imports/elements/_slidenotification.scss +65 -0
  38. data/stylesheets/imports/elements/_stickyreveal.scss +44 -0
  39. data/stylesheets/imports/elements/_template.scss +7 -0
  40. data/stylesheets/imports/elements/_veneer.scss +36 -0
  41. data/stylesheets/shared/_shared.scss +282 -0
  42. data/stylesheets/touch/ui/_drawer.scss +41 -0
  43. data/stylesheets/touch/ui/_dropdown.scss +58 -0
  44. data/stylesheets/touch/ui/_menu.scss +131 -0
  45. data/stylesheets/touch/ui/_navbar.scss +44 -0
  46. data/stylesheets/touch/ui/_toggle.scss +127 -0
  47. data/stylesheets/touch/ui/_topbar.scss +48 -0
  48. data/stylesheets/typography/_typography.scss +746 -0
  49. data/stylesheets/ui/_autocomplete.scss +117 -0
  50. data/stylesheets/ui/_badge.scss +73 -0
  51. data/stylesheets/ui/_box.scss +78 -0
  52. data/stylesheets/ui/_breadcrumb.scss +64 -0
  53. data/stylesheets/ui/_button.scss +395 -0
  54. data/stylesheets/ui/_carousel.scss +284 -0
  55. data/stylesheets/ui/_collapsible.scss +61 -0
  56. data/stylesheets/ui/_container.scss +297 -0
  57. data/stylesheets/ui/_datepicker.scss +218 -0
  58. data/stylesheets/ui/_drawer.scss +96 -0
  59. data/stylesheets/ui/_dropdown.scss +394 -0
  60. data/stylesheets/ui/_file.scss +147 -0
  61. data/stylesheets/ui/_gallery.scss +219 -0
  62. data/stylesheets/ui/_label.scss +167 -0
  63. data/stylesheets/ui/_loading.scss +70 -0
  64. data/stylesheets/ui/_mediaobject.scss +108 -0
  65. data/stylesheets/ui/_menu.scss +287 -0
  66. data/stylesheets/ui/_menutab.scss +175 -0
  67. data/stylesheets/ui/_modal.scss +47 -0
  68. data/stylesheets/ui/_navbar.scss +315 -0
  69. data/stylesheets/ui/_notification.scss +154 -0
  70. data/stylesheets/ui/_pagination.scss +137 -0
  71. data/stylesheets/ui/_parallax.scss +233 -0
  72. data/stylesheets/ui/_popover.scss +3 -0
  73. data/stylesheets/ui/_rating.scss +106 -0
  74. data/stylesheets/ui/_sidebar.scss +110 -0
  75. data/stylesheets/ui/_slidingpanel.scss +57 -0
  76. data/stylesheets/ui/_social.scss +213 -0
  77. data/stylesheets/ui/_sticky.scss +9 -0
  78. data/stylesheets/ui/_table.scss +423 -0
  79. data/stylesheets/ui/_tabs.scss +242 -0
  80. data/stylesheets/ui/_toggle.scss +49 -0
  81. data/stylesheets/ui/_tooltip.scss +57 -0
  82. data/stylesheets/ui/_topbar.scss +210 -0
  83. data/stylesheets/ui/_tree.scss +3 -0
  84. data/stylesheets/ui/_window.scss +205 -0
  85. metadata +140 -0
@@ -0,0 +1,305 @@
1
+ @import "compass/css3/shared";
2
+
3
+ $flexbox-legacy-support: -moz, -webkit, not -o, not -ms, not -khtml, not official;
4
+ $flexbox-ie-support: not -moz, not -webkit, not -o, -ms, not -khtml, not official;
5
+ $flexbox-standard-support: not -moz, -webkit, not -o, not -ms, not -khtml, official;
6
+ $flexbox-display-warnings: true !default;
7
+
8
+ // Enabling flexbox: setting an element to be a flex container
9
+ @mixin display-flex() {
10
+ @include experimental-value(display, box, $flexbox-legacy-support...);
11
+ @include experimental-value(display, flexbox, $flexbox-ie-support...);
12
+ @include experimental-value(display, flex, $flexbox-standard-support...);
13
+ }
14
+
15
+ @mixin display-inline-flex() {
16
+ @include experimental-value(display, inline-box, $flexbox-legacy-support...);
17
+ @include experimental-value(display, inline-flexbox, $flexbox-ie-support...);
18
+ @include experimental-value(display, inline-flex, $flexbox-standard-support...);
19
+ }
20
+
21
+ // Axis alignment: specifying alignment of items along the main flexbox axis
22
+
23
+ $default-justify-content: flex-start !default;
24
+
25
+ @mixin justify-content(
26
+ $justification: $default-justify-content
27
+ ) {
28
+ @include _flex-property(justify-content, $justification, flex-pack, box-pack);
29
+ }
30
+
31
+ // Cross-axis alignment: specifying alignment of items along the cross-axis
32
+
33
+ $default-align-items: stretch !default;
34
+
35
+ @mixin align-items(
36
+ $alignment: $default-align-items
37
+ ) {
38
+ @include _flex-property(align-items, $alignment, flex-align, box-align);
39
+ }
40
+
41
+ // Individual cross-axis alignment: override to align individual items along the cross-axis
42
+
43
+ $default-align-self: stretch !default;
44
+
45
+ @mixin align-self(
46
+ $alignment: $default-align-self
47
+ ) {
48
+ @include _flex-property(align-self, $alignment, flex-item-align, null);
49
+ }
50
+
51
+ // Flex line alignment: specifying alignment of flex lines along the cross-axis
52
+
53
+ $default-align-content: stretch !default;
54
+
55
+ @mixin align-content(
56
+ $alignment: $default-align-content
57
+ ) {
58
+ @include _flex-property(align-content, $alignment, flex-line-pack, null);
59
+ }
60
+
61
+ // Display order: specifying the order of flex items
62
+
63
+ $default-order: 1 !default;
64
+
65
+ @mixin order(
66
+ $order: $default-order
67
+ ) {
68
+ @include _flex-property(order, $order, flex-order, box-ordinal-group);
69
+ }
70
+
71
+ // Flexibility: specifying how the size of items flex
72
+
73
+ $default-flex: 1 !default;
74
+
75
+ @mixin flex(
76
+ $amount: $default-flex
77
+ ) {
78
+ @include _flex-property(flex, $amount, flex, box-flex);
79
+ }
80
+
81
+ $default-flex-grow: $default-flex !default;
82
+
83
+ @mixin flex-grow(
84
+ $amount: $default-flex-grow
85
+ ) {
86
+ @include _flex-property(flex-grow, $amount);
87
+ }
88
+
89
+ $default-flex-shrink: $default-flex !default;
90
+
91
+ @mixin flex-shrink(
92
+ $amount: $default-flex-shrink
93
+ ) {
94
+ @include _flex-property(flex-shrink, $amount);
95
+ }
96
+
97
+ $default-flex-basis: $default-flex !default;
98
+
99
+ @mixin flex-basis(
100
+ $amount: $default-flex-basis
101
+ ) {
102
+ @include _flex-property(flex-basis, $amount);
103
+ }
104
+
105
+ // Direction: specifying the direction of the main flexbox axis
106
+
107
+ $default-flex-direction: row !default;
108
+
109
+ @mixin flex-direction(
110
+ $direction: $default-flex-direction
111
+ ) {
112
+ @include _flex-property(flex-direction, $direction, flex-direction, box-orient);
113
+ }
114
+
115
+ // Wrapping: specifying if and how flex items wrap along the cross-axis
116
+
117
+ $default-flex-wrap: nowrap !default;
118
+
119
+ @mixin flex-wrap(
120
+ $wrap: $default-flex-wrap
121
+ ) {
122
+ @include _flex-property(flex-wrap, $wrap, flex-wrap, box-lines);
123
+ }
124
+
125
+ // Shorthand for flex-direction & flex-wrap
126
+
127
+ $default-flex-flow: $default-flex-direction $default-flex-wrap !default;
128
+
129
+ @mixin flex-flow(
130
+ $flow: $default-flex-flow
131
+ ) {
132
+ @include _flex-property(flex-flow, $flow, flex-flow, null);
133
+ }
134
+
135
+ // Internal functions; not intended to be called directly
136
+
137
+ @mixin _flex-property($standard-property, $value, $ie-property: null, $legacy-property: null) {
138
+ $standard-property: unquote($standard-property);
139
+ $ie-property: unquote($ie-property);
140
+ $legacy-property: unquote($legacy-property);
141
+ $value: unquote($value);
142
+ $standard-value: $value;
143
+ $ie-value: _flex-value($standard-property, $value, ie);
144
+ $legacy-value: _flex-value($standard-property, $value, legacy);
145
+
146
+ // Safari, Firefox (buggy), iOS, Android browser, older WebKit browsers
147
+ @if $legacy-property {
148
+ @if $legacy-value {
149
+ @if $standard-property == flex-direction and ($value == row-reverse or $value == column-reverse) {
150
+ @include experimental(box-direction, reverse, $flexbox-legacy-support...);
151
+ }
152
+ @include experimental($legacy-property, $legacy-value, $flexbox-legacy-support...);
153
+ }
154
+ } @else if($flexbox-display-warnings) {
155
+ @warn _support-warning($standard-property, "legacy");
156
+ }
157
+
158
+ // IE 10
159
+ @if $ie-property and $ie-value {
160
+ @include experimental($ie-property, $ie-value, $flexbox-ie-support...);
161
+ }
162
+
163
+ // Chrome 21+, Opera 12.1, Firefox 22+
164
+ @include experimental($standard-property, $standard-value, $flexbox-standard-support...);
165
+ }
166
+
167
+ @function _flex-value($property, $value, $syntax) {
168
+ $flexbox-new-value: $value;
169
+ $flexbox-warning: false;
170
+
171
+ @if $property == justify-content {
172
+ @if $value == flex-start {
173
+ @if $syntax == legacy or $syntax == ie {
174
+ $flexbox-new-value: start;
175
+ }
176
+ }
177
+ @else if $value == flex-end {
178
+ @if $syntax == legacy or $syntax == ie {
179
+ $flexbox-new-value: end;
180
+ }
181
+ }
182
+ @else if $value == space-between {
183
+ @if $syntax == legacy {
184
+ $flexbox-warning: "\"#{$property}: #{$value}\" does not work in the legacy Firefox implementation";
185
+ }
186
+ @if $syntax == legacy or $syntax == ie {
187
+ $flexbox-new-value: justify;
188
+ }
189
+ }
190
+ @else if $value == space-around {
191
+ @if $syntax == legacy {
192
+ $flexbox-new-value: null;
193
+ } @else if $syntax == ie {
194
+ $flexbox-new-value: distribute;
195
+ }
196
+ }
197
+ }
198
+
199
+ @if $property == align-items {
200
+ @if $value == flex-start {
201
+ @if $syntax == legacy or $syntax == ie {
202
+ $flexbox-new-value: start;
203
+ }
204
+ }
205
+ @else if $value == flex-end {
206
+ @if $syntax == legacy or $syntax == ie {
207
+ $flexbox-new-value: end;
208
+ }
209
+ }
210
+ }
211
+
212
+ @if $property == align-self {
213
+ @if $value == flex-start {
214
+ @if $syntax == ie {
215
+ $flexbox-new-value: start;
216
+ }
217
+ }
218
+ @else if $value == flex-end {
219
+ @if $syntax == ie {
220
+ $flexbox-new-value: end;
221
+ }
222
+ }
223
+ }
224
+
225
+ @if $property == align-content {
226
+ @if $value == flex-start {
227
+ @if $syntax == ie {
228
+ $flexbox-new-value: start;
229
+ }
230
+ }
231
+ @else if $value == flex-end {
232
+ @if $syntax == ie {
233
+ $flexbox-new-value: end;
234
+ }
235
+ }
236
+ @else if $value == space-between {
237
+ @if $syntax == ie {
238
+ $flexbox-new-value: justify;
239
+ }
240
+ }
241
+ @else if $value == space-around {
242
+ @if $syntax == ie {
243
+ $flexbox-new-value: distribute;
244
+ }
245
+ }
246
+ }
247
+
248
+ @if $property == order {
249
+ @if $syntax == legacy and $value < 1 {
250
+ $flexbox-warning: "\"#{$property}\" must be a positive integer in the \"#{$syntax}\" syntax";
251
+ $flexbox-new-value: null;
252
+ }
253
+ }
254
+
255
+ @if $property == flex {
256
+ @if $syntax == legacy and type_of($value) != number {
257
+ $flexbox-warning: "\"#{$property}\" only accepts an integer in the \"#{$syntax}\" syntax";
258
+ $flexbox-new-value: null;
259
+ }
260
+ }
261
+
262
+ @if $property == flex-direction {
263
+ @if $value == row or $value == row-reverse {
264
+ @if $syntax == legacy {
265
+ $flexbox-new-value: horizontal;
266
+ }
267
+ }
268
+ @else if $value == column or $value == column-reverse {
269
+ @if $syntax == legacy {
270
+ $flexbox-new-value: vertical;
271
+ }
272
+ }
273
+ }
274
+
275
+ @if $property == flex-wrap {
276
+ @if $value == nowrap {
277
+ @if $syntax == legacy {
278
+ $flexbox-new-value: single;
279
+ }
280
+ }
281
+ @else if $value == wrap {
282
+ @if $syntax == legacy {
283
+ @if($flexbox-display-warnings) {
284
+ @warn "\"#{$property}: #{$value}\" is not supported consistently in the \"#{$syntax}\" syntax";
285
+ }
286
+ $flexbox-new-value: multiple;
287
+ }
288
+ }
289
+ @else if $value == wrap-reverse {
290
+ @if $syntax == legacy {
291
+ $flexbox-new-value: null;
292
+ }
293
+ }
294
+ }
295
+
296
+ @if ($flexbox-new-value == null or $flexbox-warning) and $flexbox-display-warnings {
297
+ @warn if($flexbox-warning, $flexbox-warning, _support-warning("#{$property}: #{$value}", $syntax));
298
+ }
299
+
300
+ @return $flexbox-new-value;
301
+ }
302
+
303
+ @function _support-warning($value, $syntax) {
304
+ @return "\"#{$value}\" not supported in the #{$syntax} syntax"
305
+ }
@@ -0,0 +1,1492 @@
1
+ @mixin font-icons() {
2
+ @font-face {
3
+ font-family: 'ellipsis';
4
+ src:url('fonts/ellipsis.eot');
5
+ src:url('fonts/ellipsis.eot?#iefix') format('embedded-opentype'),
6
+ url('fonts/ellipsis.woff') format('woff'),
7
+ url('fonts/ellipsis.ttf') format('truetype'),
8
+ url('fonts/ellipsis.svg#ellipsis') format('svg');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ }
12
+
13
+ /* Use the following CSS code if you want to use data attributes for inserting your icons */
14
+ [data-icon]:before {
15
+ font-family: 'ellipsis';
16
+ content: attr(data-icon);
17
+ speak: none;
18
+ font-weight: normal;
19
+ font-variant: normal;
20
+ text-transform: none;
21
+ line-height: 1;
22
+ -webkit-font-smoothing: antialiased;
23
+ -moz-osx-font-smoothing: grayscale;
24
+ }
25
+
26
+ /* Use the following CSS code if you want to have a class per icon */
27
+ /*
28
+ Instead of a list of all class selectors,
29
+ you can use the generic selector below, but it's slower:
30
+ [class*="icon-"] {
31
+ */
32
+ .icon-ui-lamp, .icon-ui-stack-2, .icon-ui-calendar, .icon-ui-remove-2, .icon-ui-remove, .icon-ui-camera, .icon-ui-camera-2, .icon-ui-microphone, .icon-ui-location, .icon-ui-notify, .icon-ui-arrow-left-3, .icon-ui-arrow-right-3, .icon-ui-shopping-bag, .icon-ui-social-pinterest, .icon-ui-arrow-up-4, .icon-ui-arrow-down-4, .icon-ui-refresh, .icon-ui-grid, .icon-ui-list, .icon-ui-arrow-up-3, .icon-ui-arrow-down-3, .icon-ui-arrow-left-4, .icon-ui-arrow-right-4, .icon-ui-circle-3, .icon-ui-arrow-up-2, .icon-ui-arrow-left-2, .icon-ui-arrow-down-2, .icon-ui-arrow-right-2, .icon-ui-arrow-down, .icon-ui-arrow-up, .icon-ui-arrow-right, .icon-ui-arrow-left, .icon-ui-toggle, .icon-ui-arrow-down-large, .icon-ui-arrow-up-large, .icon-caret-right, .icon-caret-down, .icon-caret-up, .icon-ui-checkmark, .icon-ui-search, .icon-ui-circle, .icon-ui-circle-2, .icon-ui-cart, .icon-ui-stack, .icon-ui-calendar-2, .icon-ui-database, .icon-tag, .icon-home, .icon-home-2, .icon-home-3, .icon-pencil, .icon-pencil-2, .icon-pen, .icon-blog, .icon-droplet, .icon-camera, .icon-music, .icon-headphones, .icon-play, .icon-camera-2, .icon-connection, .icon-feed, .icon-file, .icon-profile, .icon-file-2, .icon-file-3, .icon-file-4, .icon-copy, .icon-copy-2, .icon-copy-3, .icon-paste, .icon-paste-2, .icon-stack, .icon-folder, .icon-folder-open, .icon-tag-2, .icon-tags, .icon-ticket, .icon-cart, .icon-cart-2, .icon-cart-3, .icon-coin, .icon-credit, .icon-calculate, .icon-phone, .icon-address-book, .icon-notebook, .icon-envelop, .icon-pushpin, .icon-location, .icon-location-2, .icon-compass, .icon-map, .icon-map-2, .icon-history, .icon-clock, .icon-clock-2, .icon-calendar, .icon-calendar-2, .icon-print, .icon-keyboard, .icon-screen, .icon-laptop, .icon-mobile, .icon-mobile-2, .icon-tablet, .icon-tv, .icon-drawer, .icon-cabinet, .icon-bubbles, .icon-bubble, .icon-reply, .icon-forward, .icon-undo, .icon-flip, .icon-redo, .icon-undo-2, .icon-storage, .icon-disk, .icon-flip-2, .icon-redo-2, .icon-upload, .icon-download, .icon-box-remove, .icon-box-add, .icon-drawer-2, .icon-drawer-3, .icon-bubbles-2, .icon-bubble-2, .icon-bubbles-3, .icon-bubbles-4, .icon-user, .icon-user-2, .icon-users, .icon-user-3, .icon-user-4, .icon-quotes-left, .icon-spinner, .icon-spinner-2, .icon-spinner-3, .icon-spinner-4, .icon-spinner-5, .icon-spinner-6, .icon-search, .icon-zoom-in, .icon-zoom-out, .icon-expand, .icon-contract, .icon-expand-2, .icon-contract-2, .icon-key, .icon-lock, .icon-lock-2, .icon-unlocked, .icon-wrench, .icon-settings, .icon-equalizer, .icon-cog, .icon-cog-2, .icon-bug, .icon-pie, .icon-stats, .icon-bars, .icon-bars-2, .icon-gift, .icon-meter, .icon-meter2, .icon-mug, .icon-glass, .icon-dashboard, .icon-hammer, .icon-remove, .icon-remove-2, .icon-shield, .icon-lightning, .icon-switch, .icon-power-cord, .icon-signup, .icon-truck, .icon-airplane, .icon-briefcase, .icon-aid, .icon-food, .icon-accessibility, .icon-road, .icon-target, .icon-list, .icon-list-2, .icon-numbered-list, .icon-menu, .icon-menu-2, .icon-cloud, .icon-cloud-download, .icon-tree, .icon-cloud-upload, .icon-download-2, .icon-upload-2, .icon-download-3, .icon-upload-3, .icon-globe, .icon-earth, .icon-link, .icon-flag, .icon-attachment, .icon-happy, .icon-happy-2, .icon-thumbs-up, .icon-heart, .icon-heart-2, .icon-star, .icon-star-2, .icon-star-3, .icon-contrast, .icon-brightness-contrast, .icon-brightness-medium, .icon-bookmarks, .icon-eye, .icon-eye-blocked, .icon-eye-2, .icon-smiley, .icon-smiley-2, .icon-shocked, .icon-shocked-2, .icon-neutral, .icon-neutral-2, .icon-point-up, .icon-point-right, .icon-point-down, .icon-point-left, .icon-warning, .icon-notification, .icon-question, .icon-info, .icon-info-2, .icon-blocked, .icon-cancel-circle, .icon-checkmark-circle, .icon-spam, .icon-close, .icon-checkmark, .icon-checkmark-2, .icon-spell-check, .icon-minus, .icon-plus, .icon-enter, .icon-exit, .icon-play-2, .icon-pause, .icon-stop, .icon-backward, .icon-forward-2, .icon-play-3, .icon-pause-2, .icon-stop-2, .icon-backward-2, .icon-forward-3, .icon-first, .icon-last, .icon-previous, .icon-next, .icon-eject, .icon-volume-high, .icon-volume-medium, .icon-volume-low, .icon-volume-mute, .icon-volume-mute-2, .icon-volume-increase, .icon-volume-decrease, .icon-loop, .icon-loop-2, .icon-loop-3, .icon-shuffle, .icon-arrow-up-left, .icon-arrow-up, .icon-arrow-up-right, .icon-arrow-right, .icon-arrow-down-right, .icon-arrow-down, .icon-arrow-down-left, .icon-arrow-left, .icon-arrow-up-left-2, .icon-arrow-up-2, .icon-arrow-up-right-2, .icon-arrow-right-2, .icon-arrow-down-right-2, .icon-arrow-down-2, .icon-arrow-down-left-2, .icon-arrow-left-2, .icon-arrow-up-3, .icon-arrow-down-3, .icon-arrow-left-3, .icon-arrow-right-3, .icon-tab, .icon-checkbox-checked, .icon-checkbox-unchecked, .icon-checkbox-partial, .icon-radio-checked, .icon-radio-unchecked, .icon-crop, .icon-scissors, .icon-filter, .icon-filter-2, .icon-font, .icon-text-height, .icon-text-width, .icon-paragraph-center, .icon-paragraph-left, .icon-paragraph-justify, .icon-paragraph-right, .icon-paragraph-center-2, .icon-paragraph-left-2, .icon-right-to-left, .icon-left-to-right, .icon-insert-template, .icon-table, .icon-table-2, .icon-sigma, .icon-omega, .icon-strikethrough, .icon-italic, .icon-underline, .icon-bold, .icon-pilcrow, .icon-paragraph-right-2, .icon-paragraph-justify-2, .icon-indent-increase, .icon-indent-decrease, .icon-new-tab, .icon-embed, .icon-code, .icon-share, .icon-console, .icon-mail, .icon-mail-2, .icon-mail-3, .icon-mail-4, .icon-google, .icon-google-plus, .icon-google-plus-2, .icon-google-plus-3, .icon-google-plus-4, .icon-google-drive, .icon-facebook, .icon-facebook-2, .icon-facebook-3, .icon-instagram, .icon-twitter, .icon-twitter-2, .icon-feed-2, .icon-feed-3, .icon-feed-4, .icon-youtube, .icon-youtube-2, .icon-vimeo, .icon-vimeo2, .icon-vimeo-2, .icon-lanyrd, .icon-flickr, .icon-github, .icon-github-2, .icon-github-3, .icon-github-4, .icon-steam, .icon-deviantart, .icon-steam-2, .icon-deviantart-2, .icon-forrst, .icon-forrst-2, .icon-dribbble, .icon-dribbble-2, .icon-dribbble-3, .icon-picassa, .icon-picassa-2, .icon-flickr-2, .icon-flickr-3, .icon-flickr-4, .icon-github-5, .icon-wordpress, .icon-wordpress-2, .icon-joomla, .icon-blogger, .icon-blogger-2, .icon-tumblr, .icon-tumblr-2, .icon-yahoo, .icon-tux, .icon-apple, .icon-android, .icon-windows, .icon-finder, .icon-windows8, .icon-soundcloud, .icon-soundcloud-2, .icon-skype, .icon-paypal, .icon-foursquare, .icon-foursquare-2, .icon-paypal-2, .icon-paypal-3, .icon-reddit, .icon-linkedin, .icon-lastfm, .icon-lastfm-2, .icon-delicious, .icon-stumbleupon, .icon-stumbleupon-2, .icon-stackoverflow, .icon-pinterest, .icon-pinterest-2, .icon-xing, .icon-xing-2, .icon-flattr, .icon-yelp, .icon-libreoffice, .icon-file-pdf, .icon-file-openoffice, .icon-file-word, .icon-file-excel, .icon-file-zip, .icon-file-powerpoint, .icon-file-xml, .icon-file-css, .icon-html5, .icon-html5-2, .icon-css3, .icon-chrome, .icon-firefox, .icon-IE, .icon-opera, .icon-safari, .icon-cloud-2, .icon-lightning-2, .icon-rainy, .icon-rainy-2, .icon-windy, .icon-cloud-3, .icon-lightning-3, .icon-lightning-4, .icon-rainy-3, .icon-rainy-4, .icon-lines, .icon-weather, .icon-weather-2, .icon-weather-3, .icon-cloud-4, .icon-weather-4, .icon-cloudy, .icon-cloud-5, .icon-lightning-5, .icon-sun, .icon-cloudy-2, .icon-sunrise, .icon-snowy, .icon-snowy-2, .icon-weather-5, .icon-Celsius, .icon-Fahrenheit, .icon-none, .icon-compass-2, .icon-thermometer, .icon-ui-settings, .icon-ui-circle-small, .icon-caret-left, .icon-thumbs-up-2, .icon-twitter-3, .icon-close-2, .icon-ui-minus, .icon-ui-plus, .icon-users-2, .icon-ui-search-2, .icon-ui-path, .icon-marker, .icon-grid, .icon-pencil-3, .icon-grid-2, .icon-grid-3, .icon-ui-chevron-right, .icon-ui-chevron-left, .icon-ui-chevron-up, .icon-ui-chevron-down, .icon-close-2-2, .icon-ui-toggle-2 {
33
+ font-family: 'ellipsis';
34
+ speak: none;
35
+ font-style: normal;
36
+ font-weight: normal;
37
+ font-variant: normal;
38
+ text-transform: none;
39
+ line-height: 1;
40
+ -webkit-font-smoothing: antialiased;
41
+ }
42
+ .icon-ui-lamp:before {
43
+ content: "\e063";
44
+ }
45
+ .icon-ui-stack-2:before {
46
+ content: "\e072";
47
+ }
48
+ .icon-ui-calendar:before {
49
+ content: "\e09f";
50
+ }
51
+ .icon-ui-remove-2:before {
52
+ content: "\e0da";
53
+ }
54
+ .icon-ui-remove:before {
55
+ content: "\e0db";
56
+ }
57
+ .icon-ui-camera:before {
58
+ content: "\e0fb";
59
+ }
60
+ .icon-ui-camera-2:before {
61
+ content: "\e0fd";
62
+ }
63
+ .icon-ui-microphone:before {
64
+ content: "\e0ff";
65
+ }
66
+ .icon-ui-location:before {
67
+ content: "\e101";
68
+ }
69
+ .icon-ui-notify:before {
70
+ content: "\e15a";
71
+ }
72
+ .icon-ui-arrow-left-3:before {
73
+ content: "\e178";
74
+ }
75
+ .icon-ui-arrow-right-3:before {
76
+ content: "\e179";
77
+ }
78
+ .icon-ui-shopping-bag:before {
79
+ content: "\e17a";
80
+ }
81
+ .icon-ui-social-pinterest:before {
82
+ content: "\e197";
83
+ }
84
+ .icon-ui-arrow-up-4:before {
85
+ content: "\e198";
86
+ }
87
+ .icon-ui-arrow-down-4:before {
88
+ content: "\e199";
89
+ }
90
+ .icon-ui-refresh:before {
91
+ content: "\e155";
92
+ }
93
+ .icon-ui-grid:before {
94
+ content: "\e19c";
95
+ }
96
+ .icon-ui-list:before {
97
+ content: "\e19e";
98
+ }
99
+ .icon-ui-arrow-up-3:before {
100
+ content: "\e1a0";
101
+ }
102
+ .icon-ui-arrow-down-3:before {
103
+ content: "\e1a2";
104
+ }
105
+ .icon-ui-arrow-left-4:before {
106
+ content: "\e19f";
107
+ }
108
+ .icon-ui-arrow-right-4:before {
109
+ content: "\e1a3";
110
+ }
111
+ .icon-ui-circle-3:before {
112
+ content: "\e158";
113
+ }
114
+ .icon-ui-arrow-up-2:before {
115
+ content: "\e1a6";
116
+ }
117
+ .icon-ui-arrow-left-2:before {
118
+ content: "\e1a7";
119
+ }
120
+ .icon-ui-arrow-down-2:before {
121
+ content: "\e1a5";
122
+ }
123
+ .icon-ui-arrow-right-2:before {
124
+ content: "\e1a8";
125
+ }
126
+ .icon-ui-arrow-down:before {
127
+ content: "\e1a9";
128
+ }
129
+ .icon-ui-arrow-up:before {
130
+ content: "\e1aa";
131
+ }
132
+ .icon-ui-arrow-right:before {
133
+ content: "\e0f9";
134
+ }
135
+ .icon-ui-arrow-left:before {
136
+ content: "\e0fa";
137
+ }
138
+ .icon-ui-toggle:before {
139
+ content: "\e0f7";
140
+ }
141
+ .icon-ui-arrow-down-large:before {
142
+ content: "\e1ac";
143
+ }
144
+ .icon-ui-arrow-up-large:before {
145
+ content: "\e1ad";
146
+ }
147
+ .icon-caret-right:before {
148
+ content: "\e1a4";
149
+ }
150
+ .icon-caret-down:before {
151
+ content: "\e1b3";
152
+ }
153
+ .icon-caret-up:before {
154
+ content: "\e1b4";
155
+ }
156
+ .icon-ui-checkmark:before {
157
+ content: "\e035";
158
+ }
159
+ .icon-ui-search:before {
160
+ content: "\e01a";
161
+ }
162
+ .icon-ui-circle:before {
163
+ content: "\e05e";
164
+ }
165
+ .icon-ui-circle-2:before {
166
+ content: "\e05d";
167
+ }
168
+ .icon-ui-cart:before {
169
+ content: "\e06e";
170
+ }
171
+ .icon-ui-stack:before {
172
+ content: "\e071";
173
+ }
174
+ .icon-ui-calendar-2:before {
175
+ content: "\e0a1";
176
+ }
177
+ .icon-ui-database:before {
178
+ content: "\e079";
179
+ }
180
+ .icon-tag:before {
181
+ content: "\e130";
182
+ }
183
+ .icon-home:before {
184
+ content: "\e000";
185
+ }
186
+ .icon-home-2:before {
187
+ content: "\e001";
188
+ }
189
+ .icon-home-3:before {
190
+ content: "\e002";
191
+ }
192
+ .icon-pencil:before {
193
+ content: "\e003";
194
+ }
195
+ .icon-pencil-2:before {
196
+ content: "\e004";
197
+ }
198
+ .icon-pen:before {
199
+ content: "\e005";
200
+ }
201
+ .icon-blog:before {
202
+ content: "\e006";
203
+ }
204
+ .icon-droplet:before {
205
+ content: "\e007";
206
+ }
207
+ .icon-camera:before {
208
+ content: "\e008";
209
+ }
210
+ .icon-music:before {
211
+ content: "\e009";
212
+ }
213
+ .icon-headphones:before {
214
+ content: "\e00a";
215
+ }
216
+ .icon-play:before {
217
+ content: "\e00b";
218
+ }
219
+ .icon-camera-2:before {
220
+ content: "\e00c";
221
+ }
222
+ .icon-connection:before {
223
+ content: "\e00d";
224
+ }
225
+ .icon-feed:before {
226
+ content: "\e00e";
227
+ }
228
+ .icon-file:before {
229
+ content: "\e00f";
230
+ }
231
+ .icon-profile:before {
232
+ content: "\e010";
233
+ }
234
+ .icon-file-2:before {
235
+ content: "\e011";
236
+ }
237
+ .icon-file-3:before {
238
+ content: "\e012";
239
+ }
240
+ .icon-file-4:before {
241
+ content: "\e013";
242
+ }
243
+ .icon-copy:before {
244
+ content: "\e014";
245
+ }
246
+ .icon-copy-2:before {
247
+ content: "\e015";
248
+ }
249
+ .icon-copy-3:before {
250
+ content: "\e016";
251
+ }
252
+ .icon-paste:before {
253
+ content: "\e017";
254
+ }
255
+ .icon-paste-2:before {
256
+ content: "\e018";
257
+ }
258
+ .icon-stack:before {
259
+ content: "\e019";
260
+ }
261
+ .icon-folder:before {
262
+ content: "\e01b";
263
+ }
264
+ .icon-folder-open:before {
265
+ content: "\e01c";
266
+ }
267
+ .icon-tag-2:before {
268
+ content: "\e01d";
269
+ }
270
+ .icon-tags:before {
271
+ content: "\e01e";
272
+ }
273
+ .icon-ticket:before {
274
+ content: "\e01f";
275
+ }
276
+ .icon-cart:before {
277
+ content: "\e020";
278
+ }
279
+ .icon-cart-2:before {
280
+ content: "\e021";
281
+ }
282
+ .icon-cart-3:before {
283
+ content: "\e022";
284
+ }
285
+ .icon-coin:before {
286
+ content: "\e023";
287
+ }
288
+ .icon-credit:before {
289
+ content: "\e024";
290
+ }
291
+ .icon-calculate:before {
292
+ content: "\e028";
293
+ }
294
+ .icon-phone:before {
295
+ content: "\e029";
296
+ }
297
+ .icon-address-book:before {
298
+ content: "\e02a";
299
+ }
300
+ .icon-notebook:before {
301
+ content: "\e02b";
302
+ }
303
+ .icon-envelop:before {
304
+ content: "\e02c";
305
+ }
306
+ .icon-pushpin:before {
307
+ content: "\e02d";
308
+ }
309
+ .icon-location:before {
310
+ content: "\e02e";
311
+ }
312
+ .icon-location-2:before {
313
+ content: "\e02f";
314
+ }
315
+ .icon-compass:before {
316
+ content: "\e030";
317
+ }
318
+ .icon-map:before {
319
+ content: "\e031";
320
+ }
321
+ .icon-map-2:before {
322
+ content: "\e032";
323
+ }
324
+ .icon-history:before {
325
+ content: "\e033";
326
+ }
327
+ .icon-clock:before {
328
+ content: "\e034";
329
+ }
330
+ .icon-clock-2:before {
331
+ content: "\e036";
332
+ }
333
+ .icon-calendar:before {
334
+ content: "\e037";
335
+ }
336
+ .icon-calendar-2:before {
337
+ content: "\e038";
338
+ }
339
+ .icon-print:before {
340
+ content: "\e039";
341
+ }
342
+ .icon-keyboard:before {
343
+ content: "\e03a";
344
+ }
345
+ .icon-screen:before {
346
+ content: "\e03b";
347
+ }
348
+ .icon-laptop:before {
349
+ content: "\e03c";
350
+ }
351
+ .icon-mobile:before {
352
+ content: "\e03d";
353
+ }
354
+ .icon-mobile-2:before {
355
+ content: "\e03e";
356
+ }
357
+ .icon-tablet:before {
358
+ content: "\e03f";
359
+ }
360
+ .icon-tv:before {
361
+ content: "\e040";
362
+ }
363
+ .icon-drawer:before {
364
+ content: "\e041";
365
+ }
366
+ .icon-cabinet:before {
367
+ content: "\e042";
368
+ }
369
+ .icon-bubbles:before {
370
+ content: "\e043";
371
+ }
372
+ .icon-bubble:before {
373
+ content: "\e044";
374
+ }
375
+ .icon-reply:before {
376
+ content: "\e045";
377
+ }
378
+ .icon-forward:before {
379
+ content: "\e046";
380
+ }
381
+ .icon-undo:before {
382
+ content: "\e048";
383
+ }
384
+ .icon-flip:before {
385
+ content: "\e049";
386
+ }
387
+ .icon-redo:before {
388
+ content: "\e04a";
389
+ }
390
+ .icon-undo-2:before {
391
+ content: "\e04b";
392
+ }
393
+ .icon-storage:before {
394
+ content: "\e04c";
395
+ }
396
+ .icon-disk:before {
397
+ content: "\e04d";
398
+ }
399
+ .icon-flip-2:before {
400
+ content: "\e04e";
401
+ }
402
+ .icon-redo-2:before {
403
+ content: "\e04f";
404
+ }
405
+ .icon-upload:before {
406
+ content: "\e050";
407
+ }
408
+ .icon-download:before {
409
+ content: "\e051";
410
+ }
411
+ .icon-box-remove:before {
412
+ content: "\e052";
413
+ }
414
+ .icon-box-add:before {
415
+ content: "\e053";
416
+ }
417
+ .icon-drawer-2:before {
418
+ content: "\e054";
419
+ }
420
+ .icon-drawer-3:before {
421
+ content: "\e055";
422
+ }
423
+ .icon-bubbles-2:before {
424
+ content: "\e056";
425
+ }
426
+ .icon-bubble-2:before {
427
+ content: "\e058";
428
+ }
429
+ .icon-bubbles-3:before {
430
+ content: "\e059";
431
+ }
432
+ .icon-bubbles-4:before {
433
+ content: "\e05a";
434
+ }
435
+ .icon-user:before {
436
+ content: "\e05b";
437
+ }
438
+ .icon-user-2:before {
439
+ content: "\e05c";
440
+ }
441
+ .icon-users:before {
442
+ content: "\e05f";
443
+ }
444
+ .icon-user-3:before {
445
+ content: "\e060";
446
+ }
447
+ .icon-user-4:before {
448
+ content: "\e061";
449
+ }
450
+ .icon-quotes-left:before {
451
+ content: "\e062";
452
+ }
453
+ .icon-spinner:before {
454
+ content: "\e064";
455
+ }
456
+ .icon-spinner-2:before {
457
+ content: "\e065";
458
+ }
459
+ .icon-spinner-3:before {
460
+ content: "\e066";
461
+ }
462
+ .icon-spinner-4:before {
463
+ content: "\e067";
464
+ }
465
+ .icon-spinner-5:before {
466
+ content: "\e068";
467
+ }
468
+ .icon-spinner-6:before {
469
+ content: "\e069";
470
+ }
471
+ .icon-search:before {
472
+ content: "\e06a";
473
+ }
474
+ .icon-zoom-in:before {
475
+ content: "\e06b";
476
+ }
477
+ .icon-zoom-out:before {
478
+ content: "\e06c";
479
+ }
480
+ .icon-expand:before {
481
+ content: "\e06d";
482
+ }
483
+ .icon-contract:before {
484
+ content: "\e06f";
485
+ }
486
+ .icon-expand-2:before {
487
+ content: "\e070";
488
+ }
489
+ .icon-contract-2:before {
490
+ content: "\e073";
491
+ }
492
+ .icon-key:before {
493
+ content: "\e074";
494
+ }
495
+ .icon-lock:before {
496
+ content: "\e075";
497
+ }
498
+ .icon-lock-2:before {
499
+ content: "\e076";
500
+ }
501
+ .icon-unlocked:before {
502
+ content: "\e077";
503
+ }
504
+ .icon-wrench:before {
505
+ content: "\e078";
506
+ }
507
+ .icon-settings:before {
508
+ content: "\e07a";
509
+ }
510
+ .icon-equalizer:before {
511
+ content: "\e07b";
512
+ }
513
+ .icon-cog:before {
514
+ content: "\e07c";
515
+ }
516
+ .icon-cog-2:before {
517
+ content: "\e07d";
518
+ }
519
+ .icon-bug:before {
520
+ content: "\e07e";
521
+ }
522
+ .icon-pie:before {
523
+ content: "\e07f";
524
+ }
525
+ .icon-stats:before {
526
+ content: "\e080";
527
+ }
528
+ .icon-bars:before {
529
+ content: "\e081";
530
+ }
531
+ .icon-bars-2:before {
532
+ content: "\e082";
533
+ }
534
+ .icon-gift:before {
535
+ content: "\e083";
536
+ }
537
+ .icon-meter:before {
538
+ content: "\e084";
539
+ }
540
+ .icon-meter2:before {
541
+ content: "\e085";
542
+ }
543
+ .icon-mug:before {
544
+ content: "\e086";
545
+ }
546
+ .icon-glass:before {
547
+ content: "\e087";
548
+ }
549
+ .icon-dashboard:before {
550
+ content: "\e088";
551
+ }
552
+ .icon-hammer:before {
553
+ content: "\e089";
554
+ }
555
+ .icon-remove:before {
556
+ content: "\e08a";
557
+ }
558
+ .icon-remove-2:before {
559
+ content: "\e08b";
560
+ }
561
+ .icon-shield:before {
562
+ content: "\e08c";
563
+ }
564
+ .icon-lightning:before {
565
+ content: "\e08d";
566
+ }
567
+ .icon-switch:before {
568
+ content: "\e08e";
569
+ }
570
+ .icon-power-cord:before {
571
+ content: "\e08f";
572
+ }
573
+ .icon-signup:before {
574
+ content: "\e090";
575
+ }
576
+ .icon-truck:before {
577
+ content: "\e091";
578
+ }
579
+ .icon-airplane:before {
580
+ content: "\e092";
581
+ }
582
+ .icon-briefcase:before {
583
+ content: "\e094";
584
+ }
585
+ .icon-aid:before {
586
+ content: "\e096";
587
+ }
588
+ .icon-food:before {
589
+ content: "\e097";
590
+ }
591
+ .icon-accessibility:before {
592
+ content: "\e098";
593
+ }
594
+ .icon-road:before {
595
+ content: "\e099";
596
+ }
597
+ .icon-target:before {
598
+ content: "\e09a";
599
+ }
600
+ .icon-list:before {
601
+ content: "\e09b";
602
+ }
603
+ .icon-list-2:before {
604
+ content: "\e09c";
605
+ }
606
+ .icon-numbered-list:before {
607
+ content: "\e09d";
608
+ }
609
+ .icon-menu:before {
610
+ content: "\e09e";
611
+ }
612
+ .icon-menu-2:before {
613
+ content: "\e0a0";
614
+ }
615
+ .icon-cloud:before {
616
+ content: "\e0a2";
617
+ }
618
+ .icon-cloud-download:before {
619
+ content: "\e0a3";
620
+ }
621
+ .icon-tree:before {
622
+ content: "\e0a4";
623
+ }
624
+ .icon-cloud-upload:before {
625
+ content: "\e0a5";
626
+ }
627
+ .icon-download-2:before {
628
+ content: "\e0a6";
629
+ }
630
+ .icon-upload-2:before {
631
+ content: "\e0a7";
632
+ }
633
+ .icon-download-3:before {
634
+ content: "\e0a8";
635
+ }
636
+ .icon-upload-3:before {
637
+ content: "\e0a9";
638
+ }
639
+ .icon-globe:before {
640
+ content: "\e0aa";
641
+ }
642
+ .icon-earth:before {
643
+ content: "\e0ab";
644
+ }
645
+ .icon-link:before {
646
+ content: "\e0ac";
647
+ }
648
+ .icon-flag:before {
649
+ content: "\e0ad";
650
+ }
651
+ .icon-attachment:before {
652
+ content: "\e0ae";
653
+ }
654
+ .icon-happy:before {
655
+ content: "\e0af";
656
+ }
657
+ .icon-happy-2:before {
658
+ content: "\e0b0";
659
+ }
660
+ .icon-thumbs-up:before {
661
+ content: "\e0b1";
662
+ }
663
+ .icon-heart:before {
664
+ content: "\e0b2";
665
+ }
666
+ .icon-heart-2:before {
667
+ content: "\e0b3";
668
+ }
669
+ .icon-star:before {
670
+ content: "\e0b4";
671
+ }
672
+ .icon-star-2:before {
673
+ content: "\e0b5";
674
+ }
675
+ .icon-star-3:before {
676
+ content: "\e0b6";
677
+ }
678
+ .icon-contrast:before {
679
+ content: "\e0b7";
680
+ }
681
+ .icon-brightness-contrast:before {
682
+ content: "\e0b8";
683
+ }
684
+ .icon-brightness-medium:before {
685
+ content: "\e0b9";
686
+ }
687
+ .icon-bookmarks:before {
688
+ content: "\e0ba";
689
+ }
690
+ .icon-eye:before {
691
+ content: "\e0bb";
692
+ }
693
+ .icon-eye-blocked:before {
694
+ content: "\e0bc";
695
+ }
696
+ .icon-eye-2:before {
697
+ content: "\e0bd";
698
+ }
699
+ .icon-smiley:before {
700
+ content: "\e0be";
701
+ }
702
+ .icon-smiley-2:before {
703
+ content: "\e0bf";
704
+ }
705
+ .icon-shocked:before {
706
+ content: "\e0c0";
707
+ }
708
+ .icon-shocked-2:before {
709
+ content: "\e0c1";
710
+ }
711
+ .icon-neutral:before {
712
+ content: "\e0c2";
713
+ }
714
+ .icon-neutral-2:before {
715
+ content: "\e0c3";
716
+ }
717
+ .icon-point-up:before {
718
+ content: "\e0c4";
719
+ }
720
+ .icon-point-right:before {
721
+ content: "\e0c5";
722
+ }
723
+ .icon-point-down:before {
724
+ content: "\e0c6";
725
+ }
726
+ .icon-point-left:before {
727
+ content: "\e0c7";
728
+ }
729
+ .icon-warning:before {
730
+ content: "\e0c8";
731
+ }
732
+ .icon-notification:before {
733
+ content: "\e0c9";
734
+ }
735
+ .icon-question:before {
736
+ content: "\e0ca";
737
+ }
738
+ .icon-info:before {
739
+ content: "\e0cb";
740
+ }
741
+ .icon-info-2:before {
742
+ content: "\e0cc";
743
+ }
744
+ .icon-blocked:before {
745
+ content: "\e0cd";
746
+ }
747
+ .icon-cancel-circle:before {
748
+ content: "\e0ce";
749
+ }
750
+ .icon-checkmark-circle:before {
751
+ content: "\e0cf";
752
+ }
753
+ .icon-spam:before {
754
+ content: "\e0d0";
755
+ }
756
+ .icon-close:before {
757
+ content: "\e0d1";
758
+ }
759
+ .icon-checkmark:before {
760
+ content: "\e0d2";
761
+ }
762
+ .icon-checkmark-2:before {
763
+ content: "\e0d3";
764
+ }
765
+ .icon-spell-check:before {
766
+ content: "\e0d4";
767
+ }
768
+ .icon-minus:before {
769
+ content: "\e0d5";
770
+ }
771
+ .icon-plus:before {
772
+ content: "\e0d6";
773
+ }
774
+ .icon-enter:before {
775
+ content: "\e0d7";
776
+ }
777
+ .icon-exit:before {
778
+ content: "\e0d8";
779
+ }
780
+ .icon-play-2:before {
781
+ content: "\e0d9";
782
+ }
783
+ .icon-pause:before {
784
+ content: "\e0dc";
785
+ }
786
+ .icon-stop:before {
787
+ content: "\e0dd";
788
+ }
789
+ .icon-backward:before {
790
+ content: "\e0de";
791
+ }
792
+ .icon-forward-2:before {
793
+ content: "\e0df";
794
+ }
795
+ .icon-play-3:before {
796
+ content: "\e0e0";
797
+ }
798
+ .icon-pause-2:before {
799
+ content: "\e0e1";
800
+ }
801
+ .icon-stop-2:before {
802
+ content: "\e0e2";
803
+ }
804
+ .icon-backward-2:before {
805
+ content: "\e0e3";
806
+ }
807
+ .icon-forward-3:before {
808
+ content: "\e0e4";
809
+ }
810
+ .icon-first:before {
811
+ content: "\e0e5";
812
+ }
813
+ .icon-last:before {
814
+ content: "\e0e6";
815
+ }
816
+ .icon-previous:before {
817
+ content: "\e0e7";
818
+ }
819
+ .icon-next:before {
820
+ content: "\e0e8";
821
+ }
822
+ .icon-eject:before {
823
+ content: "\e0e9";
824
+ }
825
+ .icon-volume-high:before {
826
+ content: "\e0ea";
827
+ }
828
+ .icon-volume-medium:before {
829
+ content: "\e0ed";
830
+ }
831
+ .icon-volume-low:before {
832
+ content: "\e0ee";
833
+ }
834
+ .icon-volume-mute:before {
835
+ content: "\e0ef";
836
+ }
837
+ .icon-volume-mute-2:before {
838
+ content: "\e0f0";
839
+ }
840
+ .icon-volume-increase:before {
841
+ content: "\e0f1";
842
+ }
843
+ .icon-volume-decrease:before {
844
+ content: "\e0f2";
845
+ }
846
+ .icon-loop:before {
847
+ content: "\e0f3";
848
+ }
849
+ .icon-loop-2:before {
850
+ content: "\e0f4";
851
+ }
852
+ .icon-loop-3:before {
853
+ content: "\e0f5";
854
+ }
855
+ .icon-shuffle:before {
856
+ content: "\e0f6";
857
+ }
858
+ .icon-arrow-up-left:before {
859
+ content: "\e0fc";
860
+ }
861
+ .icon-arrow-up:before {
862
+ content: "\e100";
863
+ }
864
+ .icon-arrow-up-right:before {
865
+ content: "\e103";
866
+ }
867
+ .icon-arrow-right:before {
868
+ content: "\e104";
869
+ }
870
+ .icon-arrow-down-right:before {
871
+ content: "\e105";
872
+ }
873
+ .icon-arrow-down:before {
874
+ content: "\e106";
875
+ }
876
+ .icon-arrow-down-left:before {
877
+ content: "\e107";
878
+ }
879
+ .icon-arrow-left:before {
880
+ content: "\e108";
881
+ }
882
+ .icon-arrow-up-left-2:before {
883
+ content: "\e109";
884
+ }
885
+ .icon-arrow-up-2:before {
886
+ content: "\e10a";
887
+ }
888
+ .icon-arrow-up-right-2:before {
889
+ content: "\e10b";
890
+ }
891
+ .icon-arrow-right-2:before {
892
+ content: "\e10c";
893
+ }
894
+ .icon-arrow-down-right-2:before {
895
+ content: "\e10d";
896
+ }
897
+ .icon-arrow-down-2:before {
898
+ content: "\e10e";
899
+ }
900
+ .icon-arrow-down-left-2:before {
901
+ content: "\e10f";
902
+ }
903
+ .icon-arrow-left-2:before {
904
+ content: "\e110";
905
+ }
906
+ .icon-arrow-up-3:before {
907
+ content: "\e111";
908
+ }
909
+ .icon-arrow-down-3:before {
910
+ content: "\e112";
911
+ }
912
+ .icon-arrow-left-3:before {
913
+ content: "\e113";
914
+ }
915
+ .icon-arrow-right-3:before {
916
+ content: "\e114";
917
+ }
918
+ .icon-tab:before {
919
+ content: "\e115";
920
+ }
921
+ .icon-checkbox-checked:before {
922
+ content: "\e116";
923
+ }
924
+ .icon-checkbox-unchecked:before {
925
+ content: "\e117";
926
+ }
927
+ .icon-checkbox-partial:before {
928
+ content: "\e118";
929
+ }
930
+ .icon-radio-checked:before {
931
+ content: "\e119";
932
+ }
933
+ .icon-radio-unchecked:before {
934
+ content: "\e11a";
935
+ }
936
+ .icon-crop:before {
937
+ content: "\e11b";
938
+ }
939
+ .icon-scissors:before {
940
+ content: "\e11c";
941
+ }
942
+ .icon-filter:before {
943
+ content: "\e11d";
944
+ }
945
+ .icon-filter-2:before {
946
+ content: "\e11e";
947
+ }
948
+ .icon-font:before {
949
+ content: "\e11f";
950
+ }
951
+ .icon-text-height:before {
952
+ content: "\e120";
953
+ }
954
+ .icon-text-width:before {
955
+ content: "\e121";
956
+ }
957
+ .icon-paragraph-center:before {
958
+ content: "\e122";
959
+ }
960
+ .icon-paragraph-left:before {
961
+ content: "\e123";
962
+ }
963
+ .icon-paragraph-justify:before {
964
+ content: "\e124";
965
+ }
966
+ .icon-paragraph-right:before {
967
+ content: "\e125";
968
+ }
969
+ .icon-paragraph-center-2:before {
970
+ content: "\e126";
971
+ }
972
+ .icon-paragraph-left-2:before {
973
+ content: "\e127";
974
+ }
975
+ .icon-right-to-left:before {
976
+ content: "\e128";
977
+ }
978
+ .icon-left-to-right:before {
979
+ content: "\e129";
980
+ }
981
+ .icon-insert-template:before {
982
+ content: "\e12b";
983
+ }
984
+ .icon-table:before {
985
+ content: "\e12c";
986
+ }
987
+ .icon-table-2:before {
988
+ content: "\e12d";
989
+ }
990
+ .icon-sigma:before {
991
+ content: "\e12e";
992
+ }
993
+ .icon-omega:before {
994
+ content: "\e12f";
995
+ }
996
+ .icon-strikethrough:before {
997
+ content: "\e131";
998
+ }
999
+ .icon-italic:before {
1000
+ content: "\e132";
1001
+ }
1002
+ .icon-underline:before {
1003
+ content: "\e133";
1004
+ }
1005
+ .icon-bold:before {
1006
+ content: "\e134";
1007
+ }
1008
+ .icon-pilcrow:before {
1009
+ content: "\e135";
1010
+ }
1011
+ .icon-paragraph-right-2:before {
1012
+ content: "\e136";
1013
+ }
1014
+ .icon-paragraph-justify-2:before {
1015
+ content: "\e138";
1016
+ }
1017
+ .icon-indent-increase:before {
1018
+ content: "\e139";
1019
+ }
1020
+ .icon-indent-decrease:before {
1021
+ content: "\e13a";
1022
+ }
1023
+ .icon-new-tab:before {
1024
+ content: "\e13b";
1025
+ }
1026
+ .icon-embed:before {
1027
+ content: "\e13c";
1028
+ }
1029
+ .icon-code:before {
1030
+ content: "\e13d";
1031
+ }
1032
+ .icon-share:before {
1033
+ content: "\e13e";
1034
+ }
1035
+ .icon-console:before {
1036
+ content: "\e13f";
1037
+ }
1038
+ .icon-mail:before {
1039
+ content: "\e140";
1040
+ }
1041
+ .icon-mail-2:before {
1042
+ content: "\e141";
1043
+ }
1044
+ .icon-mail-3:before {
1045
+ content: "\e142";
1046
+ }
1047
+ .icon-mail-4:before {
1048
+ content: "\e143";
1049
+ }
1050
+ .icon-google:before {
1051
+ content: "\e144";
1052
+ }
1053
+ .icon-google-plus:before {
1054
+ content: "\e145";
1055
+ }
1056
+ .icon-google-plus-2:before {
1057
+ content: "\e146";
1058
+ }
1059
+ .icon-google-plus-3:before {
1060
+ content: "\e147";
1061
+ }
1062
+ .icon-google-plus-4:before {
1063
+ content: "\e148";
1064
+ }
1065
+ .icon-google-drive:before {
1066
+ content: "\e149";
1067
+ }
1068
+ .icon-facebook:before {
1069
+ content: "\e14a";
1070
+ }
1071
+ .icon-facebook-2:before {
1072
+ content: "\e14b";
1073
+ }
1074
+ .icon-facebook-3:before {
1075
+ content: "\e14c";
1076
+ }
1077
+ .icon-instagram:before {
1078
+ content: "\e14d";
1079
+ }
1080
+ .icon-twitter:before {
1081
+ content: "\e14e";
1082
+ }
1083
+ .icon-twitter-2:before {
1084
+ content: "\e14f";
1085
+ }
1086
+ .icon-feed-2:before {
1087
+ content: "\e150";
1088
+ }
1089
+ .icon-feed-3:before {
1090
+ content: "\e151";
1091
+ }
1092
+ .icon-feed-4:before {
1093
+ content: "\e152";
1094
+ }
1095
+ .icon-youtube:before {
1096
+ content: "\e153";
1097
+ }
1098
+ .icon-youtube-2:before {
1099
+ content: "\e154";
1100
+ }
1101
+ .icon-vimeo:before {
1102
+ content: "\e156";
1103
+ }
1104
+ .icon-vimeo2:before {
1105
+ content: "\e157";
1106
+ }
1107
+ .icon-vimeo-2:before {
1108
+ content: "\e159";
1109
+ }
1110
+ .icon-lanyrd:before {
1111
+ content: "\e15b";
1112
+ }
1113
+ .icon-flickr:before {
1114
+ content: "\e15c";
1115
+ }
1116
+ .icon-github:before {
1117
+ content: "\e15d";
1118
+ }
1119
+ .icon-github-2:before {
1120
+ content: "\e15e";
1121
+ }
1122
+ .icon-github-3:before {
1123
+ content: "\e15f";
1124
+ }
1125
+ .icon-github-4:before {
1126
+ content: "\e160";
1127
+ }
1128
+ .icon-steam:before {
1129
+ content: "\e161";
1130
+ }
1131
+ .icon-deviantart:before {
1132
+ content: "\e162";
1133
+ }
1134
+ .icon-steam-2:before {
1135
+ content: "\e163";
1136
+ }
1137
+ .icon-deviantart-2:before {
1138
+ content: "\e164";
1139
+ }
1140
+ .icon-forrst:before {
1141
+ content: "\e165";
1142
+ }
1143
+ .icon-forrst-2:before {
1144
+ content: "\e166";
1145
+ }
1146
+ .icon-dribbble:before {
1147
+ content: "\e167";
1148
+ }
1149
+ .icon-dribbble-2:before {
1150
+ content: "\e168";
1151
+ }
1152
+ .icon-dribbble-3:before {
1153
+ content: "\e169";
1154
+ }
1155
+ .icon-picassa:before {
1156
+ content: "\e16a";
1157
+ }
1158
+ .icon-picassa-2:before {
1159
+ content: "\e16b";
1160
+ }
1161
+ .icon-flickr-2:before {
1162
+ content: "\e16c";
1163
+ }
1164
+ .icon-flickr-3:before {
1165
+ content: "\e16d";
1166
+ }
1167
+ .icon-flickr-4:before {
1168
+ content: "\e16e";
1169
+ }
1170
+ .icon-github-5:before {
1171
+ content: "\e16f";
1172
+ }
1173
+ .icon-wordpress:before {
1174
+ content: "\e170";
1175
+ }
1176
+ .icon-wordpress-2:before {
1177
+ content: "\e171";
1178
+ }
1179
+ .icon-joomla:before {
1180
+ content: "\e172";
1181
+ }
1182
+ .icon-blogger:before {
1183
+ content: "\e173";
1184
+ }
1185
+ .icon-blogger-2:before {
1186
+ content: "\e174";
1187
+ }
1188
+ .icon-tumblr:before {
1189
+ content: "\e175";
1190
+ }
1191
+ .icon-tumblr-2:before {
1192
+ content: "\e176";
1193
+ }
1194
+ .icon-yahoo:before {
1195
+ content: "\e177";
1196
+ }
1197
+ .icon-tux:before {
1198
+ content: "\e17c";
1199
+ }
1200
+ .icon-apple:before {
1201
+ content: "\e17d";
1202
+ }
1203
+ .icon-android:before {
1204
+ content: "\e17e";
1205
+ }
1206
+ .icon-windows:before {
1207
+ content: "\e17f";
1208
+ }
1209
+ .icon-finder:before {
1210
+ content: "\e180";
1211
+ }
1212
+ .icon-windows8:before {
1213
+ content: "\e181";
1214
+ }
1215
+ .icon-soundcloud:before {
1216
+ content: "\e182";
1217
+ }
1218
+ .icon-soundcloud-2:before {
1219
+ content: "\e183";
1220
+ }
1221
+ .icon-skype:before {
1222
+ content: "\e184";
1223
+ }
1224
+ .icon-paypal:before {
1225
+ content: "\e185";
1226
+ }
1227
+ .icon-foursquare:before {
1228
+ content: "\e186";
1229
+ }
1230
+ .icon-foursquare-2:before {
1231
+ content: "\e187";
1232
+ }
1233
+ .icon-paypal-2:before {
1234
+ content: "\e188";
1235
+ }
1236
+ .icon-paypal-3:before {
1237
+ content: "\e189";
1238
+ }
1239
+ .icon-reddit:before {
1240
+ content: "\e18a";
1241
+ }
1242
+ .icon-linkedin:before {
1243
+ content: "\e18b";
1244
+ }
1245
+ .icon-lastfm:before {
1246
+ content: "\e18c";
1247
+ }
1248
+ .icon-lastfm-2:before {
1249
+ content: "\e18d";
1250
+ }
1251
+ .icon-delicious:before {
1252
+ content: "\e18e";
1253
+ }
1254
+ .icon-stumbleupon:before {
1255
+ content: "\e18f";
1256
+ }
1257
+ .icon-stumbleupon-2:before {
1258
+ content: "\e190";
1259
+ }
1260
+ .icon-stackoverflow:before {
1261
+ content: "\e191";
1262
+ }
1263
+ .icon-pinterest:before {
1264
+ content: "\e192";
1265
+ }
1266
+ .icon-pinterest-2:before {
1267
+ content: "\e193";
1268
+ }
1269
+ .icon-xing:before {
1270
+ content: "\e194";
1271
+ }
1272
+ .icon-xing-2:before {
1273
+ content: "\e195";
1274
+ }
1275
+ .icon-flattr:before {
1276
+ content: "\e196";
1277
+ }
1278
+ .icon-yelp:before {
1279
+ content: "\e1b2";
1280
+ }
1281
+ .icon-libreoffice:before {
1282
+ content: "\e1b5";
1283
+ }
1284
+ .icon-file-pdf:before {
1285
+ content: "\e1b6";
1286
+ }
1287
+ .icon-file-openoffice:before {
1288
+ content: "\e1b7";
1289
+ }
1290
+ .icon-file-word:before {
1291
+ content: "\e1b8";
1292
+ }
1293
+ .icon-file-excel:before {
1294
+ content: "\e1b9";
1295
+ }
1296
+ .icon-file-zip:before {
1297
+ content: "\e1ba";
1298
+ }
1299
+ .icon-file-powerpoint:before {
1300
+ content: "\e1bb";
1301
+ }
1302
+ .icon-file-xml:before {
1303
+ content: "\e1bc";
1304
+ }
1305
+ .icon-file-css:before {
1306
+ content: "\e1bd";
1307
+ }
1308
+ .icon-html5:before {
1309
+ content: "\e1be";
1310
+ }
1311
+ .icon-html5-2:before {
1312
+ content: "\e1bf";
1313
+ }
1314
+ .icon-css3:before {
1315
+ content: "\e1c0";
1316
+ }
1317
+ .icon-chrome:before {
1318
+ content: "\e1c1";
1319
+ }
1320
+ .icon-firefox:before {
1321
+ content: "\e1c2";
1322
+ }
1323
+ .icon-IE:before {
1324
+ content: "\e1c3";
1325
+ }
1326
+ .icon-opera:before {
1327
+ content: "\e1c4";
1328
+ }
1329
+ .icon-safari:before {
1330
+ content: "\e1c5";
1331
+ }
1332
+ .icon-cloud-2:before {
1333
+ content: "\e1c7";
1334
+ }
1335
+ .icon-lightning-2:before {
1336
+ content: "\e1c8";
1337
+ }
1338
+ .icon-rainy:before {
1339
+ content: "\e1c9";
1340
+ }
1341
+ .icon-rainy-2:before {
1342
+ content: "\e1ca";
1343
+ }
1344
+ .icon-windy:before {
1345
+ content: "\e1cb";
1346
+ }
1347
+ .icon-cloud-3:before {
1348
+ content: "\e1cc";
1349
+ }
1350
+ .icon-lightning-3:before {
1351
+ content: "\e1cd";
1352
+ }
1353
+ .icon-lightning-4:before {
1354
+ content: "\e1ce";
1355
+ }
1356
+ .icon-rainy-3:before {
1357
+ content: "\e1cf";
1358
+ }
1359
+ .icon-rainy-4:before {
1360
+ content: "\e1d0";
1361
+ }
1362
+ .icon-lines:before {
1363
+ content: "\e1d1";
1364
+ }
1365
+ .icon-weather:before {
1366
+ content: "\e1d2";
1367
+ }
1368
+ .icon-weather-2:before {
1369
+ content: "\e1d3";
1370
+ }
1371
+ .icon-weather-3:before {
1372
+ content: "\e1d4";
1373
+ }
1374
+ .icon-cloud-4:before {
1375
+ content: "\e1d5";
1376
+ }
1377
+ .icon-weather-4:before {
1378
+ content: "\e1d6";
1379
+ }
1380
+ .icon-cloudy:before {
1381
+ content: "\e1d7";
1382
+ }
1383
+ .icon-cloud-5:before {
1384
+ content: "\e1d8";
1385
+ }
1386
+ .icon-lightning-5:before {
1387
+ content: "\e1d9";
1388
+ }
1389
+ .icon-sun:before {
1390
+ content: "\e1da";
1391
+ }
1392
+ .icon-cloudy-2:before {
1393
+ content: "\e1db";
1394
+ }
1395
+ .icon-sunrise:before {
1396
+ content: "\e1dc";
1397
+ }
1398
+ .icon-snowy:before {
1399
+ content: "\e1dd";
1400
+ }
1401
+ .icon-snowy-2:before {
1402
+ content: "\e1de";
1403
+ }
1404
+ .icon-weather-5:before {
1405
+ content: "\e1df";
1406
+ }
1407
+ .icon-Celsius:before {
1408
+ content: "\e1e0";
1409
+ }
1410
+ .icon-Fahrenheit:before {
1411
+ content: "\e1e1";
1412
+ }
1413
+ .icon-none:before {
1414
+ content: "\e1e2";
1415
+ }
1416
+ .icon-compass-2:before {
1417
+ content: "\e1e3";
1418
+ }
1419
+ .icon-thermometer:before {
1420
+ content: "\e1e4";
1421
+ }
1422
+ .icon-ui-settings:before {
1423
+ content: "\e1e5";
1424
+ }
1425
+ .icon-ui-circle-small:before {
1426
+ content: "\e025";
1427
+ }
1428
+ .icon-caret-left:before {
1429
+ content: "\e026";
1430
+ }
1431
+ .icon-thumbs-up-2:before {
1432
+ content: "\e027";
1433
+ }
1434
+ .icon-twitter-3:before {
1435
+ content: "\e047";
1436
+ }
1437
+ .icon-close-2:before {
1438
+ content: "\e057";
1439
+ }
1440
+ .icon-ui-minus:before {
1441
+ content: "\e093";
1442
+ }
1443
+ .icon-ui-plus:before {
1444
+ content: "\e095";
1445
+ }
1446
+ .icon-users-2:before {
1447
+ content: "\e0eb";
1448
+ }
1449
+ .icon-ui-search-2:before {
1450
+ content: "\e0ec";
1451
+ }
1452
+ .icon-ui-path:before {
1453
+ content: "\f05c";
1454
+ }
1455
+ .icon-marker:before {
1456
+ content: "\e1a1";
1457
+ }
1458
+ .icon-grid:before {
1459
+ content: "\e1ae";
1460
+ }
1461
+ .icon-pencil-3:before {
1462
+ content: "\e17b";
1463
+ }
1464
+ .icon-grid-2:before {
1465
+ content: "\e1af";
1466
+ }
1467
+ .icon-grid-3:before {
1468
+ content: "\e1b0";
1469
+ }
1470
+ .icon-ui-chevron-right:before {
1471
+ content: "\e0f8";
1472
+ }
1473
+ .icon-ui-chevron-left:before {
1474
+ content: "\e0fe";
1475
+ }
1476
+ .icon-ui-chevron-up:before {
1477
+ content: "\e102";
1478
+ }
1479
+ .icon-ui-chevron-down:before {
1480
+ content: "\e12a";
1481
+ }
1482
+ .icon-close-2-2:before {
1483
+ content: "\e1e6";
1484
+ }
1485
+ .icon-ui-toggle-2:before {
1486
+ content: "\e137";
1487
+ }
1488
+
1489
+
1490
+
1491
+
1492
+ }