flashgrid 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +4 -0
  3. data/Gemfile.lock +17 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +78 -0
  6. data/Rakefile +1 -0
  7. data/app/assets/fonts/gotham/gotham-bold.eot +0 -0
  8. data/app/assets/fonts/gotham/gotham-bold.svg +2066 -0
  9. data/app/assets/fonts/gotham/gotham-bold.ttf +0 -0
  10. data/app/assets/fonts/gotham/gotham-bold.woff +0 -0
  11. data/app/assets/fonts/gotham/gotham-book.eot +0 -0
  12. data/app/assets/fonts/gotham/gotham-book.svg +631 -0
  13. data/app/assets/fonts/gotham/gotham-book.ttf +0 -0
  14. data/app/assets/fonts/gotham/gotham-book.woff +0 -0
  15. data/app/assets/fonts/gotham/gotham-light.eot +0 -0
  16. data/app/assets/fonts/gotham/gotham-light.svg +635 -0
  17. data/app/assets/fonts/gotham/gotham-light.ttf +0 -0
  18. data/app/assets/fonts/gotham/gotham-light.woff +0 -0
  19. data/app/assets/fonts/gotham/gotham-medium.eot +0 -0
  20. data/app/assets/fonts/gotham/gotham-medium.svg +629 -0
  21. data/app/assets/fonts/gotham/gotham-medium.ttf +0 -0
  22. data/app/assets/fonts/gotham/gotham-medium.woff +0 -0
  23. data/app/assets/fonts/ionicons/ionicons.eot +0 -0
  24. data/app/assets/fonts/ionicons/ionicons.svg +1623 -0
  25. data/app/assets/fonts/ionicons/ionicons.ttf +0 -0
  26. data/app/assets/fonts/ionicons/ionicons.woff +0 -0
  27. data/flashgrid.gemspec +23 -0
  28. data/lib/flashgrid.rb +6 -0
  29. data/lib/flashgrid/version.rb +3 -0
  30. data/vendor/assets/javascripts/affix.js +127 -0
  31. data/vendor/assets/javascripts/alert.js +78 -0
  32. data/vendor/assets/javascripts/collapse.js +159 -0
  33. data/vendor/assets/javascripts/date_picker.js +1645 -0
  34. data/vendor/assets/javascripts/dropdown.js +134 -0
  35. data/vendor/assets/javascripts/file_input.js +94 -0
  36. data/vendor/assets/javascripts/map.js +2065 -0
  37. data/vendor/assets/javascripts/modal.js +226 -0
  38. data/vendor/assets/javascripts/popover.js +97 -0
  39. data/vendor/assets/javascripts/switch.js +346 -0
  40. data/vendor/assets/javascripts/tab.js +115 -0
  41. data/vendor/assets/javascripts/time_picker.js +1087 -0
  42. data/vendor/assets/javascripts/tooltip.js +365 -0
  43. data/vendor/assets/javascripts/transition.js +36 -0
  44. data/vendor/assets/stylesheets/ad.css.scss +72 -0
  45. data/vendor/assets/stylesheets/affix.css.scss +7 -0
  46. data/vendor/assets/stylesheets/alert.css.scss +72 -0
  47. data/vendor/assets/stylesheets/breadcrumb.css.scss +26 -0
  48. data/vendor/assets/stylesheets/button.css.scss +227 -0
  49. data/vendor/assets/stylesheets/code.css.scss +49 -0
  50. data/vendor/assets/stylesheets/collapse.css.scss +15 -0
  51. data/vendor/assets/stylesheets/datepicker.css.scss +122 -0
  52. data/vendor/assets/stylesheets/dropdown.css.scss +83 -0
  53. data/vendor/assets/stylesheets/footer.css.scss +33 -0
  54. data/vendor/assets/stylesheets/form.css.scss +213 -0
  55. data/vendor/assets/stylesheets/grid.css.scss +291 -0
  56. data/vendor/assets/stylesheets/header.css.scss +134 -0
  57. data/vendor/assets/stylesheets/icon.css.scss +1130 -0
  58. data/vendor/assets/stylesheets/image.css.scss +108 -0
  59. data/vendor/assets/stylesheets/label_and_badge.css.scss +53 -0
  60. data/vendor/assets/stylesheets/link.css.scss +21 -0
  61. data/vendor/assets/stylesheets/list.css.scss +38 -0
  62. data/vendor/assets/stylesheets/map.css.scss +13 -0
  63. data/vendor/assets/stylesheets/modal.css.scss +117 -0
  64. data/vendor/assets/stylesheets/pagination.css.scss +37 -0
  65. data/vendor/assets/stylesheets/placeholder.css.scss +27 -0
  66. data/vendor/assets/stylesheets/popover.css.scss +107 -0
  67. data/vendor/assets/stylesheets/progress.css.scss +25 -0
  68. data/vendor/assets/stylesheets/reset.css.scss +56 -0
  69. data/vendor/assets/stylesheets/switch.css.scss +73 -0
  70. data/vendor/assets/stylesheets/tab.css.scss +179 -0
  71. data/vendor/assets/stylesheets/table.css.scss +73 -0
  72. data/vendor/assets/stylesheets/timepicker.css.scss +81 -0
  73. data/vendor/assets/stylesheets/tooltip.css.scss +81 -0
  74. data/vendor/assets/stylesheets/transition.css.scss +12 -0
  75. data/vendor/assets/stylesheets/trunk.css.scss +69 -0
  76. data/vendor/assets/stylesheets/typography.css.scss +160 -0
  77. metadata +148 -0
@@ -0,0 +1,134 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Header
4
+ #Header Alternate
5
+ #Media Queries */
6
+
7
+ /* #Header
8
+ ================================================== */
9
+ .header {
10
+ background: rgba(58,144,216,1);
11
+ height: 86px;
12
+ margin-bottom: 40px;
13
+ width: 100%;
14
+ }
15
+ .header-brand a {
16
+ color: rgba(255,255,255,1);
17
+ float: left;
18
+ font-size: 44px;
19
+ margin-top: 21px;
20
+ }
21
+ .header-search {
22
+ float: left;
23
+ margin: 22px 0 0 30px;
24
+ }
25
+ .header-search input {
26
+ background-color: transparent;
27
+ border-color: rgba(255,255,255,0.25);
28
+ color: rgba(255,255,255,1);
29
+ font-weight: 200;
30
+ margin: 0;
31
+ width: 280px;
32
+ }
33
+ .header-search input:focus { border-color: rgba(255,255,255,1); }
34
+ .header-search input:-moz-placeholder { color: rgba(255,255,255,0.40); }
35
+ .header-search input:-ms-input-placeholder { color: rgba(255,255,255,0.40); }
36
+ .header-search input::-webkit-input-placeholder { color: rgba(255,255,255,0.40); }
37
+ .header-nav {
38
+ float: right;
39
+ list-style-type: none;
40
+ margin: 29px 0 10px 0;
41
+ padding: 0;
42
+ }
43
+ .header-nav li {
44
+ color: rgba(255,255,255,1);
45
+ display: inline-block;
46
+ font-size: 13px;
47
+ font-weight: 500;
48
+ margin-left: 25px;
49
+ }
50
+ .header-nav li:first-child { margin-left: 0; }
51
+ .header-nav li a {
52
+ border: 1px solid transparent;
53
+ border-radius: 2px;
54
+ color: rgba(255,255,255,1);
55
+ letter-spacing: 1px;
56
+ padding: 14px 0 13px 0;
57
+ text-transform: uppercase;
58
+ }
59
+ .header-nav li.bordered a {
60
+ border-color: rgba(230,230,230,1);
61
+ padding: 14px 20px 13px 20px;
62
+ }
63
+ .header-nav li.bordered a:hover { border-color: rgba(255,255,255,1); }
64
+ .header-nav .dropdown-menu li {
65
+ color: rgba(71,74,84,1);
66
+ display: block;
67
+ font-size: 12px;
68
+ margin-left: 0;
69
+ }
70
+ .header-nav .dropdown-menu li a {
71
+ border: none;
72
+ color: rgba(71,74,84,1);
73
+ letter-spacing: 0;
74
+ padding: 5px 15px;
75
+ text-transform: inherit;
76
+ }
77
+ .header-nav .dropdown-menu li a:hover { color: rgba(58,144,216,1); }
78
+ .header-user {
79
+ float: right;
80
+ margin: 23px 0 0 15px;
81
+ }
82
+ .header-user a {
83
+ color: rgba(255,255,255,0.8);
84
+ text-decoration: none;
85
+ }
86
+ .header-user a:hover { color: rgba(255,255,255,1); }
87
+ .header-user img,
88
+ .header-user-placeholder {
89
+ background-color: rgba(174,182,192,1);
90
+ color: rgba(255,255,255,1);
91
+ border-radius: 500px;
92
+ display: inline-block;
93
+ height: 40px;
94
+ text-align: center;
95
+ width: 40px;
96
+ vertical-align: middle;
97
+ }
98
+ .header-user-placeholder i {
99
+ font-size: 26px;
100
+ line-height: 36px;
101
+ }
102
+ .header-toggle a {
103
+ color: rgba(255,255,255,1);
104
+ float: right;
105
+ font-size: 40px;
106
+ opacity: 0.85;
107
+ padding: 4px 0px 3px 14px;
108
+ text-decoration: none;
109
+ }
110
+ .header-toggle a:hover { opacity: 1; }
111
+
112
+ /* #Header Alternate
113
+ ================================================== */
114
+ .header-alt { background: none; }
115
+ .header-alt .header-brand a { color: rgba(236,238,241,1); }
116
+ .header-alt .header-brand a:hover { color: rgba(174,182,192,1); }
117
+ .header-alt .header-nav li.bordered a {
118
+ border-color: rgba(236,238,241,1);
119
+ color: rgba(224,226,229,1);
120
+ }
121
+ .header-alt .header-nav li.bordered a:hover {
122
+ border-color: rgba(209,210,214,1);
123
+ color: rgba(174,182,192,1);
124
+ }
125
+
126
+ /* #Media Queries
127
+ ================================================== */
128
+ @media only screen and (max-width: 767px) {
129
+ .header { height: 50px; }
130
+ .header-brand a {
131
+ font-size: 36px;
132
+ margin-top: 7px;
133
+ }
134
+ }
@@ -0,0 +1,1130 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Icon */
4
+
5
+ /* #Icon
6
+ ================================================== */
7
+ @font-face {
8
+ font-family: "Ionicons";
9
+ src: url(font_path("ionicons/ionicons.eot?v=1.3.3"));
10
+ src: url(font_path("ionicons/ionicons.eot?v=1.3.3#iefix")) format("embedded-opentype"),
11
+ url(font_path("ionicons/ionicons.ttf?v=1.3.3")) format("truetype"),
12
+ url(font_path("ionicons/ionicons.woff?v=1.3.3")) format("woff"),
13
+ url(font_path("ionicons/ionicons.svg?v=1.3.3#Ionicons")) format("svg");
14
+ font-weight: normal;
15
+ font-style: normal;
16
+ }
17
+ .icon, .icon-loading-a,
18
+ .icon-loading-b,
19
+ .icon-loading-c,
20
+ .icon-loading-d,
21
+ .icon-looping,
22
+ .icon-refreshing,
23
+ .icon-ios7-reloading, .iconicons,
24
+ .icon-alert,
25
+ .icon-alert-circled,
26
+ .icon-android-add,
27
+ .icon-android-add-contact,
28
+ .icon-android-alarm,
29
+ .icon-android-archive,
30
+ .icon-android-arrow-back,
31
+ .icon-android-arrow-down-left,
32
+ .icon-android-arrow-down-right,
33
+ .icon-android-arrow-up-left,
34
+ .icon-android-arrow-up-right,
35
+ .icon-android-battery,
36
+ .icon-android-book,
37
+ .icon-android-calendar,
38
+ .icon-android-call,
39
+ .icon-android-camera,
40
+ .icon-android-chat,
41
+ .icon-android-checkmark,
42
+ .icon-android-clock,
43
+ .icon-android-close,
44
+ .icon-android-contact,
45
+ .icon-android-contacts,
46
+ .icon-android-data,
47
+ .icon-android-developer,
48
+ .icon-android-display,
49
+ .icon-android-download,
50
+ .icon-android-dropdown,
51
+ .icon-android-earth,
52
+ .icon-android-folder,
53
+ .icon-android-forums,
54
+ .icon-android-friends,
55
+ .icon-android-hand,
56
+ .icon-android-image,
57
+ .icon-android-inbox,
58
+ .icon-android-information,
59
+ .icon-android-keypad,
60
+ .icon-android-lightbulb,
61
+ .icon-android-locate,
62
+ .icon-android-location,
63
+ .icon-android-mail,
64
+ .icon-android-microphone,
65
+ .icon-android-mixer,
66
+ .icon-android-more,
67
+ .icon-android-note,
68
+ .icon-android-playstore,
69
+ .icon-android-printer,
70
+ .icon-android-promotion,
71
+ .icon-android-reminder,
72
+ .icon-android-remove,
73
+ .icon-android-search,
74
+ .icon-android-send,
75
+ .icon-android-settings,
76
+ .icon-android-share,
77
+ .icon-android-social,
78
+ .icon-android-social-user,
79
+ .icon-android-sort,
80
+ .icon-android-star,
81
+ .icon-android-stopwatch,
82
+ .icon-android-storage,
83
+ .icon-android-system-back,
84
+ .icon-android-system-home,
85
+ .icon-android-system-windows,
86
+ .icon-android-timer,
87
+ .icon-android-trash,
88
+ .icon-android-volume,
89
+ .icon-android-wifi,
90
+ .icon-archive,
91
+ .icon-arrow-down-a,
92
+ .icon-arrow-down-b,
93
+ .icon-arrow-down-c,
94
+ .icon-arrow-expand,
95
+ .icon-arrow-graph-down-left,
96
+ .icon-arrow-graph-down-right,
97
+ .icon-arrow-graph-up-left,
98
+ .icon-arrow-graph-up-right,
99
+ .icon-arrow-left-a,
100
+ .icon-arrow-left-b,
101
+ .icon-arrow-left-c,
102
+ .icon-arrow-move,
103
+ .icon-arrow-resize,
104
+ .icon-arrow-return-left,
105
+ .icon-arrow-return-right,
106
+ .icon-arrow-right-a,
107
+ .icon-arrow-right-b,
108
+ .icon-arrow-right-c,
109
+ .icon-arrow-shrink,
110
+ .icon-arrow-swap,
111
+ .icon-arrow-up-a,
112
+ .icon-arrow-up-b,
113
+ .icon-arrow-up-c,
114
+ .icon-at,
115
+ .icon-bag,
116
+ .icon-battery-charging,
117
+ .icon-battery-empty,
118
+ .icon-battery-full,
119
+ .icon-battery-half,
120
+ .icon-battery-low,
121
+ .icon-beaker,
122
+ .icon-beer,
123
+ .icon-bluetooth,
124
+ .icon-bookmark,
125
+ .icon-briefcase,
126
+ .icon-bug,
127
+ .icon-calculator,
128
+ .icon-calendar,
129
+ .icon-camera,
130
+ .icon-card,
131
+ .icon-chatbox,
132
+ .icon-chatbox-working,
133
+ .icon-chatboxes,
134
+ .icon-chatbubble,
135
+ .icon-chatbubble-working,
136
+ .icon-chatbubbles,
137
+ .icon-checkmark,
138
+ .icon-checkmark-circled,
139
+ .icon-checkmark-round,
140
+ .icon-chevron-down,
141
+ .icon-chevron-left,
142
+ .icon-chevron-right,
143
+ .icon-chevron-up,
144
+ .icon-clipboard,
145
+ .icon-clock,
146
+ .icon-close,
147
+ .icon-close-circled,
148
+ .icon-close-round,
149
+ .icon-cloud,
150
+ .icon-code,
151
+ .icon-code-download,
152
+ .icon-code-working,
153
+ .icon-coffee,
154
+ .icon-compass,
155
+ .icon-compose,
156
+ .icon-connection-bars,
157
+ .icon-contrast,
158
+ .icon-disc,
159
+ .icon-document,
160
+ .icon-document-text,
161
+ .icon-drag,
162
+ .icon-earth,
163
+ .icon-edit,
164
+ .icon-egg,
165
+ .icon-eject,
166
+ .icon-email,
167
+ .icon-eye,
168
+ .icon-eye-disabled,
169
+ .icon-female,
170
+ .icon-filing,
171
+ .icon-film-marker,
172
+ .icon-flag,
173
+ .icon-flash,
174
+ .icon-flash-off,
175
+ .icon-flask,
176
+ .icon-folder,
177
+ .icon-fork,
178
+ .icon-fork-repo,
179
+ .icon-forward,
180
+ .icon-game-controller-a,
181
+ .icon-game-controller-b,
182
+ .icon-gear-a,
183
+ .icon-gear-b,
184
+ .icon-grid,
185
+ .icon-hammer,
186
+ .icon-headphone,
187
+ .icon-heart,
188
+ .icon-help,
189
+ .icon-help-buoy,
190
+ .icon-help-circled,
191
+ .icon-home,
192
+ .icon-icecream,
193
+ .icon-icon-social-google-plus,
194
+ .icon-icon-social-google-plus-outline,
195
+ .icon-image,
196
+ .icon-images,
197
+ .icon-information,
198
+ .icon-information-circled,
199
+ .icon-ionic,
200
+ .icon-ios7-alarm,
201
+ .icon-ios7-alarm-outline,
202
+ .icon-ios7-albums,
203
+ .icon-ios7-albums-outline,
204
+ .icon-ios7-arrow-back,
205
+ .icon-ios7-arrow-down,
206
+ .icon-ios7-arrow-forward,
207
+ .icon-ios7-arrow-left,
208
+ .icon-ios7-arrow-right,
209
+ .icon-ios7-arrow-thin-down,
210
+ .icon-ios7-arrow-thin-left,
211
+ .icon-ios7-arrow-thin-right,
212
+ .icon-ios7-arrow-thin-up,
213
+ .icon-ios7-arrow-up,
214
+ .icon-ios7-at,
215
+ .icon-ios7-at-outline,
216
+ .icon-ios7-bell,
217
+ .icon-ios7-bell-outline,
218
+ .icon-ios7-bolt,
219
+ .icon-ios7-bolt-outline,
220
+ .icon-ios7-bookmarks,
221
+ .icon-ios7-bookmarks-outline,
222
+ .icon-ios7-box,
223
+ .icon-ios7-box-outline,
224
+ .icon-ios7-briefcase,
225
+ .icon-ios7-briefcase-outline,
226
+ .icon-ios7-browsers,
227
+ .icon-ios7-browsers-outline,
228
+ .icon-ios7-calculator,
229
+ .icon-ios7-calculator-outline,
230
+ .icon-ios7-calendar,
231
+ .icon-ios7-calendar-outline,
232
+ .icon-ios7-camera,
233
+ .icon-ios7-camera-outline,
234
+ .icon-ios7-cart,
235
+ .icon-ios7-cart-outline,
236
+ .icon-ios7-chatboxes,
237
+ .icon-ios7-chatboxes-outline,
238
+ .icon-ios7-chatbubble,
239
+ .icon-ios7-chatbubble-outline,
240
+ .icon-ios7-checkmark,
241
+ .icon-ios7-checkmark-empty,
242
+ .icon-ios7-checkmark-outline,
243
+ .icon-ios7-circle-filled,
244
+ .icon-ios7-circle-outline,
245
+ .icon-ios7-clock,
246
+ .icon-ios7-clock-outline,
247
+ .icon-ios7-close,
248
+ .icon-ios7-close-empty,
249
+ .icon-ios7-close-outline,
250
+ .icon-ios7-cloud,
251
+ .icon-ios7-cloud-download,
252
+ .icon-ios7-cloud-download-outline,
253
+ .icon-ios7-cloud-outline,
254
+ .icon-ios7-cloud-upload,
255
+ .icon-ios7-cloud-upload-outline,
256
+ .icon-ios7-cloudy,
257
+ .icon-ios7-cloudy-night,
258
+ .icon-ios7-cloudy-night-outline,
259
+ .icon-ios7-cloudy-outline,
260
+ .icon-ios7-cog,
261
+ .icon-ios7-cog-outline,
262
+ .icon-ios7-compose,
263
+ .icon-ios7-compose-outline,
264
+ .icon-ios7-contact,
265
+ .icon-ios7-contact-outline,
266
+ .icon-ios7-copy,
267
+ .icon-ios7-copy-outline,
268
+ .icon-ios7-download,
269
+ .icon-ios7-download-outline,
270
+ .icon-ios7-drag,
271
+ .icon-ios7-email,
272
+ .icon-ios7-email-outline,
273
+ .icon-ios7-eye,
274
+ .icon-ios7-eye-outline,
275
+ .icon-ios7-fastforward,
276
+ .icon-ios7-fastforward-outline,
277
+ .icon-ios7-filing,
278
+ .icon-ios7-filing-outline,
279
+ .icon-ios7-film,
280
+ .icon-ios7-film-outline,
281
+ .icon-ios7-flag,
282
+ .icon-ios7-flag-outline,
283
+ .icon-ios7-folder,
284
+ .icon-ios7-folder-outline,
285
+ .icon-ios7-gear,
286
+ .icon-ios7-gear-outline,
287
+ .icon-ios7-glasses,
288
+ .icon-ios7-glasses-outline,
289
+ .icon-ios7-heart,
290
+ .icon-ios7-heart-outline,
291
+ .icon-ios7-help,
292
+ .icon-ios7-help-empty,
293
+ .icon-ios7-help-outline,
294
+ .icon-ios7-infinite,
295
+ .icon-ios7-infinite-outline,
296
+ .icon-ios7-information,
297
+ .icon-ios7-information-empty,
298
+ .icon-ios7-information-outline,
299
+ .icon-ios7-ionic-outline,
300
+ .icon-ios7-keypad,
301
+ .icon-ios7-keypad-outline,
302
+ .icon-ios7-lightbulb,
303
+ .icon-ios7-lightbulb-outline,
304
+ .icon-ios7-location,
305
+ .icon-ios7-location-outline,
306
+ .icon-ios7-locked,
307
+ .icon-ios7-locked-outline,
308
+ .icon-ios7-medkit,
309
+ .icon-ios7-medkit-outline,
310
+ .icon-ios7-mic,
311
+ .icon-ios7-mic-off,
312
+ .icon-ios7-mic-outline,
313
+ .icon-ios7-minus,
314
+ .icon-ios7-minus-empty,
315
+ .icon-ios7-minus-outline,
316
+ .icon-ios7-monitor,
317
+ .icon-ios7-monitor-outline,
318
+ .icon-ios7-moon,
319
+ .icon-ios7-moon-outline,
320
+ .icon-ios7-more,
321
+ .icon-ios7-more-outline,
322
+ .icon-ios7-musical-note,
323
+ .icon-ios7-musical-notes,
324
+ .icon-ios7-navigate,
325
+ .icon-ios7-navigate-outline,
326
+ .icon-ios7-paperplane,
327
+ .icon-ios7-paperplane-outline,
328
+ .icon-ios7-partlysunny,
329
+ .icon-ios7-partlysunny-outline,
330
+ .icon-ios7-pause,
331
+ .icon-ios7-pause-outline,
332
+ .icon-ios7-people,
333
+ .icon-ios7-people-outline,
334
+ .icon-ios7-person,
335
+ .icon-ios7-person-outline,
336
+ .icon-ios7-personadd,
337
+ .icon-ios7-personadd-outline,
338
+ .icon-ios7-photos,
339
+ .icon-ios7-photos-outline,
340
+ .icon-ios7-pie,
341
+ .icon-ios7-pie-outline,
342
+ .icon-ios7-play,
343
+ .icon-ios7-play-outline,
344
+ .icon-ios7-plus,
345
+ .icon-ios7-plus-empty,
346
+ .icon-ios7-plus-outline,
347
+ .icon-ios7-pricetag,
348
+ .icon-ios7-pricetag-outline,
349
+ .icon-ios7-printer,
350
+ .icon-ios7-printer-outline,
351
+ .icon-ios7-rainy,
352
+ .icon-ios7-rainy-outline,
353
+ .icon-ios7-recording,
354
+ .icon-ios7-recording-outline,
355
+ .icon-ios7-redo,
356
+ .icon-ios7-redo-outline,
357
+ .icon-ios7-refresh,
358
+ .icon-ios7-refresh-empty,
359
+ .icon-ios7-refresh-outline,
360
+ .icon-ios7-reload,
361
+ .icon-ios7-rewind,
362
+ .icon-ios7-rewind-outline,
363
+ .icon-ios7-search,
364
+ .icon-ios7-search-strong,
365
+ .icon-ios7-skipbackward,
366
+ .icon-ios7-skipbackward-outline,
367
+ .icon-ios7-skipforward,
368
+ .icon-ios7-skipforward-outline,
369
+ .icon-ios7-snowy,
370
+ .icon-ios7-speedometer,
371
+ .icon-ios7-speedometer-outline,
372
+ .icon-ios7-star,
373
+ .icon-ios7-star-outline,
374
+ .icon-ios7-stopwatch,
375
+ .icon-ios7-stopwatch-outline,
376
+ .icon-ios7-sunny,
377
+ .icon-ios7-sunny-outline,
378
+ .icon-ios7-telephone,
379
+ .icon-ios7-telephone-outline,
380
+ .icon-ios7-thunderstorm,
381
+ .icon-ios7-thunderstorm-outline,
382
+ .icon-ios7-time,
383
+ .icon-ios7-time-outline,
384
+ .icon-ios7-timer,
385
+ .icon-ios7-timer-outline,
386
+ .icon-ios7-trash,
387
+ .icon-ios7-trash-outline,
388
+ .icon-ios7-undo,
389
+ .icon-ios7-undo-outline,
390
+ .icon-ios7-unlocked,
391
+ .icon-ios7-unlocked-outline,
392
+ .icon-ios7-upload,
393
+ .icon-ios7-upload-outline,
394
+ .icon-ios7-videocam,
395
+ .icon-ios7-videocam-outline,
396
+ .icon-ios7-volume-high,
397
+ .icon-ios7-volume-low,
398
+ .icon-ios7-wineglass,
399
+ .icon-ios7-wineglass-outline,
400
+ .icon-ios7-world,
401
+ .icon-ios7-world-outline,
402
+ .icon-ipad,
403
+ .icon-iphone,
404
+ .icon-ipod,
405
+ .icon-jet,
406
+ .icon-key,
407
+ .icon-knife,
408
+ .icon-laptop,
409
+ .icon-leaf,
410
+ .icon-levels,
411
+ .icon-lightbulb,
412
+ .icon-link,
413
+ .icon-load-a,
414
+ .icon-load-b,
415
+ .icon-load-c,
416
+ .icon-load-d,
417
+ .icon-location,
418
+ .icon-locked,
419
+ .icon-log-in,
420
+ .icon-log-out,
421
+ .icon-loop,
422
+ .icon-magnet,
423
+ .icon-male,
424
+ .icon-man,
425
+ .icon-map,
426
+ .icon-medkit,
427
+ .icon-mic-a,
428
+ .icon-mic-b,
429
+ .icon-mic-c,
430
+ .icon-minus,
431
+ .icon-minus-circled,
432
+ .icon-minus-round,
433
+ .icon-model-s,
434
+ .icon-monitor,
435
+ .icon-more,
436
+ .icon-music-note,
437
+ .icon-navicon,
438
+ .icon-navicon-round,
439
+ .icon-navigate,
440
+ .icon-no-smoking,
441
+ .icon-nuclear,
442
+ .icon-paper-airplane,
443
+ .icon-paperclip,
444
+ .icon-pause,
445
+ .icon-person,
446
+ .icon-person-add,
447
+ .icon-person-stalker,
448
+ .icon-pie-graph,
449
+ .icon-pin,
450
+ .icon-pinpoint,
451
+ .icon-pizza,
452
+ .icon-plane,
453
+ .icon-play,
454
+ .icon-playstation,
455
+ .icon-plus,
456
+ .icon-plus-circled,
457
+ .icon-plus-round,
458
+ .icon-pound,
459
+ .icon-power,
460
+ .icon-pricetag,
461
+ .icon-pricetags,
462
+ .icon-printer,
463
+ .icon-radio-waves,
464
+ .icon-record,
465
+ .icon-refresh,
466
+ .icon-reply,
467
+ .icon-reply-all,
468
+ .icon-search,
469
+ .icon-settings,
470
+ .icon-share,
471
+ .icon-shuffle,
472
+ .icon-skip-backward,
473
+ .icon-skip-forward,
474
+ .icon-social-android,
475
+ .icon-social-android-outline,
476
+ .icon-social-apple,
477
+ .icon-social-apple-outline,
478
+ .icon-social-bitcoin,
479
+ .icon-social-bitcoin-outline,
480
+ .icon-social-buffer,
481
+ .icon-social-buffer-outline,
482
+ .icon-social-designernews,
483
+ .icon-social-designernews-outline,
484
+ .icon-social-dribbble,
485
+ .icon-social-dribbble-outline,
486
+ .icon-social-dropbox,
487
+ .icon-social-dropbox-outline,
488
+ .icon-social-facebook,
489
+ .icon-social-facebook-outline,
490
+ .icon-social-freebsd-devil,
491
+ .icon-social-github,
492
+ .icon-social-github-outline,
493
+ .icon-social-googleplus,
494
+ .icon-social-googleplus-outline,
495
+ .icon-social-hackernews,
496
+ .icon-social-hackernews-outline,
497
+ .icon-social-linkedin,
498
+ .icon-social-linkedin-outline,
499
+ .icon-social-pinterest,
500
+ .icon-social-pinterest-outline,
501
+ .icon-social-reddit,
502
+ .icon-social-reddit-outline,
503
+ .icon-social-rss,
504
+ .icon-social-rss-outline,
505
+ .icon-social-skype,
506
+ .icon-social-skype-outline,
507
+ .icon-social-tumblr,
508
+ .icon-social-tumblr-outline,
509
+ .icon-social-tux,
510
+ .icon-social-twitter,
511
+ .icon-social-twitter-outline,
512
+ .icon-social-vimeo,
513
+ .icon-social-vimeo-outline,
514
+ .icon-social-windows,
515
+ .icon-social-windows-outline,
516
+ .icon-social-wordpress,
517
+ .icon-social-wordpress-outline,
518
+ .icon-social-yahoo,
519
+ .icon-social-yahoo-outline,
520
+ .icon-social-youtube,
521
+ .icon-social-youtube-outline,
522
+ .icon-speakerphone,
523
+ .icon-speedometer,
524
+ .icon-spoon,
525
+ .icon-star,
526
+ .icon-stats-bars,
527
+ .icon-steam,
528
+ .icon-stop,
529
+ .icon-thermometer,
530
+ .icon-thumbsdown,
531
+ .icon-thumbsup,
532
+ .icon-trash-a,
533
+ .icon-trash-b,
534
+ .icon-umbrella,
535
+ .icon-unlocked,
536
+ .icon-upload,
537
+ .icon-usb,
538
+ .icon-videocamera,
539
+ .icon-volume-high,
540
+ .icon-volume-low,
541
+ .icon-volume-medium,
542
+ .icon-volume-mute,
543
+ .icon-waterdrop,
544
+ .icon-wifi,
545
+ .icon-wineglass,
546
+ .icon-woman,
547
+ .icon-wrench,
548
+ .icon-xbox {
549
+ display: inline-block;
550
+ font-family: "Ionicons";
551
+ speak: none;
552
+ font-style: normal;
553
+ font-weight: normal;
554
+ font-variant: normal;
555
+ text-transform: none;
556
+ text-rendering: auto;
557
+ line-height: 1;
558
+ -webkit-font-smoothing: antialiased;
559
+ -moz-osx-font-smoothing: grayscale;
560
+ }
561
+ .icon-spin, .icon-loading-a,
562
+ .icon-loading-b,
563
+ .icon-loading-c,
564
+ .icon-loading-d,
565
+ .icon-looping,
566
+ .icon-refreshing,
567
+ .icon-ios7-reloading {
568
+ -webkit-animation: spin 1s infinite linear;
569
+ -moz-animation: spin 1s infinite linear;
570
+ -o-animation: spin 1s infinite linear;
571
+ animation: spin 1s infinite linear;
572
+ }
573
+ @-webkit-keyframes spin {
574
+ 0% { -webkit-transform: rotate(0deg) }
575
+ 100% { -webkit-transform: rotate(359deg) }
576
+ }
577
+ @-moz-keyframes spin {
578
+ 0% { -moz-transform: rotate(0deg) }
579
+ 100% { -moz-transform: rotate(359deg) }
580
+ }
581
+ @-ms-keyframes spin {
582
+ 0% { -ms-transform: rotate(0deg) }
583
+ 100% { -ms-transform: rotate(359deg) }
584
+ }
585
+ @-o-keyframes spin {
586
+ 0% { -o-transform: rotate(0deg) }
587
+ 100% { -o-transform: rotate(359deg) }
588
+ }
589
+ @keyframes spin {
590
+ 0% { transform: rotate(0deg) }
591
+ 100% { transform: rotate(359deg) }
592
+ }
593
+ .icon-loading-a {
594
+ -webkit-animation-timing-function: steps(8, start);
595
+ -moz-animation-timing-function: steps(8, start);
596
+ animation-timing-function: steps(8, start);
597
+ }
598
+ .icon-alert:before { content: "\f101" }
599
+ .icon-alert-circled:before { content: "\f100" }
600
+ .icon-android-add:before { content: "\f2c7" }
601
+ .icon-android-add-contact:before { content: "\f2c6" }
602
+ .icon-android-alarm:before { content: "\f2c8" }
603
+ .icon-android-archive:before { content: "\f2c9" }
604
+ .icon-android-arrow-back:before { content: "\f2ca" }
605
+ .icon-android-arrow-down-left:before { content: "\f2cb" }
606
+ .icon-android-arrow-down-right:before { content: "\f2cc" }
607
+ .icon-android-arrow-up-left:before { content: "\f2cd" }
608
+ .icon-android-arrow-up-right:before { content: "\f2ce" }
609
+ .icon-android-battery:before { content: "\f2cf" }
610
+ .icon-android-book:before { content: "\f2d0" }
611
+ .icon-android-calendar:before { content: "\f2d1" }
612
+ .icon-android-call:before { content: "\f2d2" }
613
+ .icon-android-camera:before { content: "\f2d3" }
614
+ .icon-android-chat:before { content: "\f2d4" }
615
+ .icon-android-checkmark:before { content: "\f2d5" }
616
+ .icon-android-clock:before { content: "\f2d6" }
617
+ .icon-android-close:before { content: "\f2d7" }
618
+ .icon-android-contact:before { content: "\f2d8" }
619
+ .icon-android-contacts:before { content: "\f2d9" }
620
+ .icon-android-data:before { content: "\f2da" }
621
+ .icon-android-developer:before { content: "\f2db" }
622
+ .icon-android-display:before { content: "\f2dc" }
623
+ .icon-android-download:before { content: "\f2dd" }
624
+ .icon-android-dropdown:before { content: "\f2de" }
625
+ .icon-android-earth:before { content: "\f2df" }
626
+ .icon-android-folder:before { content: "\f2e0" }
627
+ .icon-android-forums:before { content: "\f2e1" }
628
+ .icon-android-friends:before { content: "\f2e2" }
629
+ .icon-android-hand:before { content: "\f2e3" }
630
+ .icon-android-image:before { content: "\f2e4" }
631
+ .icon-android-inbox:before { content: "\f2e5" }
632
+ .icon-android-information:before { content: "\f2e6" }
633
+ .icon-android-keypad:before { content: "\f2e7" }
634
+ .icon-android-lightbulb:before { content: "\f2e8" }
635
+ .icon-android-locate:before { content: "\f2e9" }
636
+ .icon-android-location:before { content: "\f2ea" }
637
+ .icon-android-mail:before { content: "\f2eb" }
638
+ .icon-android-microphone:before { content: "\f2ec" }
639
+ .icon-android-mixer:before { content: "\f2ed" }
640
+ .icon-android-more:before { content: "\f2ee" }
641
+ .icon-android-note:before { content: "\f2ef" }
642
+ .icon-android-playstore:before { content: "\f2f0" }
643
+ .icon-android-printer:before { content: "\f2f1" }
644
+ .icon-android-promotion:before { content: "\f2f2" }
645
+ .icon-android-reminder:before { content: "\f2f3" }
646
+ .icon-android-remove:before { content: "\f2f4" }
647
+ .icon-android-search:before { content: "\f2f5" }
648
+ .icon-android-send:before { content: "\f2f6" }
649
+ .icon-android-settings:before { content: "\f2f7" }
650
+ .icon-android-share:before { content: "\f2f8" }
651
+ .icon-android-social:before { content: "\f2fa" }
652
+ .icon-android-social-user:before { content: "\f2f9" }
653
+ .icon-android-sort:before { content: "\f2fb" }
654
+ .icon-android-star:before { content: "\f2fc" }
655
+ .icon-android-stopwatch:before { content: "\f2fd" }
656
+ .icon-android-storage:before { content: "\f2fe" }
657
+ .icon-android-system-back:before { content: "\f2ff" }
658
+ .icon-android-system-home:before { content: "\f300" }
659
+ .icon-android-system-windows:before { content: "\f301" }
660
+ .icon-android-timer:before { content: "\f302" }
661
+ .icon-android-trash:before { content: "\f303" }
662
+ .icon-android-volume:before { content: "\f304" }
663
+ .icon-android-wifi:before { content: "\f305" }
664
+ .icon-archive:before { content: "\f102" }
665
+ .icon-arrow-down-a:before { content: "\f103" }
666
+ .icon-arrow-down-b:before { content: "\f104" }
667
+ .icon-arrow-down-c:before { content: "\f105" }
668
+ .icon-arrow-expand:before { content: "\f25e" }
669
+ .icon-arrow-graph-down-left:before { content: "\f25f" }
670
+ .icon-arrow-graph-down-right:before { content: "\f260" }
671
+ .icon-arrow-graph-up-left:before { content: "\f261" }
672
+ .icon-arrow-graph-up-right:before { content: "\f262" }
673
+ .icon-arrow-left-a:before { content: "\f106" }
674
+ .icon-arrow-left-b:before { content: "\f107" }
675
+ .icon-arrow-left-c:before { content: "\f108" }
676
+ .icon-arrow-move:before { content: "\f263" }
677
+ .icon-arrow-resize:before { content: "\f264" }
678
+ .icon-arrow-return-left:before { content: "\f265" }
679
+ .icon-arrow-return-right:before { content: "\f266" }
680
+ .icon-arrow-right-a:before { content: "\f109" }
681
+ .icon-arrow-right-b:before { content: "\f10a" }
682
+ .icon-arrow-right-c:before { content: "\f10b" }
683
+ .icon-arrow-shrink:before { content: "\f267" }
684
+ .icon-arrow-swap:before { content: "\f268" }
685
+ .icon-arrow-up-a:before { content: "\f10c" }
686
+ .icon-arrow-up-b:before { content: "\f10d" }
687
+ .icon-arrow-up-c:before { content: "\f10e" }
688
+ .icon-at:before { content: "\f10f" }
689
+ .icon-bag:before { content: "\f110" }
690
+ .icon-battery-charging:before { content: "\f111" }
691
+ .icon-battery-empty:before { content: "\f112" }
692
+ .icon-battery-full:before { content: "\f113" }
693
+ .icon-battery-half:before { content: "\f114" }
694
+ .icon-battery-low:before { content: "\f115" }
695
+ .icon-beaker:before { content: "\f269" }
696
+ .icon-beer:before { content: "\f26a" }
697
+ .icon-bluetooth:before { content: "\f116" }
698
+ .icon-bookmark:before { content: "\f26b" }
699
+ .icon-briefcase:before { content: "\f26c" }
700
+ .icon-bug:before { content: "\f2be" }
701
+ .icon-calculator:before { content: "\f26d" }
702
+ .icon-calendar:before { content: "\f117" }
703
+ .icon-camera:before { content: "\f118" }
704
+ .icon-card:before { content: "\f119" }
705
+ .icon-chatbox:before { content: "\f11b" }
706
+ .icon-chatbox-working:before { content: "\f11a" }
707
+ .icon-chatboxes:before { content: "\f11c" }
708
+ .icon-chatbubble:before { content: "\f11e" }
709
+ .icon-chatbubble-working:before { content: "\f11d" }
710
+ .icon-chatbubbles:before { content: "\f11f" }
711
+ .icon-checkmark:before { content: "\f122" }
712
+ .icon-checkmark-circled:before { content: "\f120" }
713
+ .icon-checkmark-round:before { content: "\f121" }
714
+ .icon-chevron-down:before { content: "\f123" }
715
+ .icon-chevron-left:before { content: "\f124" }
716
+ .icon-chevron-right:before { content: "\f125" }
717
+ .icon-chevron-up:before { content: "\f126" }
718
+ .icon-clipboard:before { content: "\f127" }
719
+ .icon-clock:before { content: "\f26e" }
720
+ .icon-close:before { content: "\f12a" }
721
+ .icon-close-circled:before { content: "\f128" }
722
+ .icon-close-round:before { content: "\f129" }
723
+ .icon-cloud:before { content: "\f12b" }
724
+ .icon-code:before { content: "\f271" }
725
+ .icon-code-download:before { content: "\f26f" }
726
+ .icon-code-working:before { content: "\f270" }
727
+ .icon-coffee:before { content: "\f272" }
728
+ .icon-compass:before { content: "\f273" }
729
+ .icon-compose:before { content: "\f12c" }
730
+ .icon-connection-bars:before { content: "\f274" }
731
+ .icon-contrast:before { content: "\f275" }
732
+ .icon-disc:before { content: "\f12d" }
733
+ .icon-document:before { content: "\f12f" }
734
+ .icon-document-text:before { content: "\f12e" }
735
+ .icon-drag:before { content: "\f130" }
736
+ .icon-earth:before { content: "\f276" }
737
+ .icon-edit:before { content: "\f2bf" }
738
+ .icon-egg:before { content: "\f277" }
739
+ .icon-eject:before { content: "\f131" }
740
+ .icon-email:before { content: "\f132" }
741
+ .icon-eye:before { content: "\f133" }
742
+ .icon-eye-disabled:before { content: "\f306" }
743
+ .icon-female:before { content: "\f278" }
744
+ .icon-filing:before { content: "\f134" }
745
+ .icon-film-marker:before { content: "\f135" }
746
+ .icon-flag:before { content: "\f279" }
747
+ .icon-flash:before { content: "\f137" }
748
+ .icon-flash-off:before { content: "\f136" }
749
+ .icon-flask:before { content: "\f138" }
750
+ .icon-folder:before { content: "\f139" }
751
+ .icon-fork:before { content: "\f27a" }
752
+ .icon-fork-repo:before { content: "\f2c0" }
753
+ .icon-forward:before { content: "\f13a" }
754
+ .icon-game-controller-a:before { content: "\f13b" }
755
+ .icon-game-controller-b:before { content: "\f13c" }
756
+ .icon-gear-a:before { content: "\f13d" }
757
+ .icon-gear-b:before { content: "\f13e" }
758
+ .icon-grid:before { content: "\f13f" }
759
+ .icon-hammer:before { content: "\f27b" }
760
+ .icon-headphone:before { content: "\f140" }
761
+ .icon-heart:before { content: "\f141" }
762
+ .icon-help:before { content: "\f143" }
763
+ .icon-help-buoy:before { content: "\f27c" }
764
+ .icon-help-circled:before { content: "\f142" }
765
+ .icon-home:before { content: "\f144" }
766
+ .icon-icecream:before { content: "\f27d" }
767
+ .icon-icon-social-google-plus:before { content: "\f146" }
768
+ .icon-icon-social-google-plus-outline:before
769
+ { content: "\f145" }
770
+ .icon-image:before { content: "\f147" }
771
+ .icon-images:before { content: "\f148" }
772
+ .icon-information:before { content: "\f14a" }
773
+ .icon-information-circled:before { content: "\f149" }
774
+ .icon-ionic:before { content: "\f14b" }
775
+ .icon-ios7-alarm:before { content: "\f14d" }
776
+ .icon-ios7-alarm-outline:before { content: "\f14c" }
777
+ .icon-ios7-albums:before { content: "\f14f" }
778
+ .icon-ios7-albums-outline:before { content: "\f14e" }
779
+ .icon-ios7-arrow-back:before { content: "\f150" }
780
+ .icon-ios7-arrow-down:before { content: "\f151" }
781
+ .icon-ios7-arrow-forward:before { content: "\f152" }
782
+ .icon-ios7-arrow-left:before { content: "\f153" }
783
+ .icon-ios7-arrow-right:before { content: "\f154" }
784
+ .icon-ios7-arrow-thin-down:before { content: "\f27e" }
785
+ .icon-ios7-arrow-thin-left:before { content: "\f27f" }
786
+ .icon-ios7-arrow-thin-right:before { content: "\f280" }
787
+ .icon-ios7-arrow-thin-up:before { content: "\f281" }
788
+ .icon-ios7-arrow-up:before { content: "\f155" }
789
+ .icon-ios7-at:before { content: "\f157" }
790
+ .icon-ios7-at-outline:before { content: "\f156" }
791
+ .icon-ios7-bell:before { content: "\f159" }
792
+ .icon-ios7-bell-outline:before { content: "\f158" }
793
+ .icon-ios7-bolt:before { content: "\f15b" }
794
+ .icon-ios7-bolt-outline:before { content: "\f15a" }
795
+ .icon-ios7-bookmarks:before { content: "\f15d" }
796
+ .icon-ios7-bookmarks-outline:before { content: "\f15c" }
797
+ .icon-ios7-box:before { content: "\f15f" }
798
+ .icon-ios7-box-outline:before { content: "\f15e" }
799
+ .icon-ios7-briefcase:before { content: "\f283" }
800
+ .icon-ios7-briefcase-outline:before { content: "\f282" }
801
+ .icon-ios7-browsers:before { content: "\f161" }
802
+ .icon-ios7-browsers-outline:before { content: "\f160" }
803
+ .icon-ios7-calculator:before { content: "\f285" }
804
+ .icon-ios7-calculator-outline:before { content: "\f284" }
805
+ .icon-ios7-calendar:before { content: "\f163" }
806
+ .icon-ios7-calendar-outline:before { content: "\f162" }
807
+ .icon-ios7-camera:before { content: "\f165" }
808
+ .icon-ios7-camera-outline:before { content: "\f164" }
809
+ .icon-ios7-cart:before { content: "\f167" }
810
+ .icon-ios7-cart-outline:before { content: "\f166" }
811
+ .icon-ios7-chatboxes:before { content: "\f169" }
812
+ .icon-ios7-chatboxes-outline:before { content: "\f168" }
813
+ .icon-ios7-chatbubble:before { content: "\f16b" }
814
+ .icon-ios7-chatbubble-outline:before { content: "\f16a" }
815
+ .icon-ios7-checkmark:before { content: "\f16e" }
816
+ .icon-ios7-checkmark-empty:before { content: "\f16c" }
817
+ .icon-ios7-checkmark-outline:before { content: "\f16d" }
818
+ .icon-ios7-circle-filled:before { content: "\f16f" }
819
+ .icon-ios7-circle-outline:before { content: "\f170" }
820
+ .icon-ios7-clock:before { content: "\f172" }
821
+ .icon-ios7-clock-outline:before { content: "\f171" }
822
+ .icon-ios7-close:before { content: "\f2bc" }
823
+ .icon-ios7-close-empty:before { content: "\f2bd" }
824
+ .icon-ios7-close-outline:before { content: "\f2bb" }
825
+ .icon-ios7-cloud:before { content: "\f178" }
826
+ .icon-ios7-cloud-download:before { content: "\f174" }
827
+ .icon-ios7-cloud-download-outline:before { content: "\f173" }
828
+ .icon-ios7-cloud-outline:before { content: "\f175" }
829
+ .icon-ios7-cloud-upload:before { content: "\f177" }
830
+ .icon-ios7-cloud-upload-outline:before { content: "\f176" }
831
+ .icon-ios7-cloudy:before { content: "\f17a" }
832
+ .icon-ios7-cloudy-night:before { content: "\f308" }
833
+ .icon-ios7-cloudy-night-outline:before { content: "\f307" }
834
+ .icon-ios7-cloudy-outline:before { content: "\f179" }
835
+ .icon-ios7-cog:before { content: "\f17c" }
836
+ .icon-ios7-cog-outline:before { content: "\f17b" }
837
+ .icon-ios7-compose:before { content: "\f17e" }
838
+ .icon-ios7-compose-outline:before { content: "\f17d" }
839
+ .icon-ios7-contact:before { content: "\f180" }
840
+ .icon-ios7-contact-outline:before { content: "\f17f" }
841
+ .icon-ios7-copy:before { content: "\f182" }
842
+ .icon-ios7-copy-outline:before { content: "\f181" }
843
+ .icon-ios7-download:before { content: "\f184" }
844
+ .icon-ios7-download-outline:before { content: "\f183" }
845
+ .icon-ios7-drag:before { content: "\f185" }
846
+ .icon-ios7-email:before { content: "\f187" }
847
+ .icon-ios7-email-outline:before { content: "\f186" }
848
+ .icon-ios7-eye:before { content: "\f189" }
849
+ .icon-ios7-eye-outline:before { content: "\f188" }
850
+ .icon-ios7-fastforward:before { content: "\f18b" }
851
+ .icon-ios7-fastforward-outline:before { content: "\f18a" }
852
+ .icon-ios7-filing:before { content: "\f18d" }
853
+ .icon-ios7-filing-outline:before { content: "\f18c" }
854
+ .icon-ios7-film:before { content: "\f18f" }
855
+ .icon-ios7-film-outline:before { content: "\f18e" }
856
+ .icon-ios7-flag:before { content: "\f191" }
857
+ .icon-ios7-flag-outline:before { content: "\f190" }
858
+ .icon-ios7-folder:before { content: "\f193" }
859
+ .icon-ios7-folder-outline:before { content: "\f192" }
860
+ .icon-ios7-gear:before { content: "\f195" }
861
+ .icon-ios7-gear-outline:before { content: "\f194" }
862
+ .icon-ios7-glasses:before { content: "\f197" }
863
+ .icon-ios7-glasses-outline:before { content: "\f196" }
864
+ .icon-ios7-heart:before { content: "\f199" }
865
+ .icon-ios7-heart-outline:before { content: "\f198" }
866
+ .icon-ios7-help:before { content: "\f19c" }
867
+ .icon-ios7-help-empty:before { content: "\f19a" }
868
+ .icon-ios7-help-outline:before { content: "\f19b" }
869
+ .icon-ios7-infinite:before { content: "\f19e" }
870
+ .icon-ios7-infinite-outline:before { content: "\f19d" }
871
+ .icon-ios7-information:before { content: "\f1a1" }
872
+ .icon-ios7-information-empty:before { content: "\f19f" }
873
+ .icon-ios7-information-outline:before { content: "\f1a0" }
874
+ .icon-ios7-ionic-outline:before { content: "\f1a2" }
875
+ .icon-ios7-keypad:before { content: "\f1a4" }
876
+ .icon-ios7-keypad-outline:before { content: "\f1a3" }
877
+ .icon-ios7-lightbulb:before { content: "\f287" }
878
+ .icon-ios7-lightbulb-outline:before { content: "\f286" }
879
+ .icon-ios7-location:before { content: "\f1a6" }
880
+ .icon-ios7-location-outline:before { content: "\f1a5" }
881
+ .icon-ios7-locked:before { content: "\f1a8" }
882
+ .icon-ios7-locked-outline:before { content: "\f1a7" }
883
+ .icon-ios7-medkit:before { content: "\f289" }
884
+ .icon-ios7-medkit-outline:before { content: "\f288" }
885
+ .icon-ios7-mic:before { content: "\f1ab" }
886
+ .icon-ios7-mic-off:before { content: "\f1a9" }
887
+ .icon-ios7-mic-outline:before { content: "\f1aa" }
888
+ .icon-ios7-minus:before { content: "\f1ae" }
889
+ .icon-ios7-minus-empty:before { content: "\f1ac" }
890
+ .icon-ios7-minus-outline:before { content: "\f1ad" }
891
+ .icon-ios7-monitor:before { content: "\f1b0" }
892
+ .icon-ios7-monitor-outline:before { content: "\f1af" }
893
+ .icon-ios7-moon:before { content: "\f1b2" }
894
+ .icon-ios7-moon-outline:before { content: "\f1b1" }
895
+ .icon-ios7-more:before { content: "\f1b4" }
896
+ .icon-ios7-more-outline:before { content: "\f1b3" }
897
+ .icon-ios7-musical-note:before { content: "\f1b5" }
898
+ .icon-ios7-musical-notes:before { content: "\f1b6" }
899
+ .icon-ios7-navigate:before { content: "\f1b8" }
900
+ .icon-ios7-navigate-outline:before { content: "\f1b7" }
901
+ .icon-ios7-paperplane:before { content: "\f1ba" }
902
+ .icon-ios7-paperplane-outline:before { content: "\f1b9" }
903
+ .icon-ios7-partlysunny:before { content: "\f1bc" }
904
+ .icon-ios7-partlysunny-outline:before { content: "\f1bb" }
905
+ .icon-ios7-pause:before { content: "\f1be" }
906
+ .icon-ios7-pause-outline:before { content: "\f1bd" }
907
+ .icon-ios7-people:before { content: "\f1c0" }
908
+ .icon-ios7-people-outline:before { content: "\f1bf" }
909
+ .icon-ios7-person:before { content: "\f1c2" }
910
+ .icon-ios7-person-outline:before { content: "\f1c1" }
911
+ .icon-ios7-personadd:before { content: "\f1c4" }
912
+ .icon-ios7-personadd-outline:before { content: "\f1c3" }
913
+ .icon-ios7-photos:before { content: "\f1c6" }
914
+ .icon-ios7-photos-outline:before { content: "\f1c5" }
915
+ .icon-ios7-pie:before { content: "\f28b" }
916
+ .icon-ios7-pie-outline:before { content: "\f28a" }
917
+ .icon-ios7-play:before { content: "\f1c8" }
918
+ .icon-ios7-play-outline:before { content: "\f1c7" }
919
+ .icon-ios7-plus:before { content: "\f1cb" }
920
+ .icon-ios7-plus-empty:before { content: "\f1c9" }
921
+ .icon-ios7-plus-outline:before { content: "\f1ca" }
922
+ .icon-ios7-pricetag:before { content: "\f28d" }
923
+ .icon-ios7-pricetag-outline:before { content: "\f28c" }
924
+ .icon-ios7-printer:before { content: "\f1cd" }
925
+ .icon-ios7-printer-outline:before { content: "\f1cc" }
926
+ .icon-ios7-rainy:before { content: "\f1cf" }
927
+ .icon-ios7-rainy-outline:before { content: "\f1ce" }
928
+ .icon-ios7-recording:before { content: "\f1d1" }
929
+ .icon-ios7-recording-outline:before { content: "\f1d0" }
930
+ .icon-ios7-redo:before { content: "\f1d3" }
931
+ .icon-ios7-redo-outline:before { content: "\f1d2" }
932
+ .icon-ios7-refresh:before { content: "\f1d6" }
933
+ .icon-ios7-refresh-empty:before { content: "\f1d4" }
934
+ .icon-ios7-refresh-outline:before { content: "\f1d5" }
935
+ .icon-ios7-reload:before,
936
+ .icon-ios7-reloading:before { content: "\f28e" }
937
+ .icon-ios7-rewind:before { content: "\f1d8" }
938
+ .icon-ios7-rewind-outline:before { content: "\f1d7" }
939
+ .icon-ios7-search:before { content: "\f1da" }
940
+ .icon-ios7-search-strong:before { content: "\f1d9" }
941
+ .icon-ios7-skipbackward:before { content: "\f1dc" }
942
+ .icon-ios7-skipbackward-outline:before { content: "\f1db" }
943
+ .icon-ios7-skipforward:before { content: "\f1de" }
944
+ .icon-ios7-skipforward-outline:before { content: "\f1dd" }
945
+ .icon-ios7-snowy:before { content: "\f309" }
946
+ .icon-ios7-speedometer:before { content: "\f290" }
947
+ .icon-ios7-speedometer-outline:before { content: "\f28f" }
948
+ .icon-ios7-star:before { content: "\f1e0" }
949
+ .icon-ios7-star-outline:before { content: "\f1df" }
950
+ .icon-ios7-stopwatch:before { content: "\f1e2" }
951
+ .icon-ios7-stopwatch-outline:before { content: "\f1e1" }
952
+ .icon-ios7-sunny:before { content: "\f1e4" }
953
+ .icon-ios7-sunny-outline:before { content: "\f1e3" }
954
+ .icon-ios7-telephone:before { content: "\f1e6" }
955
+ .icon-ios7-telephone-outline:before { content: "\f1e5" }
956
+ .icon-ios7-thunderstorm:before { content: "\f1e8" }
957
+ .icon-ios7-thunderstorm-outline:before { content: "\f1e7" }
958
+ .icon-ios7-time:before { content: "\f292" }
959
+ .icon-ios7-time-outline:before { content: "\f291" }
960
+ .icon-ios7-timer:before { content: "\f1ea" }
961
+ .icon-ios7-timer-outline:before { content: "\f1e9" }
962
+ .icon-ios7-trash:before { content: "\f1ec" }
963
+ .icon-ios7-trash-outline:before { content: "\f1eb" }
964
+ .icon-ios7-undo:before { content: "\f1ee" }
965
+ .icon-ios7-undo-outline:before { content: "\f1ed" }
966
+ .icon-ios7-unlocked:before { content: "\f1f0" }
967
+ .icon-ios7-unlocked-outline:before { content: "\f1ef" }
968
+ .icon-ios7-upload:before { content: "\f1f2" }
969
+ .icon-ios7-upload-outline:before { content: "\f1f1" }
970
+ .icon-ios7-videocam:before { content: "\f1f4" }
971
+ .icon-ios7-videocam-outline:before { content: "\f1f3" }
972
+ .icon-ios7-volume-high:before { content: "\f1f5" }
973
+ .icon-ios7-volume-low:before { content: "\f1f6" }
974
+ .icon-ios7-wineglass:before { content: "\f294" }
975
+ .icon-ios7-wineglass-outline:before { content: "\f293" }
976
+ .icon-ios7-world:before { content: "\f1f8" }
977
+ .icon-ios7-world-outline:before { content: "\f1f7" }
978
+ .icon-ipad:before { content: "\f1f9" }
979
+ .icon-iphone:before { content: "\f1fa" }
980
+ .icon-ipod:before { content: "\f1fb" }
981
+ .icon-jet:before { content: "\f295" }
982
+ .icon-key:before { content: "\f296" }
983
+ .icon-knife:before { content: "\f297" }
984
+ .icon-laptop:before { content: "\f1fc" }
985
+ .icon-leaf:before { content: "\f1fd" }
986
+ .icon-levels:before { content: "\f298" }
987
+ .icon-lightbulb:before { content: "\f299" }
988
+ .icon-link:before { content: "\f1fe" }
989
+ .icon-load-a:before,
990
+ .icon-loading-a:before { content: "\f29a" }
991
+ .icon-load-b:before,
992
+ .icon-loading-b:before { content: "\f29b" }
993
+ .icon-load-c:before,
994
+ .icon-loading-c:before { content: "\f29c" }
995
+ .icon-load-d:before,
996
+ .icon-loading-d:before { content: "\f29d" }
997
+ .icon-location:before { content: "\f1ff" }
998
+ .icon-locked:before { content: "\f200" }
999
+ .icon-log-in:before { content: "\f29e" }
1000
+ .icon-log-out:before { content: "\f29f" }
1001
+ .icon-loop:before,
1002
+ .icon-looping:before { content: "\f201" }
1003
+ .icon-magnet:before { content: "\f2a0" }
1004
+ .icon-male:before { content: "\f2a1" }
1005
+ .icon-man:before { content: "\f202" }
1006
+ .icon-map:before { content: "\f203" }
1007
+ .icon-medkit:before { content: "\f2a2" }
1008
+ .icon-mic-a:before { content: "\f204" }
1009
+ .icon-mic-b:before { content: "\f205" }
1010
+ .icon-mic-c:before { content: "\f206" }
1011
+ .icon-minus:before { content: "\f209" }
1012
+ .icon-minus-circled:before { content: "\f207" }
1013
+ .icon-minus-round:before { content: "\f208" }
1014
+ .icon-model-s:before { content: "\f2c1" }
1015
+ .icon-monitor:before { content: "\f20a" }
1016
+ .icon-more:before { content: "\f20b" }
1017
+ .icon-music-note:before { content: "\f20c" }
1018
+ .icon-navicon:before { content: "\f20e" }
1019
+ .icon-navicon-round:before { content: "\f20d" }
1020
+ .icon-navigate:before { content: "\f2a3" }
1021
+ .icon-no-smoking:before { content: "\f2c2" }
1022
+ .icon-nuclear:before { content: "\f2a4" }
1023
+ .icon-paper-airplane:before { content: "\f2c3" }
1024
+ .icon-paperclip:before { content: "\f20f" }
1025
+ .icon-pause:before { content: "\f210" }
1026
+ .icon-person:before { content: "\f213" }
1027
+ .icon-person-add:before { content: "\f211" }
1028
+ .icon-person-stalker:before { content: "\f212" }
1029
+ .icon-pie-graph:before { content: "\f2a5" }
1030
+ .icon-pin:before { content: "\f2a6" }
1031
+ .icon-pinpoint:before { content: "\f2a7" }
1032
+ .icon-pizza:before { content: "\f2a8" }
1033
+ .icon-plane:before { content: "\f214" }
1034
+ .icon-play:before { content: "\f215" }
1035
+ .icon-playstation:before { content: "\f30a" }
1036
+ .icon-plus:before { content: "\f218" }
1037
+ .icon-plus-circled:before { content: "\f216" }
1038
+ .icon-plus-round:before { content: "\f217" }
1039
+ .icon-pound:before { content: "\f219" }
1040
+ .icon-power:before { content: "\f2a9" }
1041
+ .icon-pricetag:before { content: "\f2aa" }
1042
+ .icon-pricetags:before { content: "\f2ab" }
1043
+ .icon-printer:before { content: "\f21a" }
1044
+ .icon-radio-waves:before { content: "\f2ac" }
1045
+ .icon-record:before { content: "\f21b" }
1046
+ .icon-refresh:before,
1047
+ .icon-refreshing:before { content: "\f21c" }
1048
+ .icon-reply:before { content: "\f21e" }
1049
+ .icon-reply-all:before { content: "\f21d" }
1050
+ .icon-search:before { content: "\f21f" }
1051
+ .icon-settings:before { content: "\f2ad" }
1052
+ .icon-share:before { content: "\f220" }
1053
+ .icon-shuffle:before { content: "\f221" }
1054
+ .icon-skip-backward:before { content: "\f222" }
1055
+ .icon-skip-forward:before { content: "\f223" }
1056
+ .icon-social-android:before { content: "\f225" }
1057
+ .icon-social-android-outline:before { content: "\f224" }
1058
+ .icon-social-apple:before { content: "\f227" }
1059
+ .icon-social-apple-outline:before { content: "\f226" }
1060
+ .icon-social-bitcoin:before { content: "\f2af" }
1061
+ .icon-social-bitcoin-outline:before { content: "\f2ae" }
1062
+ .icon-social-buffer:before { content: "\f229" }
1063
+ .icon-social-buffer-outline:before { content: "\f228" }
1064
+ .icon-social-designernews:before { content: "\f22b" }
1065
+ .icon-social-designernews-outline:before { content: "\f22a" }
1066
+ .icon-social-dribbble:before { content: "\f22d" }
1067
+ .icon-social-dribbble-outline:before { content: "\f22c" }
1068
+ .icon-social-dropbox:before { content: "\f22f" }
1069
+ .icon-social-dropbox-outline:before { content: "\f22e" }
1070
+ .icon-social-facebook:before { content: "\f231" }
1071
+ .icon-social-facebook-outline:before { content: "\f230" }
1072
+ .icon-social-freebsd-devil:before { content: "\f2c4" }
1073
+ .icon-social-github:before { content: "\f233" }
1074
+ .icon-social-github-outline:before { content: "\f232" }
1075
+ .icon-social-googleplus:before { content: "\f235" }
1076
+ .icon-social-googleplus-outline:before { content: "\f234" }
1077
+ .icon-social-hackernews:before { content: "\f237" }
1078
+ .icon-social-hackernews-outline:before { content: "\f236" }
1079
+ .icon-social-linkedin:before { content: "\f239" }
1080
+ .icon-social-linkedin-outline:before { content: "\f238" }
1081
+ .icon-social-pinterest:before { content: "\f2b1" }
1082
+ .icon-social-pinterest-outline:before { content: "\f2b0" }
1083
+ .icon-social-reddit:before { content: "\f23b" }
1084
+ .icon-social-reddit-outline:before { content: "\f23a" }
1085
+ .icon-social-rss:before { content: "\f23d" }
1086
+ .icon-social-rss-outline:before { content: "\f23c" }
1087
+ .icon-social-skype:before { content: "\f23f" }
1088
+ .icon-social-skype-outline:before { content: "\f23e" }
1089
+ .icon-social-tumblr:before { content: "\f241" }
1090
+ .icon-social-tumblr-outline:before { content: "\f240" }
1091
+ .icon-social-tux:before { content: "\f2c5" }
1092
+ .icon-social-twitter:before { content: "\f243" }
1093
+ .icon-social-twitter-outline:before { content: "\f242" }
1094
+ .icon-social-vimeo:before { content: "\f245" }
1095
+ .icon-social-vimeo-outline:before { content: "\f244" }
1096
+ .icon-social-windows:before { content: "\f247" }
1097
+ .icon-social-windows-outline:before { content: "\f246" }
1098
+ .icon-social-wordpress:before { content: "\f249" }
1099
+ .icon-social-wordpress-outline:before { content: "\f248" }
1100
+ .icon-social-yahoo:before { content: "\f24b" }
1101
+ .icon-social-yahoo-outline:before { content: "\f24a" }
1102
+ .icon-social-youtube:before { content: "\f24d" }
1103
+ .icon-social-youtube-outline:before { content: "\f24c" }
1104
+ .icon-speakerphone:before { content: "\f2b2" }
1105
+ .icon-speedometer:before { content: "\f2b3" }
1106
+ .icon-spoon:before { content: "\f2b4" }
1107
+ .icon-star:before { content: "\f24e" }
1108
+ .icon-stats-bars:before { content: "\f2b5" }
1109
+ .icon-steam:before { content: "\f30b" }
1110
+ .icon-stop:before { content: "\f24f" }
1111
+ .icon-thermometer:before { content: "\f2b6" }
1112
+ .icon-thumbsdown:before { content: "\f250" }
1113
+ .icon-thumbsup:before { content: "\f251" }
1114
+ .icon-trash-a:before { content: "\f252" }
1115
+ .icon-trash-b:before { content: "\f253" }
1116
+ .icon-umbrella:before { content: "\f2b7" }
1117
+ .icon-unlocked:before { content: "\f254" }
1118
+ .icon-upload:before { content: "\f255" }
1119
+ .icon-usb:before { content: "\f2b8" }
1120
+ .icon-videocamera:before { content: "\f256" }
1121
+ .icon-volume-high:before { content: "\f257" }
1122
+ .icon-volume-low:before { content: "\f258" }
1123
+ .icon-volume-medium:before { content: "\f259" }
1124
+ .icon-volume-mute:before { content: "\f25a" }
1125
+ .icon-waterdrop:before { content: "\f25b" }
1126
+ .icon-wifi:before { content: "\f25c" }
1127
+ .icon-wineglass:before { content: "\f2b9" }
1128
+ .icon-woman:before { content: "\f25d" }
1129
+ .icon-wrench:before { content: "\f2ba" }
1130
+ .icon-xbox:before { content: "\f30c" }