easy-component-ui 0.0.1 → 1.0.3

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.
Files changed (60) hide show
  1. package/components/Base.js +90 -0
  2. package/components/ea-alert/index.js +298 -0
  3. package/components/ea-avatar/index.js +277 -0
  4. package/components/ea-backtop/index.js +232 -0
  5. package/components/ea-badge/index.js +160 -0
  6. package/components/ea-button/index.js +584 -0
  7. package/components/ea-button-group/index.js +459 -0
  8. package/components/ea-calendar/index.js +409 -0
  9. package/components/ea-card/index.js +77 -0
  10. package/components/ea-carousel/index.js +434 -0
  11. package/components/ea-checkbox/index.js +314 -0
  12. package/components/ea-checkbox-group/index.js +107 -0
  13. package/components/ea-collapse/index.js +293 -0
  14. package/components/ea-descriptions/index.js +240 -0
  15. package/components/ea-descriptions-item/index.js +110 -0
  16. package/components/ea-empty/index.js +141 -0
  17. package/{icon → components/ea-icon}/config.json +1017 -1017
  18. package/{icon → components/ea-icon}/css/animation.css +85 -85
  19. package/{icon → components/ea-icon}/css/fontello.css +224 -224
  20. package/components/ea-icon/font/fontello.svg +683 -0
  21. package/components/ea-icon/index.css +2 -0
  22. package/components/ea-icon/index.js +47 -0
  23. package/components/ea-image/index.js +412 -0
  24. package/components/ea-infinite-scroll/index.js +170 -0
  25. package/components/ea-input/index.js +765 -0
  26. package/components/ea-input-number/index.js +458 -0
  27. package/components/ea-link/index.js +200 -0
  28. package/components/ea-loading/index.js +218 -0
  29. package/components/ea-message/MessageClass.js +71 -0
  30. package/components/ea-message/index.js +233 -0
  31. package/components/ea-message-box/EaMessageBoxClass.js +48 -0
  32. package/components/ea-message-box/index.js +202 -0
  33. package/components/ea-pagination/index.js +444 -0
  34. package/components/ea-progress/index.js +333 -0
  35. package/components/ea-radio/index.js +287 -0
  36. package/components/ea-radio-group/index.js +59 -0
  37. package/components/ea-rate/index.js +326 -0
  38. package/components/ea-result/index.js +167 -0
  39. package/components/ea-select/index.js +34 -0
  40. package/components/ea-skeleton/index.js +341 -0
  41. package/components/ea-switch/index.js +301 -0
  42. package/components/ea-tag/index.js +212 -0
  43. package/components/ea-textarea/index.js +333 -0
  44. package/components/ea-timeline/index.js +334 -0
  45. package/components/ea-ui-base-style.css +0 -0
  46. package/package.json +1 -1
  47. package/utils/createElement.js +30 -0
  48. package/utils/handleTemplate.js +19 -0
  49. package/utils/setStyle.js +8 -0
  50. package/icon/font/fontello.svg +0 -346
  51. package/icon/index.css +0 -2
  52. package/index.js +0 -1693
  53. /package/{icon → components/ea-icon}/css/fontello-codes.css +0 -0
  54. /package/{icon → components/ea-icon}/css/fontello-embedded.css +0 -0
  55. /package/{icon → components/ea-icon}/css/fontello-ie7-codes.css +0 -0
  56. /package/{icon → components/ea-icon}/css/fontello-ie7.css +0 -0
  57. /package/{icon → components/ea-icon}/font/fontello.eot +0 -0
  58. /package/{icon → components/ea-icon}/font/fontello.ttf +0 -0
  59. /package/{icon → components/ea-icon}/font/fontello.woff +0 -0
  60. /package/{icon → components/ea-icon}/font/fontello.woff2 +0 -0
@@ -1,85 +1,85 @@
1
- /*
2
- Animation example, for spinners
3
- */
4
- .animate-spin {
5
- -moz-animation: spin 2s infinite linear;
6
- -o-animation: spin 2s infinite linear;
7
- -webkit-animation: spin 2s infinite linear;
8
- animation: spin 2s infinite linear;
9
- display: inline-block;
10
- }
11
- @-moz-keyframes spin {
12
- 0% {
13
- -moz-transform: rotate(0deg);
14
- -o-transform: rotate(0deg);
15
- -webkit-transform: rotate(0deg);
16
- transform: rotate(0deg);
17
- }
18
-
19
- 100% {
20
- -moz-transform: rotate(359deg);
21
- -o-transform: rotate(359deg);
22
- -webkit-transform: rotate(359deg);
23
- transform: rotate(359deg);
24
- }
25
- }
26
- @-webkit-keyframes spin {
27
- 0% {
28
- -moz-transform: rotate(0deg);
29
- -o-transform: rotate(0deg);
30
- -webkit-transform: rotate(0deg);
31
- transform: rotate(0deg);
32
- }
33
-
34
- 100% {
35
- -moz-transform: rotate(359deg);
36
- -o-transform: rotate(359deg);
37
- -webkit-transform: rotate(359deg);
38
- transform: rotate(359deg);
39
- }
40
- }
41
- @-o-keyframes spin {
42
- 0% {
43
- -moz-transform: rotate(0deg);
44
- -o-transform: rotate(0deg);
45
- -webkit-transform: rotate(0deg);
46
- transform: rotate(0deg);
47
- }
48
-
49
- 100% {
50
- -moz-transform: rotate(359deg);
51
- -o-transform: rotate(359deg);
52
- -webkit-transform: rotate(359deg);
53
- transform: rotate(359deg);
54
- }
55
- }
56
- @-ms-keyframes spin {
57
- 0% {
58
- -moz-transform: rotate(0deg);
59
- -o-transform: rotate(0deg);
60
- -webkit-transform: rotate(0deg);
61
- transform: rotate(0deg);
62
- }
63
-
64
- 100% {
65
- -moz-transform: rotate(359deg);
66
- -o-transform: rotate(359deg);
67
- -webkit-transform: rotate(359deg);
68
- transform: rotate(359deg);
69
- }
70
- }
71
- @keyframes spin {
72
- 0% {
73
- -moz-transform: rotate(0deg);
74
- -o-transform: rotate(0deg);
75
- -webkit-transform: rotate(0deg);
76
- transform: rotate(0deg);
77
- }
78
-
79
- 100% {
80
- -moz-transform: rotate(359deg);
81
- -o-transform: rotate(359deg);
82
- -webkit-transform: rotate(359deg);
83
- transform: rotate(359deg);
84
- }
85
- }
1
+ /*
2
+ Animation example, for spinners
3
+ */
4
+ .animate-spin {
5
+ -moz-animation: spin 2s infinite linear;
6
+ -o-animation: spin 2s infinite linear;
7
+ -webkit-animation: spin 2s infinite linear;
8
+ animation: spin 2s infinite linear;
9
+ display: inline-block;
10
+ }
11
+ @-moz-keyframes spin {
12
+ 0% {
13
+ -moz-transform: rotate(0deg);
14
+ -o-transform: rotate(0deg);
15
+ -webkit-transform: rotate(0deg);
16
+ transform: rotate(0deg);
17
+ }
18
+
19
+ 100% {
20
+ -moz-transform: rotate(359deg);
21
+ -o-transform: rotate(359deg);
22
+ -webkit-transform: rotate(359deg);
23
+ transform: rotate(359deg);
24
+ }
25
+ }
26
+ @-webkit-keyframes spin {
27
+ 0% {
28
+ -moz-transform: rotate(0deg);
29
+ -o-transform: rotate(0deg);
30
+ -webkit-transform: rotate(0deg);
31
+ transform: rotate(0deg);
32
+ }
33
+
34
+ 100% {
35
+ -moz-transform: rotate(359deg);
36
+ -o-transform: rotate(359deg);
37
+ -webkit-transform: rotate(359deg);
38
+ transform: rotate(359deg);
39
+ }
40
+ }
41
+ @-o-keyframes spin {
42
+ 0% {
43
+ -moz-transform: rotate(0deg);
44
+ -o-transform: rotate(0deg);
45
+ -webkit-transform: rotate(0deg);
46
+ transform: rotate(0deg);
47
+ }
48
+
49
+ 100% {
50
+ -moz-transform: rotate(359deg);
51
+ -o-transform: rotate(359deg);
52
+ -webkit-transform: rotate(359deg);
53
+ transform: rotate(359deg);
54
+ }
55
+ }
56
+ @-ms-keyframes spin {
57
+ 0% {
58
+ -moz-transform: rotate(0deg);
59
+ -o-transform: rotate(0deg);
60
+ -webkit-transform: rotate(0deg);
61
+ transform: rotate(0deg);
62
+ }
63
+
64
+ 100% {
65
+ -moz-transform: rotate(359deg);
66
+ -o-transform: rotate(359deg);
67
+ -webkit-transform: rotate(359deg);
68
+ transform: rotate(359deg);
69
+ }
70
+ }
71
+ @keyframes spin {
72
+ 0% {
73
+ -moz-transform: rotate(0deg);
74
+ -o-transform: rotate(0deg);
75
+ -webkit-transform: rotate(0deg);
76
+ transform: rotate(0deg);
77
+ }
78
+
79
+ 100% {
80
+ -moz-transform: rotate(359deg);
81
+ -o-transform: rotate(359deg);
82
+ -webkit-transform: rotate(359deg);
83
+ transform: rotate(359deg);
84
+ }
85
+ }
@@ -1,224 +1,224 @@
1
- @font-face {
2
- font-family: 'fontello';
3
- src: url('../font/fontello.eot?56437677');
4
- src: url('../font/fontello.eot?56437677#iefix') format('embedded-opentype'),
5
- url('../font/fontello.woff2?56437677') format('woff2'),
6
- url('../font/fontello.woff?56437677') format('woff'),
7
- url('../font/fontello.ttf?56437677') format('truetype'),
8
- url('../font/fontello.svg?56437677#fontello') format('svg');
9
- font-weight: normal;
10
- font-style: normal;
11
- }
12
- /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
13
- /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
14
- /*
15
- @media screen and (-webkit-min-device-pixel-ratio:0) {
16
- @font-face {
17
- font-family: 'fontello';
18
- src: url('../font/fontello.svg?56437677#fontello') format('svg');
19
- }
20
- }
21
- */
22
- [class^="icon-"]:before, [class*=" icon-"]:before {
23
- font-family: "fontello";
24
- font-style: normal;
25
- font-weight: normal;
26
- speak: never;
27
-
28
- display: inline-block;
29
- text-decoration: inherit;
30
- width: 1em;
31
- margin-right: .2em;
32
- text-align: center;
33
- /* opacity: .8; */
34
-
35
- /* For safety - reset parent styles, that can break glyph codes*/
36
- font-variant: normal;
37
- text-transform: none;
38
-
39
- /* fix buttons height, for twitter bootstrap */
40
- line-height: 1em;
41
-
42
- /* Animation center compensation - margins should be symmetric */
43
- /* remove if not needed */
44
- margin-left: .2em;
45
-
46
- /* you can be more comfortable with increased icons size */
47
- /* font-size: 120%; */
48
-
49
- /* Font smoothing. That was taken from TWBS */
50
- -webkit-font-smoothing: antialiased;
51
- -moz-osx-font-smoothing: grayscale;
52
-
53
- /* Uncomment for 3D effect */
54
- /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
55
- }
56
-
57
- .icon-music:before { content: '\e800'; } /* '' */
58
- .icon-heart-empty:before { content: '\e801'; } /* '' */
59
- .icon-heart:before { content: '\e802'; } /* '' */
60
- .icon-star-empty:before { content: '\e803'; } /* '' */
61
- .icon-star:before { content: '\e804'; } /* '' */
62
- .icon-mail:before { content: '\e805'; } /* '' */
63
- .icon-search:before { content: '\e806'; } /* '' */
64
- .icon-user:before { content: '\e807'; } /* '' */
65
- .icon-users:before { content: '\e808'; } /* '' */
66
- .icon-video:before { content: '\e809'; } /* '' */
67
- .icon-videocam:before { content: '\e80a'; } /* '' */
68
- .icon-picture:before { content: '\e80b'; } /* '' */
69
- .icon-camera:before { content: '\e80c'; } /* '' */
70
- .icon-th-list:before { content: '\e80d'; } /* '' */
71
- .icon-ok-circled:before { content: '\e80e'; } /* '' */
72
- .icon-ok-circled2:before { content: '\e80f'; } /* '' */
73
- .icon-cancel-circled:before { content: '\e810'; } /* '' */
74
- .icon-cancel-circled2:before { content: '\e811'; } /* '' */
75
- .icon-plus:before { content: '\e812'; } /* '' */
76
- .icon-minus-circled:before { content: '\e813'; } /* '' */
77
- .icon-home:before { content: '\e814'; } /* '' */
78
- .icon-link:before { content: '\e815'; } /* '' */
79
- .icon-attach:before { content: '\e816'; } /* '' */
80
- .icon-lock:before { content: '\e817'; } /* '' */
81
- .icon-lock-open:before { content: '\e818'; } /* '' */
82
- .icon-pin:before { content: '\e819'; } /* '' */
83
- .icon-eye:before { content: '\e81a'; } /* '' */
84
- .icon-eye-off:before { content: '\e81b'; } /* '' */
85
- .icon-tag:before { content: '\e81c'; } /* '' */
86
- .icon-tags:before { content: '\e81d'; } /* '' */
87
- .icon-bookmark:before { content: '\e81e'; } /* '' */
88
- .icon-edit:before { content: '\e81f'; } /* '' */
89
- .icon-bell:before { content: '\e820'; } /* '' */
90
- .icon-trash-empty:before { content: '\e821'; } /* '' */
91
- .icon-location:before { content: '\e822'; } /* '' */
92
- .icon-phone:before { content: '\e823'; } /* '' */
93
- .icon-cog:before { content: '\e824'; } /* '' */
94
- .icon-basket:before { content: '\e825'; } /* '' */
95
- .icon-play:before { content: '\e826'; } /* '' */
96
- .icon-stop:before { content: '\e827'; } /* '' */
97
- .icon-pause:before { content: '\e828'; } /* '' */
98
- .icon-to-end:before { content: '\e829'; } /* '' */
99
- .icon-to-end-alt:before { content: '\e82a'; } /* '' */
100
- .icon-to-start:before { content: '\e82b'; } /* '' */
101
- .icon-to-start-alt:before { content: '\e82c'; } /* '' */
102
- .icon-fast-fw:before { content: '\e82d'; } /* '' */
103
- .icon-fast-bw:before { content: '\e82e'; } /* '' */
104
- .icon-inbox:before { content: '\e82f'; } /* '' */
105
- .icon-globe:before { content: '\e830'; } /* '' */
106
- .icon-briefcase:before { content: '\e831'; } /* '' */
107
- .icon-star-half:before { content: '\e832'; } /* '' */
108
- .icon-th-large:before { content: '\e833'; } /* '' */
109
- .icon-ok:before { content: '\e834'; } /* '' */
110
- .icon-cancel:before { content: '\e835'; } /* '' */
111
- .icon-minus:before { content: '\e836'; } /* '' */
112
- .icon-thumbs-up:before { content: '\e837'; } /* '' */
113
- .icon-thumbs-down:before { content: '\e838'; } /* '' */
114
- .icon-spin6:before { content: '\e839'; } /* '' */
115
- .icon-pencil:before { content: '\e83a'; } /* '' */
116
- .icon-comment:before { content: '\e83b'; } /* '' */
117
- .icon-chat:before { content: '\e83c'; } /* '' */
118
- .icon-attention-circled:before { content: '\e83d'; } /* '' */
119
- .icon-play-circled2:before { content: '\e83e'; } /* '' */
120
- .icon-signal:before { content: '\e83f'; } /* '' */
121
- .icon-firefox:before { content: '\e840'; } /* '' */
122
- .icon-chrome:before { content: '\e841'; } /* '' */
123
- .icon-opera:before { content: '\e842'; } /* '' */
124
- .icon-ie:before { content: '\e843'; } /* '' */
125
- .icon-crown:before { content: '\e844'; } /* '' */
126
- .icon-award:before { content: '\e845'; } /* '' */
127
- .icon-cloud:before { content: '\e846'; } /* '' */
128
- .icon-flash:before { content: '\e847'; } /* '' */
129
- .icon-umbrella:before { content: '\e848'; } /* '' */
130
- .icon-flight:before { content: '\e849'; } /* '' */
131
- .icon-leaf:before { content: '\e84a'; } /* '' */
132
- .icon-link-ext:before { content: '\f08e'; } /* '' */
133
- .icon-twitter:before { content: '\f099'; } /* '' */
134
- .icon-github-circled:before { content: '\f09b'; } /* '' */
135
- .icon-hdd:before { content: '\f0a0'; } /* '' */
136
- .icon-table:before { content: '\f0ce'; } /* '' */
137
- .icon-mail-alt:before { content: '\f0e0'; } /* '' */
138
- .icon-gauge:before { content: '\f0e4'; } /* '' */
139
- .icon-comment-empty:before { content: '\f0e5'; } /* '' */
140
- .icon-chat-empty:before { content: '\f0e6'; } /* '' */
141
- .icon-download-cloud:before { content: '\f0ed'; } /* '' */
142
- .icon-upload-cloud:before { content: '\f0ee'; } /* '' */
143
- .icon-bell-alt:before { content: '\f0f3'; } /* '' */
144
- .icon-coffee:before { content: '\f0f4'; } /* '' */
145
- .icon-food:before { content: '\f0f5'; } /* '' */
146
- .icon-medkit:before { content: '\f0fa'; } /* '' */
147
- .icon-angle-left:before { content: '\f104'; } /* '' */
148
- .icon-angle-right:before { content: '\f105'; } /* '' */
149
- .icon-angle-up:before { content: '\f106'; } /* '' */
150
- .icon-angle-down:before { content: '\f107'; } /* '' */
151
- .icon-laptop:before { content: '\f109'; } /* '' */
152
- .icon-tablet:before { content: '\f10a'; } /* '' */
153
- .icon-folder-empty:before { content: '\f114'; } /* '' */
154
- .icon-gamepad:before { content: '\f11b'; } /* '' */
155
- .icon-star-half-alt:before { content: '\f123'; } /* '' */
156
- .icon-direction:before { content: '\f124'; } /* '' */
157
- .icon-help:before { content: '\f128'; } /* '' */
158
- .icon-info:before { content: '\f129'; } /* '' */
159
- .icon-attention-alt:before { content: '\f12a'; } /* '' */
160
- .icon-lock-open-alt:before { content: '\f13e'; } /* '' */
161
- .icon-play-circled:before { content: '\f144'; } /* '' */
162
- .icon-ok-squared:before { content: '\f14a'; } /* '' */
163
- .icon-compass:before { content: '\f14e'; } /* '' */
164
- .icon-thumbs-up-alt:before { content: '\f164'; } /* '' */
165
- .icon-thumbs-down-alt:before { content: '\f165'; } /* '' */
166
- .icon-youtube:before { content: '\f167'; } /* '' */
167
- .icon-dropbox:before { content: '\f16b'; } /* '' */
168
- .icon-tumblr-squared:before { content: '\f174'; } /* '' */
169
- .icon-apple:before { content: '\f179'; } /* '' */
170
- .icon-windows:before { content: '\f17a'; } /* '' */
171
- .icon-android:before { content: '\f17b'; } /* '' */
172
- .icon-skype:before { content: '\f17e'; } /* '' */
173
- .icon-sun:before { content: '\f185'; } /* '' */
174
- .icon-moon:before { content: '\f186'; } /* '' */
175
- .icon-bug:before { content: '\f188'; } /* '' */
176
- .icon-weibo:before { content: '\f18a'; } /* '' */
177
- .icon-renren:before { content: '\f18b'; } /* '' */
178
- .icon-graduation-cap:before { content: '\f19d'; } /* '' */
179
- .icon-google:before { content: '\f1a0'; } /* '' */
180
- .icon-language:before { content: '\f1ab'; } /* '' */
181
- .icon-paw:before { content: '\f1b0'; } /* '' */
182
- .icon-steam-squared:before { content: '\f1b7'; } /* '' */
183
- .icon-recycle:before { content: '\f1b8'; } /* '' */
184
- .icon-database:before { content: '\f1c0'; } /* '' */
185
- .icon-tencent-weibo:before { content: '\f1d5'; } /* '' */
186
- .icon-qq:before { content: '\f1d6'; } /* '' */
187
- .icon-wechat:before { content: '\f1d7'; } /* '' */
188
- .icon-paper-plane:before { content: '\f1d8'; } /* '' */
189
- .icon-share:before { content: '\f1e0'; } /* '' */
190
- .icon-binoculars:before { content: '\f1e5'; } /* '' */
191
- .icon-twitch:before { content: '\f1e8'; } /* '' */
192
- .icon-wifi:before { content: '\f1eb'; } /* '' */
193
- .icon-paypal:before { content: '\f1ed'; } /* '' */
194
- .icon-cc-visa:before { content: '\f1f0'; } /* '' */
195
- .icon-cc-mastercard:before { content: '\f1f1'; } /* '' */
196
- .icon-cc-discover:before { content: '\f1f2'; } /* '' */
197
- .icon-cc-amex:before { content: '\f1f3'; } /* '' */
198
- .icon-cc-paypal:before { content: '\f1f4'; } /* '' */
199
- .icon-cc-stripe:before { content: '\f1f5'; } /* '' */
200
- .icon-bell-off:before { content: '\f1f6'; } /* '' */
201
- .icon-bell-off-empty:before { content: '\f1f7'; } /* '' */
202
- .icon-trash:before { content: '\f1f8'; } /* '' */
203
- .icon-birthday:before { content: '\f1fd'; } /* '' */
204
- .icon-heartbeat:before { content: '\f21e'; } /* '' */
205
- .icon-venus:before { content: '\f221'; } /* '' */
206
- .icon-mars:before { content: '\f222'; } /* '' */
207
- .icon-user-plus:before { content: '\f234'; } /* '' */
208
- .icon-user-times:before { content: '\f235'; } /* '' */
209
- .icon-bed:before { content: '\f236'; } /* '' */
210
- .icon-battery-4:before { content: '\f240'; } /* '' */
211
- .icon-battery-3:before { content: '\f241'; } /* '' */
212
- .icon-battery-2:before { content: '\f242'; } /* '' */
213
- .icon-battery-1:before { content: '\f243'; } /* '' */
214
- .icon-battery-0:before { content: '\f244'; } /* '' */
215
- .icon-hourglass-o:before { content: '\f250'; } /* '' */
216
- .icon-hourglass-1:before { content: '\f251'; } /* '' */
217
- .icon-hourglass-2:before { content: '\f252'; } /* '' */
218
- .icon-hourglass-3:before { content: '\f253'; } /* '' */
219
- .icon-hourglass:before { content: '\f254'; } /* '' */
220
- .icon-map-signs:before { content: '\f277'; } /* '' */
221
- .icon-map:before { content: '\f279'; } /* '' */
222
- .icon-bluetooth-b:before { content: '\f294'; } /* '' */
223
- .icon-facebook-squared:before { content: '\f308'; } /* '' */
224
- .icon-linkedin-squared:before { content: '\f30c'; } /* '' */
1
+ @font-face {
2
+ font-family: 'fontello';
3
+ src: url('../font/fontello.eot?56437677');
4
+ src: url('../font/fontello.eot?56437677#iefix') format('embedded-opentype'),
5
+ url('../font/fontello.woff2?56437677') format('woff2'),
6
+ url('../font/fontello.woff?56437677') format('woff'),
7
+ url('../font/fontello.ttf?56437677') format('truetype'),
8
+ url('../font/fontello.svg?56437677#fontello') format('svg');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ }
12
+ /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
13
+ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
14
+ /*
15
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
16
+ @font-face {
17
+ font-family: 'fontello';
18
+ src: url('../font/fontello.svg?56437677#fontello') format('svg');
19
+ }
20
+ }
21
+ */
22
+ [class^="icon-"]:before, [class*=" icon-"]:before {
23
+ font-family: "fontello";
24
+ font-style: normal;
25
+ font-weight: normal;
26
+ speak: never;
27
+
28
+ display: inline-block;
29
+ text-decoration: inherit;
30
+ width: 1em;
31
+ margin-right: .2em;
32
+ text-align: center;
33
+ /* opacity: .8; */
34
+
35
+ /* For safety - reset parent styles, that can break glyph codes*/
36
+ font-variant: normal;
37
+ text-transform: none;
38
+
39
+ /* fix buttons height, for twitter bootstrap */
40
+ line-height: 1em;
41
+
42
+ /* Animation center compensation - margins should be symmetric */
43
+ /* remove if not needed */
44
+ margin-left: .2em;
45
+
46
+ /* you can be more comfortable with increased icons size */
47
+ /* font-size: 120%; */
48
+
49
+ /* Font smoothing. That was taken from TWBS */
50
+ -webkit-font-smoothing: antialiased;
51
+ -moz-osx-font-smoothing: grayscale;
52
+
53
+ /* Uncomment for 3D effect */
54
+ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
55
+ }
56
+
57
+ .icon-music:before { content: '\e800'; } /* '' */
58
+ .icon-heart-empty:before { content: '\e801'; } /* '' */
59
+ .icon-heart:before { content: '\e802'; } /* '' */
60
+ .icon-star-empty:before { content: '\e803'; } /* '' */
61
+ .icon-star:before { content: '\e804'; } /* '' */
62
+ .icon-mail:before { content: '\e805'; } /* '' */
63
+ .icon-search:before { content: '\e806'; } /* '' */
64
+ .icon-user:before { content: '\e807'; } /* '' */
65
+ .icon-users:before { content: '\e808'; } /* '' */
66
+ .icon-video:before { content: '\e809'; } /* '' */
67
+ .icon-videocam:before { content: '\e80a'; } /* '' */
68
+ .icon-picture:before { content: '\e80b'; } /* '' */
69
+ .icon-camera:before { content: '\e80c'; } /* '' */
70
+ .icon-th-list:before { content: '\e80d'; } /* '' */
71
+ .icon-ok-circled:before { content: '\e80e'; } /* '' */
72
+ .icon-ok-circled2:before { content: '\e80f'; } /* '' */
73
+ .icon-cancel-circled:before { content: '\e810'; } /* '' */
74
+ .icon-cancel-circled2:before { content: '\e811'; } /* '' */
75
+ .icon-plus:before { content: '\e812'; } /* '' */
76
+ .icon-minus-circled:before { content: '\e813'; } /* '' */
77
+ .icon-home:before { content: '\e814'; } /* '' */
78
+ .icon-link:before { content: '\e815'; } /* '' */
79
+ .icon-attach:before { content: '\e816'; } /* '' */
80
+ .icon-lock:before { content: '\e817'; } /* '' */
81
+ .icon-lock-open:before { content: '\e818'; } /* '' */
82
+ .icon-pin:before { content: '\e819'; } /* '' */
83
+ .icon-eye:before { content: '\e81a'; } /* '' */
84
+ .icon-eye-off:before { content: '\e81b'; } /* '' */
85
+ .icon-tag:before { content: '\e81c'; } /* '' */
86
+ .icon-tags:before { content: '\e81d'; } /* '' */
87
+ .icon-bookmark:before { content: '\e81e'; } /* '' */
88
+ .icon-edit:before { content: '\e81f'; } /* '' */
89
+ .icon-bell:before { content: '\e820'; } /* '' */
90
+ .icon-trash-empty:before { content: '\e821'; } /* '' */
91
+ .icon-location:before { content: '\e822'; } /* '' */
92
+ .icon-phone:before { content: '\e823'; } /* '' */
93
+ .icon-cog:before { content: '\e824'; } /* '' */
94
+ .icon-basket:before { content: '\e825'; } /* '' */
95
+ .icon-play:before { content: '\e826'; } /* '' */
96
+ .icon-stop:before { content: '\e827'; } /* '' */
97
+ .icon-pause:before { content: '\e828'; } /* '' */
98
+ .icon-to-end:before { content: '\e829'; } /* '' */
99
+ .icon-to-end-alt:before { content: '\e82a'; } /* '' */
100
+ .icon-to-start:before { content: '\e82b'; } /* '' */
101
+ .icon-to-start-alt:before { content: '\e82c'; } /* '' */
102
+ .icon-fast-fw:before { content: '\e82d'; } /* '' */
103
+ .icon-fast-bw:before { content: '\e82e'; } /* '' */
104
+ .icon-inbox:before { content: '\e82f'; } /* '' */
105
+ .icon-globe:before { content: '\e830'; } /* '' */
106
+ .icon-briefcase:before { content: '\e831'; } /* '' */
107
+ .icon-star-half:before { content: '\e832'; } /* '' */
108
+ .icon-th-large:before { content: '\e833'; } /* '' */
109
+ .icon-ok:before { content: '\e834'; } /* '' */
110
+ .icon-cancel:before { content: '\e835'; } /* '' */
111
+ .icon-minus:before { content: '\e836'; } /* '' */
112
+ .icon-thumbs-up:before { content: '\e837'; } /* '' */
113
+ .icon-thumbs-down:before { content: '\e838'; } /* '' */
114
+ .icon-spin6:before { content: '\e839'; } /* '' */
115
+ .icon-pencil:before { content: '\e83a'; } /* '' */
116
+ .icon-comment:before { content: '\e83b'; } /* '' */
117
+ .icon-chat:before { content: '\e83c'; } /* '' */
118
+ .icon-attention-circled:before { content: '\e83d'; } /* '' */
119
+ .icon-play-circled2:before { content: '\e83e'; } /* '' */
120
+ .icon-signal:before { content: '\e83f'; } /* '' */
121
+ .icon-firefox:before { content: '\e840'; } /* '' */
122
+ .icon-chrome:before { content: '\e841'; } /* '' */
123
+ .icon-opera:before { content: '\e842'; } /* '' */
124
+ .icon-ie:before { content: '\e843'; } /* '' */
125
+ .icon-crown:before { content: '\e844'; } /* '' */
126
+ .icon-award:before { content: '\e845'; } /* '' */
127
+ .icon-cloud:before { content: '\e846'; } /* '' */
128
+ .icon-flash:before { content: '\e847'; } /* '' */
129
+ .icon-umbrella:before { content: '\e848'; } /* '' */
130
+ .icon-flight:before { content: '\e849'; } /* '' */
131
+ .icon-leaf:before { content: '\e84a'; } /* '' */
132
+ .icon-link-ext:before { content: '\f08e'; } /* '' */
133
+ .icon-twitter:before { content: '\f099'; } /* '' */
134
+ .icon-github-circled:before { content: '\f09b'; } /* '' */
135
+ .icon-hdd:before { content: '\f0a0'; } /* '' */
136
+ .icon-table:before { content: '\f0ce'; } /* '' */
137
+ .icon-mail-alt:before { content: '\f0e0'; } /* '' */
138
+ .icon-gauge:before { content: '\f0e4'; } /* '' */
139
+ .icon-comment-empty:before { content: '\f0e5'; } /* '' */
140
+ .icon-chat-empty:before { content: '\f0e6'; } /* '' */
141
+ .icon-download-cloud:before { content: '\f0ed'; } /* '' */
142
+ .icon-upload-cloud:before { content: '\f0ee'; } /* '' */
143
+ .icon-bell-alt:before { content: '\f0f3'; } /* '' */
144
+ .icon-coffee:before { content: '\f0f4'; } /* '' */
145
+ .icon-food:before { content: '\f0f5'; } /* '' */
146
+ .icon-medkit:before { content: '\f0fa'; } /* '' */
147
+ .icon-angle-left:before { content: '\f104'; } /* '' */
148
+ .icon-angle-right:before { content: '\f105'; } /* '' */
149
+ .icon-angle-up:before { content: '\f106'; } /* '' */
150
+ .icon-angle-down:before { content: '\f107'; } /* '' */
151
+ .icon-laptop:before { content: '\f109'; } /* '' */
152
+ .icon-tablet:before { content: '\f10a'; } /* '' */
153
+ .icon-folder-empty:before { content: '\f114'; } /* '' */
154
+ .icon-gamepad:before { content: '\f11b'; } /* '' */
155
+ .icon-star-half-alt:before { content: '\f123'; } /* '' */
156
+ .icon-direction:before { content: '\f124'; } /* '' */
157
+ .icon-help:before { content: '\f128'; } /* '' */
158
+ .icon-info:before { content: '\f129'; } /* '' */
159
+ .icon-attention-alt:before { content: '\f12a'; } /* '' */
160
+ .icon-lock-open-alt:before { content: '\f13e'; } /* '' */
161
+ .icon-play-circled:before { content: '\f144'; } /* '' */
162
+ .icon-ok-squared:before { content: '\f14a'; } /* '' */
163
+ .icon-compass:before { content: '\f14e'; } /* '' */
164
+ .icon-thumbs-up-alt:before { content: '\f164'; } /* '' */
165
+ .icon-thumbs-down-alt:before { content: '\f165'; } /* '' */
166
+ .icon-youtube:before { content: '\f167'; } /* '' */
167
+ .icon-dropbox:before { content: '\f16b'; } /* '' */
168
+ .icon-tumblr-squared:before { content: '\f174'; } /* '' */
169
+ .icon-apple:before { content: '\f179'; } /* '' */
170
+ .icon-windows:before { content: '\f17a'; } /* '' */
171
+ .icon-android:before { content: '\f17b'; } /* '' */
172
+ .icon-skype:before { content: '\f17e'; } /* '' */
173
+ .icon-sun:before { content: '\f185'; } /* '' */
174
+ .icon-moon:before { content: '\f186'; } /* '' */
175
+ .icon-bug:before { content: '\f188'; } /* '' */
176
+ .icon-weibo:before { content: '\f18a'; } /* '' */
177
+ .icon-renren:before { content: '\f18b'; } /* '' */
178
+ .icon-graduation-cap:before { content: '\f19d'; } /* '' */
179
+ .icon-google:before { content: '\f1a0'; } /* '' */
180
+ .icon-language:before { content: '\f1ab'; } /* '' */
181
+ .icon-paw:before { content: '\f1b0'; } /* '' */
182
+ .icon-steam-squared:before { content: '\f1b7'; } /* '' */
183
+ .icon-recycle:before { content: '\f1b8'; } /* '' */
184
+ .icon-database:before { content: '\f1c0'; } /* '' */
185
+ .icon-tencent-weibo:before { content: '\f1d5'; } /* '' */
186
+ .icon-qq:before { content: '\f1d6'; } /* '' */
187
+ .icon-wechat:before { content: '\f1d7'; } /* '' */
188
+ .icon-paper-plane:before { content: '\f1d8'; } /* '' */
189
+ .icon-share:before { content: '\f1e0'; } /* '' */
190
+ .icon-binoculars:before { content: '\f1e5'; } /* '' */
191
+ .icon-twitch:before { content: '\f1e8'; } /* '' */
192
+ .icon-wifi:before { content: '\f1eb'; } /* '' */
193
+ .icon-paypal:before { content: '\f1ed'; } /* '' */
194
+ .icon-cc-visa:before { content: '\f1f0'; } /* '' */
195
+ .icon-cc-mastercard:before { content: '\f1f1'; } /* '' */
196
+ .icon-cc-discover:before { content: '\f1f2'; } /* '' */
197
+ .icon-cc-amex:before { content: '\f1f3'; } /* '' */
198
+ .icon-cc-paypal:before { content: '\f1f4'; } /* '' */
199
+ .icon-cc-stripe:before { content: '\f1f5'; } /* '' */
200
+ .icon-bell-off:before { content: '\f1f6'; } /* '' */
201
+ .icon-bell-off-empty:before { content: '\f1f7'; } /* '' */
202
+ .icon-trash:before { content: '\f1f8'; } /* '' */
203
+ .icon-birthday:before { content: '\f1fd'; } /* '' */
204
+ .icon-heartbeat:before { content: '\f21e'; } /* '' */
205
+ .icon-venus:before { content: '\f221'; } /* '' */
206
+ .icon-mars:before { content: '\f222'; } /* '' */
207
+ .icon-user-plus:before { content: '\f234'; } /* '' */
208
+ .icon-user-times:before { content: '\f235'; } /* '' */
209
+ .icon-bed:before { content: '\f236'; } /* '' */
210
+ .icon-battery-4:before { content: '\f240'; } /* '' */
211
+ .icon-battery-3:before { content: '\f241'; } /* '' */
212
+ .icon-battery-2:before { content: '\f242'; } /* '' */
213
+ .icon-battery-1:before { content: '\f243'; } /* '' */
214
+ .icon-battery-0:before { content: '\f244'; } /* '' */
215
+ .icon-hourglass-o:before { content: '\f250'; } /* '' */
216
+ .icon-hourglass-1:before { content: '\f251'; } /* '' */
217
+ .icon-hourglass-2:before { content: '\f252'; } /* '' */
218
+ .icon-hourglass-3:before { content: '\f253'; } /* '' */
219
+ .icon-hourglass:before { content: '\f254'; } /* '' */
220
+ .icon-map-signs:before { content: '\f277'; } /* '' */
221
+ .icon-map:before { content: '\f279'; } /* '' */
222
+ .icon-bluetooth-b:before { content: '\f294'; } /* '' */
223
+ .icon-facebook-squared:before { content: '\f308'; } /* '' */
224
+ .icon-linkedin-squared:before { content: '\f30c'; } /* '' */