vapid 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (433) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.gitmodules +6 -0
  4. data/.rspec +2 -0
  5. data/.rubocop.yml +133 -0
  6. data/.travis.yml +5 -0
  7. data/Gemfile +10 -0
  8. data/README.md +37 -0
  9. data/Rakefile +6 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/exe/vapid +7 -0
  13. data/lib/vapid.rb +24 -0
  14. data/lib/vapid/assets/javascripts/vapid/admin.coffee +2 -0
  15. data/lib/vapid/assets/stylesheets/vapid/admin.scss +72 -0
  16. data/lib/vapid/builder.rb +70 -0
  17. data/lib/vapid/cli.rb +96 -0
  18. data/lib/vapid/controllers/admin_controller.rb +282 -0
  19. data/lib/vapid/controllers/project_controller.rb +41 -0
  20. data/lib/vapid/db/migrate/20170202182310_create_groups.rb +12 -0
  21. data/lib/vapid/db/migrate/20170202183017_create_records.rb +11 -0
  22. data/lib/vapid/db/migrate/20170202185150_create_users.rb +11 -0
  23. data/lib/vapid/directive.rb +168 -0
  24. data/lib/vapid/directives.rb +30 -0
  25. data/lib/vapid/directives/audio.rb +27 -0
  26. data/lib/vapid/directives/group.rb +71 -0
  27. data/lib/vapid/directives/hide.rb +11 -0
  28. data/lib/vapid/directives/href.rb +11 -0
  29. data/lib/vapid/directives/image.rb +14 -0
  30. data/lib/vapid/directives/richtext.rb +15 -0
  31. data/lib/vapid/directives/show.rb +11 -0
  32. data/lib/vapid/directives/text.rb +24 -0
  33. data/lib/vapid/directives/video.rb +28 -0
  34. data/lib/vapid/generator_template/.gitignore +21 -0
  35. data/lib/vapid/generator_template/Gemfile.tt +13 -0
  36. data/lib/vapid/generator_template/README.md +0 -0
  37. data/lib/vapid/generator_template/assets/favicon.ico +0 -0
  38. data/lib/vapid/generator_template/assets/images/.keep +0 -0
  39. data/lib/vapid/generator_template/assets/javascripts/.keep +0 -0
  40. data/lib/vapid/generator_template/assets/stylesheets/.keep +0 -0
  41. data/lib/vapid/generator_template/assets/stylesheets/application.css +120 -0
  42. data/lib/vapid/generator_template/config.ru +3 -0
  43. data/lib/vapid/generator_template/config/database.yml +12 -0
  44. data/lib/vapid/generator_template/config/settings.yml.tt +11 -0
  45. data/lib/vapid/generator_template/templates/index.html.erb +25 -0
  46. data/lib/vapid/generator_template/templates/layouts/default.html.erb +22 -0
  47. data/lib/vapid/models.rb +18 -0
  48. data/lib/vapid/models/group.rb +36 -0
  49. data/lib/vapid/models/record.rb +30 -0
  50. data/lib/vapid/models/user.rb +16 -0
  51. data/lib/vapid/server.rb +93 -0
  52. data/lib/vapid/settings.rb +13 -0
  53. data/lib/vapid/template.rb +79 -0
  54. data/lib/vapid/template/node.rb +91 -0
  55. data/lib/vapid/template/parser.rb +50 -0
  56. data/lib/vapid/vendor/semantic-ui/.versions +4 -0
  57. data/lib/vapid/vendor/semantic-ui/LICENSE +22 -0
  58. data/lib/vapid/vendor/semantic-ui/README.md +7 -0
  59. data/lib/vapid/vendor/semantic-ui/components/accordion.css +252 -0
  60. data/lib/vapid/vendor/semantic-ui/components/accordion.js +610 -0
  61. data/lib/vapid/vendor/semantic-ui/components/accordion.min.css +9 -0
  62. data/lib/vapid/vendor/semantic-ui/components/accordion.min.js +10 -0
  63. data/lib/vapid/vendor/semantic-ui/components/ad.css +275 -0
  64. data/lib/vapid/vendor/semantic-ui/components/ad.min.css +10 -0
  65. data/lib/vapid/vendor/semantic-ui/components/api.js +1167 -0
  66. data/lib/vapid/vendor/semantic-ui/components/api.min.js +10 -0
  67. data/lib/vapid/vendor/semantic-ui/components/breadcrumb.css +124 -0
  68. data/lib/vapid/vendor/semantic-ui/components/breadcrumb.min.css +9 -0
  69. data/lib/vapid/vendor/semantic-ui/components/button.css +3450 -0
  70. data/lib/vapid/vendor/semantic-ui/components/button.min.css +9 -0
  71. data/lib/vapid/vendor/semantic-ui/components/card.css +964 -0
  72. data/lib/vapid/vendor/semantic-ui/components/card.min.css +9 -0
  73. data/lib/vapid/vendor/semantic-ui/components/checkbox.css +625 -0
  74. data/lib/vapid/vendor/semantic-ui/components/checkbox.js +831 -0
  75. data/lib/vapid/vendor/semantic-ui/components/checkbox.min.css +9 -0
  76. data/lib/vapid/vendor/semantic-ui/components/checkbox.min.js +10 -0
  77. data/lib/vapid/vendor/semantic-ui/components/colorize.js +274 -0
  78. data/lib/vapid/vendor/semantic-ui/components/colorize.min.js +11 -0
  79. data/lib/vapid/vendor/semantic-ui/components/comment.css +270 -0
  80. data/lib/vapid/vendor/semantic-ui/components/comment.min.css +9 -0
  81. data/lib/vapid/vendor/semantic-ui/components/container.css +147 -0
  82. data/lib/vapid/vendor/semantic-ui/components/container.min.css +9 -0
  83. data/lib/vapid/vendor/semantic-ui/components/dimmer.css +200 -0
  84. data/lib/vapid/vendor/semantic-ui/components/dimmer.js +708 -0
  85. data/lib/vapid/vendor/semantic-ui/components/dimmer.min.css +9 -0
  86. data/lib/vapid/vendor/semantic-ui/components/dimmer.min.js +10 -0
  87. data/lib/vapid/vendor/semantic-ui/components/divider.css +260 -0
  88. data/lib/vapid/vendor/semantic-ui/components/divider.min.css +9 -0
  89. data/lib/vapid/vendor/semantic-ui/components/dropdown.css +1442 -0
  90. data/lib/vapid/vendor/semantic-ui/components/dropdown.js +3767 -0
  91. data/lib/vapid/vendor/semantic-ui/components/dropdown.min.css +9 -0
  92. data/lib/vapid/vendor/semantic-ui/components/dropdown.min.js +11 -0
  93. data/lib/vapid/vendor/semantic-ui/components/embed.css +166 -0
  94. data/lib/vapid/vendor/semantic-ui/components/embed.js +696 -0
  95. data/lib/vapid/vendor/semantic-ui/components/embed.min.css +9 -0
  96. data/lib/vapid/vendor/semantic-ui/components/embed.min.js +10 -0
  97. data/lib/vapid/vendor/semantic-ui/components/feed.css +296 -0
  98. data/lib/vapid/vendor/semantic-ui/components/feed.min.css +9 -0
  99. data/lib/vapid/vendor/semantic-ui/components/flag.css +1031 -0
  100. data/lib/vapid/vendor/semantic-ui/components/flag.min.css +9 -0
  101. data/lib/vapid/vendor/semantic-ui/components/form.css +1067 -0
  102. data/lib/vapid/vendor/semantic-ui/components/form.js +1603 -0
  103. data/lib/vapid/vendor/semantic-ui/components/form.min.css +9 -0
  104. data/lib/vapid/vendor/semantic-ui/components/form.min.js +10 -0
  105. data/lib/vapid/vendor/semantic-ui/components/grid.css +2002 -0
  106. data/lib/vapid/vendor/semantic-ui/components/grid.min.css +9 -0
  107. data/lib/vapid/vendor/semantic-ui/components/header.css +721 -0
  108. data/lib/vapid/vendor/semantic-ui/components/header.min.css +9 -0
  109. data/lib/vapid/vendor/semantic-ui/components/icon.css +3292 -0
  110. data/lib/vapid/vendor/semantic-ui/components/icon.min.css +9 -0
  111. data/lib/vapid/vendor/semantic-ui/components/image.css +306 -0
  112. data/lib/vapid/vendor/semantic-ui/components/image.min.css +9 -0
  113. data/lib/vapid/vendor/semantic-ui/components/input.css +510 -0
  114. data/lib/vapid/vendor/semantic-ui/components/input.min.css +9 -0
  115. data/lib/vapid/vendor/semantic-ui/components/item.css +486 -0
  116. data/lib/vapid/vendor/semantic-ui/components/item.min.css +9 -0
  117. data/lib/vapid/vendor/semantic-ui/components/label.css +1307 -0
  118. data/lib/vapid/vendor/semantic-ui/components/label.min.css +9 -0
  119. data/lib/vapid/vendor/semantic-ui/components/list.css +951 -0
  120. data/lib/vapid/vendor/semantic-ui/components/list.min.css +9 -0
  121. data/lib/vapid/vendor/semantic-ui/components/loader.css +347 -0
  122. data/lib/vapid/vendor/semantic-ui/components/loader.min.css +9 -0
  123. data/lib/vapid/vendor/semantic-ui/components/menu.css +2002 -0
  124. data/lib/vapid/vendor/semantic-ui/components/menu.min.css +1 -0
  125. data/lib/vapid/vendor/semantic-ui/components/message.css +477 -0
  126. data/lib/vapid/vendor/semantic-ui/components/message.min.css +9 -0
  127. data/lib/vapid/vendor/semantic-ui/components/modal.css +502 -0
  128. data/lib/vapid/vendor/semantic-ui/components/modal.js +913 -0
  129. data/lib/vapid/vendor/semantic-ui/components/modal.min.css +9 -0
  130. data/lib/vapid/vendor/semantic-ui/components/modal.min.js +10 -0
  131. data/lib/vapid/vendor/semantic-ui/components/nag.css +147 -0
  132. data/lib/vapid/vendor/semantic-ui/components/nag.js +507 -0
  133. data/lib/vapid/vendor/semantic-ui/components/nag.min.css +9 -0
  134. data/lib/vapid/vendor/semantic-ui/components/nag.min.js +10 -0
  135. data/lib/vapid/vendor/semantic-ui/components/popup.css +733 -0
  136. data/lib/vapid/vendor/semantic-ui/components/popup.js +1475 -0
  137. data/lib/vapid/vendor/semantic-ui/components/popup.min.css +9 -0
  138. data/lib/vapid/vendor/semantic-ui/components/popup.min.js +10 -0
  139. data/lib/vapid/vendor/semantic-ui/components/progress.css +516 -0
  140. data/lib/vapid/vendor/semantic-ui/components/progress.js +931 -0
  141. data/lib/vapid/vendor/semantic-ui/components/progress.min.css +9 -0
  142. data/lib/vapid/vendor/semantic-ui/components/progress.min.js +10 -0
  143. data/lib/vapid/vendor/semantic-ui/components/rail.css +152 -0
  144. data/lib/vapid/vendor/semantic-ui/components/rail.min.css +9 -0
  145. data/lib/vapid/vendor/semantic-ui/components/rating.css +263 -0
  146. data/lib/vapid/vendor/semantic-ui/components/rating.js +508 -0
  147. data/lib/vapid/vendor/semantic-ui/components/rating.min.css +9 -0
  148. data/lib/vapid/vendor/semantic-ui/components/rating.min.js +10 -0
  149. data/lib/vapid/vendor/semantic-ui/components/reset.css +424 -0
  150. data/lib/vapid/vendor/semantic-ui/components/reset.min.css +9 -0
  151. data/lib/vapid/vendor/semantic-ui/components/reveal.css +284 -0
  152. data/lib/vapid/vendor/semantic-ui/components/reveal.min.css +9 -0
  153. data/lib/vapid/vendor/semantic-ui/components/search.css +408 -0
  154. data/lib/vapid/vendor/semantic-ui/components/search.js +1442 -0
  155. data/lib/vapid/vendor/semantic-ui/components/search.min.css +9 -0
  156. data/lib/vapid/vendor/semantic-ui/components/search.min.js +10 -0
  157. data/lib/vapid/vendor/semantic-ui/components/segment.css +798 -0
  158. data/lib/vapid/vendor/semantic-ui/components/segment.min.css +9 -0
  159. data/lib/vapid/vendor/semantic-ui/components/shape.css +157 -0
  160. data/lib/vapid/vendor/semantic-ui/components/shape.js +921 -0
  161. data/lib/vapid/vendor/semantic-ui/components/shape.min.css +9 -0
  162. data/lib/vapid/vendor/semantic-ui/components/shape.min.js +10 -0
  163. data/lib/vapid/vendor/semantic-ui/components/sidebar.css +634 -0
  164. data/lib/vapid/vendor/semantic-ui/components/sidebar.js +1036 -0
  165. data/lib/vapid/vendor/semantic-ui/components/sidebar.min.css +9 -0
  166. data/lib/vapid/vendor/semantic-ui/components/sidebar.min.js +10 -0
  167. data/lib/vapid/vendor/semantic-ui/components/site.css +160 -0
  168. data/lib/vapid/vendor/semantic-ui/components/site.js +487 -0
  169. data/lib/vapid/vendor/semantic-ui/components/site.min.css +9 -0
  170. data/lib/vapid/vendor/semantic-ui/components/site.min.js +10 -0
  171. data/lib/vapid/vendor/semantic-ui/components/state.js +708 -0
  172. data/lib/vapid/vendor/semantic-ui/components/state.min.js +10 -0
  173. data/lib/vapid/vendor/semantic-ui/components/statistic.css +569 -0
  174. data/lib/vapid/vendor/semantic-ui/components/statistic.min.css +9 -0
  175. data/lib/vapid/vendor/semantic-ui/components/step.css +623 -0
  176. data/lib/vapid/vendor/semantic-ui/components/step.min.css +9 -0
  177. data/lib/vapid/vendor/semantic-ui/components/sticky.css +78 -0
  178. data/lib/vapid/vendor/semantic-ui/components/sticky.js +942 -0
  179. data/lib/vapid/vendor/semantic-ui/components/sticky.min.css +9 -0
  180. data/lib/vapid/vendor/semantic-ui/components/sticky.min.js +10 -0
  181. data/lib/vapid/vendor/semantic-ui/components/tab.css +91 -0
  182. data/lib/vapid/vendor/semantic-ui/components/tab.js +952 -0
  183. data/lib/vapid/vendor/semantic-ui/components/tab.min.css +9 -0
  184. data/lib/vapid/vendor/semantic-ui/components/tab.min.js +10 -0
  185. data/lib/vapid/vendor/semantic-ui/components/table.css +1108 -0
  186. data/lib/vapid/vendor/semantic-ui/components/table.min.css +9 -0
  187. data/lib/vapid/vendor/semantic-ui/components/transition.css +1964 -0
  188. data/lib/vapid/vendor/semantic-ui/components/transition.js +1095 -0
  189. data/lib/vapid/vendor/semantic-ui/components/transition.min.css +9 -0
  190. data/lib/vapid/vendor/semantic-ui/components/transition.min.js +10 -0
  191. data/lib/vapid/vendor/semantic-ui/components/video.css +125 -0
  192. data/lib/vapid/vendor/semantic-ui/components/video.js +532 -0
  193. data/lib/vapid/vendor/semantic-ui/components/video.min.css +10 -0
  194. data/lib/vapid/vendor/semantic-ui/components/video.min.js +11 -0
  195. data/lib/vapid/vendor/semantic-ui/components/visibility.js +1288 -0
  196. data/lib/vapid/vendor/semantic-ui/components/visibility.min.js +10 -0
  197. data/lib/vapid/vendor/semantic-ui/components/visit.js +517 -0
  198. data/lib/vapid/vendor/semantic-ui/components/visit.min.js +11 -0
  199. data/lib/vapid/vendor/semantic-ui/package.js +34 -0
  200. data/lib/vapid/vendor/semantic-ui/package.json +20 -0
  201. data/lib/vapid/vendor/semantic-ui/semantic.css +36844 -0
  202. data/lib/vapid/vendor/semantic-ui/semantic.js +22617 -0
  203. data/lib/vapid/vendor/semantic-ui/semantic.min.css +364 -0
  204. data/lib/vapid/vendor/semantic-ui/semantic.min.js +19 -0
  205. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.eot +0 -0
  206. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.otf +0 -0
  207. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.svg +2671 -0
  208. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.ttf +0 -0
  209. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.woff +0 -0
  210. data/lib/vapid/vendor/semantic-ui/themes/default/assets/fonts/icons.woff2 +0 -0
  211. data/lib/vapid/vendor/semantic-ui/themes/default/assets/images/flags.png +0 -0
  212. data/lib/vapid/vendor/trix/.blade.yml +45 -0
  213. data/lib/vapid/vendor/trix/.github/ISSUE_TEMPLATE.md +13 -0
  214. data/lib/vapid/vendor/trix/.gitignore +3 -0
  215. data/lib/vapid/vendor/trix/.ruby-version +1 -0
  216. data/lib/vapid/vendor/trix/.travis.yml +6 -0
  217. data/lib/vapid/vendor/trix/CONDUCT.md +79 -0
  218. data/lib/vapid/vendor/trix/Gemfile +17 -0
  219. data/lib/vapid/vendor/trix/Gemfile.lock +152 -0
  220. data/lib/vapid/vendor/trix/LICENSE +20 -0
  221. data/lib/vapid/vendor/trix/README.md +382 -0
  222. data/lib/vapid/vendor/trix/assets/index.html +55 -0
  223. data/lib/vapid/vendor/trix/assets/trix-core.coffee +2 -0
  224. data/lib/vapid/vendor/trix/assets/trix.coffee +3 -0
  225. data/lib/vapid/vendor/trix/assets/trix.scss +5 -0
  226. data/lib/vapid/vendor/trix/assets/trix/banner/index.coffee.erb +3 -0
  227. data/lib/vapid/vendor/trix/assets/trix/banner/index.scss.erb +3 -0
  228. data/lib/vapid/vendor/trix/assets/trix/banner/index.txt.erb +3 -0
  229. data/lib/vapid/vendor/trix/assets/trix/images/README.md +6 -0
  230. data/lib/vapid/vendor/trix/assets/trix/images/attach.svg +5 -0
  231. data/lib/vapid/vendor/trix/assets/trix/images/bold.svg +5 -0
  232. data/lib/vapid/vendor/trix/assets/trix/images/bullets.svg +5 -0
  233. data/lib/vapid/vendor/trix/assets/trix/images/code.svg +5 -0
  234. data/lib/vapid/vendor/trix/assets/trix/images/heading_1.svg +5 -0
  235. data/lib/vapid/vendor/trix/assets/trix/images/italic.svg +5 -0
  236. data/lib/vapid/vendor/trix/assets/trix/images/link.svg +6 -0
  237. data/lib/vapid/vendor/trix/assets/trix/images/nesting_level_decrease.svg +5 -0
  238. data/lib/vapid/vendor/trix/assets/trix/images/nesting_level_increase.svg +5 -0
  239. data/lib/vapid/vendor/trix/assets/trix/images/numbers.svg +5 -0
  240. data/lib/vapid/vendor/trix/assets/trix/images/quote.svg +5 -0
  241. data/lib/vapid/vendor/trix/assets/trix/images/redo.svg +5 -0
  242. data/lib/vapid/vendor/trix/assets/trix/images/remove.svg +4 -0
  243. data/lib/vapid/vendor/trix/assets/trix/images/strike.svg +6 -0
  244. data/lib/vapid/vendor/trix/assets/trix/images/trash.svg +5 -0
  245. data/lib/vapid/vendor/trix/assets/trix/images/undo.svg +5 -0
  246. data/lib/vapid/vendor/trix/assets/trix/stylesheets/attachments.scss +112 -0
  247. data/lib/vapid/vendor/trix/assets/trix/stylesheets/content.scss +88 -0
  248. data/lib/vapid/vendor/trix/assets/trix/stylesheets/editor.scss +8 -0
  249. data/lib/vapid/vendor/trix/assets/trix/stylesheets/icons.scss +14 -0
  250. data/lib/vapid/vendor/trix/assets/trix/stylesheets/media-queries.scss +7 -0
  251. data/lib/vapid/vendor/trix/assets/trix/stylesheets/toolbar.scss +194 -0
  252. data/lib/vapid/vendor/trix/bin/blade +16 -0
  253. data/lib/vapid/vendor/trix/bin/ci +21 -0
  254. data/lib/vapid/vendor/trix/bin/rackup +16 -0
  255. data/lib/vapid/vendor/trix/bin/rake +16 -0
  256. data/lib/vapid/vendor/trix/bin/release +139 -0
  257. data/lib/vapid/vendor/trix/bin/setup +69 -0
  258. data/lib/vapid/vendor/trix/bin/update-status-image +100 -0
  259. data/lib/vapid/vendor/trix/bower.json +34 -0
  260. data/lib/vapid/vendor/trix/config.ru +32 -0
  261. data/lib/vapid/vendor/trix/dist/trix-core.js +11 -0
  262. data/lib/vapid/vendor/trix/dist/trix.css +286 -0
  263. data/lib/vapid/vendor/trix/dist/trix.js +20 -0
  264. data/lib/vapid/vendor/trix/package.json +29 -0
  265. data/lib/vapid/vendor/trix/polyfills/polyfills.coffee +3 -0
  266. data/lib/vapid/vendor/trix/polyfills/set.coffee +24 -0
  267. data/lib/vapid/vendor/trix/polyfills/vendor/CustomElements.js +1029 -0
  268. data/lib/vapid/vendor/trix/polyfills/vendor/README.md +2 -0
  269. data/lib/vapid/vendor/trix/polyfills/vendor/promise.js +228 -0
  270. data/lib/vapid/vendor/trix/src/trix/VERSION +1 -0
  271. data/lib/vapid/vendor/trix/src/trix/config/block_attributes.coffee +37 -0
  272. data/lib/vapid/vendor/trix/src/trix/config/css.coffee +12 -0
  273. data/lib/vapid/vendor/trix/src/trix/config/file_size_formatting.coffee +22 -0
  274. data/lib/vapid/vendor/trix/src/trix/config/index.coffee +9 -0
  275. data/lib/vapid/vendor/trix/src/trix/config/lang.coffee +26 -0
  276. data/lib/vapid/vendor/trix/src/trix/config/selection_elements.coffee +26 -0
  277. data/lib/vapid/vendor/trix/src/trix/config/serialization.coffee +63 -0
  278. data/lib/vapid/vendor/trix/src/trix/config/text_attributes.coffee +25 -0
  279. data/lib/vapid/vendor/trix/src/trix/config/toolbar.coffee +41 -0
  280. data/lib/vapid/vendor/trix/src/trix/config/undo_interval.coffee +7 -0
  281. data/lib/vapid/vendor/trix/src/trix/controllers/attachment_editor_controller.coffee +104 -0
  282. data/lib/vapid/vendor/trix/src/trix/controllers/composition_controller.coffee +117 -0
  283. data/lib/vapid/vendor/trix/src/trix/controllers/controller.coffee +3 -0
  284. data/lib/vapid/vendor/trix/src/trix/controllers/editor_controller.coffee +369 -0
  285. data/lib/vapid/vendor/trix/src/trix/controllers/input/composition_input.coffee +57 -0
  286. data/lib/vapid/vendor/trix/src/trix/controllers/input_controller.coffee +473 -0
  287. data/lib/vapid/vendor/trix/src/trix/controllers/toolbar_controller.coffee +173 -0
  288. data/lib/vapid/vendor/trix/src/trix/core/basic_object.coffee +44 -0
  289. data/lib/vapid/vendor/trix/src/trix/core/collections/element_store.coffee +21 -0
  290. data/lib/vapid/vendor/trix/src/trix/core/collections/hash.coffee +98 -0
  291. data/lib/vapid/vendor/trix/src/trix/core/collections/index.coffee +4 -0
  292. data/lib/vapid/vendor/trix/src/trix/core/collections/object_group.coffee +37 -0
  293. data/lib/vapid/vendor/trix/src/trix/core/collections/object_map.coffee +10 -0
  294. data/lib/vapid/vendor/trix/src/trix/core/helpers/arrays.coffee +34 -0
  295. data/lib/vapid/vendor/trix/src/trix/core/helpers/config.coffee +23 -0
  296. data/lib/vapid/vendor/trix/src/trix/core/helpers/custom_elements.coffee +45 -0
  297. data/lib/vapid/vendor/trix/src/trix/core/helpers/dom.coffee +185 -0
  298. data/lib/vapid/vendor/trix/src/trix/core/helpers/extend.coffee +4 -0
  299. data/lib/vapid/vendor/trix/src/trix/core/helpers/functions.coffee +3 -0
  300. data/lib/vapid/vendor/trix/src/trix/core/helpers/global.coffee +23 -0
  301. data/lib/vapid/vendor/trix/src/trix/core/helpers/index.coffee +10 -0
  302. data/lib/vapid/vendor/trix/src/trix/core/helpers/objects.coffee +11 -0
  303. data/lib/vapid/vendor/trix/src/trix/core/helpers/ranges.coffee +33 -0
  304. data/lib/vapid/vendor/trix/src/trix/core/helpers/selection.coffee +25 -0
  305. data/lib/vapid/vendor/trix/src/trix/core/helpers/strings.coffee +46 -0
  306. data/lib/vapid/vendor/trix/src/trix/core/index.coffee +4 -0
  307. data/lib/vapid/vendor/trix/src/trix/core/object.coffee +33 -0
  308. data/lib/vapid/vendor/trix/src/trix/core/utilities/index.coffee +2 -0
  309. data/lib/vapid/vendor/trix/src/trix/core/utilities/operation.coffee +37 -0
  310. data/lib/vapid/vendor/trix/src/trix/core/utilities/utf16_string.coffee +93 -0
  311. data/lib/vapid/vendor/trix/src/trix/elements/trix_editor_element.coffee +166 -0
  312. data/lib/vapid/vendor/trix/src/trix/elements/trix_toolbar_element.coffee +28 -0
  313. data/lib/vapid/vendor/trix/src/trix/index.coffee.erb +14 -0
  314. data/lib/vapid/vendor/trix/src/trix/inspector/control_element.coffee +60 -0
  315. data/lib/vapid/vendor/trix/src/trix/inspector/debugger.coffee +104 -0
  316. data/lib/vapid/vendor/trix/src/trix/inspector/element.coffee +86 -0
  317. data/lib/vapid/vendor/trix/src/trix/inspector/index.coffee +17 -0
  318. data/lib/vapid/vendor/trix/src/trix/inspector/polyfills/vendor/details-element-polyfill.js +5 -0
  319. data/lib/vapid/vendor/trix/src/trix/inspector/templates/debug.jst.eco +17 -0
  320. data/lib/vapid/vendor/trix/src/trix/inspector/templates/document.jst.eco +33 -0
  321. data/lib/vapid/vendor/trix/src/trix/inspector/templates/performance.jst.eco +10 -0
  322. data/lib/vapid/vendor/trix/src/trix/inspector/templates/render.jst.eco +1 -0
  323. data/lib/vapid/vendor/trix/src/trix/inspector/templates/selection.jst.eco +5 -0
  324. data/lib/vapid/vendor/trix/src/trix/inspector/templates/undo.jst.eco +13 -0
  325. data/lib/vapid/vendor/trix/src/trix/inspector/view.coffee +58 -0
  326. data/lib/vapid/vendor/trix/src/trix/inspector/views/debug_view.coffee +33 -0
  327. data/lib/vapid/vendor/trix/src/trix/inspector/views/document_view.coffee +12 -0
  328. data/lib/vapid/vendor/trix/src/trix/inspector/views/performance_view.coffee +51 -0
  329. data/lib/vapid/vendor/trix/src/trix/inspector/views/render_view.coffee +21 -0
  330. data/lib/vapid/vendor/trix/src/trix/inspector/views/selection_view.coffee +33 -0
  331. data/lib/vapid/vendor/trix/src/trix/inspector/views/undo_view.coffee +12 -0
  332. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/deserializer.coffee +55 -0
  333. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/index.coffee +5 -0
  334. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/player.coffee +60 -0
  335. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/player_controller.coffee +43 -0
  336. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/player_element.coffee +32 -0
  337. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/player_view.coffee +133 -0
  338. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/recorder.coffee +82 -0
  339. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/recording.coffee +54 -0
  340. data/lib/vapid/vendor/trix/src/trix/inspector/watchdog/serializer.coffee +61 -0
  341. data/lib/vapid/vendor/trix/src/trix/models/attachment.coffee +157 -0
  342. data/lib/vapid/vendor/trix/src/trix/models/attachment_manager.coffee +24 -0
  343. data/lib/vapid/vendor/trix/src/trix/models/attachment_piece.coffee +47 -0
  344. data/lib/vapid/vendor/trix/src/trix/models/block.coffee +230 -0
  345. data/lib/vapid/vendor/trix/src/trix/models/composition.coffee +521 -0
  346. data/lib/vapid/vendor/trix/src/trix/models/document.coffee +538 -0
  347. data/lib/vapid/vendor/trix/src/trix/models/editor.coffee +141 -0
  348. data/lib/vapid/vendor/trix/src/trix/models/html_parser.coffee +335 -0
  349. data/lib/vapid/vendor/trix/src/trix/models/line_break_insertion.coffee +31 -0
  350. data/lib/vapid/vendor/trix/src/trix/models/location_mapper.coffee +156 -0
  351. data/lib/vapid/vendor/trix/src/trix/models/managed_attachment.coffee +28 -0
  352. data/lib/vapid/vendor/trix/src/trix/models/piece.coffee +95 -0
  353. data/lib/vapid/vendor/trix/src/trix/models/point_mapper.coffee +28 -0
  354. data/lib/vapid/vendor/trix/src/trix/models/selection_manager.coffee +129 -0
  355. data/lib/vapid/vendor/trix/src/trix/models/splittable_list.coffee +168 -0
  356. data/lib/vapid/vendor/trix/src/trix/models/string_piece.coffee +49 -0
  357. data/lib/vapid/vendor/trix/src/trix/models/text.coffee +168 -0
  358. data/lib/vapid/vendor/trix/src/trix/models/undo_manager.coffee +40 -0
  359. data/lib/vapid/vendor/trix/src/trix/observers/mutation_observer.coffee +131 -0
  360. data/lib/vapid/vendor/trix/src/trix/observers/selection_change_observer.coffee +56 -0
  361. data/lib/vapid/vendor/trix/src/trix/operations/file_verification_operation.coffee +15 -0
  362. data/lib/vapid/vendor/trix/src/trix/operations/image_preload_operation.coffee +15 -0
  363. data/lib/vapid/vendor/trix/src/trix/views/attachment_view.coffee +99 -0
  364. data/lib/vapid/vendor/trix/src/trix/views/block_view.coffee +37 -0
  365. data/lib/vapid/vendor/trix/src/trix/views/document_view.coffee +68 -0
  366. data/lib/vapid/vendor/trix/src/trix/views/object_group_view.coffee +23 -0
  367. data/lib/vapid/vendor/trix/src/trix/views/object_view.coffee +86 -0
  368. data/lib/vapid/vendor/trix/src/trix/views/piece_view.coffee +97 -0
  369. data/lib/vapid/vendor/trix/src/trix/views/previewable_attachment_view.coffee +49 -0
  370. data/lib/vapid/vendor/trix/src/trix/views/text_view.coffee +30 -0
  371. data/lib/vapid/vendor/trix/test/.gitignore +1 -0
  372. data/lib/vapid/vendor/trix/test/src/system/attachment_test.coffee +70 -0
  373. data/lib/vapid/vendor/trix/test/src/system/basic_input_test.coffee +68 -0
  374. data/lib/vapid/vendor/trix/test/src/system/block_formatting_test.coffee +602 -0
  375. data/lib/vapid/vendor/trix/test/src/system/caching_test.coffee +21 -0
  376. data/lib/vapid/vendor/trix/test/src/system/composition_input_test.coffee +138 -0
  377. data/lib/vapid/vendor/trix/test/src/system/cursor_movement_test.coffee +54 -0
  378. data/lib/vapid/vendor/trix/test/src/system/custom_element_test.coffee +314 -0
  379. data/lib/vapid/vendor/trix/test/src/system/html_loading_test.coffee +62 -0
  380. data/lib/vapid/vendor/trix/test/src/system/html_replacement_test.coffee +101 -0
  381. data/lib/vapid/vendor/trix/test/src/system/installation_process_test.coffee +59 -0
  382. data/lib/vapid/vendor/trix/test/src/system/list_formatting_test.coffee +70 -0
  383. data/lib/vapid/vendor/trix/test/src/system/mutation_input_test.coffee +73 -0
  384. data/lib/vapid/vendor/trix/test/src/system/pasting_test.coffee +215 -0
  385. data/lib/vapid/vendor/trix/test/src/system/text_formatting_test.coffee +151 -0
  386. data/lib/vapid/vendor/trix/test/src/system/undo_test.coffee +48 -0
  387. data/lib/vapid/vendor/trix/test/src/test.coffee +16 -0
  388. data/lib/vapid/vendor/trix/test/src/test_helpers/assertions.coffee +38 -0
  389. data/lib/vapid/vendor/trix/test/src/test_helpers/editor_helpers.coffee +37 -0
  390. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_empty.jst.eco +1 -0
  391. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_html.jst.eco +2 -0
  392. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_in_table.jst.eco +7 -0
  393. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_with_block_styles.jst.eco +6 -0
  394. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_with_bold_styles.jst.eco +7 -0
  395. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_with_image.jst.eco +2 -0
  396. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_with_styled_content.jst.eco +7 -0
  397. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/editor_with_toolbar_and_input.jst.eco +5 -0
  398. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/fixtures.coffee +536 -0
  399. data/lib/vapid/vendor/trix/test/src/test_helpers/fixtures/logo.png +0 -0
  400. data/lib/vapid/vendor/trix/test/src/test_helpers/index.coffee +18 -0
  401. data/lib/vapid/vendor/trix/test/src/test_helpers/input_helpers.coffee +183 -0
  402. data/lib/vapid/vendor/trix/test/src/test_helpers/selection_helpers.coffee +91 -0
  403. data/lib/vapid/vendor/trix/test/src/test_helpers/test_helpers.coffee +72 -0
  404. data/lib/vapid/vendor/trix/test/src/test_helpers/test_stubs.coffee +31 -0
  405. data/lib/vapid/vendor/trix/test/src/test_helpers/toolbar_helpers.coffee +45 -0
  406. data/lib/vapid/vendor/trix/test/src/unit/attachment_test.coffee +23 -0
  407. data/lib/vapid/vendor/trix/test/src/unit/block_test.coffee +22 -0
  408. data/lib/vapid/vendor/trix/test/src/unit/composition_test.coffee +13 -0
  409. data/lib/vapid/vendor/trix/test/src/unit/document_test.coffee +11 -0
  410. data/lib/vapid/vendor/trix/test/src/unit/document_view_test.coffee +6 -0
  411. data/lib/vapid/vendor/trix/test/src/unit/html_parser_test.coffee +162 -0
  412. data/lib/vapid/vendor/trix/test/src/unit/location_mapper_test.coffee +185 -0
  413. data/lib/vapid/vendor/trix/test/src/unit/mutation_observer_test.coffee +84 -0
  414. data/lib/vapid/vendor/trix/test/src/unit/serialization_test.coffee +7 -0
  415. data/lib/vapid/vendor/trix/test/src/unit/string_change_summary_test.coffee +57 -0
  416. data/lib/vapid/vendor/trix/test/src/unit/text_test.coffee +19 -0
  417. data/lib/vapid/vendor/trix/test/vendor/rangy-core.js +3845 -0
  418. data/lib/vapid/vendor/trix/test/vendor/rangy-textrange.js +1930 -0
  419. data/lib/vapid/version.rb +4 -0
  420. data/lib/vapid/views/admin/install.html.erb +19 -0
  421. data/lib/vapid/views/admin/login.html.erb +11 -0
  422. data/lib/vapid/views/admin/overview/index.html.erb +1 -0
  423. data/lib/vapid/views/admin/records/_form.erb +9 -0
  424. data/lib/vapid/views/admin/records/edit.html.erb +5 -0
  425. data/lib/vapid/views/admin/records/index.html.erb +38 -0
  426. data/lib/vapid/views/admin/records/new.html.erb +3 -0
  427. data/lib/vapid/views/errors/404.html.erb +1 -0
  428. data/lib/vapid/views/errors/500.html.erb +1 -0
  429. data/lib/vapid/views/layouts/admin.html.erb +41 -0
  430. data/lib/vapid/views/layouts/admin_form.html.erb +22 -0
  431. data/lib/vapid/views/layouts/error.html.erb +11 -0
  432. data/vapid.gemspec +48 -0
  433. metadata +811 -0
@@ -0,0 +1,9 @@
1
+ /*!
2
+ * # Semantic UI 2.2.9 - Header
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */.ui.header{border:none;margin:calc(2rem - .14285714em) 0 1rem;padding:0 0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;line-height:1.28571429em;text-transform:none;color:rgba(0,0,0,.87)}.ui.header:first-child{margin-top:-.14285714em}.ui.header:last-child{margin-bottom:0}.ui.header .sub.header{display:block;font-weight:400;padding:0;margin:0;font-size:1rem;line-height:1.2em;color:rgba(0,0,0,.6)}.ui.header>.icon{display:table-cell;opacity:1;font-size:1.5em;padding-top:.14285714em;vertical-align:middle}.ui.header .icon:only-child{display:inline-block;padding:0;margin-right:.75rem}.ui.header>.image:not(.icon),.ui.header>img{display:inline-block;margin-top:.14285714em;width:2.5em;height:auto;vertical-align:middle}.ui.header>.image:not(.icon):only-child,.ui.header>img:only-child{margin-right:.75rem}.ui.header .content{display:inline-block;vertical-align:top}.ui.header>.image+.content,.ui.header>img+.content{padding-left:.75rem;vertical-align:middle}.ui.header>.icon+.content{padding-left:.75rem;display:table-cell;vertical-align:middle}.ui.header .ui.label{font-size:'';margin-left:.5rem;vertical-align:middle}.ui.header+p{margin-top:0}h1.ui.header{font-size:2rem}h2.ui.header{font-size:1.71428571rem}h3.ui.header{font-size:1.28571429rem}h4.ui.header{font-size:1.07142857rem}h5.ui.header{font-size:1rem}h1.ui.header .sub.header{font-size:1.14285714rem}h2.ui.header .sub.header{font-size:1.14285714rem}h3.ui.header .sub.header{font-size:1rem}h4.ui.header .sub.header{font-size:1rem}h5.ui.header .sub.header{font-size:.92857143rem}.ui.huge.header{min-height:1em;font-size:2em}.ui.large.header{font-size:1.71428571em}.ui.medium.header{font-size:1.28571429em}.ui.small.header{font-size:1.07142857em}.ui.tiny.header{font-size:1em}.ui.huge.header .sub.header{font-size:1.14285714rem}.ui.large.header .sub.header{font-size:1.14285714rem}.ui.header .sub.header{font-size:1rem}.ui.small.header .sub.header{font-size:1rem}.ui.tiny.header .sub.header{font-size:.92857143rem}.ui.sub.header{padding:0;margin-bottom:.14285714rem;font-weight:700;font-size:.85714286em;text-transform:uppercase;color:''}.ui.small.sub.header{font-size:.78571429em}.ui.sub.header{font-size:.85714286em}.ui.large.sub.header{font-size:.92857143em}.ui.huge.sub.header{font-size:1em}.ui.icon.header{display:inline-block;text-align:center;margin:2rem 0 1rem}.ui.icon.header:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.icon.header:first-child{margin-top:0}.ui.icon.header .icon{float:none;display:block;width:auto;height:auto;line-height:1;padding:0;font-size:3em;margin:0 auto .5rem;opacity:1}.ui.icon.header .content{display:block;padding:0}.ui.icon.header .circular.icon{font-size:2em}.ui.icon.header .square.icon{font-size:2em}.ui.block.icon.header .icon{margin-bottom:0}.ui.icon.header.aligned{margin-left:auto;margin-right:auto;display:block}.ui.disabled.header{opacity:.45}.ui.inverted.header{color:#fff}.ui.inverted.header .sub.header{color:rgba(255,255,255,.8)}.ui.inverted.attached.header{background:#545454 -webkit-linear-gradient(transparent,rgba(0,0,0,.05));background:#545454 linear-gradient(transparent,rgba(0,0,0,.05));box-shadow:none;border-color:transparent}.ui.inverted.block.header{background:#545454 -webkit-linear-gradient(transparent,rgba(0,0,0,.05));background:#545454 linear-gradient(transparent,rgba(0,0,0,.05));box-shadow:none}.ui.inverted.block.header{border-bottom:none}.ui.red.header{color:#db2828!important}a.ui.red.header:hover{color:#d01919!important}.ui.red.dividing.header{border-bottom:2px solid #db2828}.ui.inverted.red.header{color:#ff695e!important}a.ui.inverted.red.header:hover{color:#ff5144!important}.ui.orange.header{color:#f2711c!important}a.ui.orange.header:hover{color:#f26202!important}.ui.orange.dividing.header{border-bottom:2px solid #f2711c}.ui.inverted.orange.header{color:#ff851b!important}a.ui.inverted.orange.header:hover{color:#ff7701!important}.ui.olive.header{color:#b5cc18!important}a.ui.olive.header:hover{color:#a7bd0d!important}.ui.olive.dividing.header{border-bottom:2px solid #b5cc18}.ui.inverted.olive.header{color:#d9e778!important}a.ui.inverted.olive.header:hover{color:#d8ea5c!important}.ui.yellow.header{color:#fbbd08!important}a.ui.yellow.header:hover{color:#eaae00!important}.ui.yellow.dividing.header{border-bottom:2px solid #fbbd08}.ui.inverted.yellow.header{color:#ffe21f!important}a.ui.inverted.yellow.header:hover{color:#ffdf05!important}.ui.green.header{color:#21ba45!important}a.ui.green.header:hover{color:#16ab39!important}.ui.green.dividing.header{border-bottom:2px solid #21ba45}.ui.inverted.green.header{color:#2ecc40!important}a.ui.inverted.green.header:hover{color:#22be34!important}.ui.teal.header{color:#00b5ad!important}a.ui.teal.header:hover{color:#009c95!important}.ui.teal.dividing.header{border-bottom:2px solid #00b5ad}.ui.inverted.teal.header{color:#6dffff!important}a.ui.inverted.teal.header:hover{color:#54ffff!important}.ui.blue.header{color:#2185d0!important}a.ui.blue.header:hover{color:#1678c2!important}.ui.blue.dividing.header{border-bottom:2px solid #2185d0}.ui.inverted.blue.header{color:#54c8ff!important}a.ui.inverted.blue.header:hover{color:#3ac0ff!important}.ui.violet.header{color:#6435c9!important}a.ui.violet.header:hover{color:#5829bb!important}.ui.violet.dividing.header{border-bottom:2px solid #6435c9}.ui.inverted.violet.header{color:#a291fb!important}a.ui.inverted.violet.header:hover{color:#8a73ff!important}.ui.purple.header{color:#a333c8!important}a.ui.purple.header:hover{color:#9627ba!important}.ui.purple.dividing.header{border-bottom:2px solid #a333c8}.ui.inverted.purple.header{color:#dc73ff!important}a.ui.inverted.purple.header:hover{color:#d65aff!important}.ui.pink.header{color:#e03997!important}a.ui.pink.header:hover{color:#e61a8d!important}.ui.pink.dividing.header{border-bottom:2px solid #e03997}.ui.inverted.pink.header{color:#ff8edf!important}a.ui.inverted.pink.header:hover{color:#ff74d8!important}.ui.brown.header{color:#a5673f!important}a.ui.brown.header:hover{color:#975b33!important}.ui.brown.dividing.header{border-bottom:2px solid #a5673f}.ui.inverted.brown.header{color:#d67c1c!important}a.ui.inverted.brown.header:hover{color:#c86f11!important}.ui.grey.header{color:#767676!important}a.ui.grey.header:hover{color:#838383!important}.ui.grey.dividing.header{border-bottom:2px solid #767676}.ui.inverted.grey.header{color:#dcddde!important}a.ui.inverted.grey.header:hover{color:#cfd0d2!important}.ui.left.aligned.header{text-align:left}.ui.right.aligned.header{text-align:right}.ui.center.aligned.header,.ui.centered.header{text-align:center}.ui.justified.header{text-align:justify}.ui.justified.header:after{display:inline-block;content:'';width:100%}.ui.floated.header,.ui[class*="left floated"].header{float:left;margin-top:0;margin-right:.5em}.ui[class*="right floated"].header{float:right;margin-top:0;margin-left:.5em}.ui.fitted.header{padding:0}.ui.dividing.header{padding-bottom:.21428571rem;border-bottom:1px solid rgba(34,36,38,.15)}.ui.dividing.header .sub.header{padding-bottom:.21428571rem}.ui.dividing.header .icon{margin-bottom:0}.ui.inverted.dividing.header{border-bottom-color:rgba(255,255,255,.1)}.ui.block.header{background:#f3f4f5;padding:.78571429rem 1rem;box-shadow:none;border:1px solid #d4d4d5;border-radius:.28571429rem}.ui.tiny.block.header{font-size:.85714286rem}.ui.small.block.header{font-size:.92857143rem}.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1rem}.ui.large.block.header{font-size:1.14285714rem}.ui.huge.block.header{font-size:1.42857143rem}.ui.attached.header{background:#fff;padding:.78571429rem 1rem;margin-left:-1px;margin-right:-1px;box-shadow:none;border:1px solid #d4d4d5}.ui.attached.block.header{background:#f3f4f5}.ui.attached:not(.top):not(.bottom).header{margin-top:0;margin-bottom:0;border-top:none;border-radius:0}.ui.top.attached.header{margin-bottom:0;border-radius:.28571429rem .28571429rem 0 0}.ui.bottom.attached.header{margin-top:0;border-top:none;border-radius:0 0 .28571429rem .28571429rem}.ui.tiny.attached.header{font-size:.85714286em}.ui.small.attached.header{font-size:.92857143em}.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1em}.ui.large.attached.header{font-size:1.14285714em}.ui.huge.attached.header{font-size:1.42857143em}.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1.28571429em}
@@ -0,0 +1,3292 @@
1
+ /*!
2
+ * # Semantic UI 2.2.9 - Icon
3
+ * http://github.com/semantic-org/semantic-ui/
4
+ *
5
+ *
6
+ * Released under the MIT license
7
+ * http://opensource.org/licenses/MIT
8
+ *
9
+ */
10
+
11
+
12
+ /*******************************
13
+ Icon
14
+ *******************************/
15
+
16
+ @font-face {
17
+ font-family: 'Icons';
18
+ src: url("./../themes/default/assets/fonts/icons.eot");
19
+ src: url("./../themes/default/assets/fonts/icons.eot?#iefix") format('embedded-opentype'), url("./../themes/default/assets/fonts/icons.woff2") format('woff2'), url("./../themes/default/assets/fonts/icons.woff") format('woff'), url("./../themes/default/assets/fonts/icons.ttf") format('truetype'), url("./../themes/default/assets/fonts/icons.svg#icons") format('svg');
20
+ font-style: normal;
21
+ font-weight: normal;
22
+ font-variant: normal;
23
+ text-decoration: inherit;
24
+ text-transform: none;
25
+ }
26
+ i.icon {
27
+ display: inline-block;
28
+ opacity: 1;
29
+ margin: 0em 0.25rem 0em 0em;
30
+ width: 1.18em;
31
+ height: 1em;
32
+ font-family: 'Icons';
33
+ font-style: normal;
34
+ font-weight: normal;
35
+ text-decoration: inherit;
36
+ text-align: center;
37
+ speak: none;
38
+ font-smoothing: antialiased;
39
+ -moz-osx-font-smoothing: grayscale;
40
+ -webkit-font-smoothing: antialiased;
41
+ -webkit-backface-visibility: hidden;
42
+ backface-visibility: hidden;
43
+ }
44
+ i.icon:before {
45
+ background: none !important;
46
+ }
47
+
48
+
49
+ /*******************************
50
+ Types
51
+ *******************************/
52
+
53
+
54
+ /*--------------
55
+ Loading
56
+ ---------------*/
57
+
58
+ i.icon.loading {
59
+ height: 1em;
60
+ line-height: 1;
61
+ -webkit-animation: icon-loading 2s linear infinite;
62
+ animation: icon-loading 2s linear infinite;
63
+ }
64
+ @-webkit-keyframes icon-loading {
65
+ from {
66
+ -webkit-transform: rotate(0deg);
67
+ transform: rotate(0deg);
68
+ }
69
+ to {
70
+ -webkit-transform: rotate(360deg);
71
+ transform: rotate(360deg);
72
+ }
73
+ }
74
+ @keyframes icon-loading {
75
+ from {
76
+ -webkit-transform: rotate(0deg);
77
+ transform: rotate(0deg);
78
+ }
79
+ to {
80
+ -webkit-transform: rotate(360deg);
81
+ transform: rotate(360deg);
82
+ }
83
+ }
84
+
85
+
86
+ /*******************************
87
+ States
88
+ *******************************/
89
+
90
+ i.icon.hover {
91
+ opacity: 1 !important;
92
+ }
93
+ i.icon.active {
94
+ opacity: 1 !important;
95
+ }
96
+ i.emphasized.icon {
97
+ opacity: 1 !important;
98
+ }
99
+ i.disabled.icon {
100
+ opacity: 0.45 !important;
101
+ }
102
+
103
+
104
+ /*******************************
105
+ Variations
106
+ *******************************/
107
+
108
+
109
+ /*-------------------
110
+ Fitted
111
+ --------------------*/
112
+
113
+ i.fitted.icon {
114
+ width: auto;
115
+ margin: 0em;
116
+ }
117
+
118
+ /*-------------------
119
+ Link
120
+ --------------------*/
121
+
122
+ i.link.icon,
123
+ i.link.icons {
124
+ cursor: pointer;
125
+ opacity: 0.8;
126
+ -webkit-transition: opacity 0.1s ease;
127
+ transition: opacity 0.1s ease;
128
+ }
129
+ i.link.icon:hover,
130
+ i.link.icons:hover {
131
+ opacity: 1 !important;
132
+ }
133
+
134
+ /*-------------------
135
+ Circular
136
+ --------------------*/
137
+
138
+ i.circular.icon {
139
+ border-radius: 500em !important;
140
+ line-height: 1 !important;
141
+ padding: 0.5em 0.5em !important;
142
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
143
+ width: 2em !important;
144
+ height: 2em !important;
145
+ }
146
+ i.circular.inverted.icon {
147
+ border: none;
148
+ box-shadow: none;
149
+ }
150
+
151
+ /*-------------------
152
+ Flipped
153
+ --------------------*/
154
+
155
+ i.flipped.icon,
156
+ i.horizontally.flipped.icon {
157
+ -webkit-transform: scale(-1, 1);
158
+ transform: scale(-1, 1);
159
+ }
160
+ i.vertically.flipped.icon {
161
+ -webkit-transform: scale(1, -1);
162
+ transform: scale(1, -1);
163
+ }
164
+
165
+ /*-------------------
166
+ Rotated
167
+ --------------------*/
168
+
169
+ i.rotated.icon,
170
+ i.right.rotated.icon,
171
+ i.clockwise.rotated.icon {
172
+ -webkit-transform: rotate(90deg);
173
+ transform: rotate(90deg);
174
+ }
175
+ i.left.rotated.icon,
176
+ i.counterclockwise.rotated.icon {
177
+ -webkit-transform: rotate(-90deg);
178
+ transform: rotate(-90deg);
179
+ }
180
+
181
+ /*-------------------
182
+ Bordered
183
+ --------------------*/
184
+
185
+ i.bordered.icon {
186
+ line-height: 1;
187
+ vertical-align: baseline;
188
+ width: 2em;
189
+ height: 2em;
190
+ padding: 0.5em 0.41em !important;
191
+ box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
192
+ }
193
+ i.bordered.inverted.icon {
194
+ border: none;
195
+ box-shadow: none;
196
+ }
197
+
198
+ /*-------------------
199
+ Inverted
200
+ --------------------*/
201
+
202
+
203
+ /* Inverted Shapes */
204
+ i.inverted.bordered.icon,
205
+ i.inverted.circular.icon {
206
+ background-color: #1B1C1D !important;
207
+ color: #FFFFFF !important;
208
+ }
209
+ i.inverted.icon {
210
+ color: #FFFFFF;
211
+ }
212
+
213
+ /*-------------------
214
+ Colors
215
+ --------------------*/
216
+
217
+
218
+ /* Red */
219
+ i.red.icon {
220
+ color: #DB2828 !important;
221
+ }
222
+ i.inverted.red.icon {
223
+ color: #FF695E !important;
224
+ }
225
+ i.inverted.bordered.red.icon,
226
+ i.inverted.circular.red.icon {
227
+ background-color: #DB2828 !important;
228
+ color: #FFFFFF !important;
229
+ }
230
+
231
+ /* Orange */
232
+ i.orange.icon {
233
+ color: #F2711C !important;
234
+ }
235
+ i.inverted.orange.icon {
236
+ color: #FF851B !important;
237
+ }
238
+ i.inverted.bordered.orange.icon,
239
+ i.inverted.circular.orange.icon {
240
+ background-color: #F2711C !important;
241
+ color: #FFFFFF !important;
242
+ }
243
+
244
+ /* Yellow */
245
+ i.yellow.icon {
246
+ color: #FBBD08 !important;
247
+ }
248
+ i.inverted.yellow.icon {
249
+ color: #FFE21F !important;
250
+ }
251
+ i.inverted.bordered.yellow.icon,
252
+ i.inverted.circular.yellow.icon {
253
+ background-color: #FBBD08 !important;
254
+ color: #FFFFFF !important;
255
+ }
256
+
257
+ /* Olive */
258
+ i.olive.icon {
259
+ color: #B5CC18 !important;
260
+ }
261
+ i.inverted.olive.icon {
262
+ color: #D9E778 !important;
263
+ }
264
+ i.inverted.bordered.olive.icon,
265
+ i.inverted.circular.olive.icon {
266
+ background-color: #B5CC18 !important;
267
+ color: #FFFFFF !important;
268
+ }
269
+
270
+ /* Green */
271
+ i.green.icon {
272
+ color: #21BA45 !important;
273
+ }
274
+ i.inverted.green.icon {
275
+ color: #2ECC40 !important;
276
+ }
277
+ i.inverted.bordered.green.icon,
278
+ i.inverted.circular.green.icon {
279
+ background-color: #21BA45 !important;
280
+ color: #FFFFFF !important;
281
+ }
282
+
283
+ /* Teal */
284
+ i.teal.icon {
285
+ color: #00B5AD !important;
286
+ }
287
+ i.inverted.teal.icon {
288
+ color: #6DFFFF !important;
289
+ }
290
+ i.inverted.bordered.teal.icon,
291
+ i.inverted.circular.teal.icon {
292
+ background-color: #00B5AD !important;
293
+ color: #FFFFFF !important;
294
+ }
295
+
296
+ /* Blue */
297
+ i.blue.icon {
298
+ color: #2185D0 !important;
299
+ }
300
+ i.inverted.blue.icon {
301
+ color: #54C8FF !important;
302
+ }
303
+ i.inverted.bordered.blue.icon,
304
+ i.inverted.circular.blue.icon {
305
+ background-color: #2185D0 !important;
306
+ color: #FFFFFF !important;
307
+ }
308
+
309
+ /* Violet */
310
+ i.violet.icon {
311
+ color: #6435C9 !important;
312
+ }
313
+ i.inverted.violet.icon {
314
+ color: #A291FB !important;
315
+ }
316
+ i.inverted.bordered.violet.icon,
317
+ i.inverted.circular.violet.icon {
318
+ background-color: #6435C9 !important;
319
+ color: #FFFFFF !important;
320
+ }
321
+
322
+ /* Purple */
323
+ i.purple.icon {
324
+ color: #A333C8 !important;
325
+ }
326
+ i.inverted.purple.icon {
327
+ color: #DC73FF !important;
328
+ }
329
+ i.inverted.bordered.purple.icon,
330
+ i.inverted.circular.purple.icon {
331
+ background-color: #A333C8 !important;
332
+ color: #FFFFFF !important;
333
+ }
334
+
335
+ /* Pink */
336
+ i.pink.icon {
337
+ color: #E03997 !important;
338
+ }
339
+ i.inverted.pink.icon {
340
+ color: #FF8EDF !important;
341
+ }
342
+ i.inverted.bordered.pink.icon,
343
+ i.inverted.circular.pink.icon {
344
+ background-color: #E03997 !important;
345
+ color: #FFFFFF !important;
346
+ }
347
+
348
+ /* Brown */
349
+ i.brown.icon {
350
+ color: #A5673F !important;
351
+ }
352
+ i.inverted.brown.icon {
353
+ color: #D67C1C !important;
354
+ }
355
+ i.inverted.bordered.brown.icon,
356
+ i.inverted.circular.brown.icon {
357
+ background-color: #A5673F !important;
358
+ color: #FFFFFF !important;
359
+ }
360
+
361
+ /* Grey */
362
+ i.grey.icon {
363
+ color: #767676 !important;
364
+ }
365
+ i.inverted.grey.icon {
366
+ color: #DCDDDE !important;
367
+ }
368
+ i.inverted.bordered.grey.icon,
369
+ i.inverted.circular.grey.icon {
370
+ background-color: #767676 !important;
371
+ color: #FFFFFF !important;
372
+ }
373
+
374
+ /* Black */
375
+ i.black.icon {
376
+ color: #1B1C1D !important;
377
+ }
378
+ i.inverted.black.icon {
379
+ color: #545454 !important;
380
+ }
381
+ i.inverted.bordered.black.icon,
382
+ i.inverted.circular.black.icon {
383
+ background-color: #1B1C1D !important;
384
+ color: #FFFFFF !important;
385
+ }
386
+
387
+ /*-------------------
388
+ Sizes
389
+ --------------------*/
390
+
391
+ i.mini.icon,
392
+ i.mini.icons {
393
+ line-height: 1;
394
+ font-size: 0.4em;
395
+ }
396
+ i.tiny.icon,
397
+ i.tiny.icons {
398
+ line-height: 1;
399
+ font-size: 0.5em;
400
+ }
401
+ i.small.icon,
402
+ i.small.icons {
403
+ line-height: 1;
404
+ font-size: 0.75em;
405
+ }
406
+ i.icon,
407
+ i.icons {
408
+ font-size: 1em;
409
+ }
410
+ i.large.icon,
411
+ i.large.icons {
412
+ line-height: 1;
413
+ vertical-align: middle;
414
+ font-size: 1.5em;
415
+ }
416
+ i.big.icon,
417
+ i.big.icons {
418
+ line-height: 1;
419
+ vertical-align: middle;
420
+ font-size: 2em;
421
+ }
422
+ i.huge.icon,
423
+ i.huge.icons {
424
+ line-height: 1;
425
+ vertical-align: middle;
426
+ font-size: 4em;
427
+ }
428
+ i.massive.icon,
429
+ i.massive.icons {
430
+ line-height: 1;
431
+ vertical-align: middle;
432
+ font-size: 8em;
433
+ }
434
+
435
+
436
+ /*******************************
437
+ Groups
438
+ *******************************/
439
+
440
+ i.icons {
441
+ display: inline-block;
442
+ position: relative;
443
+ line-height: 1;
444
+ }
445
+ i.icons .icon {
446
+ position: absolute;
447
+ top: 50%;
448
+ left: 50%;
449
+ -webkit-transform: translateX(-50%) translateY(-50%);
450
+ transform: translateX(-50%) translateY(-50%);
451
+ margin: 0em;
452
+ margin: 0;
453
+ }
454
+ i.icons .icon:first-child {
455
+ position: static;
456
+ width: auto;
457
+ height: auto;
458
+ vertical-align: top;
459
+ -webkit-transform: none;
460
+ transform: none;
461
+ margin-right: 0.25rem;
462
+ }
463
+
464
+ /* Corner Icon */
465
+ i.icons .corner.icon {
466
+ top: auto;
467
+ left: auto;
468
+ right: 0;
469
+ bottom: 0;
470
+ -webkit-transform: none;
471
+ transform: none;
472
+ font-size: 0.45em;
473
+ text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
474
+ }
475
+ i.icons .inverted.corner.icon {
476
+ text-shadow: -1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D;
477
+ }
478
+ /*
479
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
480
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
481
+ */
482
+
483
+
484
+ /*******************************
485
+
486
+ Semantic-UI integration of font-awesome :
487
+
488
+ ///class names are separated
489
+ i.icon.circle => i.icon.circle
490
+ i.icon.circle-o => i.icon.circle.outline
491
+
492
+ //abbreviation are replaced by full letters:
493
+ i.icon.ellipsis-h => i.icon.ellipsis.horizontal
494
+ i.icon.ellipsis-v => i.icon.ellipsis.vertical
495
+ .alpha => .i.icon.alphabet
496
+ .asc => .i.icon.ascending
497
+ .desc => .i.icon.descending
498
+ .alt =>.alternate
499
+
500
+ ASCII order is conserved for easier maintenance.
501
+
502
+ Icons that only have one style 'outline', 'square' etc do not require this class
503
+ for instance `lemon icon` not `lemon outline icon` since there is only one lemon
504
+
505
+ *******************************/
506
+
507
+
508
+
509
+ /*******************************
510
+ Icons
511
+ *******************************/
512
+
513
+
514
+ /* Web Content */
515
+ i.icon.search:before {
516
+ content: "\f002";
517
+ }
518
+ i.icon.mail.outline:before {
519
+ content: "\f003";
520
+ }
521
+ i.icon.signal:before {
522
+ content: "\f012";
523
+ }
524
+ i.icon.setting:before {
525
+ content: "\f013";
526
+ }
527
+ i.icon.home:before {
528
+ content: "\f015";
529
+ }
530
+ i.icon.inbox:before {
531
+ content: "\f01c";
532
+ }
533
+ i.icon.browser:before {
534
+ content: "\f022";
535
+ }
536
+ i.icon.tag:before {
537
+ content: "\f02b";
538
+ }
539
+ i.icon.tags:before {
540
+ content: "\f02c";
541
+ }
542
+ i.icon.image:before {
543
+ content: "\f03e";
544
+ }
545
+ i.icon.calendar:before {
546
+ content: "\f073";
547
+ }
548
+ i.icon.comment:before {
549
+ content: "\f075";
550
+ }
551
+ i.icon.shop:before {
552
+ content: "\f07a";
553
+ }
554
+ i.icon.comments:before {
555
+ content: "\f086";
556
+ }
557
+ i.icon.external:before {
558
+ content: "\f08e";
559
+ }
560
+ i.icon.privacy:before {
561
+ content: "\f084";
562
+ }
563
+ i.icon.settings:before {
564
+ content: "\f085";
565
+ }
566
+ i.icon.comments:before {
567
+ content: "\f086";
568
+ }
569
+ i.icon.external:before {
570
+ content: "\f08e";
571
+ }
572
+ i.icon.trophy:before {
573
+ content: "\f091";
574
+ }
575
+ i.icon.payment:before {
576
+ content: "\f09d";
577
+ }
578
+ i.icon.feed:before {
579
+ content: "\f09e";
580
+ }
581
+ i.icon.alarm.outline:before {
582
+ content: "\f0a2";
583
+ }
584
+ i.icon.tasks:before {
585
+ content: "\f0ae";
586
+ }
587
+ i.icon.cloud:before {
588
+ content: "\f0c2";
589
+ }
590
+ i.icon.lab:before {
591
+ content: "\f0c3";
592
+ }
593
+ i.icon.mail:before {
594
+ content: "\f0e0";
595
+ }
596
+ i.icon.dashboard:before {
597
+ content: "\f0e4";
598
+ }
599
+ i.icon.comment.outline:before {
600
+ content: "\f0e5";
601
+ }
602
+ i.icon.comments.outline:before {
603
+ content: "\f0e6";
604
+ }
605
+ i.icon.sitemap:before {
606
+ content: "\f0e8";
607
+ }
608
+ i.icon.idea:before {
609
+ content: "\f0eb";
610
+ }
611
+ i.icon.alarm:before {
612
+ content: "\f0f3";
613
+ }
614
+ i.icon.terminal:before {
615
+ content: "\f120";
616
+ }
617
+ i.icon.code:before {
618
+ content: "\f121";
619
+ }
620
+ i.icon.protect:before {
621
+ content: "\f132";
622
+ }
623
+ i.icon.calendar.outline:before {
624
+ content: "\f133";
625
+ }
626
+ i.icon.ticket:before {
627
+ content: "\f145";
628
+ }
629
+ i.icon.external.square:before {
630
+ content: "\f14c";
631
+ }
632
+ i.icon.bug:before {
633
+ content: "\f188";
634
+ }
635
+ i.icon.mail.square:before {
636
+ content: "\f199";
637
+ }
638
+ i.icon.history:before {
639
+ content: "\f1da";
640
+ }
641
+ i.icon.options:before {
642
+ content: "\f1de";
643
+ }
644
+ i.icon.text.telephone:before {
645
+ content: "\f1e4";
646
+ }
647
+ i.icon.find:before {
648
+ content: "\f1e5";
649
+ }
650
+ i.icon.alarm.mute:before {
651
+ content: "\f1f6";
652
+ }
653
+ i.icon.alarm.mute.outline:before {
654
+ content: "\f1f7";
655
+ }
656
+ i.icon.copyright:before {
657
+ content: "\f1f9";
658
+ }
659
+ i.icon.at:before {
660
+ content: "\f1fa";
661
+ }
662
+ i.icon.eyedropper:before {
663
+ content: "\f1fb";
664
+ }
665
+ i.icon.paint.brush:before {
666
+ content: "\f1fc";
667
+ }
668
+ i.icon.heartbeat:before {
669
+ content: "\f21e";
670
+ }
671
+ i.icon.mouse.pointer:before {
672
+ content: "\f245";
673
+ }
674
+ i.icon.hourglass.empty:before {
675
+ content: "\f250";
676
+ }
677
+ i.icon.hourglass.start:before {
678
+ content: "\f251";
679
+ }
680
+ i.icon.hourglass.half:before {
681
+ content: "\f252";
682
+ }
683
+ i.icon.hourglass.end:before {
684
+ content: "\f253";
685
+ }
686
+ i.icon.hourglass.full:before {
687
+ content: "\f254";
688
+ }
689
+ i.icon.hand.pointer:before {
690
+ content: "\f25a";
691
+ }
692
+ i.icon.trademark:before {
693
+ content: "\f25c";
694
+ }
695
+ i.icon.registered:before {
696
+ content: "\f25d";
697
+ }
698
+ i.icon.creative.commons:before {
699
+ content: "\f25e";
700
+ }
701
+ i.icon.add.to.calendar:before {
702
+ content: "\f271";
703
+ }
704
+ i.icon.remove.from.calendar:before {
705
+ content: "\f272";
706
+ }
707
+ i.icon.delete.calendar:before {
708
+ content: "\f273";
709
+ }
710
+ i.icon.checked.calendar:before {
711
+ content: "\f274";
712
+ }
713
+ i.icon.industry:before {
714
+ content: "\f275";
715
+ }
716
+ i.icon.shopping.bag:before {
717
+ content: "\f290";
718
+ }
719
+ i.icon.shopping.basket:before {
720
+ content: "\f291";
721
+ }
722
+ i.icon.hashtag:before {
723
+ content: "\f292";
724
+ }
725
+ i.icon.percent:before {
726
+ content: "\f295";
727
+ }
728
+ i.icon.handshake:before {
729
+ content: "\f2b5";
730
+ }
731
+ i.icon.open.envelope:before {
732
+ content: "\f2b6";
733
+ }
734
+ i.icon.open.envelope.outline:before {
735
+ content: "\f2b7";
736
+ }
737
+ i.icon.address.book:before {
738
+ content: "\f2b9";
739
+ }
740
+ i.icon.address.book.outline:before {
741
+ content: "\f2ba";
742
+ }
743
+ i.icon.address.card:before {
744
+ content: "\f2bb";
745
+ }
746
+ i.icon.address.card.outline:before {
747
+ content: "\f2bc";
748
+ }
749
+ i.icon.id.badge:before {
750
+ content: "\f2c1";
751
+ }
752
+ i.icon.id.card:before {
753
+ content: "\f2c2";
754
+ }
755
+ i.icon.id.card.outline:before {
756
+ content: "\f2c3";
757
+ }
758
+ i.icon.podcast:before {
759
+ content: "\f2ce";
760
+ }
761
+ i.icon.window.maximize:before {
762
+ content: "\f2d0";
763
+ }
764
+ i.icon.window.minimize:before {
765
+ content: "\f2d1";
766
+ }
767
+ i.icon.window.restore:before {
768
+ content: "\f2d2";
769
+ }
770
+ i.icon.window.close:before {
771
+ content: "\f2d3";
772
+ }
773
+ i.icon.window.close.outline:before {
774
+ content: "\f2d4";
775
+ }
776
+
777
+ /* User Actions */
778
+ i.icon.wait:before {
779
+ content: "\f017";
780
+ }
781
+ i.icon.download:before {
782
+ content: "\f019";
783
+ }
784
+ i.icon.repeat:before {
785
+ content: "\f01e";
786
+ }
787
+ i.icon.refresh:before {
788
+ content: "\f021";
789
+ }
790
+ i.icon.lock:before {
791
+ content: "\f023";
792
+ }
793
+ i.icon.bookmark:before {
794
+ content: "\f02e";
795
+ }
796
+ i.icon.print:before {
797
+ content: "\f02f";
798
+ }
799
+ i.icon.write:before {
800
+ content: "\f040";
801
+ }
802
+ i.icon.adjust:before {
803
+ content: "\f042";
804
+ }
805
+ i.icon.theme:before {
806
+ content: "\f043";
807
+ }
808
+ i.icon.edit:before {
809
+ content: "\f044";
810
+ }
811
+ i.icon.external.share:before {
812
+ content: "\f045";
813
+ }
814
+ i.icon.ban:before {
815
+ content: "\f05e";
816
+ }
817
+ i.icon.mail.forward:before {
818
+ content: "\f064";
819
+ }
820
+ i.icon.share:before {
821
+ content: "\f064";
822
+ }
823
+ i.icon.expand:before {
824
+ content: "\f065";
825
+ }
826
+ i.icon.compress:before {
827
+ content: "\f066";
828
+ }
829
+ i.icon.unhide:before {
830
+ content: "\f06e";
831
+ }
832
+ i.icon.hide:before {
833
+ content: "\f070";
834
+ }
835
+ i.icon.random:before {
836
+ content: "\f074";
837
+ }
838
+ i.icon.retweet:before {
839
+ content: "\f079";
840
+ }
841
+ i.icon.sign.out:before {
842
+ content: "\f08b";
843
+ }
844
+ i.icon.pin:before {
845
+ content: "\f08d";
846
+ }
847
+ i.icon.sign.in:before {
848
+ content: "\f090";
849
+ }
850
+ i.icon.upload:before {
851
+ content: "\f093";
852
+ }
853
+ i.icon.call:before {
854
+ content: "\f095";
855
+ }
856
+ i.icon.remove.bookmark:before {
857
+ content: "\f097";
858
+ }
859
+ i.icon.call.square:before {
860
+ content: "\f098";
861
+ }
862
+ i.icon.unlock:before {
863
+ content: "\f09c";
864
+ }
865
+ i.icon.configure:before {
866
+ content: "\f0ad";
867
+ }
868
+ i.icon.filter:before {
869
+ content: "\f0b0";
870
+ }
871
+ i.icon.wizard:before {
872
+ content: "\f0d0";
873
+ }
874
+ i.icon.undo:before {
875
+ content: "\f0e2";
876
+ }
877
+ i.icon.exchange:before {
878
+ content: "\f0ec";
879
+ }
880
+ i.icon.cloud.download:before {
881
+ content: "\f0ed";
882
+ }
883
+ i.icon.cloud.upload:before {
884
+ content: "\f0ee";
885
+ }
886
+ i.icon.reply:before {
887
+ content: "\f112";
888
+ }
889
+ i.icon.reply.all:before {
890
+ content: "\f122";
891
+ }
892
+ i.icon.erase:before {
893
+ content: "\f12d";
894
+ }
895
+ i.icon.unlock.alternate:before {
896
+ content: "\f13e";
897
+ }
898
+ i.icon.write.square:before {
899
+ content: "\f14b";
900
+ }
901
+ i.icon.share.square:before {
902
+ content: "\f14d";
903
+ }
904
+ i.icon.archive:before {
905
+ content: "\f187";
906
+ }
907
+ i.icon.translate:before {
908
+ content: "\f1ab";
909
+ }
910
+ i.icon.recycle:before {
911
+ content: "\f1b8";
912
+ }
913
+ i.icon.send:before {
914
+ content: "\f1d8";
915
+ }
916
+ i.icon.send.outline:before {
917
+ content: "\f1d9";
918
+ }
919
+ i.icon.share.alternate:before {
920
+ content: "\f1e0";
921
+ }
922
+ i.icon.share.alternate.square:before {
923
+ content: "\f1e1";
924
+ }
925
+ i.icon.add.to.cart:before {
926
+ content: "\f217";
927
+ }
928
+ i.icon.in.cart:before {
929
+ content: "\f218";
930
+ }
931
+ i.icon.add.user:before {
932
+ content: "\f234";
933
+ }
934
+ i.icon.remove.user:before {
935
+ content: "\f235";
936
+ }
937
+ i.icon.object.group:before {
938
+ content: "\f247";
939
+ }
940
+ i.icon.object.ungroup:before {
941
+ content: "\f248";
942
+ }
943
+ i.icon.clone:before {
944
+ content: "\f24d";
945
+ }
946
+ i.icon.talk:before {
947
+ content: "\f27a";
948
+ }
949
+ i.icon.talk.outline:before {
950
+ content: "\f27b";
951
+ }
952
+
953
+ /* Messages */
954
+ i.icon.help.circle:before {
955
+ content: "\f059";
956
+ }
957
+ i.icon.info.circle:before {
958
+ content: "\f05a";
959
+ }
960
+ i.icon.warning.circle:before {
961
+ content: "\f06a";
962
+ }
963
+ i.icon.warning.sign:before {
964
+ content: "\f071";
965
+ }
966
+ i.icon.announcement:before {
967
+ content: "\f0a1";
968
+ }
969
+ i.icon.help:before {
970
+ content: "\f128";
971
+ }
972
+ i.icon.info:before {
973
+ content: "\f129";
974
+ }
975
+ i.icon.warning:before {
976
+ content: "\f12a";
977
+ }
978
+ i.icon.birthday:before {
979
+ content: "\f1fd";
980
+ }
981
+ i.icon.help.circle.outline:before {
982
+ content: "\f29c";
983
+ }
984
+
985
+ /* Users */
986
+ i.icon.user:before {
987
+ content: "\f007";
988
+ }
989
+ i.icon.users:before {
990
+ content: "\f0c0";
991
+ }
992
+ i.icon.doctor:before {
993
+ content: "\f0f0";
994
+ }
995
+ i.icon.handicap:before {
996
+ content: "\f193";
997
+ }
998
+ i.icon.student:before {
999
+ content: "\f19d";
1000
+ }
1001
+ i.icon.child:before {
1002
+ content: "\f1ae";
1003
+ }
1004
+ i.icon.spy:before {
1005
+ content: "\f21b";
1006
+ }
1007
+ i.icon.user.circle:before {
1008
+ content: "\f2bd";
1009
+ }
1010
+ i.icon.user.circle.outline:before {
1011
+ content: "\f2be";
1012
+ }
1013
+ i.icon.user.outline:before {
1014
+ content: "\f2c0";
1015
+ }
1016
+
1017
+ /* Gender & Sexuality */
1018
+ i.icon.female:before {
1019
+ content: "\f182";
1020
+ }
1021
+ i.icon.male:before {
1022
+ content: "\f183";
1023
+ }
1024
+ i.icon.woman:before {
1025
+ content: "\f221";
1026
+ }
1027
+ i.icon.man:before {
1028
+ content: "\f222";
1029
+ }
1030
+ i.icon.non.binary.transgender:before {
1031
+ content: "\f223";
1032
+ }
1033
+ i.icon.intergender:before {
1034
+ content: "\f224";
1035
+ }
1036
+ i.icon.transgender:before {
1037
+ content: "\f225";
1038
+ }
1039
+ i.icon.lesbian:before {
1040
+ content: "\f226";
1041
+ }
1042
+ i.icon.gay:before {
1043
+ content: "\f227";
1044
+ }
1045
+ i.icon.heterosexual:before {
1046
+ content: "\f228";
1047
+ }
1048
+ i.icon.other.gender:before {
1049
+ content: "\f229";
1050
+ }
1051
+ i.icon.other.gender.vertical:before {
1052
+ content: "\f22a";
1053
+ }
1054
+ i.icon.other.gender.horizontal:before {
1055
+ content: "\f22b";
1056
+ }
1057
+ i.icon.neuter:before {
1058
+ content: "\f22c";
1059
+ }
1060
+ i.icon.genderless:before {
1061
+ content: "\f22d";
1062
+ }
1063
+
1064
+ /* Accessibility */
1065
+ i.icon.universal.access:before {
1066
+ content: "\f29a";
1067
+ }
1068
+ i.icon.wheelchair:before {
1069
+ content: "\f29b";
1070
+ }
1071
+ i.icon.blind:before {
1072
+ content: "\f29d";
1073
+ }
1074
+ i.icon.audio.description:before {
1075
+ content: "\f29e";
1076
+ }
1077
+ i.icon.volume.control.phone:before {
1078
+ content: "\f2a0";
1079
+ }
1080
+ i.icon.braille:before {
1081
+ content: "\f2a1";
1082
+ }
1083
+ i.icon.asl:before {
1084
+ content: "\f2a3";
1085
+ }
1086
+ i.icon.assistive.listening.systems:before {
1087
+ content: "\f2a2";
1088
+ }
1089
+ i.icon.deafness:before {
1090
+ content: "\f2a4";
1091
+ }
1092
+ i.icon.sign.language:before {
1093
+ content: "\f2a7";
1094
+ }
1095
+ i.icon.low.vision:before {
1096
+ content: "\f2a8";
1097
+ }
1098
+
1099
+ /* View Adjustment */
1100
+ i.icon.block.layout:before {
1101
+ content: "\f009";
1102
+ }
1103
+ i.icon.grid.layout:before {
1104
+ content: "\f00a";
1105
+ }
1106
+ i.icon.list.layout:before {
1107
+ content: "\f00b";
1108
+ }
1109
+ i.icon.zoom:before {
1110
+ content: "\f00e";
1111
+ }
1112
+ i.icon.zoom.out:before {
1113
+ content: "\f010";
1114
+ }
1115
+ i.icon.resize.vertical:before {
1116
+ content: "\f07d";
1117
+ }
1118
+ i.icon.resize.horizontal:before {
1119
+ content: "\f07e";
1120
+ }
1121
+ i.icon.maximize:before {
1122
+ content: "\f0b2";
1123
+ }
1124
+ i.icon.crop:before {
1125
+ content: "\f125";
1126
+ }
1127
+
1128
+ /* Literal Objects */
1129
+ i.icon.cocktail:before {
1130
+ content: "\f000";
1131
+ }
1132
+ i.icon.road:before {
1133
+ content: "\f018";
1134
+ }
1135
+ i.icon.flag:before {
1136
+ content: "\f024";
1137
+ }
1138
+ i.icon.book:before {
1139
+ content: "\f02d";
1140
+ }
1141
+ i.icon.gift:before {
1142
+ content: "\f06b";
1143
+ }
1144
+ i.icon.leaf:before {
1145
+ content: "\f06c";
1146
+ }
1147
+ i.icon.fire:before {
1148
+ content: "\f06d";
1149
+ }
1150
+ i.icon.plane:before {
1151
+ content: "\f072";
1152
+ }
1153
+ i.icon.magnet:before {
1154
+ content: "\f076";
1155
+ }
1156
+ i.icon.lemon:before {
1157
+ content: "\f094";
1158
+ }
1159
+ i.icon.world:before {
1160
+ content: "\f0ac";
1161
+ }
1162
+ i.icon.travel:before {
1163
+ content: "\f0b1";
1164
+ }
1165
+ i.icon.shipping:before {
1166
+ content: "\f0d1";
1167
+ }
1168
+ i.icon.money:before {
1169
+ content: "\f0d6";
1170
+ }
1171
+ i.icon.legal:before {
1172
+ content: "\f0e3";
1173
+ }
1174
+ i.icon.lightning:before {
1175
+ content: "\f0e7";
1176
+ }
1177
+ i.icon.umbrella:before {
1178
+ content: "\f0e9";
1179
+ }
1180
+ i.icon.treatment:before {
1181
+ content: "\f0f1";
1182
+ }
1183
+ i.icon.suitcase:before {
1184
+ content: "\f0f2";
1185
+ }
1186
+ i.icon.bar:before {
1187
+ content: "\f0fc";
1188
+ }
1189
+ i.icon.flag.outline:before {
1190
+ content: "\f11d";
1191
+ }
1192
+ i.icon.flag.checkered:before {
1193
+ content: "\f11e";
1194
+ }
1195
+ i.icon.puzzle:before {
1196
+ content: "\f12e";
1197
+ }
1198
+ i.icon.fire.extinguisher:before {
1199
+ content: "\f134";
1200
+ }
1201
+ i.icon.rocket:before {
1202
+ content: "\f135";
1203
+ }
1204
+ i.icon.anchor:before {
1205
+ content: "\f13d";
1206
+ }
1207
+ i.icon.bullseye:before {
1208
+ content: "\f140";
1209
+ }
1210
+ i.icon.sun:before {
1211
+ content: "\f185";
1212
+ }
1213
+ i.icon.moon:before {
1214
+ content: "\f186";
1215
+ }
1216
+ i.icon.fax:before {
1217
+ content: "\f1ac";
1218
+ }
1219
+ i.icon.life.ring:before {
1220
+ content: "\f1cd";
1221
+ }
1222
+ i.icon.bomb:before {
1223
+ content: "\f1e2";
1224
+ }
1225
+ i.icon.soccer:before {
1226
+ content: "\f1e3";
1227
+ }
1228
+ i.icon.calculator:before {
1229
+ content: "\f1ec";
1230
+ }
1231
+ i.icon.diamond:before {
1232
+ content: "\f219";
1233
+ }
1234
+ i.icon.sticky.note:before {
1235
+ content: "\f249";
1236
+ }
1237
+ i.icon.sticky.note.outline:before {
1238
+ content: "\f24a";
1239
+ }
1240
+ i.icon.law:before {
1241
+ content: "\f24e";
1242
+ }
1243
+ i.icon.hand.peace:before {
1244
+ content: "\f25b";
1245
+ }
1246
+ i.icon.hand.rock:before {
1247
+ content: "\f255";
1248
+ }
1249
+ i.icon.hand.paper:before {
1250
+ content: "\f256";
1251
+ }
1252
+ i.icon.hand.scissors:before {
1253
+ content: "\f257";
1254
+ }
1255
+ i.icon.hand.lizard:before {
1256
+ content: "\f258";
1257
+ }
1258
+ i.icon.hand.spock:before {
1259
+ content: "\f259";
1260
+ }
1261
+ i.icon.tv:before {
1262
+ content: "\f26c";
1263
+ }
1264
+ i.icon.thermometer.full:before {
1265
+ content: "\f2c7";
1266
+ }
1267
+ i.icon.thermometer.three.quarters:before {
1268
+ content: "\f2c8";
1269
+ }
1270
+ i.icon.thermometer.half:before {
1271
+ content: "\f2c9";
1272
+ }
1273
+ i.icon.thermometer.quarter:before {
1274
+ content: "\f2ca";
1275
+ }
1276
+ i.icon.thermometer.empty:before {
1277
+ content: "\f2cb";
1278
+ }
1279
+ i.icon.shower:before {
1280
+ content: "\f2cc";
1281
+ }
1282
+ i.icon.bathtub:before {
1283
+ content: "\f2cd";
1284
+ }
1285
+ i.icon.snowflake:before {
1286
+ content: "\f2dc";
1287
+ }
1288
+
1289
+ /* Shapes */
1290
+ i.icon.crosshairs:before {
1291
+ content: "\f05b";
1292
+ }
1293
+ i.icon.asterisk:before {
1294
+ content: "\f069";
1295
+ }
1296
+ i.icon.square.outline:before {
1297
+ content: "\f096";
1298
+ }
1299
+ i.icon.certificate:before {
1300
+ content: "\f0a3";
1301
+ }
1302
+ i.icon.square:before {
1303
+ content: "\f0c8";
1304
+ }
1305
+ i.icon.quote.left:before {
1306
+ content: "\f10d";
1307
+ }
1308
+ i.icon.quote.right:before {
1309
+ content: "\f10e";
1310
+ }
1311
+ i.icon.spinner:before {
1312
+ content: "\f110";
1313
+ }
1314
+ i.icon.circle:before {
1315
+ content: "\f111";
1316
+ }
1317
+ i.icon.ellipsis.horizontal:before {
1318
+ content: "\f141";
1319
+ }
1320
+ i.icon.ellipsis.vertical:before {
1321
+ content: "\f142";
1322
+ }
1323
+ i.icon.cube:before {
1324
+ content: "\f1b2";
1325
+ }
1326
+ i.icon.cubes:before {
1327
+ content: "\f1b3";
1328
+ }
1329
+ i.icon.circle.notched:before {
1330
+ content: "\f1ce";
1331
+ }
1332
+ i.icon.circle.thin:before {
1333
+ content: "\f1db";
1334
+ }
1335
+
1336
+ /* Item Selection */
1337
+ i.icon.checkmark:before {
1338
+ content: "\f00c";
1339
+ }
1340
+ i.icon.remove:before {
1341
+ content: "\f00d";
1342
+ }
1343
+ i.icon.checkmark.box:before {
1344
+ content: "\f046";
1345
+ }
1346
+ i.icon.move:before {
1347
+ content: "\f047";
1348
+ }
1349
+ i.icon.add.circle:before {
1350
+ content: "\f055";
1351
+ }
1352
+ i.icon.minus.circle:before {
1353
+ content: "\f056";
1354
+ }
1355
+ i.icon.remove.circle:before {
1356
+ content: "\f057";
1357
+ }
1358
+ i.icon.check.circle:before {
1359
+ content: "\f058";
1360
+ }
1361
+ i.icon.remove.circle.outline:before {
1362
+ content: "\f05c";
1363
+ }
1364
+ i.icon.check.circle.outline:before {
1365
+ content: "\f05d";
1366
+ }
1367
+ i.icon.plus:before {
1368
+ content: "\f067";
1369
+ }
1370
+ i.icon.minus:before {
1371
+ content: "\f068";
1372
+ }
1373
+ i.icon.add.square:before {
1374
+ content: "\f0fe";
1375
+ }
1376
+ i.icon.radio:before {
1377
+ content: "\f10c";
1378
+ }
1379
+ i.icon.minus.square:before {
1380
+ content: "\f146";
1381
+ }
1382
+ i.icon.minus.square.outline:before {
1383
+ content: "\f147";
1384
+ }
1385
+ i.icon.check.square:before {
1386
+ content: "\f14a";
1387
+ }
1388
+ i.icon.selected.radio:before {
1389
+ content: "\f192";
1390
+ }
1391
+ i.icon.plus.square.outline:before {
1392
+ content: "\f196";
1393
+ }
1394
+ i.icon.toggle.off:before {
1395
+ content: "\f204";
1396
+ }
1397
+ i.icon.toggle.on:before {
1398
+ content: "\f205";
1399
+ }
1400
+
1401
+ /* Media */
1402
+ i.icon.film:before {
1403
+ content: "\f008";
1404
+ }
1405
+ i.icon.sound:before {
1406
+ content: "\f025";
1407
+ }
1408
+ i.icon.photo:before {
1409
+ content: "\f030";
1410
+ }
1411
+ i.icon.bar.chart:before {
1412
+ content: "\f080";
1413
+ }
1414
+ i.icon.camera.retro:before {
1415
+ content: "\f083";
1416
+ }
1417
+ i.icon.newspaper:before {
1418
+ content: "\f1ea";
1419
+ }
1420
+ i.icon.area.chart:before {
1421
+ content: "\f1fe";
1422
+ }
1423
+ i.icon.pie.chart:before {
1424
+ content: "\f200";
1425
+ }
1426
+ i.icon.line.chart:before {
1427
+ content: "\f201";
1428
+ }
1429
+
1430
+ /* Pointers */
1431
+ i.icon.arrow.circle.outline.down:before {
1432
+ content: "\f01a";
1433
+ }
1434
+ i.icon.arrow.circle.outline.up:before {
1435
+ content: "\f01b";
1436
+ }
1437
+ i.icon.chevron.left:before {
1438
+ content: "\f053";
1439
+ }
1440
+ i.icon.chevron.right:before {
1441
+ content: "\f054";
1442
+ }
1443
+ i.icon.arrow.left:before {
1444
+ content: "\f060";
1445
+ }
1446
+ i.icon.arrow.right:before {
1447
+ content: "\f061";
1448
+ }
1449
+ i.icon.arrow.up:before {
1450
+ content: "\f062";
1451
+ }
1452
+ i.icon.arrow.down:before {
1453
+ content: "\f063";
1454
+ }
1455
+ i.icon.chevron.up:before {
1456
+ content: "\f077";
1457
+ }
1458
+ i.icon.chevron.down:before {
1459
+ content: "\f078";
1460
+ }
1461
+ i.icon.pointing.right:before {
1462
+ content: "\f0a4";
1463
+ }
1464
+ i.icon.pointing.left:before {
1465
+ content: "\f0a5";
1466
+ }
1467
+ i.icon.pointing.up:before {
1468
+ content: "\f0a6";
1469
+ }
1470
+ i.icon.pointing.down:before {
1471
+ content: "\f0a7";
1472
+ }
1473
+ i.icon.arrow.circle.left:before {
1474
+ content: "\f0a8";
1475
+ }
1476
+ i.icon.arrow.circle.right:before {
1477
+ content: "\f0a9";
1478
+ }
1479
+ i.icon.arrow.circle.up:before {
1480
+ content: "\f0aa";
1481
+ }
1482
+ i.icon.arrow.circle.down:before {
1483
+ content: "\f0ab";
1484
+ }
1485
+ i.icon.caret.down:before {
1486
+ content: "\f0d7";
1487
+ }
1488
+ i.icon.caret.up:before {
1489
+ content: "\f0d8";
1490
+ }
1491
+ i.icon.caret.left:before {
1492
+ content: "\f0d9";
1493
+ }
1494
+ i.icon.caret.right:before {
1495
+ content: "\f0da";
1496
+ }
1497
+ i.icon.angle.double.left:before {
1498
+ content: "\f100";
1499
+ }
1500
+ i.icon.angle.double.right:before {
1501
+ content: "\f101";
1502
+ }
1503
+ i.icon.angle.double.up:before {
1504
+ content: "\f102";
1505
+ }
1506
+ i.icon.angle.double.down:before {
1507
+ content: "\f103";
1508
+ }
1509
+ i.icon.angle.left:before {
1510
+ content: "\f104";
1511
+ }
1512
+ i.icon.angle.right:before {
1513
+ content: "\f105";
1514
+ }
1515
+ i.icon.angle.up:before {
1516
+ content: "\f106";
1517
+ }
1518
+ i.icon.angle.down:before {
1519
+ content: "\f107";
1520
+ }
1521
+ i.icon.chevron.circle.left:before {
1522
+ content: "\f137";
1523
+ }
1524
+ i.icon.chevron.circle.right:before {
1525
+ content: "\f138";
1526
+ }
1527
+ i.icon.chevron.circle.up:before {
1528
+ content: "\f139";
1529
+ }
1530
+ i.icon.chevron.circle.down:before {
1531
+ content: "\f13a";
1532
+ }
1533
+ i.icon.toggle.down:before {
1534
+ content: "\f150";
1535
+ }
1536
+ i.icon.toggle.up:before {
1537
+ content: "\f151";
1538
+ }
1539
+ i.icon.toggle.right:before {
1540
+ content: "\f152";
1541
+ }
1542
+ i.icon.long.arrow.down:before {
1543
+ content: "\f175";
1544
+ }
1545
+ i.icon.long.arrow.up:before {
1546
+ content: "\f176";
1547
+ }
1548
+ i.icon.long.arrow.left:before {
1549
+ content: "\f177";
1550
+ }
1551
+ i.icon.long.arrow.right:before {
1552
+ content: "\f178";
1553
+ }
1554
+ i.icon.arrow.circle.outline.right:before {
1555
+ content: "\f18e";
1556
+ }
1557
+ i.icon.arrow.circle.outline.left:before {
1558
+ content: "\f190";
1559
+ }
1560
+ i.icon.toggle.left:before {
1561
+ content: "\f191";
1562
+ }
1563
+
1564
+ /* Mobile */
1565
+ i.icon.tablet:before {
1566
+ content: "\f10a";
1567
+ }
1568
+ i.icon.mobile:before {
1569
+ content: "\f10b";
1570
+ }
1571
+ i.icon.battery.full:before {
1572
+ content: "\f240";
1573
+ }
1574
+ i.icon.battery.high:before {
1575
+ content: "\f241";
1576
+ }
1577
+ i.icon.battery.medium:before {
1578
+ content: "\f242";
1579
+ }
1580
+ i.icon.battery.low:before {
1581
+ content: "\f243";
1582
+ }
1583
+ i.icon.battery.empty:before {
1584
+ content: "\f244";
1585
+ }
1586
+
1587
+ /* Computer */
1588
+ i.icon.power:before {
1589
+ content: "\f011";
1590
+ }
1591
+ i.icon.trash.outline:before {
1592
+ content: "\f014";
1593
+ }
1594
+ i.icon.disk.outline:before {
1595
+ content: "\f0a0";
1596
+ }
1597
+ i.icon.desktop:before {
1598
+ content: "\f108";
1599
+ }
1600
+ i.icon.laptop:before {
1601
+ content: "\f109";
1602
+ }
1603
+ i.icon.game:before {
1604
+ content: "\f11b";
1605
+ }
1606
+ i.icon.keyboard:before {
1607
+ content: "\f11c";
1608
+ }
1609
+ i.icon.plug:before {
1610
+ content: "\f1e6";
1611
+ }
1612
+
1613
+ /* File System */
1614
+ i.icon.trash:before {
1615
+ content: "\f1f8";
1616
+ }
1617
+ i.icon.file.outline:before {
1618
+ content: "\f016";
1619
+ }
1620
+ i.icon.folder:before {
1621
+ content: "\f07b";
1622
+ }
1623
+ i.icon.folder.open:before {
1624
+ content: "\f07c";
1625
+ }
1626
+ i.icon.file.text.outline:before {
1627
+ content: "\f0f6";
1628
+ }
1629
+ i.icon.folder.outline:before {
1630
+ content: "\f114";
1631
+ }
1632
+ i.icon.folder.open.outline:before {
1633
+ content: "\f115";
1634
+ }
1635
+ i.icon.level.up:before {
1636
+ content: "\f148";
1637
+ }
1638
+ i.icon.level.down:before {
1639
+ content: "\f149";
1640
+ }
1641
+ i.icon.file:before {
1642
+ content: "\f15b";
1643
+ }
1644
+ i.icon.file.text:before {
1645
+ content: "\f15c";
1646
+ }
1647
+ i.icon.file.pdf.outline:before {
1648
+ content: "\f1c1";
1649
+ }
1650
+ i.icon.file.word.outline:before {
1651
+ content: "\f1c2";
1652
+ }
1653
+ i.icon.file.excel.outline:before {
1654
+ content: "\f1c3";
1655
+ }
1656
+ i.icon.file.powerpoint.outline:before {
1657
+ content: "\f1c4";
1658
+ }
1659
+ i.icon.file.image.outline:before {
1660
+ content: "\f1c5";
1661
+ }
1662
+ i.icon.file.archive.outline:before {
1663
+ content: "\f1c6";
1664
+ }
1665
+ i.icon.file.audio.outline:before {
1666
+ content: "\f1c7";
1667
+ }
1668
+ i.icon.file.video.outline:before {
1669
+ content: "\f1c8";
1670
+ }
1671
+ i.icon.file.code.outline:before {
1672
+ content: "\f1c9";
1673
+ }
1674
+
1675
+ /* Technologies */
1676
+ i.icon.qrcode:before {
1677
+ content: "\f029";
1678
+ }
1679
+ i.icon.barcode:before {
1680
+ content: "\f02a";
1681
+ }
1682
+ i.icon.rss:before {
1683
+ content: "\f09e";
1684
+ }
1685
+ i.icon.fork:before {
1686
+ content: "\f126";
1687
+ }
1688
+ i.icon.html5:before {
1689
+ content: "\f13b";
1690
+ }
1691
+ i.icon.css3:before {
1692
+ content: "\f13c";
1693
+ }
1694
+ i.icon.rss.square:before {
1695
+ content: "\f143";
1696
+ }
1697
+ i.icon.openid:before {
1698
+ content: "\f19b";
1699
+ }
1700
+ i.icon.database:before {
1701
+ content: "\f1c0";
1702
+ }
1703
+ i.icon.wifi:before {
1704
+ content: "\f1eb";
1705
+ }
1706
+ i.icon.server:before {
1707
+ content: "\f233";
1708
+ }
1709
+ i.icon.usb:before {
1710
+ content: "\f287";
1711
+ }
1712
+ i.icon.bluetooth:before {
1713
+ content: "\f293";
1714
+ }
1715
+ i.icon.bluetooth.alternative:before {
1716
+ content: "\f294";
1717
+ }
1718
+ i.icon.microchip:before {
1719
+ content: "\f2db";
1720
+ }
1721
+
1722
+ /* Rating */
1723
+ i.icon.heart:before {
1724
+ content: "\f004";
1725
+ }
1726
+ i.icon.star:before {
1727
+ content: "\f005";
1728
+ }
1729
+ i.icon.empty.star:before {
1730
+ content: "\f006";
1731
+ }
1732
+ i.icon.thumbs.outline.up:before {
1733
+ content: "\f087";
1734
+ }
1735
+ i.icon.thumbs.outline.down:before {
1736
+ content: "\f088";
1737
+ }
1738
+ i.icon.star.half:before {
1739
+ content: "\f089";
1740
+ }
1741
+ i.icon.empty.heart:before {
1742
+ content: "\f08a";
1743
+ }
1744
+ i.icon.smile:before {
1745
+ content: "\f118";
1746
+ }
1747
+ i.icon.frown:before {
1748
+ content: "\f119";
1749
+ }
1750
+ i.icon.meh:before {
1751
+ content: "\f11a";
1752
+ }
1753
+ i.icon.star.half.empty:before {
1754
+ content: "\f123";
1755
+ }
1756
+ i.icon.thumbs.up:before {
1757
+ content: "\f164";
1758
+ }
1759
+ i.icon.thumbs.down:before {
1760
+ content: "\f165";
1761
+ }
1762
+
1763
+ /* Audio */
1764
+ i.icon.music:before {
1765
+ content: "\f001";
1766
+ }
1767
+ i.icon.video.play.outline:before {
1768
+ content: "\f01d";
1769
+ }
1770
+ i.icon.volume.off:before {
1771
+ content: "\f026";
1772
+ }
1773
+ i.icon.volume.down:before {
1774
+ content: "\f027";
1775
+ }
1776
+ i.icon.volume.up:before {
1777
+ content: "\f028";
1778
+ }
1779
+ i.icon.record:before {
1780
+ content: "\f03d";
1781
+ }
1782
+ i.icon.step.backward:before {
1783
+ content: "\f048";
1784
+ }
1785
+ i.icon.fast.backward:before {
1786
+ content: "\f049";
1787
+ }
1788
+ i.icon.backward:before {
1789
+ content: "\f04a";
1790
+ }
1791
+ i.icon.play:before {
1792
+ content: "\f04b";
1793
+ }
1794
+ i.icon.pause:before {
1795
+ content: "\f04c";
1796
+ }
1797
+ i.icon.stop:before {
1798
+ content: "\f04d";
1799
+ }
1800
+ i.icon.forward:before {
1801
+ content: "\f04e";
1802
+ }
1803
+ i.icon.fast.forward:before {
1804
+ content: "\f050";
1805
+ }
1806
+ i.icon.step.forward:before {
1807
+ content: "\f051";
1808
+ }
1809
+ i.icon.eject:before {
1810
+ content: "\f052";
1811
+ }
1812
+ i.icon.unmute:before {
1813
+ content: "\f130";
1814
+ }
1815
+ i.icon.mute:before {
1816
+ content: "\f131";
1817
+ }
1818
+ i.icon.video.play:before {
1819
+ content: "\f144";
1820
+ }
1821
+ i.icon.closed.captioning:before {
1822
+ content: "\f20a";
1823
+ }
1824
+ i.icon.pause.circle:before {
1825
+ content: "\f28b";
1826
+ }
1827
+ i.icon.pause.circle.outline:before {
1828
+ content: "\f28c";
1829
+ }
1830
+ i.icon.stop.circle:before {
1831
+ content: "\f28d";
1832
+ }
1833
+ i.icon.stop.circle.outline:before {
1834
+ content: "\f28e";
1835
+ }
1836
+
1837
+ /* Map, Locations, & Transportation */
1838
+ i.icon.marker:before {
1839
+ content: "\f041";
1840
+ }
1841
+ i.icon.coffee:before {
1842
+ content: "\f0f4";
1843
+ }
1844
+ i.icon.food:before {
1845
+ content: "\f0f5";
1846
+ }
1847
+ i.icon.building.outline:before {
1848
+ content: "\f0f7";
1849
+ }
1850
+ i.icon.hospital:before {
1851
+ content: "\f0f8";
1852
+ }
1853
+ i.icon.emergency:before {
1854
+ content: "\f0f9";
1855
+ }
1856
+ i.icon.first.aid:before {
1857
+ content: "\f0fa";
1858
+ }
1859
+ i.icon.military:before {
1860
+ content: "\f0fb";
1861
+ }
1862
+ i.icon.h:before {
1863
+ content: "\f0fd";
1864
+ }
1865
+ i.icon.location.arrow:before {
1866
+ content: "\f124";
1867
+ }
1868
+ i.icon.compass:before {
1869
+ content: "\f14e";
1870
+ }
1871
+ i.icon.space.shuttle:before {
1872
+ content: "\f197";
1873
+ }
1874
+ i.icon.university:before {
1875
+ content: "\f19c";
1876
+ }
1877
+ i.icon.building:before {
1878
+ content: "\f1ad";
1879
+ }
1880
+ i.icon.paw:before {
1881
+ content: "\f1b0";
1882
+ }
1883
+ i.icon.spoon:before {
1884
+ content: "\f1b1";
1885
+ }
1886
+ i.icon.car:before {
1887
+ content: "\f1b9";
1888
+ }
1889
+ i.icon.taxi:before {
1890
+ content: "\f1ba";
1891
+ }
1892
+ i.icon.tree:before {
1893
+ content: "\f1bb";
1894
+ }
1895
+ i.icon.bicycle:before {
1896
+ content: "\f206";
1897
+ }
1898
+ i.icon.bus:before {
1899
+ content: "\f207";
1900
+ }
1901
+ i.icon.ship:before {
1902
+ content: "\f21a";
1903
+ }
1904
+ i.icon.motorcycle:before {
1905
+ content: "\f21c";
1906
+ }
1907
+ i.icon.street.view:before {
1908
+ content: "\f21d";
1909
+ }
1910
+ i.icon.hotel:before {
1911
+ content: "\f236";
1912
+ }
1913
+ i.icon.train:before {
1914
+ content: "\f238";
1915
+ }
1916
+ i.icon.subway:before {
1917
+ content: "\f239";
1918
+ }
1919
+ i.icon.map.pin:before {
1920
+ content: "\f276";
1921
+ }
1922
+ i.icon.map.signs:before {
1923
+ content: "\f277";
1924
+ }
1925
+ i.icon.map.outline:before {
1926
+ content: "\f278";
1927
+ }
1928
+ i.icon.map:before {
1929
+ content: "\f279";
1930
+ }
1931
+
1932
+ /* Tables */
1933
+ i.icon.table:before {
1934
+ content: "\f0ce";
1935
+ }
1936
+ i.icon.columns:before {
1937
+ content: "\f0db";
1938
+ }
1939
+ i.icon.sort:before {
1940
+ content: "\f0dc";
1941
+ }
1942
+ i.icon.sort.descending:before {
1943
+ content: "\f0dd";
1944
+ }
1945
+ i.icon.sort.ascending:before {
1946
+ content: "\f0de";
1947
+ }
1948
+ i.icon.sort.alphabet.ascending:before {
1949
+ content: "\f15d";
1950
+ }
1951
+ i.icon.sort.alphabet.descending:before {
1952
+ content: "\f15e";
1953
+ }
1954
+ i.icon.sort.content.ascending:before {
1955
+ content: "\f160";
1956
+ }
1957
+ i.icon.sort.content.descending:before {
1958
+ content: "\f161";
1959
+ }
1960
+ i.icon.sort.numeric.ascending:before {
1961
+ content: "\f162";
1962
+ }
1963
+ i.icon.sort.numeric.descending:before {
1964
+ content: "\f163";
1965
+ }
1966
+
1967
+ /* Text Editor */
1968
+ i.icon.font:before {
1969
+ content: "\f031";
1970
+ }
1971
+ i.icon.bold:before {
1972
+ content: "\f032";
1973
+ }
1974
+ i.icon.italic:before {
1975
+ content: "\f033";
1976
+ }
1977
+ i.icon.text.height:before {
1978
+ content: "\f034";
1979
+ }
1980
+ i.icon.text.width:before {
1981
+ content: "\f035";
1982
+ }
1983
+ i.icon.align.left:before {
1984
+ content: "\f036";
1985
+ }
1986
+ i.icon.align.center:before {
1987
+ content: "\f037";
1988
+ }
1989
+ i.icon.align.right:before {
1990
+ content: "\f038";
1991
+ }
1992
+ i.icon.align.justify:before {
1993
+ content: "\f039";
1994
+ }
1995
+ i.icon.list:before {
1996
+ content: "\f03a";
1997
+ }
1998
+ i.icon.outdent:before {
1999
+ content: "\f03b";
2000
+ }
2001
+ i.icon.indent:before {
2002
+ content: "\f03c";
2003
+ }
2004
+ i.icon.linkify:before {
2005
+ content: "\f0c1";
2006
+ }
2007
+ i.icon.cut:before {
2008
+ content: "\f0c4";
2009
+ }
2010
+ i.icon.copy:before {
2011
+ content: "\f0c5";
2012
+ }
2013
+ i.icon.attach:before {
2014
+ content: "\f0c6";
2015
+ }
2016
+ i.icon.save:before {
2017
+ content: "\f0c7";
2018
+ }
2019
+ i.icon.content:before {
2020
+ content: "\f0c9";
2021
+ }
2022
+ i.icon.unordered.list:before {
2023
+ content: "\f0ca";
2024
+ }
2025
+ i.icon.ordered.list:before {
2026
+ content: "\f0cb";
2027
+ }
2028
+ i.icon.strikethrough:before {
2029
+ content: "\f0cc";
2030
+ }
2031
+ i.icon.underline:before {
2032
+ content: "\f0cd";
2033
+ }
2034
+ i.icon.paste:before {
2035
+ content: "\f0ea";
2036
+ }
2037
+ i.icon.unlinkify:before {
2038
+ content: "\f127";
2039
+ }
2040
+ i.icon.superscript:before {
2041
+ content: "\f12b";
2042
+ }
2043
+ i.icon.subscript:before {
2044
+ content: "\f12c";
2045
+ }
2046
+ i.icon.header:before {
2047
+ content: "\f1dc";
2048
+ }
2049
+ i.icon.paragraph:before {
2050
+ content: "\f1dd";
2051
+ }
2052
+ i.icon.text.cursor:before {
2053
+ content: "\f246";
2054
+ }
2055
+
2056
+ /* Currency */
2057
+ i.icon.euro:before {
2058
+ content: "\f153";
2059
+ }
2060
+ i.icon.pound:before {
2061
+ content: "\f154";
2062
+ }
2063
+ i.icon.dollar:before {
2064
+ content: "\f155";
2065
+ }
2066
+ i.icon.rupee:before {
2067
+ content: "\f156";
2068
+ }
2069
+ i.icon.yen:before {
2070
+ content: "\f157";
2071
+ }
2072
+ i.icon.ruble:before {
2073
+ content: "\f158";
2074
+ }
2075
+ i.icon.won:before {
2076
+ content: "\f159";
2077
+ }
2078
+ i.icon.bitcoin:before {
2079
+ content: "\f15a";
2080
+ }
2081
+ i.icon.lira:before {
2082
+ content: "\f195";
2083
+ }
2084
+ i.icon.shekel:before {
2085
+ content: "\f20b";
2086
+ }
2087
+
2088
+ /* Payment Options */
2089
+ i.icon.paypal:before {
2090
+ content: "\f1ed";
2091
+ }
2092
+ i.icon.google.wallet:before {
2093
+ content: "\f1ee";
2094
+ }
2095
+ i.icon.visa:before {
2096
+ content: "\f1f0";
2097
+ }
2098
+ i.icon.mastercard:before {
2099
+ content: "\f1f1";
2100
+ }
2101
+ i.icon.discover:before {
2102
+ content: "\f1f2";
2103
+ }
2104
+ i.icon.american.express:before {
2105
+ content: "\f1f3";
2106
+ }
2107
+ i.icon.paypal.card:before {
2108
+ content: "\f1f4";
2109
+ }
2110
+ i.icon.stripe:before {
2111
+ content: "\f1f5";
2112
+ }
2113
+ i.icon.japan.credit.bureau:before {
2114
+ content: "\f24b";
2115
+ }
2116
+ i.icon.diners.club:before {
2117
+ content: "\f24c";
2118
+ }
2119
+ i.icon.credit.card.alternative:before {
2120
+ content: "\f283";
2121
+ }
2122
+ /* Networks and Websites*/
2123
+ i.icon.twitter.square:before {
2124
+ content: "\f081";
2125
+ }
2126
+ i.icon.facebook.square:before {
2127
+ content: "\f082";
2128
+ }
2129
+ i.icon.linkedin.square:before {
2130
+ content: "\f08c";
2131
+ }
2132
+ i.icon.github.square:before {
2133
+ content: "\f092";
2134
+ }
2135
+ i.icon.twitter:before {
2136
+ content: "\f099";
2137
+ }
2138
+ i.icon.facebook.f:before {
2139
+ content: "\f09a";
2140
+ }
2141
+ i.icon.github:before {
2142
+ content: "\f09b";
2143
+ }
2144
+ i.icon.pinterest:before {
2145
+ content: "\f0d2";
2146
+ }
2147
+ i.icon.pinterest.square:before {
2148
+ content: "\f0d3";
2149
+ }
2150
+ i.icon.google.plus.square:before {
2151
+ content: "\f0d4";
2152
+ }
2153
+ i.icon.google.plus:before {
2154
+ content: "\f0d5";
2155
+ }
2156
+ i.icon.linkedin:before {
2157
+ content: "\f0e1";
2158
+ }
2159
+ i.icon.github.alternate:before {
2160
+ content: "\f113";
2161
+ }
2162
+ i.icon.maxcdn:before {
2163
+ content: "\f136";
2164
+ }
2165
+ i.icon.youtube.square:before {
2166
+ content: "\f166";
2167
+ }
2168
+ i.icon.youtube:before {
2169
+ content: "\f167";
2170
+ }
2171
+ i.icon.xing:before {
2172
+ content: "\f168";
2173
+ }
2174
+ i.icon.xing.square:before {
2175
+ content: "\f169";
2176
+ }
2177
+ i.icon.youtube.play:before {
2178
+ content: "\f16a";
2179
+ }
2180
+ i.icon.dropbox:before {
2181
+ content: "\f16b";
2182
+ }
2183
+ i.icon.stack.overflow:before {
2184
+ content: "\f16c";
2185
+ }
2186
+ i.icon.instagram:before {
2187
+ content: "\f16d";
2188
+ }
2189
+ i.icon.flickr:before {
2190
+ content: "\f16e";
2191
+ }
2192
+ i.icon.adn:before {
2193
+ content: "\f170";
2194
+ }
2195
+ i.icon.bitbucket:before {
2196
+ content: "\f171";
2197
+ }
2198
+ i.icon.bitbucket.square:before {
2199
+ content: "\f172";
2200
+ }
2201
+ i.icon.tumblr:before {
2202
+ content: "\f173";
2203
+ }
2204
+ i.icon.tumblr.square:before {
2205
+ content: "\f174";
2206
+ }
2207
+ i.icon.apple:before {
2208
+ content: "\f179";
2209
+ }
2210
+ i.icon.windows:before {
2211
+ content: "\f17a";
2212
+ }
2213
+ i.icon.android:before {
2214
+ content: "\f17b";
2215
+ }
2216
+ i.icon.linux:before {
2217
+ content: "\f17c";
2218
+ }
2219
+ i.icon.dribble:before {
2220
+ content: "\f17d";
2221
+ }
2222
+ i.icon.skype:before {
2223
+ content: "\f17e";
2224
+ }
2225
+ i.icon.foursquare:before {
2226
+ content: "\f180";
2227
+ }
2228
+ i.icon.trello:before {
2229
+ content: "\f181";
2230
+ }
2231
+ i.icon.gittip:before {
2232
+ content: "\f184";
2233
+ }
2234
+ i.icon.vk:before {
2235
+ content: "\f189";
2236
+ }
2237
+ i.icon.weibo:before {
2238
+ content: "\f18a";
2239
+ }
2240
+ i.icon.renren:before {
2241
+ content: "\f18b";
2242
+ }
2243
+ i.icon.pagelines:before {
2244
+ content: "\f18c";
2245
+ }
2246
+ i.icon.stack.exchange:before {
2247
+ content: "\f18d";
2248
+ }
2249
+ i.icon.vimeo.square:before {
2250
+ content: "\f194";
2251
+ }
2252
+ i.icon.slack:before {
2253
+ content: "\f198";
2254
+ }
2255
+ i.icon.wordpress:before {
2256
+ content: "\f19a";
2257
+ }
2258
+ i.icon.yahoo:before {
2259
+ content: "\f19e";
2260
+ }
2261
+ i.icon.google:before {
2262
+ content: "\f1a0";
2263
+ }
2264
+ i.icon.reddit:before {
2265
+ content: "\f1a1";
2266
+ }
2267
+ i.icon.reddit.square:before {
2268
+ content: "\f1a2";
2269
+ }
2270
+ i.icon.stumbleupon.circle:before {
2271
+ content: "\f1a3";
2272
+ }
2273
+ i.icon.stumbleupon:before {
2274
+ content: "\f1a4";
2275
+ }
2276
+ i.icon.delicious:before {
2277
+ content: "\f1a5";
2278
+ }
2279
+ i.icon.digg:before {
2280
+ content: "\f1a6";
2281
+ }
2282
+ i.icon.pied.piper:before {
2283
+ content: "\f1a7";
2284
+ }
2285
+ i.icon.pied.piper.alternate:before {
2286
+ content: "\f1a8";
2287
+ }
2288
+ i.icon.drupal:before {
2289
+ content: "\f1a9";
2290
+ }
2291
+ i.icon.joomla:before {
2292
+ content: "\f1aa";
2293
+ }
2294
+ i.icon.behance:before {
2295
+ content: "\f1b4";
2296
+ }
2297
+ i.icon.behance.square:before {
2298
+ content: "\f1b5";
2299
+ }
2300
+ i.icon.steam:before {
2301
+ content: "\f1b6";
2302
+ }
2303
+ i.icon.steam.square:before {
2304
+ content: "\f1b7";
2305
+ }
2306
+ i.icon.spotify:before {
2307
+ content: "\f1bc";
2308
+ }
2309
+ i.icon.deviantart:before {
2310
+ content: "\f1bd";
2311
+ }
2312
+ i.icon.soundcloud:before {
2313
+ content: "\f1be";
2314
+ }
2315
+ i.icon.vine:before {
2316
+ content: "\f1ca";
2317
+ }
2318
+ i.icon.codepen:before {
2319
+ content: "\f1cb";
2320
+ }
2321
+ i.icon.jsfiddle:before {
2322
+ content: "\f1cc";
2323
+ }
2324
+ i.icon.rebel:before {
2325
+ content: "\f1d0";
2326
+ }
2327
+ i.icon.empire:before {
2328
+ content: "\f1d1";
2329
+ }
2330
+ i.icon.git.square:before {
2331
+ content: "\f1d2";
2332
+ }
2333
+ i.icon.git:before {
2334
+ content: "\f1d3";
2335
+ }
2336
+ i.icon.hacker.news:before {
2337
+ content: "\f1d4";
2338
+ }
2339
+ i.icon.tencent.weibo:before {
2340
+ content: "\f1d5";
2341
+ }
2342
+ i.icon.qq:before {
2343
+ content: "\f1d6";
2344
+ }
2345
+ i.icon.wechat:before {
2346
+ content: "\f1d7";
2347
+ }
2348
+ i.icon.slideshare:before {
2349
+ content: "\f1e7";
2350
+ }
2351
+ i.icon.twitch:before {
2352
+ content: "\f1e8";
2353
+ }
2354
+ i.icon.yelp:before {
2355
+ content: "\f1e9";
2356
+ }
2357
+ i.icon.lastfm:before {
2358
+ content: "\f202";
2359
+ }
2360
+ i.icon.lastfm.square:before {
2361
+ content: "\f203";
2362
+ }
2363
+ i.icon.ioxhost:before {
2364
+ content: "\f208";
2365
+ }
2366
+ i.icon.angellist:before {
2367
+ content: "\f209";
2368
+ }
2369
+ i.icon.meanpath:before {
2370
+ content: "\f20c";
2371
+ }
2372
+ i.icon.buysellads:before {
2373
+ content: "\f20d";
2374
+ }
2375
+ i.icon.connectdevelop:before {
2376
+ content: "\f20e";
2377
+ }
2378
+ i.icon.dashcube:before {
2379
+ content: "\f210";
2380
+ }
2381
+ i.icon.forumbee:before {
2382
+ content: "\f211";
2383
+ }
2384
+ i.icon.leanpub:before {
2385
+ content: "\f212";
2386
+ }
2387
+ i.icon.sellsy:before {
2388
+ content: "\f213";
2389
+ }
2390
+ i.icon.shirtsinbulk:before {
2391
+ content: "\f214";
2392
+ }
2393
+ i.icon.simplybuilt:before {
2394
+ content: "\f215";
2395
+ }
2396
+ i.icon.skyatlas:before {
2397
+ content: "\f216";
2398
+ }
2399
+ i.icon.facebook:before {
2400
+ content: "\f230";
2401
+ }
2402
+ i.icon.pinterest:before {
2403
+ content: "\f231";
2404
+ }
2405
+ i.icon.whatsapp:before {
2406
+ content: "\f232";
2407
+ }
2408
+ i.icon.viacoin:before {
2409
+ content: "\f237";
2410
+ }
2411
+ i.icon.medium:before {
2412
+ content: "\f23a";
2413
+ }
2414
+ i.icon.y.combinator:before {
2415
+ content: "\f23b";
2416
+ }
2417
+ i.icon.optinmonster:before {
2418
+ content: "\f23c";
2419
+ }
2420
+ i.icon.opencart:before {
2421
+ content: "\f23d";
2422
+ }
2423
+ i.icon.expeditedssl:before {
2424
+ content: "\f23e";
2425
+ }
2426
+ i.icon.gg:before {
2427
+ content: "\f260";
2428
+ }
2429
+ i.icon.gg.circle:before {
2430
+ content: "\f261";
2431
+ }
2432
+ i.icon.tripadvisor:before {
2433
+ content: "\f262";
2434
+ }
2435
+ i.icon.odnoklassniki:before {
2436
+ content: "\f263";
2437
+ }
2438
+ i.icon.odnoklassniki.square:before {
2439
+ content: "\f264";
2440
+ }
2441
+ i.icon.pocket:before {
2442
+ content: "\f265";
2443
+ }
2444
+ i.icon.wikipedia:before {
2445
+ content: "\f266";
2446
+ }
2447
+ i.icon.safari:before {
2448
+ content: "\f267";
2449
+ }
2450
+ i.icon.chrome:before {
2451
+ content: "\f268";
2452
+ }
2453
+ i.icon.firefox:before {
2454
+ content: "\f269";
2455
+ }
2456
+ i.icon.opera:before {
2457
+ content: "\f26a";
2458
+ }
2459
+ i.icon.internet.explorer:before {
2460
+ content: "\f26b";
2461
+ }
2462
+ i.icon.contao:before {
2463
+ content: "\f26d";
2464
+ }
2465
+ i.icon.\35 00px:before {
2466
+ content: "\f26e";
2467
+ }
2468
+ i.icon.amazon:before {
2469
+ content: "\f270";
2470
+ }
2471
+ i.icon.houzz:before {
2472
+ content: "\f27c";
2473
+ }
2474
+ i.icon.vimeo:before {
2475
+ content: "\f27d";
2476
+ }
2477
+ i.icon.black.tie:before {
2478
+ content: "\f27e";
2479
+ }
2480
+ i.icon.fonticons:before {
2481
+ content: "\f280";
2482
+ }
2483
+ i.icon.reddit.alien:before {
2484
+ content: "\f281";
2485
+ }
2486
+ i.icon.microsoft.edge:before {
2487
+ content: "\f282";
2488
+ }
2489
+ i.icon.codiepie:before {
2490
+ content: "\f284";
2491
+ }
2492
+ i.icon.modx:before {
2493
+ content: "\f285";
2494
+ }
2495
+ i.icon.fort.awesome:before {
2496
+ content: "\f286";
2497
+ }
2498
+ i.icon.product.hunt:before {
2499
+ content: "\f288";
2500
+ }
2501
+ i.icon.mixcloud:before {
2502
+ content: "\f289";
2503
+ }
2504
+ i.icon.scribd:before {
2505
+ content: "\f28a";
2506
+ }
2507
+ i.icon.gitlab:before {
2508
+ content: "\f296";
2509
+ }
2510
+ i.icon.wpbeginner:before {
2511
+ content: "\f297";
2512
+ }
2513
+ i.icon.wpforms:before {
2514
+ content: "\f298";
2515
+ }
2516
+ i.icon.envira.gallery:before {
2517
+ content: "\f299";
2518
+ }
2519
+ i.icon.glide:before {
2520
+ content: "\f2a5";
2521
+ }
2522
+ i.icon.glide.g:before {
2523
+ content: "\f2a6";
2524
+ }
2525
+ i.icon.viadeo:before {
2526
+ content: "\f2a9";
2527
+ }
2528
+ i.icon.viadeo.square:before {
2529
+ content: "\f2aa";
2530
+ }
2531
+ i.icon.snapchat:before {
2532
+ content: "\f2ab";
2533
+ }
2534
+ i.icon.snapchat.ghost:before {
2535
+ content: "\f2ac";
2536
+ }
2537
+ i.icon.snapchat.square:before {
2538
+ content: "\f2ad";
2539
+ }
2540
+ i.icon.pied.piper.hat:before {
2541
+ content: "\f2ae";
2542
+ }
2543
+ i.icon.first.order:before {
2544
+ content: "\f2b0";
2545
+ }
2546
+ i.icon.yoast:before {
2547
+ content: "\f2b1";
2548
+ }
2549
+ i.icon.themeisle:before {
2550
+ content: "\f2b2";
2551
+ }
2552
+ i.icon.google.plus.circle:before {
2553
+ content: "\f2b3";
2554
+ }
2555
+ i.icon.font.awesome:before {
2556
+ content: "\f2b4";
2557
+ }
2558
+ i.icon.linode:before {
2559
+ content: "\f2b8";
2560
+ }
2561
+ i.icon.quora:before {
2562
+ content: "\f2c4";
2563
+ }
2564
+ i.icon.free.code.camp:before {
2565
+ content: "\f2c5";
2566
+ }
2567
+ i.icon.telegram:before {
2568
+ content: "\f2c6";
2569
+ }
2570
+ i.icon.bandcamp:before {
2571
+ content: "\f2d5";
2572
+ }
2573
+ i.icon.grav:before {
2574
+ content: "\f2d6";
2575
+ }
2576
+ i.icon.etsy:before {
2577
+ content: "\f2d7";
2578
+ }
2579
+ i.icon.imdb:before {
2580
+ content: "\f2d8";
2581
+ }
2582
+ i.icon.ravelry:before {
2583
+ content: "\f2d9";
2584
+ }
2585
+ i.icon.eercast:before {
2586
+ content: "\f2da";
2587
+ }
2588
+ i.icon.superpowers:before {
2589
+ content: "\f2dd";
2590
+ }
2591
+ i.icon.wpexplorer:before {
2592
+ content: "\f2de";
2593
+ }
2594
+ i.icon.meetup:before {
2595
+ content: "\f2e0";
2596
+ }
2597
+
2598
+
2599
+ /*******************************
2600
+ Aliases
2601
+ *******************************/
2602
+
2603
+ i.icon.like:before {
2604
+ content: "\f004";
2605
+ }
2606
+ i.icon.favorite:before {
2607
+ content: "\f005";
2608
+ }
2609
+ i.icon.video:before {
2610
+ content: "\f008";
2611
+ }
2612
+ i.icon.check:before {
2613
+ content: "\f00c";
2614
+ }
2615
+ i.icon.close:before {
2616
+ content: "\f00d";
2617
+ }
2618
+ i.icon.cancel:before {
2619
+ content: "\f00d";
2620
+ }
2621
+ i.icon.delete:before {
2622
+ content: "\f00d";
2623
+ }
2624
+ i.icon.x:before {
2625
+ content: "\f00d";
2626
+ }
2627
+ i.icon.zoom.in:before {
2628
+ content: "\f00e";
2629
+ }
2630
+ i.icon.magnify:before {
2631
+ content: "\f00e";
2632
+ }
2633
+ i.icon.shutdown:before {
2634
+ content: "\f011";
2635
+ }
2636
+ i.icon.clock:before {
2637
+ content: "\f017";
2638
+ }
2639
+ i.icon.time:before {
2640
+ content: "\f017";
2641
+ }
2642
+ i.icon.play.circle.outline:before {
2643
+ content: "\f01d";
2644
+ }
2645
+ i.icon.headphone:before {
2646
+ content: "\f025";
2647
+ }
2648
+ i.icon.camera:before {
2649
+ content: "\f030";
2650
+ }
2651
+ i.icon.video.camera:before {
2652
+ content: "\f03d";
2653
+ }
2654
+ i.icon.picture:before {
2655
+ content: "\f03e";
2656
+ }
2657
+ i.icon.pencil:before {
2658
+ content: "\f040";
2659
+ }
2660
+ i.icon.compose:before {
2661
+ content: "\f040";
2662
+ }
2663
+ i.icon.point:before {
2664
+ content: "\f041";
2665
+ }
2666
+ i.icon.tint:before {
2667
+ content: "\f043";
2668
+ }
2669
+ i.icon.signup:before {
2670
+ content: "\f044";
2671
+ }
2672
+ i.icon.plus.circle:before {
2673
+ content: "\f055";
2674
+ }
2675
+ i.icon.question.circle:before {
2676
+ content: "\f059";
2677
+ }
2678
+ i.icon.dont:before {
2679
+ content: "\f05e";
2680
+ }
2681
+ i.icon.minimize:before {
2682
+ content: "\f066";
2683
+ }
2684
+ i.icon.add:before {
2685
+ content: "\f067";
2686
+ }
2687
+ i.icon.exclamation.circle:before {
2688
+ content: "\f06a";
2689
+ }
2690
+ i.icon.attention:before {
2691
+ content: "\f06a";
2692
+ }
2693
+ i.icon.eye:before {
2694
+ content: "\f06e";
2695
+ }
2696
+ i.icon.exclamation.triangle:before {
2697
+ content: "\f071";
2698
+ }
2699
+ i.icon.shuffle:before {
2700
+ content: "\f074";
2701
+ }
2702
+ i.icon.chat:before {
2703
+ content: "\f075";
2704
+ }
2705
+ i.icon.cart:before {
2706
+ content: "\f07a";
2707
+ }
2708
+ i.icon.shopping.cart:before {
2709
+ content: "\f07a";
2710
+ }
2711
+ i.icon.bar.graph:before {
2712
+ content: "\f080";
2713
+ }
2714
+ i.icon.key:before {
2715
+ content: "\f084";
2716
+ }
2717
+ i.icon.cogs:before {
2718
+ content: "\f085";
2719
+ }
2720
+ i.icon.discussions:before {
2721
+ content: "\f086";
2722
+ }
2723
+ i.icon.like.outline:before {
2724
+ content: "\f087";
2725
+ }
2726
+ i.icon.dislike.outline:before {
2727
+ content: "\f088";
2728
+ }
2729
+ i.icon.heart.outline:before {
2730
+ content: "\f08a";
2731
+ }
2732
+ i.icon.log.out:before {
2733
+ content: "\f08b";
2734
+ }
2735
+ i.icon.thumb.tack:before {
2736
+ content: "\f08d";
2737
+ }
2738
+ i.icon.winner:before {
2739
+ content: "\f091";
2740
+ }
2741
+ i.icon.phone:before {
2742
+ content: "\f095";
2743
+ }
2744
+ i.icon.bookmark.outline:before {
2745
+ content: "\f097";
2746
+ }
2747
+ i.icon.phone.square:before {
2748
+ content: "\f098";
2749
+ }
2750
+ i.icon.credit.card:before {
2751
+ content: "\f09d";
2752
+ }
2753
+ i.icon.hdd.outline:before {
2754
+ content: "\f0a0";
2755
+ }
2756
+ i.icon.bullhorn:before {
2757
+ content: "\f0a1";
2758
+ }
2759
+ i.icon.bell.outline:before {
2760
+ content: "\f0a2";
2761
+ }
2762
+ i.icon.hand.outline.right:before {
2763
+ content: "\f0a4";
2764
+ }
2765
+ i.icon.hand.outline.left:before {
2766
+ content: "\f0a5";
2767
+ }
2768
+ i.icon.hand.outline.up:before {
2769
+ content: "\f0a6";
2770
+ }
2771
+ i.icon.hand.outline.down:before {
2772
+ content: "\f0a7";
2773
+ }
2774
+ i.icon.globe:before {
2775
+ content: "\f0ac";
2776
+ }
2777
+ i.icon.wrench:before {
2778
+ content: "\f0ad";
2779
+ }
2780
+ i.icon.briefcase:before {
2781
+ content: "\f0b1";
2782
+ }
2783
+ i.icon.group:before {
2784
+ content: "\f0c0";
2785
+ }
2786
+ i.icon.linkify:before {
2787
+ content: "\f0c1";
2788
+ }
2789
+ i.icon.chain:before {
2790
+ content: "\f0c1";
2791
+ }
2792
+ i.icon.flask:before {
2793
+ content: "\f0c3";
2794
+ }
2795
+ i.icon.sidebar:before {
2796
+ content: "\f0c9";
2797
+ }
2798
+ i.icon.bars:before {
2799
+ content: "\f0c9";
2800
+ }
2801
+ i.icon.list.ul:before {
2802
+ content: "\f0ca";
2803
+ }
2804
+ i.icon.list.ol:before {
2805
+ content: "\f0cb";
2806
+ }
2807
+ i.icon.numbered.list:before {
2808
+ content: "\f0cb";
2809
+ }
2810
+ i.icon.magic:before {
2811
+ content: "\f0d0";
2812
+ }
2813
+ i.icon.truck:before {
2814
+ content: "\f0d1";
2815
+ }
2816
+ i.icon.currency:before {
2817
+ content: "\f0d6";
2818
+ }
2819
+ i.icon.triangle.down:before {
2820
+ content: "\f0d7";
2821
+ }
2822
+ i.icon.dropdown:before {
2823
+ content: "\f0d7";
2824
+ }
2825
+ i.icon.triangle.up:before {
2826
+ content: "\f0d8";
2827
+ }
2828
+ i.icon.triangle.left:before {
2829
+ content: "\f0d9";
2830
+ }
2831
+ i.icon.triangle.right:before {
2832
+ content: "\f0da";
2833
+ }
2834
+ i.icon.envelope:before {
2835
+ content: "\f0e0";
2836
+ }
2837
+ i.icon.conversation:before {
2838
+ content: "\f0e6";
2839
+ }
2840
+ i.icon.rain:before {
2841
+ content: "\f0e9";
2842
+ }
2843
+ i.icon.clipboard:before {
2844
+ content: "\f0ea";
2845
+ }
2846
+ i.icon.lightbulb:before {
2847
+ content: "\f0eb";
2848
+ }
2849
+ i.icon.bell:before {
2850
+ content: "\f0f3";
2851
+ }
2852
+ i.icon.ambulance:before {
2853
+ content: "\f0f9";
2854
+ }
2855
+ i.icon.medkit:before {
2856
+ content: "\f0fa";
2857
+ }
2858
+ i.icon.fighter.jet:before {
2859
+ content: "\f0fb";
2860
+ }
2861
+ i.icon.beer:before {
2862
+ content: "\f0fc";
2863
+ }
2864
+ i.icon.plus.square:before {
2865
+ content: "\f0fe";
2866
+ }
2867
+ i.icon.computer:before {
2868
+ content: "\f108";
2869
+ }
2870
+ i.icon.circle.outline:before {
2871
+ content: "\f10c";
2872
+ }
2873
+ i.icon.gamepad:before {
2874
+ content: "\f11b";
2875
+ }
2876
+ i.icon.star.half.full:before {
2877
+ content: "\f123";
2878
+ }
2879
+ i.icon.broken.chain:before {
2880
+ content: "\f127";
2881
+ }
2882
+ i.icon.question:before {
2883
+ content: "\f128";
2884
+ }
2885
+ i.icon.exclamation:before {
2886
+ content: "\f12a";
2887
+ }
2888
+ i.icon.eraser:before {
2889
+ content: "\f12d";
2890
+ }
2891
+ i.icon.microphone:before {
2892
+ content: "\f130";
2893
+ }
2894
+ i.icon.microphone.slash:before {
2895
+ content: "\f131";
2896
+ }
2897
+ i.icon.shield:before {
2898
+ content: "\f132";
2899
+ }
2900
+ i.icon.target:before {
2901
+ content: "\f140";
2902
+ }
2903
+ i.icon.play.circle:before {
2904
+ content: "\f144";
2905
+ }
2906
+ i.icon.pencil.square:before {
2907
+ content: "\f14b";
2908
+ }
2909
+ i.icon.eur:before {
2910
+ content: "\f153";
2911
+ }
2912
+ i.icon.gbp:before {
2913
+ content: "\f154";
2914
+ }
2915
+ i.icon.usd:before {
2916
+ content: "\f155";
2917
+ }
2918
+ i.icon.inr:before {
2919
+ content: "\f156";
2920
+ }
2921
+ i.icon.cny:before {
2922
+ content: "\f157";
2923
+ }
2924
+ i.icon.rmb:before {
2925
+ content: "\f157";
2926
+ }
2927
+ i.icon.jpy:before {
2928
+ content: "\f157";
2929
+ }
2930
+ i.icon.rouble:before {
2931
+ content: "\f158";
2932
+ }
2933
+ i.icon.rub:before {
2934
+ content: "\f158";
2935
+ }
2936
+ i.icon.krw:before {
2937
+ content: "\f159";
2938
+ }
2939
+ i.icon.btc:before {
2940
+ content: "\f15a";
2941
+ }
2942
+ i.icon.gratipay:before {
2943
+ content: "\f184";
2944
+ }
2945
+ i.icon.zip:before {
2946
+ content: "\f187";
2947
+ }
2948
+ i.icon.dot.circle.outline:before {
2949
+ content: "\f192";
2950
+ }
2951
+ i.icon.try:before {
2952
+ content: "\f195";
2953
+ }
2954
+ i.icon.graduation:before {
2955
+ content: "\f19d";
2956
+ }
2957
+ i.icon.circle.outline:before {
2958
+ content: "\f1db";
2959
+ }
2960
+ i.icon.sliders:before {
2961
+ content: "\f1de";
2962
+ }
2963
+ i.icon.weixin:before {
2964
+ content: "\f1d7";
2965
+ }
2966
+ i.icon.tty:before {
2967
+ content: "\f1e4";
2968
+ }
2969
+ i.icon.teletype:before {
2970
+ content: "\f1e4";
2971
+ }
2972
+ i.icon.binoculars:before {
2973
+ content: "\f1e5";
2974
+ }
2975
+ i.icon.power.cord:before {
2976
+ content: "\f1e6";
2977
+ }
2978
+ i.icon.wi-fi:before {
2979
+ content: "\f1eb";
2980
+ }
2981
+ i.icon.visa.card:before {
2982
+ content: "\f1f0";
2983
+ }
2984
+ i.icon.mastercard.card:before {
2985
+ content: "\f1f1";
2986
+ }
2987
+ i.icon.discover.card:before {
2988
+ content: "\f1f2";
2989
+ }
2990
+ i.icon.amex:before {
2991
+ content: "\f1f3";
2992
+ }
2993
+ i.icon.american.express.card:before {
2994
+ content: "\f1f3";
2995
+ }
2996
+ i.icon.stripe.card:before {
2997
+ content: "\f1f5";
2998
+ }
2999
+ i.icon.bell.slash:before {
3000
+ content: "\f1f6";
3001
+ }
3002
+ i.icon.bell.slash.outline:before {
3003
+ content: "\f1f7";
3004
+ }
3005
+ i.icon.area.graph:before {
3006
+ content: "\f1fe";
3007
+ }
3008
+ i.icon.pie.graph:before {
3009
+ content: "\f200";
3010
+ }
3011
+ i.icon.line.graph:before {
3012
+ content: "\f201";
3013
+ }
3014
+ i.icon.cc:before {
3015
+ content: "\f20a";
3016
+ }
3017
+ i.icon.sheqel:before {
3018
+ content: "\f20b";
3019
+ }
3020
+ i.icon.ils:before {
3021
+ content: "\f20b";
3022
+ }
3023
+ i.icon.plus.cart:before {
3024
+ content: "\f217";
3025
+ }
3026
+ i.icon.arrow.down.cart:before {
3027
+ content: "\f218";
3028
+ }
3029
+ i.icon.detective:before {
3030
+ content: "\f21b";
3031
+ }
3032
+ i.icon.venus:before {
3033
+ content: "\f221";
3034
+ }
3035
+ i.icon.mars:before {
3036
+ content: "\f222";
3037
+ }
3038
+ i.icon.mercury:before {
3039
+ content: "\f223";
3040
+ }
3041
+ i.icon.intersex:before {
3042
+ content: "\f224";
3043
+ }
3044
+ i.icon.venus.double:before {
3045
+ content: "\f226";
3046
+ }
3047
+ i.icon.female.homosexual:before {
3048
+ content: "\f226";
3049
+ }
3050
+ i.icon.mars.double:before {
3051
+ content: "\f227";
3052
+ }
3053
+ i.icon.male.homosexual:before {
3054
+ content: "\f227";
3055
+ }
3056
+ i.icon.venus.mars:before {
3057
+ content: "\f228";
3058
+ }
3059
+ i.icon.mars.stroke:before {
3060
+ content: "\f229";
3061
+ }
3062
+ i.icon.mars.alternate:before {
3063
+ content: "\f229";
3064
+ }
3065
+ i.icon.mars.vertical:before {
3066
+ content: "\f22a";
3067
+ }
3068
+ i.icon.mars.stroke.vertical:before {
3069
+ content: "\f22a";
3070
+ }
3071
+ i.icon.mars.horizontal:before {
3072
+ content: "\f22b";
3073
+ }
3074
+ i.icon.mars.stroke.horizontal:before {
3075
+ content: "\f22b";
3076
+ }
3077
+ i.icon.asexual:before {
3078
+ content: "\f22d";
3079
+ }
3080
+ i.icon.facebook.official:before {
3081
+ content: "\f230";
3082
+ }
3083
+ i.icon.user.plus:before {
3084
+ content: "\f234";
3085
+ }
3086
+ i.icon.user.times:before {
3087
+ content: "\f235";
3088
+ }
3089
+ i.icon.user.close:before {
3090
+ content: "\f235";
3091
+ }
3092
+ i.icon.user.cancel:before {
3093
+ content: "\f235";
3094
+ }
3095
+ i.icon.user.delete:before {
3096
+ content: "\f235";
3097
+ }
3098
+ i.icon.user.x:before {
3099
+ content: "\f235";
3100
+ }
3101
+ i.icon.bed:before {
3102
+ content: "\f236";
3103
+ }
3104
+ i.icon.yc:before {
3105
+ content: "\f23b";
3106
+ }
3107
+ i.icon.ycombinator:before {
3108
+ content: "\f23b";
3109
+ }
3110
+ i.icon.battery.four:before {
3111
+ content: "\f240";
3112
+ }
3113
+ i.icon.battery.three:before {
3114
+ content: "\f241";
3115
+ }
3116
+ i.icon.battery.three.quarters:before {
3117
+ content: "\f241";
3118
+ }
3119
+ i.icon.battery.two:before {
3120
+ content: "\f242";
3121
+ }
3122
+ i.icon.battery.half:before {
3123
+ content: "\f242";
3124
+ }
3125
+ i.icon.battery.one:before {
3126
+ content: "\f243";
3127
+ }
3128
+ i.icon.battery.quarter:before {
3129
+ content: "\f243";
3130
+ }
3131
+ i.icon.battery.zero:before {
3132
+ content: "\f244";
3133
+ }
3134
+ i.icon.i.cursor:before {
3135
+ content: "\f246";
3136
+ }
3137
+ i.icon.jcb:before {
3138
+ content: "\f24b";
3139
+ }
3140
+ i.icon.japan.credit.bureau.card:before {
3141
+ content: "\f24b";
3142
+ }
3143
+ i.icon.diners.club.card:before {
3144
+ content: "\f24c";
3145
+ }
3146
+ i.icon.balance:before {
3147
+ content: "\f24e";
3148
+ }
3149
+ i.icon.hourglass.outline:before {
3150
+ content: "\f250";
3151
+ }
3152
+ i.icon.hourglass.zero:before {
3153
+ content: "\f250";
3154
+ }
3155
+ i.icon.hourglass.one:before {
3156
+ content: "\f251";
3157
+ }
3158
+ i.icon.hourglass.two:before {
3159
+ content: "\f252";
3160
+ }
3161
+ i.icon.hourglass.three:before {
3162
+ content: "\f253";
3163
+ }
3164
+ i.icon.hourglass.four:before {
3165
+ content: "\f254";
3166
+ }
3167
+ i.icon.grab:before {
3168
+ content: "\f255";
3169
+ }
3170
+ i.icon.hand.victory:before {
3171
+ content: "\f25b";
3172
+ }
3173
+ i.icon.tm:before {
3174
+ content: "\f25c";
3175
+ }
3176
+ i.icon.r.circle:before {
3177
+ content: "\f25d";
3178
+ }
3179
+ i.icon.television:before {
3180
+ content: "\f26c";
3181
+ }
3182
+ i.icon.five.hundred.pixels:before {
3183
+ content: "\f26e";
3184
+ }
3185
+ i.icon.calendar.plus:before {
3186
+ content: "\f271";
3187
+ }
3188
+ i.icon.calendar.minus:before {
3189
+ content: "\f272";
3190
+ }
3191
+ i.icon.calendar.times:before {
3192
+ content: "\f273";
3193
+ }
3194
+ i.icon.calendar.check:before {
3195
+ content: "\f274";
3196
+ }
3197
+ i.icon.factory:before {
3198
+ content: "\f275";
3199
+ }
3200
+ i.icon.commenting:before {
3201
+ content: "\f27a";
3202
+ }
3203
+ i.icon.commenting.outline:before {
3204
+ content: "\f27b";
3205
+ }
3206
+ i.icon.edge:before {
3207
+ content: "\f282";
3208
+ }
3209
+ i.icon.ms.edge:before {
3210
+ content: "\f282";
3211
+ }
3212
+ i.icon.wordpress.beginner:before {
3213
+ content: "\f297";
3214
+ }
3215
+ i.icon.wordpress.forms:before {
3216
+ content: "\f298";
3217
+ }
3218
+ i.icon.envira:before {
3219
+ content: "\f299";
3220
+ }
3221
+ i.icon.question.circle.outline:before {
3222
+ content: "\f29c";
3223
+ }
3224
+ i.icon.assistive.listening.devices:before {
3225
+ content: "\f2a2";
3226
+ }
3227
+ i.icon.als:before {
3228
+ content: "\f2a2";
3229
+ }
3230
+ i.icon.ald:before {
3231
+ content: "\f2a2";
3232
+ }
3233
+ i.icon.asl.interpreting:before {
3234
+ content: "\f2a3";
3235
+ }
3236
+ i.icon.deaf:before {
3237
+ content: "\f2a4";
3238
+ }
3239
+ i.icon.american.sign.language.interpreting:before {
3240
+ content: "\f2a3";
3241
+ }
3242
+ i.icon.hard.of.hearing:before {
3243
+ content: "\f2a4";
3244
+ }
3245
+ i.icon.signing:before {
3246
+ content: "\f2a7";
3247
+ }
3248
+ i.icon.new.pied.piper:before {
3249
+ content: "\f2ae";
3250
+ }
3251
+ i.icon.theme.isle:before {
3252
+ content: "\f2b2";
3253
+ }
3254
+ i.icon.google.plus.official:before {
3255
+ content: "\f2b3";
3256
+ }
3257
+ i.icon.fa:before {
3258
+ content: "\f2b4";
3259
+ }
3260
+ i.icon.vcard:before {
3261
+ content: "\f2bb";
3262
+ }
3263
+ i.icon.vcard.outline:before {
3264
+ content: "\f2bc";
3265
+ }
3266
+ i.icon.drivers.license:before {
3267
+ content: "\f2c2";
3268
+ }
3269
+ i.icon.drivers.license.outline:before {
3270
+ content: "\f2c3";
3271
+ }
3272
+ i.icon.thermometer:before {
3273
+ content: "\f2c7";
3274
+ }
3275
+ i.icon.s15:before {
3276
+ content: "\f2cd";
3277
+ }
3278
+ i.icon.bath:before {
3279
+ content: "\f2cd";
3280
+ }
3281
+ i.icon.times.rectangle:before {
3282
+ content: "\f2d3";
3283
+ }
3284
+ i.icon.times.rectangle.outline:before {
3285
+ content: "\f2d4";
3286
+ }
3287
+
3288
+
3289
+ /*******************************
3290
+ Site Overrides
3291
+ *******************************/
3292
+