express_admin 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (155) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +37 -0
  4. data/Rakefile +32 -0
  5. data/app/assets/fonts/app_express.eot +0 -0
  6. data/app/assets/fonts/app_express.svg +21 -0
  7. data/app/assets/fonts/app_express.ttf +0 -0
  8. data/app/assets/fonts/app_express.woff +0 -0
  9. data/app/assets/fonts/ionicons.eot +0 -0
  10. data/app/assets/fonts/ionicons.svg +1899 -0
  11. data/app/assets/fonts/ionicons.ttf +0 -0
  12. data/app/assets/fonts/ionicons.woff +0 -0
  13. data/app/assets/javascripts/express_admin/admin.js +30 -0
  14. data/app/assets/javascripts/express_admin/dataTables/dataTables.foundation.js +183 -0
  15. data/app/assets/javascripts/express_admin/dataTables/jquery.dataTables.js +14382 -0
  16. data/app/assets/javascripts/express_admin/utility.js +30 -0
  17. data/app/assets/javascripts/express_admin.js +7 -0
  18. data/app/assets/stylesheets/dataTables/dataTables.foundation.css.erb +217 -0
  19. data/app/assets/stylesheets/express_admin/components/_empty_state.sass +10 -0
  20. data/app/assets/stylesheets/express_admin/components/_megadropdown.sass +71 -0
  21. data/app/assets/stylesheets/express_admin/express_icons.sass +56 -0
  22. data/app/assets/stylesheets/express_admin/foundation_and_overrides.scss +1443 -0
  23. data/app/assets/stylesheets/express_admin/globals/_mixins.sass +9 -0
  24. data/app/assets/stylesheets/express_admin/globals/_typography.sass +30 -0
  25. data/app/assets/stylesheets/express_admin/globals/_variables.sass +16 -0
  26. data/app/assets/stylesheets/express_admin/plugins/_dataTables.sass +118 -0
  27. data/app/assets/stylesheets/express_admin/plugins/_select2.sass +91 -0
  28. data/app/assets/stylesheets/express_admin/screen.sass +47 -0
  29. data/app/assets/stylesheets/express_admin/sections/_devise.sass +42 -0
  30. data/app/assets/stylesheets/express_admin/sections/_header.sass +98 -0
  31. data/app/assets/stylesheets/express_admin/sections/_main_content.sass +63 -0
  32. data/app/assets/stylesheets/express_admin/sections/_sidebar.sass +42 -0
  33. data/app/assets/stylesheets/express_admin/shared/_alerts.sass +45 -0
  34. data/app/assets/stylesheets/express_admin/shared/_breadcrumbs.sass +3 -0
  35. data/app/assets/stylesheets/express_admin/shared/_buttons.sass +33 -0
  36. data/app/assets/stylesheets/express_admin/shared/_forms.sass +99 -0
  37. data/app/assets/stylesheets/express_admin/shared/_labels.sass +16 -0
  38. data/app/assets/stylesheets/express_admin/shared/_loading.sass +2 -0
  39. data/app/assets/stylesheets/express_admin/shared/_media_object.sass +23 -0
  40. data/app/assets/stylesheets/express_admin/shared/_messages.sass +12 -0
  41. data/app/assets/stylesheets/express_admin/shared/_navigation.sass +20 -0
  42. data/app/assets/stylesheets/express_admin/shared/_progress.sass +3 -0
  43. data/app/assets/stylesheets/express_admin/shared/_reveal.sass +20 -0
  44. data/app/assets/stylesheets/express_admin/shared/_tables.sass +75 -0
  45. data/app/assets/stylesheets/express_admin/shared/_tabs.sass +25 -0
  46. data/app/assets/stylesheets/express_admin/shared/_widgets.sass +57 -0
  47. data/app/assets/stylesheets/express_admin.css +9 -0
  48. data/app/assets/stylesheets/ionicons/ionicons.css.sass +1873 -0
  49. data/app/components/express_admin/addon_sidebar_component.rb +47 -0
  50. data/app/components/express_admin/flash_message_component.rb +19 -0
  51. data/app/components/express_admin/main_region.rb +9 -0
  52. data/app/components/express_admin/mega_menu_component.rb +68 -0
  53. data/app/components/express_admin/page_header_component.rb +39 -0
  54. data/app/components/express_admin/setting_form.rb +45 -0
  55. data/app/components/express_admin/sidebar_region.rb +11 -0
  56. data/app/components/express_admin/smart_form.rb +70 -0
  57. data/app/components/express_admin/smart_table.rb +97 -0
  58. data/app/components/express_admin/widget_box.rb +22 -0
  59. data/app/helpers/express_admin/admin_helper.rb +104 -0
  60. data/app/helpers/express_admin/module_settings_helper.rb +53 -0
  61. data/app/views/express_admin/dashboard/show.html.et +6 -0
  62. data/app/views/layouts/express_admin/admin.html.et +31 -0
  63. data/app/views/layouts/express_admin/external.html.et +15 -0
  64. data/app/views/shared/express_admin/_messages.html.et +1 -0
  65. data/app/views/shared/express_admin/_navigation_bar.html.et +20 -0
  66. data/app/views/shared/express_admin/_navigation_bar_profile.html.et +8 -0
  67. data/app/views/shared/express_admin/_title.html.et +8 -0
  68. data/config/initializers/gravatar_image_tag.rb +4 -0
  69. data/lib/express_admin/engine.rb +52 -0
  70. data/lib/express_admin/menu.rb +62 -0
  71. data/lib/express_admin/version.rb +3 -0
  72. data/lib/express_admin.rb +4 -0
  73. data/lib/generators/express_admin/install/USAGE +23 -0
  74. data/lib/generators/express_admin/install/install_generator.rb +97 -0
  75. data/lib/generators/express_admin/install/templates/assets/javascripts/application.js +1 -0
  76. data/lib/generators/express_admin/install/templates/assets/stylesheets/application.css +5 -0
  77. data/lib/generators/express_admin/install/templates/config/menu.yml.erb +3 -0
  78. data/lib/generators/express_admin/install/templates/controllers/admin_controller.rb.erb +34 -0
  79. data/lib/generators/express_admin/install/templates/install/USAGE +8 -0
  80. data/lib/generators/express_admin/install/templates/install/installer.rb.erb +10 -0
  81. data/lib/generators/express_admin/install/templates/install/installer_test.rb.erb +16 -0
  82. data/lib/generators/express_admin/install/templates/views/layouts/admin.html.et +1 -0
  83. data/lib/generators/express_admin/scaffold/scaffold_generator.rb +135 -0
  84. data/lib/generators/express_admin/scaffold/templates/controller/controller.rb +14 -0
  85. data/lib/generators/express_admin/scaffold/templates/index.html.et.erb +10 -0
  86. data/lib/generators/express_admin/scaffold/templates/model/model.rb +4 -0
  87. data/lib/generators/express_admin/scaffold/templates/show.html.et.erb +10 -0
  88. data/lib/tasks/express_admin_tasks.rake +4 -0
  89. data/test/bin/run +1 -0
  90. data/test/dummy/README.rdoc +28 -0
  91. data/test/dummy/Rakefile +6 -0
  92. data/test/dummy/app/assets/javascripts/application.js +13 -0
  93. data/test/dummy/app/assets/javascripts/demo.js +2 -0
  94. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  95. data/test/dummy/app/assets/stylesheets/demo.css.scss +3 -0
  96. data/test/dummy/app/controllers/application_controller.rb +5 -0
  97. data/test/dummy/app/controllers/demo_controller.rb +8 -0
  98. data/test/dummy/app/helpers/application_helper.rb +2 -0
  99. data/test/dummy/app/helpers/demo_helper.rb +2 -0
  100. data/test/dummy/app/views/demo/show.html.et +2 -0
  101. data/test/dummy/app/views/demo/sign_in.html.et +30 -0
  102. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  103. data/test/dummy/bin/bundle +3 -0
  104. data/test/dummy/bin/rails +4 -0
  105. data/test/dummy/bin/rake +4 -0
  106. data/test/dummy/config/application.rb +23 -0
  107. data/test/dummy/config/boot.rb +5 -0
  108. data/test/dummy/config/database.yml +25 -0
  109. data/test/dummy/config/environment.rb +5 -0
  110. data/test/dummy/config/environments/development.rb +37 -0
  111. data/test/dummy/config/environments/production.rb +83 -0
  112. data/test/dummy/config/environments/test.rb +43 -0
  113. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  114. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  115. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  116. data/test/dummy/config/initializers/inflections.rb +16 -0
  117. data/test/dummy/config/initializers/mime_types.rb +4 -0
  118. data/test/dummy/config/initializers/session_store.rb +3 -0
  119. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  120. data/test/dummy/config/locales/en.yml +23 -0
  121. data/test/dummy/config/routes.rb +7 -0
  122. data/test/dummy/config/secrets.yml +22 -0
  123. data/test/dummy/config.ru +4 -0
  124. data/test/dummy/db/schema.rb +22 -0
  125. data/test/dummy/db/test.sqlite3 +0 -0
  126. data/test/dummy/log/test.log +3847 -0
  127. data/test/dummy/public/404.html +67 -0
  128. data/test/dummy/public/422.html +67 -0
  129. data/test/dummy/public/500.html +66 -0
  130. data/test/dummy/public/favicon.ico +0 -0
  131. data/test/dummy/test/controllers/demo_controller_test.rb +9 -0
  132. data/test/dummy/test/helpers/demo_helper_test.rb +4 -0
  133. data/test/fixtures/engine.rb +5 -0
  134. data/test/fixtures/express_admin/test_menu.yml +12 -0
  135. data/test/fixtures/routes.rb +2 -0
  136. data/test/generators_test_helper.rb +32 -0
  137. data/test/lib/express_admin/menu_test.rb +18 -0
  138. data/test/lib/generators/express_admin/install_generator_test.rb +72 -0
  139. data/test/lib/generators/express_admin/scaffold_generator_test.rb +67 -0
  140. data/test/test_helper.rb +18 -0
  141. data/vendor/assets/images/dataTables/Sorting icons.psd +0 -0
  142. data/vendor/assets/images/dataTables/back_disabled.png +0 -0
  143. data/vendor/assets/images/dataTables/back_enabled.png +0 -0
  144. data/vendor/assets/images/dataTables/back_enabled_hover.png +0 -0
  145. data/vendor/assets/images/dataTables/favicon.ico +0 -0
  146. data/vendor/assets/images/dataTables/forward_disabled.png +0 -0
  147. data/vendor/assets/images/dataTables/forward_enabled.png +0 -0
  148. data/vendor/assets/images/dataTables/forward_enabled_hover.png +0 -0
  149. data/vendor/assets/images/dataTables/sort_asc.png +0 -0
  150. data/vendor/assets/images/dataTables/sort_asc_disabled.png +0 -0
  151. data/vendor/assets/images/dataTables/sort_both.png +0 -0
  152. data/vendor/assets/images/dataTables/sort_desc.png +0 -0
  153. data/vendor/assets/images/dataTables/sort_desc_disabled.png +0 -0
  154. data/vendor/assets/javascripts/jquery.loadingdotdotdot.js +82 -0
  155. metadata +432 -0
@@ -0,0 +1,1873 @@
1
+ /*!
2
+ *Ionicons, v1.5.2
3
+ *Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
4
+ *https://twitter.com/benjsperry https://twitter.com/ionicframework
5
+ *MIT License: https://github.com/driftyco/ionicons
6
+ @font-face
7
+ font-family: "Ionicons"
8
+ src: asset-url("ionicons.eot")
9
+ src: asset-url("ionicons.eot") format("embedded-opentype"), asset-url("ionicons.ttf") format("truetype"), asset-url("ionicons.woff") format("woff"), asset-url("ionicons.svg") format("svg")
10
+ font-weight: normal
11
+ font-style: normal
12
+
13
+ .ion, .ion-loading-a, .ion-loading-b, .ion-loading-c, .ion-loading-d, .ion-looping, .ion-refreshing, .ion-ios7-reloading, .ionicons, .ion-alert:before, .ion-alert-circled:before, .ion-android-add:before, .ion-android-add-contact:before, .ion-android-alarm:before, .ion-android-archive:before, .ion-android-arrow-back:before, .ion-android-arrow-down-left:before, .ion-android-arrow-down-right:before, .ion-android-arrow-forward:before, .ion-android-arrow-up-left:before, .ion-android-arrow-up-right:before, .ion-android-battery:before, .ion-android-book:before, .ion-android-calendar:before, .ion-android-call:before, .ion-android-camera:before, .ion-android-chat:before, .ion-android-checkmark:before, .ion-android-clock:before, .ion-android-close:before, .ion-android-contact:before, .ion-android-contacts:before, .ion-android-data:before, .ion-android-developer:before, .ion-android-display:before, .ion-android-download:before, .ion-android-drawer:before, .ion-android-dropdown:before, .ion-android-earth:before, .ion-android-folder:before, .ion-android-forums:before, .ion-android-friends:before, .ion-android-hand:before, .ion-android-image:before, .ion-android-inbox:before, .ion-android-information:before, .ion-android-keypad:before, .ion-android-lightbulb:before, .ion-android-locate:before, .ion-android-location:before, .ion-android-mail:before, .ion-android-microphone:before, .ion-android-mixer:before, .ion-android-more:before, .ion-android-note:before, .ion-android-playstore:before, .ion-android-printer:before, .ion-android-promotion:before, .ion-android-reminder:before, .ion-android-remove:before, .ion-android-search:before, .ion-android-send:before, .ion-android-settings:before, .ion-android-share:before, .ion-android-social:before, .ion-android-social-user:before, .ion-android-sort:before, .ion-android-stair-drawer:before, .ion-android-star:before, .ion-android-stopwatch:before, .ion-android-storage:before, .ion-android-system-back:before, .ion-android-system-home:before, .ion-android-system-windows:before, .ion-android-timer:before, .ion-android-trash:before, .ion-android-user-menu:before, .ion-android-volume:before, .ion-android-wifi:before, .ion-aperture:before, .ion-archive:before, .ion-arrow-down-a:before, .ion-arrow-down-b:before, .ion-arrow-down-c:before, .ion-arrow-expand:before, .ion-arrow-graph-down-left:before, .ion-arrow-graph-down-right:before, .ion-arrow-graph-up-left:before, .ion-arrow-graph-up-right:before, .ion-arrow-left-a:before, .ion-arrow-left-b:before, .ion-arrow-left-c:before, .ion-arrow-move:before, .ion-arrow-resize:before, .ion-arrow-return-left:before, .ion-arrow-return-right:before, .ion-arrow-right-a:before, .ion-arrow-right-b:before, .ion-arrow-right-c:before, .ion-arrow-shrink:before, .ion-arrow-swap:before, .ion-arrow-up-a:before, .ion-arrow-up-b:before, .ion-arrow-up-c:before, .ion-asterisk:before, .ion-at:before, .ion-bag:before, .ion-battery-charging:before, .ion-battery-empty:before, .ion-battery-full:before, .ion-battery-half:before, .ion-battery-low:before, .ion-beaker:before, .ion-beer:before, .ion-bluetooth:before, .ion-bonfire:before, .ion-bookmark:before, .ion-briefcase:before, .ion-bug:before, .ion-calculator:before, .ion-calendar:before, .ion-camera:before, .ion-card:before, .ion-cash:before, .ion-chatbox:before, .ion-chatbox-working:before, .ion-chatboxes:before, .ion-chatbubble:before, .ion-chatbubble-working:before, .ion-chatbubbles:before, .ion-checkmark:before, .ion-checkmark-circled:before, .ion-checkmark-round:before, .ion-chevron-down:before, .ion-chevron-left:before, .ion-chevron-right:before, .ion-chevron-up:before, .ion-clipboard:before, .ion-clock:before, .ion-close:before, .ion-close-circled:before, .ion-close-round:before, .ion-closed-captioning:before, .ion-cloud:before, .ion-code:before, .ion-code-download:before, .ion-code-working:before, .ion-coffee:before, .ion-compass:before, .ion-compose:before, .ion-connection-bars:before, .ion-contrast:before, .ion-cube:before, .ion-disc:before, .ion-document:before, .ion-document-text:before, .ion-drag:before, .ion-earth:before, .ion-edit:before, .ion-egg:before, .ion-eject:before, .ion-email:before, .ion-eye:before, .ion-eye-disabled:before, .ion-female:before, .ion-filing:before, .ion-film-marker:before, .ion-fireball:before, .ion-flag:before, .ion-flame:before, .ion-flash:before, .ion-flash-off:before, .ion-flask:before, .ion-folder:before, .ion-fork:before, .ion-fork-repo:before, .ion-forward:before, .ion-funnel:before, .ion-game-controller-a:before, .ion-game-controller-b:before, .ion-gear-a:before, .ion-gear-b:before, .ion-grid:before, .ion-hammer:before, .ion-happy:before, .ion-headphone:before, .ion-heart:before, .ion-heart-broken:before, .ion-help:before, .ion-help-buoy:before, .ion-help-circled:before, .ion-home:before, .ion-icecream:before, .ion-icon-social-google-plus:before, .ion-icon-social-google-plus-outline:before, .ion-image:before, .ion-images:before, .ion-information:before, .ion-information-circled:before, .ion-ionic:before, .ion-ios7-alarm:before, .ion-ios7-alarm-outline:before, .ion-ios7-albums:before, .ion-ios7-albums-outline:before, .ion-ios7-americanfootball:before, .ion-ios7-americanfootball-outline:before, .ion-ios7-analytics:before, .ion-ios7-analytics-outline:before, .ion-ios7-arrow-back:before, .ion-ios7-arrow-down:before, .ion-ios7-arrow-forward:before, .ion-ios7-arrow-left:before, .ion-ios7-arrow-right:before, .ion-ios7-arrow-thin-down:before, .ion-ios7-arrow-thin-left:before, .ion-ios7-arrow-thin-right:before, .ion-ios7-arrow-thin-up:before, .ion-ios7-arrow-up:before, .ion-ios7-at:before, .ion-ios7-at-outline:before, .ion-ios7-barcode:before, .ion-ios7-barcode-outline:before, .ion-ios7-baseball:before, .ion-ios7-baseball-outline:before, .ion-ios7-basketball:before, .ion-ios7-basketball-outline:before, .ion-ios7-bell:before, .ion-ios7-bell-outline:before, .ion-ios7-bolt:before, .ion-ios7-bolt-outline:before, .ion-ios7-bookmarks:before, .ion-ios7-bookmarks-outline:before, .ion-ios7-box:before, .ion-ios7-box-outline:before, .ion-ios7-briefcase:before, .ion-ios7-briefcase-outline:before, .ion-ios7-browsers:before, .ion-ios7-browsers-outline:before, .ion-ios7-calculator:before, .ion-ios7-calculator-outline:before, .ion-ios7-calendar:before, .ion-ios7-calendar-outline:before, .ion-ios7-camera:before, .ion-ios7-camera-outline:before, .ion-ios7-cart:before, .ion-ios7-cart-outline:before, .ion-ios7-chatboxes:before, .ion-ios7-chatboxes-outline:before, .ion-ios7-chatbubble:before, .ion-ios7-chatbubble-outline:before, .ion-ios7-checkmark:before, .ion-ios7-checkmark-empty:before, .ion-ios7-checkmark-outline:before, .ion-ios7-circle-filled:before, .ion-ios7-circle-outline:before, .ion-ios7-clock:before, .ion-ios7-clock-outline:before, .ion-ios7-close:before, .ion-ios7-close-empty:before, .ion-ios7-close-outline:before, .ion-ios7-cloud:before, .ion-ios7-cloud-download:before, .ion-ios7-cloud-download-outline:before, .ion-ios7-cloud-outline:before, .ion-ios7-cloud-upload:before, .ion-ios7-cloud-upload-outline:before, .ion-ios7-cloudy:before, .ion-ios7-cloudy-night:before, .ion-ios7-cloudy-night-outline:before, .ion-ios7-cloudy-outline:before, .ion-ios7-cog:before, .ion-ios7-cog-outline:before, .ion-ios7-compose:before, .ion-ios7-compose-outline:before, .ion-ios7-contact:before, .ion-ios7-contact-outline:before, .ion-ios7-copy:before, .ion-ios7-copy-outline:before, .ion-ios7-download:before, .ion-ios7-download-outline:before, .ion-ios7-drag:before, .ion-ios7-email:before, .ion-ios7-email-outline:before, .ion-ios7-expand:before, .ion-ios7-eye:before, .ion-ios7-eye-outline:before, .ion-ios7-fastforward:before, .ion-ios7-fastforward-outline:before, .ion-ios7-filing:before, .ion-ios7-filing-outline:before, .ion-ios7-film:before, .ion-ios7-film-outline:before, .ion-ios7-flag:before, .ion-ios7-flag-outline:before, .ion-ios7-folder:before, .ion-ios7-folder-outline:before, .ion-ios7-football:before, .ion-ios7-football-outline:before, .ion-ios7-gear:before, .ion-ios7-gear-outline:before, .ion-ios7-glasses:before, .ion-ios7-glasses-outline:before, .ion-ios7-heart:before, .ion-ios7-heart-outline:before, .ion-ios7-help:before, .ion-ios7-help-empty:before, .ion-ios7-help-outline:before, .ion-ios7-home:before, .ion-ios7-home-outline:before, .ion-ios7-infinite:before, .ion-ios7-infinite-outline:before, .ion-ios7-information:before, .ion-ios7-information-empty:before, .ion-ios7-information-outline:before, .ion-ios7-ionic-outline:before, .ion-ios7-keypad:before, .ion-ios7-keypad-outline:before, .ion-ios7-lightbulb:before, .ion-ios7-lightbulb-outline:before, .ion-ios7-location:before, .ion-ios7-location-outline:before, .ion-ios7-locked:before, .ion-ios7-locked-outline:before, .ion-ios7-loop:before, .ion-ios7-loop-strong:before, .ion-ios7-medkit:before, .ion-ios7-medkit-outline:before, .ion-ios7-mic:before, .ion-ios7-mic-off:before, .ion-ios7-mic-outline:before, .ion-ios7-minus:before, .ion-ios7-minus-empty:before, .ion-ios7-minus-outline:before, .ion-ios7-monitor:before, .ion-ios7-monitor-outline:before, .ion-ios7-moon:before, .ion-ios7-moon-outline:before, .ion-ios7-more:before, .ion-ios7-more-outline:before, .ion-ios7-musical-note:before, .ion-ios7-musical-notes:before, .ion-ios7-navigate:before, .ion-ios7-navigate-outline:before, .ion-ios7-paper:before, .ion-ios7-paper-outline:before, .ion-ios7-paperplane:before, .ion-ios7-paperplane-outline:before, .ion-ios7-partlysunny:before, .ion-ios7-partlysunny-outline:before, .ion-ios7-pause:before, .ion-ios7-pause-outline:before, .ion-ios7-paw:before, .ion-ios7-paw-outline:before, .ion-ios7-people:before, .ion-ios7-people-outline:before, .ion-ios7-person:before, .ion-ios7-person-outline:before, .ion-ios7-personadd:before, .ion-ios7-personadd-outline:before, .ion-ios7-photos:before, .ion-ios7-photos-outline:before, .ion-ios7-pie:before, .ion-ios7-pie-outline:before, .ion-ios7-play:before, .ion-ios7-play-outline:before, .ion-ios7-plus:before, .ion-ios7-plus-empty:before, .ion-ios7-plus-outline:before, .ion-ios7-pricetag:before, .ion-ios7-pricetag-outline:before, .ion-ios7-pricetags:before, .ion-ios7-pricetags-outline:before, .ion-ios7-printer:before, .ion-ios7-printer-outline:before, .ion-ios7-pulse:before, .ion-ios7-pulse-strong:before, .ion-ios7-rainy:before, .ion-ios7-rainy-outline:before, .ion-ios7-recording:before, .ion-ios7-recording-outline:before, .ion-ios7-redo:before, .ion-ios7-redo-outline:before, .ion-ios7-refresh:before, .ion-ios7-refresh-empty:before, .ion-ios7-refresh-outline:before, .ion-ios7-reload:before, .ion-ios7-reloading:before, .ion-ios7-reverse-camera:before, .ion-ios7-reverse-camera-outline:before, .ion-ios7-rewind:before, .ion-ios7-rewind-outline:before, .ion-ios7-search:before, .ion-ios7-search-strong:before, .ion-ios7-settings:before, .ion-ios7-settings-strong:before, .ion-ios7-shrink:before, .ion-ios7-skipbackward:before, .ion-ios7-skipbackward-outline:before, .ion-ios7-skipforward:before, .ion-ios7-skipforward-outline:before, .ion-ios7-snowy:before, .ion-ios7-speedometer:before, .ion-ios7-speedometer-outline:before, .ion-ios7-star:before, .ion-ios7-star-half:before, .ion-ios7-star-outline:before, .ion-ios7-stopwatch:before, .ion-ios7-stopwatch-outline:before, .ion-ios7-sunny:before, .ion-ios7-sunny-outline:before, .ion-ios7-telephone:before, .ion-ios7-telephone-outline:before, .ion-ios7-tennisball:before, .ion-ios7-tennisball-outline:before, .ion-ios7-thunderstorm:before, .ion-ios7-thunderstorm-outline:before, .ion-ios7-time:before, .ion-ios7-time-outline:before, .ion-ios7-timer:before, .ion-ios7-timer-outline:before, .ion-ios7-toggle:before, .ion-ios7-toggle-outline:before, .ion-ios7-trash:before, .ion-ios7-trash-outline:before, .ion-ios7-undo:before, .ion-ios7-undo-outline:before, .ion-ios7-unlocked:before, .ion-ios7-unlocked-outline:before, .ion-ios7-upload:before, .ion-ios7-upload-outline:before, .ion-ios7-videocam:before, .ion-ios7-videocam-outline:before, .ion-ios7-volume-high:before, .ion-ios7-volume-low:before, .ion-ios7-wineglass:before, .ion-ios7-wineglass-outline:before, .ion-ios7-world:before, .ion-ios7-world-outline:before, .ion-ipad:before, .ion-iphone:before, .ion-ipod:before, .ion-jet:before, .ion-key:before, .ion-knife:before, .ion-laptop:before, .ion-leaf:before, .ion-levels:before, .ion-lightbulb:before, .ion-link:before, .ion-load-a:before, .ion-loading-a:before, .ion-load-b:before, .ion-loading-b:before, .ion-load-c:before, .ion-loading-c:before, .ion-load-d:before, .ion-loading-d:before, .ion-location:before, .ion-locked:before, .ion-log-in:before, .ion-log-out:before, .ion-loop:before, .ion-looping:before, .ion-magnet:before, .ion-male:before, .ion-man:before, .ion-map:before, .ion-medkit:before, .ion-merge:before, .ion-mic-a:before, .ion-mic-b:before, .ion-mic-c:before, .ion-minus:before, .ion-minus-circled:before, .ion-minus-round:before, .ion-model-s:before, .ion-monitor:before, .ion-more:before, .ion-mouse:before, .ion-music-note:before, .ion-navicon:before, .ion-navicon-round:before, .ion-navigate:before, .ion-network:before, .ion-no-smoking:before, .ion-nuclear:before, .ion-outlet:before, .ion-paper-airplane:before, .ion-paperclip:before, .ion-pause:before, .ion-person:before, .ion-person-add:before, .ion-person-stalker:before, .ion-pie-graph:before, .ion-pin:before, .ion-pinpoint:before, .ion-pizza:before, .ion-plane:before, .ion-planet:before, .ion-play:before, .ion-playstation:before, .ion-plus:before, .ion-plus-circled:before, .ion-plus-round:before, .ion-podium:before, .ion-pound:before, .ion-power:before, .ion-pricetag:before, .ion-pricetags:before, .ion-printer:before, .ion-pull-request:before, .ion-qr-scanner:before, .ion-quote:before, .ion-radio-waves:before, .ion-record:before, .ion-refresh:before, .ion-refreshing:before, .ion-reply:before, .ion-reply-all:before, .ion-ribbon-a:before, .ion-ribbon-b:before, .ion-sad:before, .ion-scissors:before, .ion-search:before, .ion-settings:before, .ion-share:before, .ion-shuffle:before, .ion-skip-backward:before, .ion-skip-forward:before, .ion-social-android:before, .ion-social-android-outline:before, .ion-social-apple:before, .ion-social-apple-outline:before, .ion-social-bitcoin:before, .ion-social-bitcoin-outline:before, .ion-social-buffer:before, .ion-social-buffer-outline:before, .ion-social-designernews:before, .ion-social-designernews-outline:before, .ion-social-dribbble:before, .ion-social-dribbble-outline:before, .ion-social-dropbox:before, .ion-social-dropbox-outline:before, .ion-social-facebook:before, .ion-social-facebook-outline:before, .ion-social-foursquare:before, .ion-social-foursquare-outline:before, .ion-social-freebsd-devil:before, .ion-social-github:before, .ion-social-github-outline:before, .ion-social-google:before, .ion-social-google-outline:before, .ion-social-googleplus:before, .ion-social-googleplus-outline:before, .ion-social-hackernews:before, .ion-social-hackernews-outline:before, .ion-social-instagram:before, .ion-social-instagram-outline:before, .ion-social-linkedin:before, .ion-social-linkedin-outline:before, .ion-social-pinterest:before, .ion-social-pinterest-outline:before, .ion-social-reddit:before, .ion-social-reddit-outline:before, .ion-social-rss:before, .ion-social-rss-outline:before, .ion-social-skype:before, .ion-social-skype-outline:before, .ion-social-tumblr:before, .ion-social-tumblr-outline:before, .ion-social-tux:before, .ion-social-twitter:before, .ion-social-twitter-outline:before, .ion-social-usd:before, .ion-social-usd-outline:before, .ion-social-vimeo:before, .ion-social-vimeo-outline:before, .ion-social-windows:before, .ion-social-windows-outline:before, .ion-social-wordpress:before, .ion-social-wordpress-outline:before, .ion-social-yahoo:before, .ion-social-yahoo-outline:before, .ion-social-youtube:before, .ion-social-youtube-outline:before, .ion-speakerphone:before, .ion-speedometer:before, .ion-spoon:before, .ion-star:before, .ion-stats-bars:before, .ion-steam:before, .ion-stop:before, .ion-thermometer:before, .ion-thumbsdown:before, .ion-thumbsup:before, .ion-toggle:before, .ion-toggle-filled:before, .ion-trash-a:before, .ion-trash-b:before, .ion-trophy:before, .ion-umbrella:before, .ion-university:before, .ion-unlocked:before, .ion-upload:before, .ion-usb:before, .ion-videocamera:before, .ion-volume-high:before, .ion-volume-low:before, .ion-volume-medium:before, .ion-volume-mute:before, .ion-wand:before, .ion-waterdrop:before, .ion-wifi:before, .ion-wineglass:before, .ion-woman:before, .ion-wrench:before, .ion-xbox:before
14
+ display: inline-block
15
+ font-family: "Ionicons"
16
+ speak: none
17
+ font-style: normal
18
+ font-weight: normal
19
+ font-variant: normal
20
+ text-transform: none
21
+ text-rendering: auto
22
+ line-height: 1
23
+ -webkit-font-smoothing: antialiased
24
+ -moz-osx-font-smoothing: grayscale
25
+
26
+ .ion-spin, .ion-loading-a, .ion-loading-b, .ion-loading-c, .ion-loading-d, .ion-looping, .ion-refreshing, .ion-ios7-reloading
27
+ -webkit-animation: spin 1s infinite linear
28
+ -moz-animation: spin 1s infinite linear
29
+ -o-animation: spin 1s infinite linear
30
+ animation: spin 1s infinite linear
31
+
32
+ @-moz-keyframes spin
33
+ 0%
34
+ -moz-transform: rotate(0deg)
35
+ 100%
36
+ -moz-transform: rotate(359deg)
37
+
38
+
39
+ @-webkit-keyframes spin
40
+ 0%
41
+ -webkit-transform: rotate(0deg)
42
+ 100%
43
+ -webkit-transform: rotate(359deg)
44
+
45
+
46
+ @-o-keyframes spin
47
+ 0%
48
+ -o-transform: rotate(0deg)
49
+ 100%
50
+ -o-transform: rotate(359deg)
51
+
52
+
53
+ @-ms-keyframes spin
54
+ 0%
55
+ -ms-transform: rotate(0deg)
56
+ 100%
57
+ -ms-transform: rotate(359deg)
58
+
59
+
60
+ @keyframes spin
61
+ 0%
62
+ transform: rotate(0deg)
63
+ 100%
64
+ transform: rotate(359deg)
65
+
66
+
67
+ .ion-loading-a
68
+ -webkit-animation-timing-function: steps(8, start)
69
+ -moz-animation-timing-function: steps(8, start)
70
+ animation-timing-function: steps(8, start)
71
+
72
+ .ion-alert:before
73
+ content: "\f101"
74
+
75
+ .ion-alert-circled:before
76
+ content: "\f100"
77
+
78
+ .ion-android-add:before
79
+ content: "\f2c7"
80
+
81
+ .ion-android-add-contact:before
82
+ content: "\f2c6"
83
+
84
+ .ion-android-alarm:before
85
+ content: "\f2c8"
86
+
87
+ .ion-android-archive:before
88
+ content: "\f2c9"
89
+
90
+ .ion-android-arrow-back:before
91
+ content: "\f2ca"
92
+
93
+ .ion-android-arrow-down-left:before
94
+ content: "\f2cb"
95
+
96
+ .ion-android-arrow-down-right:before
97
+ content: "\f2cc"
98
+
99
+ .ion-android-arrow-forward:before
100
+ content: "\f30f"
101
+
102
+ .ion-android-arrow-up-left:before
103
+ content: "\f2cd"
104
+
105
+ .ion-android-arrow-up-right:before
106
+ content: "\f2ce"
107
+
108
+ .ion-android-battery:before
109
+ content: "\f2cf"
110
+
111
+ .ion-android-book:before
112
+ content: "\f2d0"
113
+
114
+ .ion-android-calendar:before
115
+ content: "\f2d1"
116
+
117
+ .ion-android-call:before
118
+ content: "\f2d2"
119
+
120
+ .ion-android-camera:before
121
+ content: "\f2d3"
122
+
123
+ .ion-android-chat:before
124
+ content: "\f2d4"
125
+
126
+ .ion-android-checkmark:before
127
+ content: "\f2d5"
128
+
129
+ .ion-android-clock:before
130
+ content: "\f2d6"
131
+
132
+ .ion-android-close:before
133
+ content: "\f2d7"
134
+
135
+ .ion-android-contact:before
136
+ content: "\f2d8"
137
+
138
+ .ion-android-contacts:before
139
+ content: "\f2d9"
140
+
141
+ .ion-android-data:before
142
+ content: "\f2da"
143
+
144
+ .ion-android-developer:before
145
+ content: "\f2db"
146
+
147
+ .ion-android-display:before
148
+ content: "\f2dc"
149
+
150
+ .ion-android-download:before
151
+ content: "\f2dd"
152
+
153
+ .ion-android-drawer:before
154
+ content: "\f310"
155
+
156
+ .ion-android-dropdown:before
157
+ content: "\f2de"
158
+
159
+ .ion-android-earth:before
160
+ content: "\f2df"
161
+
162
+ .ion-android-folder:before
163
+ content: "\f2e0"
164
+
165
+ .ion-android-forums:before
166
+ content: "\f2e1"
167
+
168
+ .ion-android-friends:before
169
+ content: "\f2e2"
170
+
171
+ .ion-android-hand:before
172
+ content: "\f2e3"
173
+
174
+ .ion-android-image:before
175
+ content: "\f2e4"
176
+
177
+ .ion-android-inbox:before
178
+ content: "\f2e5"
179
+
180
+ .ion-android-information:before
181
+ content: "\f2e6"
182
+
183
+ .ion-android-keypad:before
184
+ content: "\f2e7"
185
+
186
+ .ion-android-lightbulb:before
187
+ content: "\f2e8"
188
+
189
+ .ion-android-locate:before
190
+ content: "\f2e9"
191
+
192
+ .ion-android-location:before
193
+ content: "\f2ea"
194
+
195
+ .ion-android-mail:before
196
+ content: "\f2eb"
197
+
198
+ .ion-android-microphone:before
199
+ content: "\f2ec"
200
+
201
+ .ion-android-mixer:before
202
+ content: "\f2ed"
203
+
204
+ .ion-android-more:before
205
+ content: "\f2ee"
206
+
207
+ .ion-android-note:before
208
+ content: "\f2ef"
209
+
210
+ .ion-android-playstore:before
211
+ content: "\f2f0"
212
+
213
+ .ion-android-printer:before
214
+ content: "\f2f1"
215
+
216
+ .ion-android-promotion:before
217
+ content: "\f2f2"
218
+
219
+ .ion-android-reminder:before
220
+ content: "\f2f3"
221
+
222
+ .ion-android-remove:before
223
+ content: "\f2f4"
224
+
225
+ .ion-android-search:before
226
+ content: "\f2f5"
227
+
228
+ .ion-android-send:before
229
+ content: "\f2f6"
230
+
231
+ .ion-android-settings:before
232
+ content: "\f2f7"
233
+
234
+ .ion-android-share:before
235
+ content: "\f2f8"
236
+
237
+ .ion-android-social:before
238
+ content: "\f2fa"
239
+
240
+ .ion-android-social-user:before
241
+ content: "\f2f9"
242
+
243
+ .ion-android-sort:before
244
+ content: "\f2fb"
245
+
246
+ .ion-android-stair-drawer:before
247
+ content: "\f311"
248
+
249
+ .ion-android-star:before
250
+ content: "\f2fc"
251
+
252
+ .ion-android-stopwatch:before
253
+ content: "\f2fd"
254
+
255
+ .ion-android-storage:before
256
+ content: "\f2fe"
257
+
258
+ .ion-android-system-back:before
259
+ content: "\f2ff"
260
+
261
+ .ion-android-system-home:before
262
+ content: "\f300"
263
+
264
+ .ion-android-system-windows:before
265
+ content: "\f301"
266
+
267
+ .ion-android-timer:before
268
+ content: "\f302"
269
+
270
+ .ion-android-trash:before
271
+ content: "\f303"
272
+
273
+ .ion-android-user-menu:before
274
+ content: "\f312"
275
+
276
+ .ion-android-volume:before
277
+ content: "\f304"
278
+
279
+ .ion-android-wifi:before
280
+ content: "\f305"
281
+
282
+ .ion-aperture:before
283
+ content: "\f313"
284
+
285
+ .ion-archive:before
286
+ content: "\f102"
287
+
288
+ .ion-arrow-down-a:before
289
+ content: "\f103"
290
+
291
+ .ion-arrow-down-b:before
292
+ content: "\f104"
293
+
294
+ .ion-arrow-down-c:before
295
+ content: "\f105"
296
+
297
+ .ion-arrow-expand:before
298
+ content: "\f25e"
299
+
300
+ .ion-arrow-graph-down-left:before
301
+ content: "\f25f"
302
+
303
+ .ion-arrow-graph-down-right:before
304
+ content: "\f260"
305
+
306
+ .ion-arrow-graph-up-left:before
307
+ content: "\f261"
308
+
309
+ .ion-arrow-graph-up-right:before
310
+ content: "\f262"
311
+
312
+ .ion-arrow-left-a:before
313
+ content: "\f106"
314
+
315
+ .ion-arrow-left-b:before
316
+ content: "\f107"
317
+
318
+ .ion-arrow-left-c:before
319
+ content: "\f108"
320
+
321
+ .ion-arrow-move:before
322
+ content: "\f263"
323
+
324
+ .ion-arrow-resize:before
325
+ content: "\f264"
326
+
327
+ .ion-arrow-return-left:before
328
+ content: "\f265"
329
+
330
+ .ion-arrow-return-right:before
331
+ content: "\f266"
332
+
333
+ .ion-arrow-right-a:before
334
+ content: "\f109"
335
+
336
+ .ion-arrow-right-b:before
337
+ content: "\f10a"
338
+
339
+ .ion-arrow-right-c:before
340
+ content: "\f10b"
341
+
342
+ .ion-arrow-shrink:before
343
+ content: "\f267"
344
+
345
+ .ion-arrow-swap:before
346
+ content: "\f268"
347
+
348
+ .ion-arrow-up-a:before
349
+ content: "\f10c"
350
+
351
+ .ion-arrow-up-b:before
352
+ content: "\f10d"
353
+
354
+ .ion-arrow-up-c:before
355
+ content: "\f10e"
356
+
357
+ .ion-asterisk:before
358
+ content: "\f314"
359
+
360
+ .ion-at:before
361
+ content: "\f10f"
362
+
363
+ .ion-bag:before
364
+ content: "\f110"
365
+
366
+ .ion-battery-charging:before
367
+ content: "\f111"
368
+
369
+ .ion-battery-empty:before
370
+ content: "\f112"
371
+
372
+ .ion-battery-full:before
373
+ content: "\f113"
374
+
375
+ .ion-battery-half:before
376
+ content: "\f114"
377
+
378
+ .ion-battery-low:before
379
+ content: "\f115"
380
+
381
+ .ion-beaker:before
382
+ content: "\f269"
383
+
384
+ .ion-beer:before
385
+ content: "\f26a"
386
+
387
+ .ion-bluetooth:before
388
+ content: "\f116"
389
+
390
+ .ion-bonfire:before
391
+ content: "\f315"
392
+
393
+ .ion-bookmark:before
394
+ content: "\f26b"
395
+
396
+ .ion-briefcase:before
397
+ content: "\f26c"
398
+
399
+ .ion-bug:before
400
+ content: "\f2be"
401
+
402
+ .ion-calculator:before
403
+ content: "\f26d"
404
+
405
+ .ion-calendar:before
406
+ content: "\f117"
407
+
408
+ .ion-camera:before
409
+ content: "\f118"
410
+
411
+ .ion-card:before
412
+ content: "\f119"
413
+
414
+ .ion-cash:before
415
+ content: "\f316"
416
+
417
+ .ion-chatbox:before
418
+ content: "\f11b"
419
+
420
+ .ion-chatbox-working:before
421
+ content: "\f11a"
422
+
423
+ .ion-chatboxes:before
424
+ content: "\f11c"
425
+
426
+ .ion-chatbubble:before
427
+ content: "\f11e"
428
+
429
+ .ion-chatbubble-working:before
430
+ content: "\f11d"
431
+
432
+ .ion-chatbubbles:before
433
+ content: "\f11f"
434
+
435
+ .ion-checkmark:before
436
+ content: "\f122"
437
+
438
+ .ion-checkmark-circled:before
439
+ content: "\f120"
440
+
441
+ .ion-checkmark-round:before
442
+ content: "\f121"
443
+
444
+ .ion-chevron-down:before
445
+ content: "\f123"
446
+
447
+ .ion-chevron-left:before
448
+ content: "\f124"
449
+
450
+ .ion-chevron-right:before
451
+ content: "\f125"
452
+
453
+ .ion-chevron-up:before
454
+ content: "\f126"
455
+
456
+ .ion-clipboard:before
457
+ content: "\f127"
458
+
459
+ .ion-clock:before
460
+ content: "\f26e"
461
+
462
+ .ion-close:before
463
+ content: "\f12a"
464
+
465
+ .ion-close-circled:before
466
+ content: "\f128"
467
+
468
+ .ion-close-round:before
469
+ content: "\f129"
470
+
471
+ .ion-closed-captioning:before
472
+ content: "\f317"
473
+
474
+ .ion-cloud:before
475
+ content: "\f12b"
476
+
477
+ .ion-code:before
478
+ content: "\f271"
479
+
480
+ .ion-code-download:before
481
+ content: "\f26f"
482
+
483
+ .ion-code-working:before
484
+ content: "\f270"
485
+
486
+ .ion-coffee:before
487
+ content: "\f272"
488
+
489
+ .ion-compass:before
490
+ content: "\f273"
491
+
492
+ .ion-compose:before
493
+ content: "\f12c"
494
+
495
+ .ion-connection-bars:before
496
+ content: "\f274"
497
+
498
+ .ion-contrast:before
499
+ content: "\f275"
500
+
501
+ .ion-cube:before
502
+ content: "\f318"
503
+
504
+ .ion-disc:before
505
+ content: "\f12d"
506
+
507
+ .ion-document:before
508
+ content: "\f12f"
509
+
510
+ .ion-document-text:before
511
+ content: "\f12e"
512
+
513
+ .ion-drag:before
514
+ content: "\f130"
515
+
516
+ .ion-earth:before
517
+ content: "\f276"
518
+
519
+ .ion-edit:before
520
+ content: "\f2bf"
521
+
522
+ .ion-egg:before
523
+ content: "\f277"
524
+
525
+ .ion-eject:before
526
+ content: "\f131"
527
+
528
+ .ion-email:before
529
+ content: "\f132"
530
+
531
+ .ion-eye:before
532
+ content: "\f133"
533
+
534
+ .ion-eye-disabled:before
535
+ content: "\f306"
536
+
537
+ .ion-female:before
538
+ content: "\f278"
539
+
540
+ .ion-filing:before
541
+ content: "\f134"
542
+
543
+ .ion-film-marker:before
544
+ content: "\f135"
545
+
546
+ .ion-fireball:before
547
+ content: "\f319"
548
+
549
+ .ion-flag:before
550
+ content: "\f279"
551
+
552
+ .ion-flame:before
553
+ content: "\f31a"
554
+
555
+ .ion-flash:before
556
+ content: "\f137"
557
+
558
+ .ion-flash-off:before
559
+ content: "\f136"
560
+
561
+ .ion-flask:before
562
+ content: "\f138"
563
+
564
+ .ion-folder:before
565
+ content: "\f139"
566
+
567
+ .ion-fork:before
568
+ content: "\f27a"
569
+
570
+ .ion-fork-repo:before
571
+ content: "\f2c0"
572
+
573
+ .ion-forward:before
574
+ content: "\f13a"
575
+
576
+ .ion-funnel:before
577
+ content: "\f31b"
578
+
579
+ .ion-game-controller-a:before
580
+ content: "\f13b"
581
+
582
+ .ion-game-controller-b:before
583
+ content: "\f13c"
584
+
585
+ .ion-gear-a:before
586
+ content: "\f13d"
587
+
588
+ .ion-gear-b:before
589
+ content: "\f13e"
590
+
591
+ .ion-grid:before
592
+ content: "\f13f"
593
+
594
+ .ion-hammer:before
595
+ content: "\f27b"
596
+
597
+ .ion-happy:before
598
+ content: "\f31c"
599
+
600
+ .ion-headphone:before
601
+ content: "\f140"
602
+
603
+ .ion-heart:before
604
+ content: "\f141"
605
+
606
+ .ion-heart-broken:before
607
+ content: "\f31d"
608
+
609
+ .ion-help:before
610
+ content: "\f143"
611
+
612
+ .ion-help-buoy:before
613
+ content: "\f27c"
614
+
615
+ .ion-help-circled:before
616
+ content: "\f142"
617
+
618
+ .ion-home:before
619
+ content: "\f144"
620
+
621
+ .ion-icecream:before
622
+ content: "\f27d"
623
+
624
+ .ion-icon-social-google-plus:before
625
+ content: "\f146"
626
+
627
+ .ion-icon-social-google-plus-outline:before
628
+ content: "\f145"
629
+
630
+ .ion-image:before
631
+ content: "\f147"
632
+
633
+ .ion-images:before
634
+ content: "\f148"
635
+
636
+ .ion-information:before
637
+ content: "\f14a"
638
+
639
+ .ion-information-circled:before
640
+ content: "\f149"
641
+
642
+ .ion-ionic:before
643
+ content: "\f14b"
644
+
645
+ .ion-ios7-alarm:before
646
+ content: "\f14d"
647
+
648
+ .ion-ios7-alarm-outline:before
649
+ content: "\f14c"
650
+
651
+ .ion-ios7-albums:before
652
+ content: "\f14f"
653
+
654
+ .ion-ios7-albums-outline:before
655
+ content: "\f14e"
656
+
657
+ .ion-ios7-americanfootball:before
658
+ content: "\f31f"
659
+
660
+ .ion-ios7-americanfootball-outline:before
661
+ content: "\f31e"
662
+
663
+ .ion-ios7-analytics:before
664
+ content: "\f321"
665
+
666
+ .ion-ios7-analytics-outline:before
667
+ content: "\f320"
668
+
669
+ .ion-ios7-arrow-back:before
670
+ content: "\f150"
671
+
672
+ .ion-ios7-arrow-down:before
673
+ content: "\f151"
674
+
675
+ .ion-ios7-arrow-forward:before
676
+ content: "\f152"
677
+
678
+ .ion-ios7-arrow-left:before
679
+ content: "\f153"
680
+
681
+ .ion-ios7-arrow-right:before
682
+ content: "\f154"
683
+
684
+ .ion-ios7-arrow-thin-down:before
685
+ content: "\f27e"
686
+
687
+ .ion-ios7-arrow-thin-left:before
688
+ content: "\f27f"
689
+
690
+ .ion-ios7-arrow-thin-right:before
691
+ content: "\f280"
692
+
693
+ .ion-ios7-arrow-thin-up:before
694
+ content: "\f281"
695
+
696
+ .ion-ios7-arrow-up:before
697
+ content: "\f155"
698
+
699
+ .ion-ios7-at:before
700
+ content: "\f157"
701
+
702
+ .ion-ios7-at-outline:before
703
+ content: "\f156"
704
+
705
+ .ion-ios7-barcode:before
706
+ content: "\f323"
707
+
708
+ .ion-ios7-barcode-outline:before
709
+ content: "\f322"
710
+
711
+ .ion-ios7-baseball:before
712
+ content: "\f325"
713
+
714
+ .ion-ios7-baseball-outline:before
715
+ content: "\f324"
716
+
717
+ .ion-ios7-basketball:before
718
+ content: "\f327"
719
+
720
+ .ion-ios7-basketball-outline:before
721
+ content: "\f326"
722
+
723
+ .ion-ios7-bell:before
724
+ content: "\f159"
725
+
726
+ .ion-ios7-bell-outline:before
727
+ content: "\f158"
728
+
729
+ .ion-ios7-bolt:before
730
+ content: "\f15b"
731
+
732
+ .ion-ios7-bolt-outline:before
733
+ content: "\f15a"
734
+
735
+ .ion-ios7-bookmarks:before
736
+ content: "\f15d"
737
+
738
+ .ion-ios7-bookmarks-outline:before
739
+ content: "\f15c"
740
+
741
+ .ion-ios7-box:before
742
+ content: "\f15f"
743
+
744
+ .ion-ios7-box-outline:before
745
+ content: "\f15e"
746
+
747
+ .ion-ios7-briefcase:before
748
+ content: "\f283"
749
+
750
+ .ion-ios7-briefcase-outline:before
751
+ content: "\f282"
752
+
753
+ .ion-ios7-browsers:before
754
+ content: "\f161"
755
+
756
+ .ion-ios7-browsers-outline:before
757
+ content: "\f160"
758
+
759
+ .ion-ios7-calculator:before
760
+ content: "\f285"
761
+
762
+ .ion-ios7-calculator-outline:before
763
+ content: "\f284"
764
+
765
+ .ion-ios7-calendar:before
766
+ content: "\f163"
767
+
768
+ .ion-ios7-calendar-outline:before
769
+ content: "\f162"
770
+
771
+ .ion-ios7-camera:before
772
+ content: "\f165"
773
+
774
+ .ion-ios7-camera-outline:before
775
+ content: "\f164"
776
+
777
+ .ion-ios7-cart:before
778
+ content: "\f167"
779
+
780
+ .ion-ios7-cart-outline:before
781
+ content: "\f166"
782
+
783
+ .ion-ios7-chatboxes:before
784
+ content: "\f169"
785
+
786
+ .ion-ios7-chatboxes-outline:before
787
+ content: "\f168"
788
+
789
+ .ion-ios7-chatbubble:before
790
+ content: "\f16b"
791
+
792
+ .ion-ios7-chatbubble-outline:before
793
+ content: "\f16a"
794
+
795
+ .ion-ios7-checkmark:before
796
+ content: "\f16e"
797
+
798
+ .ion-ios7-checkmark-empty:before
799
+ content: "\f16c"
800
+
801
+ .ion-ios7-checkmark-outline:before
802
+ content: "\f16d"
803
+
804
+ .ion-ios7-circle-filled:before
805
+ content: "\f16f"
806
+
807
+ .ion-ios7-circle-outline:before
808
+ content: "\f170"
809
+
810
+ .ion-ios7-clock:before
811
+ content: "\f172"
812
+
813
+ .ion-ios7-clock-outline:before
814
+ content: "\f171"
815
+
816
+ .ion-ios7-close:before
817
+ content: "\f2bc"
818
+
819
+ .ion-ios7-close-empty:before
820
+ content: "\f2bd"
821
+
822
+ .ion-ios7-close-outline:before
823
+ content: "\f2bb"
824
+
825
+ .ion-ios7-cloud:before
826
+ content: "\f178"
827
+
828
+ .ion-ios7-cloud-download:before
829
+ content: "\f174"
830
+
831
+ .ion-ios7-cloud-download-outline:before
832
+ content: "\f173"
833
+
834
+ .ion-ios7-cloud-outline:before
835
+ content: "\f175"
836
+
837
+ .ion-ios7-cloud-upload:before
838
+ content: "\f177"
839
+
840
+ .ion-ios7-cloud-upload-outline:before
841
+ content: "\f176"
842
+
843
+ .ion-ios7-cloudy:before
844
+ content: "\f17a"
845
+
846
+ .ion-ios7-cloudy-night:before
847
+ content: "\f308"
848
+
849
+ .ion-ios7-cloudy-night-outline:before
850
+ content: "\f307"
851
+
852
+ .ion-ios7-cloudy-outline:before
853
+ content: "\f179"
854
+
855
+ .ion-ios7-cog:before
856
+ content: "\f17c"
857
+
858
+ .ion-ios7-cog-outline:before
859
+ content: "\f17b"
860
+
861
+ .ion-ios7-compose:before
862
+ content: "\f17e"
863
+
864
+ .ion-ios7-compose-outline:before
865
+ content: "\f17d"
866
+
867
+ .ion-ios7-contact:before
868
+ content: "\f180"
869
+
870
+ .ion-ios7-contact-outline:before
871
+ content: "\f17f"
872
+
873
+ .ion-ios7-copy:before
874
+ content: "\f182"
875
+
876
+ .ion-ios7-copy-outline:before
877
+ content: "\f181"
878
+
879
+ .ion-ios7-download:before
880
+ content: "\f184"
881
+
882
+ .ion-ios7-download-outline:before
883
+ content: "\f183"
884
+
885
+ .ion-ios7-drag:before
886
+ content: "\f185"
887
+
888
+ .ion-ios7-email:before
889
+ content: "\f187"
890
+
891
+ .ion-ios7-email-outline:before
892
+ content: "\f186"
893
+
894
+ .ion-ios7-expand:before
895
+ content: "\f30d"
896
+
897
+ .ion-ios7-eye:before
898
+ content: "\f189"
899
+
900
+ .ion-ios7-eye-outline:before
901
+ content: "\f188"
902
+
903
+ .ion-ios7-fastforward:before
904
+ content: "\f18b"
905
+
906
+ .ion-ios7-fastforward-outline:before
907
+ content: "\f18a"
908
+
909
+ .ion-ios7-filing:before
910
+ content: "\f18d"
911
+
912
+ .ion-ios7-filing-outline:before
913
+ content: "\f18c"
914
+
915
+ .ion-ios7-film:before
916
+ content: "\f18f"
917
+
918
+ .ion-ios7-film-outline:before
919
+ content: "\f18e"
920
+
921
+ .ion-ios7-flag:before
922
+ content: "\f191"
923
+
924
+ .ion-ios7-flag-outline:before
925
+ content: "\f190"
926
+
927
+ .ion-ios7-folder:before
928
+ content: "\f193"
929
+
930
+ .ion-ios7-folder-outline:before
931
+ content: "\f192"
932
+
933
+ .ion-ios7-football:before
934
+ content: "\f329"
935
+
936
+ .ion-ios7-football-outline:before
937
+ content: "\f328"
938
+
939
+ .ion-ios7-gear:before
940
+ content: "\f195"
941
+
942
+ .ion-ios7-gear-outline:before
943
+ content: "\f194"
944
+
945
+ .ion-ios7-glasses:before
946
+ content: "\f197"
947
+
948
+ .ion-ios7-glasses-outline:before
949
+ content: "\f196"
950
+
951
+ .ion-ios7-heart:before
952
+ content: "\f199"
953
+
954
+ .ion-ios7-heart-outline:before
955
+ content: "\f198"
956
+
957
+ .ion-ios7-help:before
958
+ content: "\f19c"
959
+
960
+ .ion-ios7-help-empty:before
961
+ content: "\f19a"
962
+
963
+ .ion-ios7-help-outline:before
964
+ content: "\f19b"
965
+
966
+ .ion-ios7-home:before
967
+ content: "\f32b"
968
+
969
+ .ion-ios7-home-outline:before
970
+ content: "\f32a"
971
+
972
+ .ion-ios7-infinite:before
973
+ content: "\f19e"
974
+
975
+ .ion-ios7-infinite-outline:before
976
+ content: "\f19d"
977
+
978
+ .ion-ios7-information:before
979
+ content: "\f1a1"
980
+
981
+ .ion-ios7-information-empty:before
982
+ content: "\f19f"
983
+
984
+ .ion-ios7-information-outline:before
985
+ content: "\f1a0"
986
+
987
+ .ion-ios7-ionic-outline:before
988
+ content: "\f1a2"
989
+
990
+ .ion-ios7-keypad:before
991
+ content: "\f1a4"
992
+
993
+ .ion-ios7-keypad-outline:before
994
+ content: "\f1a3"
995
+
996
+ .ion-ios7-lightbulb:before
997
+ content: "\f287"
998
+
999
+ .ion-ios7-lightbulb-outline:before
1000
+ content: "\f286"
1001
+
1002
+ .ion-ios7-location:before
1003
+ content: "\f1a6"
1004
+
1005
+ .ion-ios7-location-outline:before
1006
+ content: "\f1a5"
1007
+
1008
+ .ion-ios7-locked:before
1009
+ content: "\f1a8"
1010
+
1011
+ .ion-ios7-locked-outline:before
1012
+ content: "\f1a7"
1013
+
1014
+ .ion-ios7-loop:before
1015
+ content: "\f32d"
1016
+
1017
+ .ion-ios7-loop-strong:before
1018
+ content: "\f32c"
1019
+
1020
+ .ion-ios7-medkit:before
1021
+ content: "\f289"
1022
+
1023
+ .ion-ios7-medkit-outline:before
1024
+ content: "\f288"
1025
+
1026
+ .ion-ios7-mic:before
1027
+ content: "\f1ab"
1028
+
1029
+ .ion-ios7-mic-off:before
1030
+ content: "\f1a9"
1031
+
1032
+ .ion-ios7-mic-outline:before
1033
+ content: "\f1aa"
1034
+
1035
+ .ion-ios7-minus:before
1036
+ content: "\f1ae"
1037
+
1038
+ .ion-ios7-minus-empty:before
1039
+ content: "\f1ac"
1040
+
1041
+ .ion-ios7-minus-outline:before
1042
+ content: "\f1ad"
1043
+
1044
+ .ion-ios7-monitor:before
1045
+ content: "\f1b0"
1046
+
1047
+ .ion-ios7-monitor-outline:before
1048
+ content: "\f1af"
1049
+
1050
+ .ion-ios7-moon:before
1051
+ content: "\f1b2"
1052
+
1053
+ .ion-ios7-moon-outline:before
1054
+ content: "\f1b1"
1055
+
1056
+ .ion-ios7-more:before
1057
+ content: "\f1b4"
1058
+
1059
+ .ion-ios7-more-outline:before
1060
+ content: "\f1b3"
1061
+
1062
+ .ion-ios7-musical-note:before
1063
+ content: "\f1b5"
1064
+
1065
+ .ion-ios7-musical-notes:before
1066
+ content: "\f1b6"
1067
+
1068
+ .ion-ios7-navigate:before
1069
+ content: "\f1b8"
1070
+
1071
+ .ion-ios7-navigate-outline:before
1072
+ content: "\f1b7"
1073
+
1074
+ .ion-ios7-paper:before
1075
+ content: "\f32f"
1076
+
1077
+ .ion-ios7-paper-outline:before
1078
+ content: "\f32e"
1079
+
1080
+ .ion-ios7-paperplane:before
1081
+ content: "\f1ba"
1082
+
1083
+ .ion-ios7-paperplane-outline:before
1084
+ content: "\f1b9"
1085
+
1086
+ .ion-ios7-partlysunny:before
1087
+ content: "\f1bc"
1088
+
1089
+ .ion-ios7-partlysunny-outline:before
1090
+ content: "\f1bb"
1091
+
1092
+ .ion-ios7-pause:before
1093
+ content: "\f1be"
1094
+
1095
+ .ion-ios7-pause-outline:before
1096
+ content: "\f1bd"
1097
+
1098
+ .ion-ios7-paw:before
1099
+ content: "\f331"
1100
+
1101
+ .ion-ios7-paw-outline:before
1102
+ content: "\f330"
1103
+
1104
+ .ion-ios7-people:before
1105
+ content: "\f1c0"
1106
+
1107
+ .ion-ios7-people-outline:before
1108
+ content: "\f1bf"
1109
+
1110
+ .ion-ios7-person:before
1111
+ content: "\f1c2"
1112
+
1113
+ .ion-ios7-person-outline:before
1114
+ content: "\f1c1"
1115
+
1116
+ .ion-ios7-personadd:before
1117
+ content: "\f1c4"
1118
+
1119
+ .ion-ios7-personadd-outline:before
1120
+ content: "\f1c3"
1121
+
1122
+ .ion-ios7-photos:before
1123
+ content: "\f1c6"
1124
+
1125
+ .ion-ios7-photos-outline:before
1126
+ content: "\f1c5"
1127
+
1128
+ .ion-ios7-pie:before
1129
+ content: "\f28b"
1130
+
1131
+ .ion-ios7-pie-outline:before
1132
+ content: "\f28a"
1133
+
1134
+ .ion-ios7-play:before
1135
+ content: "\f1c8"
1136
+
1137
+ .ion-ios7-play-outline:before
1138
+ content: "\f1c7"
1139
+
1140
+ .ion-ios7-plus:before
1141
+ content: "\f1cb"
1142
+
1143
+ .ion-ios7-plus-empty:before
1144
+ content: "\f1c9"
1145
+
1146
+ .ion-ios7-plus-outline:before
1147
+ content: "\f1ca"
1148
+
1149
+ .ion-ios7-pricetag:before
1150
+ content: "\f28d"
1151
+
1152
+ .ion-ios7-pricetag-outline:before
1153
+ content: "\f28c"
1154
+
1155
+ .ion-ios7-pricetags:before
1156
+ content: "\f333"
1157
+
1158
+ .ion-ios7-pricetags-outline:before
1159
+ content: "\f332"
1160
+
1161
+ .ion-ios7-printer:before
1162
+ content: "\f1cd"
1163
+
1164
+ .ion-ios7-printer-outline:before
1165
+ content: "\f1cc"
1166
+
1167
+ .ion-ios7-pulse:before
1168
+ content: "\f335"
1169
+
1170
+ .ion-ios7-pulse-strong:before
1171
+ content: "\f334"
1172
+
1173
+ .ion-ios7-rainy:before
1174
+ content: "\f1cf"
1175
+
1176
+ .ion-ios7-rainy-outline:before
1177
+ content: "\f1ce"
1178
+
1179
+ .ion-ios7-recording:before
1180
+ content: "\f1d1"
1181
+
1182
+ .ion-ios7-recording-outline:before
1183
+ content: "\f1d0"
1184
+
1185
+ .ion-ios7-redo:before
1186
+ content: "\f1d3"
1187
+
1188
+ .ion-ios7-redo-outline:before
1189
+ content: "\f1d2"
1190
+
1191
+ .ion-ios7-refresh:before
1192
+ content: "\f1d6"
1193
+
1194
+ .ion-ios7-refresh-empty:before
1195
+ content: "\f1d4"
1196
+
1197
+ .ion-ios7-refresh-outline:before
1198
+ content: "\f1d5"
1199
+
1200
+ .ion-ios7-reload:before, .ion-ios7-reloading:before
1201
+ content: "\f28e"
1202
+
1203
+ .ion-ios7-reverse-camera:before
1204
+ content: "\f337"
1205
+
1206
+ .ion-ios7-reverse-camera-outline:before
1207
+ content: "\f336"
1208
+
1209
+ .ion-ios7-rewind:before
1210
+ content: "\f1d8"
1211
+
1212
+ .ion-ios7-rewind-outline:before
1213
+ content: "\f1d7"
1214
+
1215
+ .ion-ios7-search:before
1216
+ content: "\f1da"
1217
+
1218
+ .ion-ios7-search-strong:before
1219
+ content: "\f1d9"
1220
+
1221
+ .ion-ios7-settings:before
1222
+ content: "\f339"
1223
+
1224
+ .ion-ios7-settings-strong:before
1225
+ content: "\f338"
1226
+
1227
+ .ion-ios7-shrink:before
1228
+ content: "\f30e"
1229
+
1230
+ .ion-ios7-skipbackward:before
1231
+ content: "\f1dc"
1232
+
1233
+ .ion-ios7-skipbackward-outline:before
1234
+ content: "\f1db"
1235
+
1236
+ .ion-ios7-skipforward:before
1237
+ content: "\f1de"
1238
+
1239
+ .ion-ios7-skipforward-outline:before
1240
+ content: "\f1dd"
1241
+
1242
+ .ion-ios7-snowy:before
1243
+ content: "\f309"
1244
+
1245
+ .ion-ios7-speedometer:before
1246
+ content: "\f290"
1247
+
1248
+ .ion-ios7-speedometer-outline:before
1249
+ content: "\f28f"
1250
+
1251
+ .ion-ios7-star:before
1252
+ content: "\f1e0"
1253
+
1254
+ .ion-ios7-star-half:before
1255
+ content: "\f33a"
1256
+
1257
+ .ion-ios7-star-outline:before
1258
+ content: "\f1df"
1259
+
1260
+ .ion-ios7-stopwatch:before
1261
+ content: "\f1e2"
1262
+
1263
+ .ion-ios7-stopwatch-outline:before
1264
+ content: "\f1e1"
1265
+
1266
+ .ion-ios7-sunny:before
1267
+ content: "\f1e4"
1268
+
1269
+ .ion-ios7-sunny-outline:before
1270
+ content: "\f1e3"
1271
+
1272
+ .ion-ios7-telephone:before
1273
+ content: "\f1e6"
1274
+
1275
+ .ion-ios7-telephone-outline:before
1276
+ content: "\f1e5"
1277
+
1278
+ .ion-ios7-tennisball:before
1279
+ content: "\f33c"
1280
+
1281
+ .ion-ios7-tennisball-outline:before
1282
+ content: "\f33b"
1283
+
1284
+ .ion-ios7-thunderstorm:before
1285
+ content: "\f1e8"
1286
+
1287
+ .ion-ios7-thunderstorm-outline:before
1288
+ content: "\f1e7"
1289
+
1290
+ .ion-ios7-time:before
1291
+ content: "\f292"
1292
+
1293
+ .ion-ios7-time-outline:before
1294
+ content: "\f291"
1295
+
1296
+ .ion-ios7-timer:before
1297
+ content: "\f1ea"
1298
+
1299
+ .ion-ios7-timer-outline:before
1300
+ content: "\f1e9"
1301
+
1302
+ .ion-ios7-toggle:before
1303
+ content: "\f33e"
1304
+
1305
+ .ion-ios7-toggle-outline:before
1306
+ content: "\f33d"
1307
+
1308
+ .ion-ios7-trash:before
1309
+ content: "\f1ec"
1310
+
1311
+ .ion-ios7-trash-outline:before
1312
+ content: "\f1eb"
1313
+
1314
+ .ion-ios7-undo:before
1315
+ content: "\f1ee"
1316
+
1317
+ .ion-ios7-undo-outline:before
1318
+ content: "\f1ed"
1319
+
1320
+ .ion-ios7-unlocked:before
1321
+ content: "\f1f0"
1322
+
1323
+ .ion-ios7-unlocked-outline:before
1324
+ content: "\f1ef"
1325
+
1326
+ .ion-ios7-upload:before
1327
+ content: "\f1f2"
1328
+
1329
+ .ion-ios7-upload-outline:before
1330
+ content: "\f1f1"
1331
+
1332
+ .ion-ios7-videocam:before
1333
+ content: "\f1f4"
1334
+
1335
+ .ion-ios7-videocam-outline:before
1336
+ content: "\f1f3"
1337
+
1338
+ .ion-ios7-volume-high:before
1339
+ content: "\f1f5"
1340
+
1341
+ .ion-ios7-volume-low:before
1342
+ content: "\f1f6"
1343
+
1344
+ .ion-ios7-wineglass:before
1345
+ content: "\f294"
1346
+
1347
+ .ion-ios7-wineglass-outline:before
1348
+ content: "\f293"
1349
+
1350
+ .ion-ios7-world:before
1351
+ content: "\f1f8"
1352
+
1353
+ .ion-ios7-world-outline:before
1354
+ content: "\f1f7"
1355
+
1356
+ .ion-ipad:before
1357
+ content: "\f1f9"
1358
+
1359
+ .ion-iphone:before
1360
+ content: "\f1fa"
1361
+
1362
+ .ion-ipod:before
1363
+ content: "\f1fb"
1364
+
1365
+ .ion-jet:before
1366
+ content: "\f295"
1367
+
1368
+ .ion-key:before
1369
+ content: "\f296"
1370
+
1371
+ .ion-knife:before
1372
+ content: "\f297"
1373
+
1374
+ .ion-laptop:before
1375
+ content: "\f1fc"
1376
+
1377
+ .ion-leaf:before
1378
+ content: "\f1fd"
1379
+
1380
+ .ion-levels:before
1381
+ content: "\f298"
1382
+
1383
+ .ion-lightbulb:before
1384
+ content: "\f299"
1385
+
1386
+ .ion-link:before
1387
+ content: "\f1fe"
1388
+
1389
+ .ion-load-a:before, .ion-loading-a:before
1390
+ content: "\f29a"
1391
+
1392
+ .ion-load-b:before, .ion-loading-b:before
1393
+ content: "\f29b"
1394
+
1395
+ .ion-load-c:before, .ion-loading-c:before
1396
+ content: "\f29c"
1397
+
1398
+ .ion-load-d:before, .ion-loading-d:before
1399
+ content: "\f29d"
1400
+
1401
+ .ion-location:before
1402
+ content: "\f1ff"
1403
+
1404
+ .ion-locked:before
1405
+ content: "\f200"
1406
+
1407
+ .ion-log-in:before
1408
+ content: "\f29e"
1409
+
1410
+ .ion-log-out:before
1411
+ content: "\f29f"
1412
+
1413
+ .ion-loop:before, .ion-looping:before
1414
+ content: "\f201"
1415
+
1416
+ .ion-magnet:before
1417
+ content: "\f2a0"
1418
+
1419
+ .ion-male:before
1420
+ content: "\f2a1"
1421
+
1422
+ .ion-man:before
1423
+ content: "\f202"
1424
+
1425
+ .ion-map:before
1426
+ content: "\f203"
1427
+
1428
+ .ion-medkit:before
1429
+ content: "\f2a2"
1430
+
1431
+ .ion-merge:before
1432
+ content: "\f33f"
1433
+
1434
+ .ion-mic-a:before
1435
+ content: "\f204"
1436
+
1437
+ .ion-mic-b:before
1438
+ content: "\f205"
1439
+
1440
+ .ion-mic-c:before
1441
+ content: "\f206"
1442
+
1443
+ .ion-minus:before
1444
+ content: "\f209"
1445
+
1446
+ .ion-minus-circled:before
1447
+ content: "\f207"
1448
+
1449
+ .ion-minus-round:before
1450
+ content: "\f208"
1451
+
1452
+ .ion-model-s:before
1453
+ content: "\f2c1"
1454
+
1455
+ .ion-monitor:before
1456
+ content: "\f20a"
1457
+
1458
+ .ion-more:before
1459
+ content: "\f20b"
1460
+
1461
+ .ion-mouse:before
1462
+ content: "\f340"
1463
+
1464
+ .ion-music-note:before
1465
+ content: "\f20c"
1466
+
1467
+ .ion-navicon:before
1468
+ content: "\f20e"
1469
+
1470
+ .ion-navicon-round:before
1471
+ content: "\f20d"
1472
+
1473
+ .ion-navigate:before
1474
+ content: "\f2a3"
1475
+
1476
+ .ion-network:before
1477
+ content: "\f341"
1478
+
1479
+ .ion-no-smoking:before
1480
+ content: "\f2c2"
1481
+
1482
+ .ion-nuclear:before
1483
+ content: "\f2a4"
1484
+
1485
+ .ion-outlet:before
1486
+ content: "\f342"
1487
+
1488
+ .ion-paper-airplane:before
1489
+ content: "\f2c3"
1490
+
1491
+ .ion-paperclip:before
1492
+ content: "\f20f"
1493
+
1494
+ .ion-pause:before
1495
+ content: "\f210"
1496
+
1497
+ .ion-person:before
1498
+ content: "\f213"
1499
+
1500
+ .ion-person-add:before
1501
+ content: "\f211"
1502
+
1503
+ .ion-person-stalker:before
1504
+ content: "\f212"
1505
+
1506
+ .ion-pie-graph:before
1507
+ content: "\f2a5"
1508
+
1509
+ .ion-pin:before
1510
+ content: "\f2a6"
1511
+
1512
+ .ion-pinpoint:before
1513
+ content: "\f2a7"
1514
+
1515
+ .ion-pizza:before
1516
+ content: "\f2a8"
1517
+
1518
+ .ion-plane:before
1519
+ content: "\f214"
1520
+
1521
+ .ion-planet:before
1522
+ content: "\f343"
1523
+
1524
+ .ion-play:before
1525
+ content: "\f215"
1526
+
1527
+ .ion-playstation:before
1528
+ content: "\f30a"
1529
+
1530
+ .ion-plus:before
1531
+ content: "\f218"
1532
+
1533
+ .ion-plus-circled:before
1534
+ content: "\f216"
1535
+
1536
+ .ion-plus-round:before
1537
+ content: "\f217"
1538
+
1539
+ .ion-podium:before
1540
+ content: "\f344"
1541
+
1542
+ .ion-pound:before
1543
+ content: "\f219"
1544
+
1545
+ .ion-power:before
1546
+ content: "\f2a9"
1547
+
1548
+ .ion-pricetag:before
1549
+ content: "\f2aa"
1550
+
1551
+ .ion-pricetags:before
1552
+ content: "\f2ab"
1553
+
1554
+ .ion-printer:before
1555
+ content: "\f21a"
1556
+
1557
+ .ion-pull-request:before
1558
+ content: "\f345"
1559
+
1560
+ .ion-qr-scanner:before
1561
+ content: "\f346"
1562
+
1563
+ .ion-quote:before
1564
+ content: "\f347"
1565
+
1566
+ .ion-radio-waves:before
1567
+ content: "\f2ac"
1568
+
1569
+ .ion-record:before
1570
+ content: "\f21b"
1571
+
1572
+ .ion-refresh:before, .ion-refreshing:before
1573
+ content: "\f21c"
1574
+
1575
+ .ion-reply:before
1576
+ content: "\f21e"
1577
+
1578
+ .ion-reply-all:before
1579
+ content: "\f21d"
1580
+
1581
+ .ion-ribbon-a:before
1582
+ content: "\f348"
1583
+
1584
+ .ion-ribbon-b:before
1585
+ content: "\f349"
1586
+
1587
+ .ion-sad:before
1588
+ content: "\f34a"
1589
+
1590
+ .ion-scissors:before
1591
+ content: "\f34b"
1592
+
1593
+ .ion-search:before
1594
+ content: "\f21f"
1595
+
1596
+ .ion-settings:before
1597
+ content: "\f2ad"
1598
+
1599
+ .ion-share:before
1600
+ content: "\f220"
1601
+
1602
+ .ion-shuffle:before
1603
+ content: "\f221"
1604
+
1605
+ .ion-skip-backward:before
1606
+ content: "\f222"
1607
+
1608
+ .ion-skip-forward:before
1609
+ content: "\f223"
1610
+
1611
+ .ion-social-android:before
1612
+ content: "\f225"
1613
+
1614
+ .ion-social-android-outline:before
1615
+ content: "\f224"
1616
+
1617
+ .ion-social-apple:before
1618
+ content: "\f227"
1619
+
1620
+ .ion-social-apple-outline:before
1621
+ content: "\f226"
1622
+
1623
+ .ion-social-bitcoin:before
1624
+ content: "\f2af"
1625
+
1626
+ .ion-social-bitcoin-outline:before
1627
+ content: "\f2ae"
1628
+
1629
+ .ion-social-buffer:before
1630
+ content: "\f229"
1631
+
1632
+ .ion-social-buffer-outline:before
1633
+ content: "\f228"
1634
+
1635
+ .ion-social-designernews:before
1636
+ content: "\f22b"
1637
+
1638
+ .ion-social-designernews-outline:before
1639
+ content: "\f22a"
1640
+
1641
+ .ion-social-dribbble:before
1642
+ content: "\f22d"
1643
+
1644
+ .ion-social-dribbble-outline:before
1645
+ content: "\f22c"
1646
+
1647
+ .ion-social-dropbox:before
1648
+ content: "\f22f"
1649
+
1650
+ .ion-social-dropbox-outline:before
1651
+ content: "\f22e"
1652
+
1653
+ .ion-social-facebook:before
1654
+ content: "\f231"
1655
+
1656
+ .ion-social-facebook-outline:before
1657
+ content: "\f230"
1658
+
1659
+ .ion-social-foursquare:before
1660
+ content: "\f34d"
1661
+
1662
+ .ion-social-foursquare-outline:before
1663
+ content: "\f34c"
1664
+
1665
+ .ion-social-freebsd-devil:before
1666
+ content: "\f2c4"
1667
+
1668
+ .ion-social-github:before
1669
+ content: "\f233"
1670
+
1671
+ .ion-social-github-outline:before
1672
+ content: "\f232"
1673
+
1674
+ .ion-social-google:before
1675
+ content: "\f34f"
1676
+
1677
+ .ion-social-google-outline:before
1678
+ content: "\f34e"
1679
+
1680
+ .ion-social-googleplus:before
1681
+ content: "\f235"
1682
+
1683
+ .ion-social-googleplus-outline:before
1684
+ content: "\f234"
1685
+
1686
+ .ion-social-hackernews:before
1687
+ content: "\f237"
1688
+
1689
+ .ion-social-hackernews-outline:before
1690
+ content: "\f236"
1691
+
1692
+ .ion-social-instagram:before
1693
+ content: "\f351"
1694
+
1695
+ .ion-social-instagram-outline:before
1696
+ content: "\f350"
1697
+
1698
+ .ion-social-linkedin:before
1699
+ content: "\f239"
1700
+
1701
+ .ion-social-linkedin-outline:before
1702
+ content: "\f238"
1703
+
1704
+ .ion-social-pinterest:before
1705
+ content: "\f2b1"
1706
+
1707
+ .ion-social-pinterest-outline:before
1708
+ content: "\f2b0"
1709
+
1710
+ .ion-social-reddit:before
1711
+ content: "\f23b"
1712
+
1713
+ .ion-social-reddit-outline:before
1714
+ content: "\f23a"
1715
+
1716
+ .ion-social-rss:before
1717
+ content: "\f23d"
1718
+
1719
+ .ion-social-rss-outline:before
1720
+ content: "\f23c"
1721
+
1722
+ .ion-social-skype:before
1723
+ content: "\f23f"
1724
+
1725
+ .ion-social-skype-outline:before
1726
+ content: "\f23e"
1727
+
1728
+ .ion-social-tumblr:before
1729
+ content: "\f241"
1730
+
1731
+ .ion-social-tumblr-outline:before
1732
+ content: "\f240"
1733
+
1734
+ .ion-social-tux:before
1735
+ content: "\f2c5"
1736
+
1737
+ .ion-social-twitter:before
1738
+ content: "\f243"
1739
+
1740
+ .ion-social-twitter-outline:before
1741
+ content: "\f242"
1742
+
1743
+ .ion-social-usd:before
1744
+ content: "\f353"
1745
+
1746
+ .ion-social-usd-outline:before
1747
+ content: "\f352"
1748
+
1749
+ .ion-social-vimeo:before
1750
+ content: "\f245"
1751
+
1752
+ .ion-social-vimeo-outline:before
1753
+ content: "\f244"
1754
+
1755
+ .ion-social-windows:before
1756
+ content: "\f247"
1757
+
1758
+ .ion-social-windows-outline:before
1759
+ content: "\f246"
1760
+
1761
+ .ion-social-wordpress:before
1762
+ content: "\f249"
1763
+
1764
+ .ion-social-wordpress-outline:before
1765
+ content: "\f248"
1766
+
1767
+ .ion-social-yahoo:before
1768
+ content: "\f24b"
1769
+
1770
+ .ion-social-yahoo-outline:before
1771
+ content: "\f24a"
1772
+
1773
+ .ion-social-youtube:before
1774
+ content: "\f24d"
1775
+
1776
+ .ion-social-youtube-outline:before
1777
+ content: "\f24c"
1778
+
1779
+ .ion-speakerphone:before
1780
+ content: "\f2b2"
1781
+
1782
+ .ion-speedometer:before
1783
+ content: "\f2b3"
1784
+
1785
+ .ion-spoon:before
1786
+ content: "\f2b4"
1787
+
1788
+ .ion-star:before
1789
+ content: "\f24e"
1790
+
1791
+ .ion-stats-bars:before
1792
+ content: "\f2b5"
1793
+
1794
+ .ion-steam:before
1795
+ content: "\f30b"
1796
+
1797
+ .ion-stop:before
1798
+ content: "\f24f"
1799
+
1800
+ .ion-thermometer:before
1801
+ content: "\f2b6"
1802
+
1803
+ .ion-thumbsdown:before
1804
+ content: "\f250"
1805
+
1806
+ .ion-thumbsup:before
1807
+ content: "\f251"
1808
+
1809
+ .ion-toggle:before
1810
+ content: "\f355"
1811
+
1812
+ .ion-toggle-filled:before
1813
+ content: "\f354"
1814
+
1815
+ .ion-trash-a:before
1816
+ content: "\f252"
1817
+
1818
+ .ion-trash-b:before
1819
+ content: "\f253"
1820
+
1821
+ .ion-trophy:before
1822
+ content: "\f356"
1823
+
1824
+ .ion-umbrella:before
1825
+ content: "\f2b7"
1826
+
1827
+ .ion-university:before
1828
+ content: "\f357"
1829
+
1830
+ .ion-unlocked:before
1831
+ content: "\f254"
1832
+
1833
+ .ion-upload:before
1834
+ content: "\f255"
1835
+
1836
+ .ion-usb:before
1837
+ content: "\f2b8"
1838
+
1839
+ .ion-videocamera:before
1840
+ content: "\f256"
1841
+
1842
+ .ion-volume-high:before
1843
+ content: "\f257"
1844
+
1845
+ .ion-volume-low:before
1846
+ content: "\f258"
1847
+
1848
+ .ion-volume-medium:before
1849
+ content: "\f259"
1850
+
1851
+ .ion-volume-mute:before
1852
+ content: "\f25a"
1853
+
1854
+ .ion-wand:before
1855
+ content: "\f358"
1856
+
1857
+ .ion-waterdrop:before
1858
+ content: "\f25b"
1859
+
1860
+ .ion-wifi:before
1861
+ content: "\f25c"
1862
+
1863
+ .ion-wineglass:before
1864
+ content: "\f2b9"
1865
+
1866
+ .ion-woman:before
1867
+ content: "\f25d"
1868
+
1869
+ .ion-wrench:before
1870
+ content: "\f2ba"
1871
+
1872
+ .ion-xbox:before
1873
+ content: "\f30c"