vapid 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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 - Table
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.table{width:100%;background:#fff;margin:1em 0;border:1px solid rgba(34,36,38,.15);box-shadow:none;border-radius:.28571429rem;text-align:left;color:rgba(0,0,0,.87);border-collapse:separate;border-spacing:0}.ui.table:first-child{margin-top:0}.ui.table:last-child{margin-bottom:0}.ui.table td,.ui.table th{-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.ui.table thead{box-shadow:none}.ui.table thead th{cursor:auto;background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.92857143em .78571429em;vertical-align:inherit;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid rgba(34,36,38,.1);border-left:none}.ui.table thead tr>th:first-child{border-left:none}.ui.table thead tr:first-child>th:first-child{border-radius:.28571429rem 0 0 0}.ui.table thead tr:first-child>th:last-child{border-radius:0 .28571429rem 0 0}.ui.table thead tr:first-child>th:only-child{border-radius:.28571429rem .28571429rem 0 0}.ui.table tfoot{box-shadow:none}.ui.table tfoot th{cursor:auto;border-top:1px solid rgba(34,36,38,.15);background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.78571429em .78571429em;vertical-align:middle;font-style:normal;font-weight:400;text-transform:none}.ui.table tfoot tr>th:first-child{border-left:none}.ui.table tfoot tr:first-child>th:first-child{border-radius:0 0 0 .28571429rem}.ui.table tfoot tr:first-child>th:last-child{border-radius:0 0 .28571429rem 0}.ui.table tfoot tr:first-child>th:only-child{border-radius:0 0 .28571429rem .28571429rem}.ui.table tr td{border-top:1px solid rgba(34,36,38,.1)}.ui.table tr:first-child td{border-top:none}.ui.table td{padding:.78571429em .78571429em;text-align:inherit}.ui.table>.icon{vertical-align:baseline}.ui.table>.icon:only-child{margin:0}.ui.table.segment{padding:0}.ui.table.segment:after{display:none}.ui.table.segment.stacked:after{display:block}@media only screen and (max-width:767px){.ui.table:not(.unstackable){width:100%}.ui.table:not(.unstackable) tbody,.ui.table:not(.unstackable) tr,.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{width:auto!important;display:block!important}.ui.table:not(.unstackable){padding:0}.ui.table:not(.unstackable) thead{display:block}.ui.table:not(.unstackable) tfoot{display:block}.ui.table:not(.unstackable) tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important}.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{background:0 0;border:none!important;padding:.25em .75em!important;box-shadow:none!important}.ui.table:not(.unstackable) td:first-child,.ui.table:not(.unstackable) th:first-child{font-weight:700}.ui.definition.table:not(.unstackable) thead th:first-child{box-shadow:none!important}}.ui.table td .image,.ui.table td .image img,.ui.table th .image,.ui.table th .image img{max-width:none}.ui.structured.table{border-collapse:collapse}.ui.structured.table thead th{border-left:none;border-right:none}.ui.structured.sortable.table thead th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.ui.structured.basic.table th{border-left:none;border-right:none}.ui.structured.celled.table tr td,.ui.structured.celled.table tr th{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:400;color:rgba(0,0,0,.4);box-shadow:-1px -1px 0 1px #fff}.ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:0 0;font-weight:rgba(0,0,0,.4);color:normal;box-shadow:1px 1px 0 1px #fff}.ui.celled.definition.table thead:not(.full-width) th:first-child{box-shadow:0 -1px 0 1px #fff}.ui.celled.definition.table tfoot:not(.full-width) th:first-child{box-shadow:0 1px 0 1px #fff}.ui.definition.table tr td.definition,.ui.definition.table tr td:first-child:not(.ignored){background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.95);text-transform:'';box-shadow:'';text-align:'';font-size:1em;padding-left:'';padding-right:''}.ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.definition.table tfoot:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.definition.table td:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.ui.table td.positive,.ui.table tr.positive{box-shadow:0 0 0 #a3c293 inset}.ui.table td.positive,.ui.table tr.positive{background:#fcfff5!important;color:#2c662d!important}.ui.table td.negative,.ui.table tr.negative{box-shadow:0 0 0 #e0b4b4 inset}.ui.table td.negative,.ui.table tr.negative{background:#fff6f6!important;color:#9f3a38!important}.ui.table td.error,.ui.table tr.error{box-shadow:0 0 0 #e0b4b4 inset}.ui.table td.error,.ui.table tr.error{background:#fff6f6!important;color:#9f3a38!important}.ui.table td.warning,.ui.table tr.warning{box-shadow:0 0 0 #c9ba9b inset}.ui.table td.warning,.ui.table tr.warning{background:#fffaf3!important;color:#573a08!important}.ui.table td.active,.ui.table tr.active{box-shadow:0 0 0 rgba(0,0,0,.87) inset}.ui.table td.active,.ui.table tr.active{background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.ui.table tr td.disabled,.ui.table tr.disabled td,.ui.table tr.disabled:hover,.ui.table tr:hover td.disabled{pointer-events:none;color:rgba(40,40,40,.3)}@media only screen and (max-width:991px){.ui[class*="tablet stackable"].table,.ui[class*="tablet stackable"].table tbody,.ui[class*="tablet stackable"].table tr,.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{width:100%!important;display:block!important}.ui[class*="tablet stackable"].table{padding:0}.ui[class*="tablet stackable"].table thead{display:block}.ui[class*="tablet stackable"].table tfoot{display:block}.ui[class*="tablet stackable"].table tr{padding-top:1em;padding-bottom:1em;box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important}.ui[class*="tablet stackable"].table tr>td,.ui[class*="tablet stackable"].table tr>th{background:0 0;border:none!important;padding:.25em .75em;box-shadow:none!important}.ui.definition[class*="tablet stackable"].table thead th:first-child{box-shadow:none!important}}.ui.table [class*="left aligned"],.ui.table[class*="left aligned"]{text-align:left}.ui.table [class*="center aligned"],.ui.table[class*="center aligned"]{text-align:center}.ui.table [class*="right aligned"],.ui.table[class*="right aligned"]{text-align:right}.ui.table [class*="top aligned"],.ui.table[class*="top aligned"]{vertical-align:top}.ui.table [class*="middle aligned"],.ui.table[class*="middle aligned"]{vertical-align:middle}.ui.table [class*="bottom aligned"],.ui.table[class*="bottom aligned"]{vertical-align:bottom}.ui.table td.collapsing,.ui.table th.collapsing{width:1px;white-space:nowrap}.ui.fixed.table{table-layout:fixed}.ui.fixed.table td,.ui.fixed.table th{overflow:hidden;text-overflow:ellipsis}.ui.selectable.table tbody tr:hover,.ui.table tbody tr td.selectable:hover{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.95)!important}.ui.inverted.table tbody tr td.selectable:hover,.ui.selectable.inverted.table tbody tr:hover{background:rgba(255,255,255,.08)!important;color:#fff!important}.ui.table tbody tr td.selectable{padding:0}.ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit;padding:.78571429em .78571429em}.ui.selectable.table tr.error:hover,.ui.selectable.table tr:hover td.error,.ui.table tr td.selectable.error:hover{background:#ffe7e7!important;color:#943634!important}.ui.selectable.table tr.warning:hover,.ui.selectable.table tr:hover td.warning,.ui.table tr td.selectable.warning:hover{background:#fff4e4!important;color:#493107!important}.ui.selectable.table tr.active:hover,.ui.selectable.table tr:hover td.active,.ui.table tr td.selectable.active:hover{background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.ui.selectable.table tr.positive:hover,.ui.selectable.table tr:hover td.positive,.ui.table tr td.selectable.positive:hover{background:#f7ffe6!important;color:#275b28!important}.ui.selectable.table tr.negative:hover,.ui.selectable.table tr:hover td.negative,.ui.table tr td.selectable.negative:hover{background:#ffe7e7!important;color:#943634!important}.ui.attached.table{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);box-shadow:none;border:1px solid #d4d4d5}.ui.attached+.ui.attached.table:not(.top){border-top:none}.ui[class*="top attached"].table{bottom:0;margin-bottom:0;top:0;margin-top:1em;border-radius:.28571429rem .28571429rem 0 0}.ui.table[class*="top attached"]:first-child{margin-top:0}.ui[class*="bottom attached"].table{bottom:0;margin-top:0;top:0;margin-bottom:1em;box-shadow:none,none;border-radius:0 0 .28571429rem .28571429rem}.ui[class*="bottom attached"].table:last-child{margin-bottom:0}.ui.striped.table tbody tr:nth-child(2n),.ui.striped.table>tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.ui.inverted.striped.table tbody tr:nth-child(2n),.ui.inverted.striped.table>tr:nth-child(2n){background-color:rgba(255,255,255,.05)}.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#efefef!important;color:rgba(0,0,0,.95)!important}.ui.table [class*="single line"],.ui.table[class*="single line"]{white-space:nowrap}.ui.table [class*="single line"],.ui.table[class*="single line"]{white-space:nowrap}.ui.red.table{border-top:.2em solid #db2828}.ui.inverted.red.table{background-color:#db2828!important;color:#fff!important}.ui.orange.table{border-top:.2em solid #f2711c}.ui.inverted.orange.table{background-color:#f2711c!important;color:#fff!important}.ui.yellow.table{border-top:.2em solid #fbbd08}.ui.inverted.yellow.table{background-color:#fbbd08!important;color:#fff!important}.ui.olive.table{border-top:.2em solid #b5cc18}.ui.inverted.olive.table{background-color:#b5cc18!important;color:#fff!important}.ui.green.table{border-top:.2em solid #21ba45}.ui.inverted.green.table{background-color:#21ba45!important;color:#fff!important}.ui.teal.table{border-top:.2em solid #00b5ad}.ui.inverted.teal.table{background-color:#00b5ad!important;color:#fff!important}.ui.blue.table{border-top:.2em solid #2185d0}.ui.inverted.blue.table{background-color:#2185d0!important;color:#fff!important}.ui.violet.table{border-top:.2em solid #6435c9}.ui.inverted.violet.table{background-color:#6435c9!important;color:#fff!important}.ui.purple.table{border-top:.2em solid #a333c8}.ui.inverted.purple.table{background-color:#a333c8!important;color:#fff!important}.ui.pink.table{border-top:.2em solid #e03997}.ui.inverted.pink.table{background-color:#e03997!important;color:#fff!important}.ui.brown.table{border-top:.2em solid #a5673f}.ui.inverted.brown.table{background-color:#a5673f!important;color:#fff!important}.ui.grey.table{border-top:.2em solid #767676}.ui.inverted.grey.table{background-color:#767676!important;color:#fff!important}.ui.black.table{border-top:.2em solid #1b1c1d}.ui.inverted.black.table{background-color:#1b1c1d!important;color:#fff!important}.ui.one.column.table td{width:100%}.ui.two.column.table td{width:50%}.ui.three.column.table td{width:33.33333333%}.ui.four.column.table td{width:25%}.ui.five.column.table td{width:20%}.ui.six.column.table td{width:16.66666667%}.ui.seven.column.table td{width:14.28571429%}.ui.eight.column.table td{width:12.5%}.ui.nine.column.table td{width:11.11111111%}.ui.ten.column.table td{width:10%}.ui.eleven.column.table td{width:9.09090909%}.ui.twelve.column.table td{width:8.33333333%}.ui.thirteen.column.table td{width:7.69230769%}.ui.fourteen.column.table td{width:7.14285714%}.ui.fifteen.column.table td{width:6.66666667%}.ui.sixteen.column.table td{width:6.25%}.ui.table td.one.wide,.ui.table th.one.wide{width:6.25%}.ui.table td.two.wide,.ui.table th.two.wide{width:12.5%}.ui.table td.three.wide,.ui.table th.three.wide{width:18.75%}.ui.table td.four.wide,.ui.table th.four.wide{width:25%}.ui.table td.five.wide,.ui.table th.five.wide{width:31.25%}.ui.table td.six.wide,.ui.table th.six.wide{width:37.5%}.ui.table td.seven.wide,.ui.table th.seven.wide{width:43.75%}.ui.table td.eight.wide,.ui.table th.eight.wide{width:50%}.ui.table td.nine.wide,.ui.table th.nine.wide{width:56.25%}.ui.table td.ten.wide,.ui.table th.ten.wide{width:62.5%}.ui.table td.eleven.wide,.ui.table th.eleven.wide{width:68.75%}.ui.table td.twelve.wide,.ui.table th.twelve.wide{width:75%}.ui.table td.thirteen.wide,.ui.table th.thirteen.wide{width:81.25%}.ui.table td.fourteen.wide,.ui.table th.fourteen.wide{width:87.5%}.ui.table td.fifteen.wide,.ui.table th.fifteen.wide{width:93.75%}.ui.table td.sixteen.wide,.ui.table th.sixteen.wide{width:100%}.ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87)}.ui.sortable.table thead th:first-child{border-left:none}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui.sortable.table thead th:after{display:none;font-style:normal;font-weight:400;text-decoration:inherit;content:'';height:1em;width:auto;opacity:.8;margin:0 0 0 .5em;font-family:Icons}.ui.sortable.table thead th.ascending:after{content:'\f0d8'}.ui.sortable.table thead th.descending:after{content:'\f0d7'}.ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,.3)}.ui.sortable.table thead th:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.ui.sortable.table thead th.sorted{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.sortable.table thead th.sorted:after{display:inline-block}.ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.ui.inverted.sortable.table thead th.sorted{background:rgba(255,255,255,.15) -webkit-linear-gradient(transparent,rgba(0,0,0,.05));background:rgba(255,255,255,.15) linear-gradient(transparent,rgba(0,0,0,.05));color:#fff}.ui.inverted.sortable.table thead th:hover{background:rgba(255,255,255,.08) -webkit-linear-gradient(transparent,rgba(0,0,0,.05));background:rgba(255,255,255,.08) linear-gradient(transparent,rgba(0,0,0,.05));color:#fff}.ui.inverted.sortable.table thead th{border-left-color:transparent;border-right-color:transparent}.ui.inverted.table{background:#333;color:rgba(255,255,255,.9);border:none}.ui.inverted.table th{background-color:rgba(0,0,0,.15);border-color:rgba(255,255,255,.1)!important;color:rgba(255,255,255,.9)}.ui.inverted.table tr td{border-color:rgba(255,255,255,.1)!important}.ui.inverted.table tr td.disabled,.ui.inverted.table tr.disabled td,.ui.inverted.table tr.disabled:hover td,.ui.inverted.table tr:hover td.disabled{pointer-events:none;color:rgba(225,225,225,.3)}.ui.inverted.definition.table tfoot:not(.full-width) th:first-child,.ui.inverted.definition.table thead:not(.full-width) th:first-child{background:#fff}.ui.inverted.definition.table tr td:first-child{background:rgba(255,255,255,.02);color:#fff}.ui.collapsing.table{width:auto}.ui.basic.table{background:0 0;border:1px solid rgba(34,36,38,.15);box-shadow:none}.ui.basic.table tfoot,.ui.basic.table thead{box-shadow:none}.ui.basic.table th{background:0 0;border-left:none}.ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,.1)}.ui.basic.table td{background:0 0}.ui.basic.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,0,.05)!important}.ui[class*="very basic"].table{border:none}.ui[class*="very basic"].table:not(.sortable):not(.striped) td,.ui[class*="very basic"].table:not(.sortable):not(.striped) th{padding:''}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child{padding-left:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child,.ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child{padding-right:0}.ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0}.ui.celled.table tr td,.ui.celled.table tr th{border-left:1px solid rgba(34,36,38,.1)}.ui.celled.table tr td:first-child,.ui.celled.table tr th:first-child{border-left:none}.ui.padded.table th{padding-left:1em;padding-right:1em}.ui.padded.table td,.ui.padded.table th{padding:1em 1em}.ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.ui[class*="very padded"].table td{padding:1.5em 1.5em}.ui.compact.table th{padding-left:.7em;padding-right:.7em}.ui.compact.table td{padding:.5em .7em}.ui[class*="very compact"].table th{padding-left:.6em;padding-right:.6em}.ui[class*="very compact"].table td{padding:.4em .6em}.ui.small.table{font-size:.9em}.ui.table{font-size:1em}.ui.large.table{font-size:1.1em}
@@ -0,0 +1,1964 @@
1
+ /*!
2
+ * # Semantic UI 2.2.9 - Transition
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
+ Transitions
14
+ *******************************/
15
+
16
+ .transition {
17
+ -webkit-animation-iteration-count: 1;
18
+ animation-iteration-count: 1;
19
+ -webkit-animation-duration: 300ms;
20
+ animation-duration: 300ms;
21
+ -webkit-animation-timing-function: ease;
22
+ animation-timing-function: ease;
23
+ -webkit-animation-fill-mode: both;
24
+ animation-fill-mode: both;
25
+ }
26
+
27
+
28
+ /*******************************
29
+ States
30
+ *******************************/
31
+
32
+
33
+ /* Animating */
34
+ .animating.transition {
35
+ -webkit-backface-visibility: hidden;
36
+ backface-visibility: hidden;
37
+ visibility: visible !important;
38
+ }
39
+
40
+ /* Loading */
41
+ .loading.transition {
42
+ position: absolute;
43
+ top: -99999px;
44
+ left: -99999px;
45
+ }
46
+
47
+ /* Hidden */
48
+ .hidden.transition {
49
+ display: none;
50
+ visibility: hidden;
51
+ }
52
+
53
+ /* Visible */
54
+ .visible.transition {
55
+ display: block !important;
56
+ visibility: visible !important;
57
+
58
+ /* backface-visibility: @backfaceVisibility;
59
+ transform: @use3DAcceleration;*/
60
+ }
61
+ /* Disabled */
62
+ .disabled.transition {
63
+ -webkit-animation-play-state: paused;
64
+ animation-play-state: paused;
65
+ }
66
+
67
+
68
+ /*******************************
69
+ Variations
70
+ *******************************/
71
+
72
+ .looping.transition {
73
+ -webkit-animation-iteration-count: infinite;
74
+ animation-iteration-count: infinite;
75
+ }
76
+
77
+
78
+ /*******************************
79
+ Transitions
80
+ *******************************/
81
+
82
+ /*
83
+ Some transitions adapted from Animate CSS
84
+ https://github.com/daneden/animate.css
85
+
86
+ Additional transitions adapted from Glide
87
+ by Nick Pettit - https://github.com/nickpettit/glide
88
+ */
89
+
90
+ /*--------------
91
+ Browse
92
+ ---------------*/
93
+
94
+ .transition.browse {
95
+ -webkit-animation-duration: 500ms;
96
+ animation-duration: 500ms;
97
+ }
98
+ .transition.browse.in {
99
+ -webkit-animation-name: browseIn;
100
+ animation-name: browseIn;
101
+ }
102
+ .transition.browse.out,
103
+ .transition.browse.left.out {
104
+ -webkit-animation-name: browseOutLeft;
105
+ animation-name: browseOutLeft;
106
+ }
107
+ .transition.browse.right.out {
108
+ -webkit-animation-name: browseOutRight;
109
+ animation-name: browseOutRight;
110
+ }
111
+
112
+ /* In */
113
+ @-webkit-keyframes browseIn {
114
+ 0% {
115
+ -webkit-transform: scale(0.8) translateZ(0px);
116
+ transform: scale(0.8) translateZ(0px);
117
+ z-index: -1;
118
+ }
119
+ 10% {
120
+ -webkit-transform: scale(0.8) translateZ(0px);
121
+ transform: scale(0.8) translateZ(0px);
122
+ z-index: -1;
123
+ opacity: 0.7;
124
+ }
125
+ 80% {
126
+ -webkit-transform: scale(1.05) translateZ(0px);
127
+ transform: scale(1.05) translateZ(0px);
128
+ opacity: 1;
129
+ z-index: 999;
130
+ }
131
+ 100% {
132
+ -webkit-transform: scale(1) translateZ(0px);
133
+ transform: scale(1) translateZ(0px);
134
+ z-index: 999;
135
+ }
136
+ }
137
+ @keyframes browseIn {
138
+ 0% {
139
+ -webkit-transform: scale(0.8) translateZ(0px);
140
+ transform: scale(0.8) translateZ(0px);
141
+ z-index: -1;
142
+ }
143
+ 10% {
144
+ -webkit-transform: scale(0.8) translateZ(0px);
145
+ transform: scale(0.8) translateZ(0px);
146
+ z-index: -1;
147
+ opacity: 0.7;
148
+ }
149
+ 80% {
150
+ -webkit-transform: scale(1.05) translateZ(0px);
151
+ transform: scale(1.05) translateZ(0px);
152
+ opacity: 1;
153
+ z-index: 999;
154
+ }
155
+ 100% {
156
+ -webkit-transform: scale(1) translateZ(0px);
157
+ transform: scale(1) translateZ(0px);
158
+ z-index: 999;
159
+ }
160
+ }
161
+
162
+ /* Out */
163
+ @-webkit-keyframes browseOutLeft {
164
+ 0% {
165
+ z-index: 999;
166
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
167
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg);
168
+ }
169
+ 50% {
170
+ z-index: -1;
171
+ -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
172
+ transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
173
+ }
174
+ 80% {
175
+ opacity: 1;
176
+ }
177
+ 100% {
178
+ z-index: -1;
179
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
180
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
181
+ opacity: 0;
182
+ }
183
+ }
184
+ @keyframes browseOutLeft {
185
+ 0% {
186
+ z-index: 999;
187
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
188
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg);
189
+ }
190
+ 50% {
191
+ z-index: -1;
192
+ -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
193
+ transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
194
+ }
195
+ 80% {
196
+ opacity: 1;
197
+ }
198
+ 100% {
199
+ z-index: -1;
200
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
201
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
202
+ opacity: 0;
203
+ }
204
+ }
205
+ @-webkit-keyframes browseOutRight {
206
+ 0% {
207
+ z-index: 999;
208
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
209
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg);
210
+ }
211
+ 50% {
212
+ z-index: 1;
213
+ -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
214
+ transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
215
+ }
216
+ 80% {
217
+ opacity: 1;
218
+ }
219
+ 100% {
220
+ z-index: 1;
221
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
222
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
223
+ opacity: 0;
224
+ }
225
+ }
226
+ @keyframes browseOutRight {
227
+ 0% {
228
+ z-index: 999;
229
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
230
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg);
231
+ }
232
+ 50% {
233
+ z-index: 1;
234
+ -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
235
+ transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
236
+ }
237
+ 80% {
238
+ opacity: 1;
239
+ }
240
+ 100% {
241
+ z-index: 1;
242
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
243
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
244
+ opacity: 0;
245
+ }
246
+ }
247
+
248
+ /*--------------
249
+ Drop
250
+ ---------------*/
251
+
252
+ .drop.transition {
253
+ -webkit-transform-origin: top center;
254
+ transform-origin: top center;
255
+ -webkit-animation-duration: 400ms;
256
+ animation-duration: 400ms;
257
+ -webkit-animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
258
+ animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
259
+ }
260
+ .drop.transition.in {
261
+ -webkit-animation-name: dropIn;
262
+ animation-name: dropIn;
263
+ }
264
+ .drop.transition.out {
265
+ -webkit-animation-name: dropOut;
266
+ animation-name: dropOut;
267
+ }
268
+
269
+ /* Drop */
270
+ @-webkit-keyframes dropIn {
271
+ 0% {
272
+ opacity: 0;
273
+ -webkit-transform: scale(0);
274
+ transform: scale(0);
275
+ }
276
+ 100% {
277
+ opacity: 1;
278
+ -webkit-transform: scale(1);
279
+ transform: scale(1);
280
+ }
281
+ }
282
+ @keyframes dropIn {
283
+ 0% {
284
+ opacity: 0;
285
+ -webkit-transform: scale(0);
286
+ transform: scale(0);
287
+ }
288
+ 100% {
289
+ opacity: 1;
290
+ -webkit-transform: scale(1);
291
+ transform: scale(1);
292
+ }
293
+ }
294
+ @-webkit-keyframes dropOut {
295
+ 0% {
296
+ opacity: 1;
297
+ -webkit-transform: scale(1);
298
+ transform: scale(1);
299
+ }
300
+ 100% {
301
+ opacity: 0;
302
+ -webkit-transform: scale(0);
303
+ transform: scale(0);
304
+ }
305
+ }
306
+ @keyframes dropOut {
307
+ 0% {
308
+ opacity: 1;
309
+ -webkit-transform: scale(1);
310
+ transform: scale(1);
311
+ }
312
+ 100% {
313
+ opacity: 0;
314
+ -webkit-transform: scale(0);
315
+ transform: scale(0);
316
+ }
317
+ }
318
+
319
+ /*--------------
320
+ Fade
321
+ ---------------*/
322
+
323
+ .transition.fade.in {
324
+ -webkit-animation-name: fadeIn;
325
+ animation-name: fadeIn;
326
+ }
327
+ .transition[class*="fade up"].in {
328
+ -webkit-animation-name: fadeInUp;
329
+ animation-name: fadeInUp;
330
+ }
331
+ .transition[class*="fade down"].in {
332
+ -webkit-animation-name: fadeInDown;
333
+ animation-name: fadeInDown;
334
+ }
335
+ .transition[class*="fade left"].in {
336
+ -webkit-animation-name: fadeInLeft;
337
+ animation-name: fadeInLeft;
338
+ }
339
+ .transition[class*="fade right"].in {
340
+ -webkit-animation-name: fadeInRight;
341
+ animation-name: fadeInRight;
342
+ }
343
+ .transition.fade.out {
344
+ -webkit-animation-name: fadeOut;
345
+ animation-name: fadeOut;
346
+ }
347
+ .transition[class*="fade up"].out {
348
+ -webkit-animation-name: fadeOutUp;
349
+ animation-name: fadeOutUp;
350
+ }
351
+ .transition[class*="fade down"].out {
352
+ -webkit-animation-name: fadeOutDown;
353
+ animation-name: fadeOutDown;
354
+ }
355
+ .transition[class*="fade left"].out {
356
+ -webkit-animation-name: fadeOutLeft;
357
+ animation-name: fadeOutLeft;
358
+ }
359
+ .transition[class*="fade right"].out {
360
+ -webkit-animation-name: fadeOutRight;
361
+ animation-name: fadeOutRight;
362
+ }
363
+
364
+ /* In */
365
+ @-webkit-keyframes fadeIn {
366
+ 0% {
367
+ opacity: 0;
368
+ }
369
+ 100% {
370
+ opacity: 1;
371
+ }
372
+ }
373
+ @keyframes fadeIn {
374
+ 0% {
375
+ opacity: 0;
376
+ }
377
+ 100% {
378
+ opacity: 1;
379
+ }
380
+ }
381
+ @-webkit-keyframes fadeInUp {
382
+ 0% {
383
+ opacity: 0;
384
+ -webkit-transform: translateY(10%);
385
+ transform: translateY(10%);
386
+ }
387
+ 100% {
388
+ opacity: 1;
389
+ -webkit-transform: translateY(0%);
390
+ transform: translateY(0%);
391
+ }
392
+ }
393
+ @keyframes fadeInUp {
394
+ 0% {
395
+ opacity: 0;
396
+ -webkit-transform: translateY(10%);
397
+ transform: translateY(10%);
398
+ }
399
+ 100% {
400
+ opacity: 1;
401
+ -webkit-transform: translateY(0%);
402
+ transform: translateY(0%);
403
+ }
404
+ }
405
+ @-webkit-keyframes fadeInDown {
406
+ 0% {
407
+ opacity: 0;
408
+ -webkit-transform: translateY(-10%);
409
+ transform: translateY(-10%);
410
+ }
411
+ 100% {
412
+ opacity: 1;
413
+ -webkit-transform: translateY(0%);
414
+ transform: translateY(0%);
415
+ }
416
+ }
417
+ @keyframes fadeInDown {
418
+ 0% {
419
+ opacity: 0;
420
+ -webkit-transform: translateY(-10%);
421
+ transform: translateY(-10%);
422
+ }
423
+ 100% {
424
+ opacity: 1;
425
+ -webkit-transform: translateY(0%);
426
+ transform: translateY(0%);
427
+ }
428
+ }
429
+ @-webkit-keyframes fadeInLeft {
430
+ 0% {
431
+ opacity: 0;
432
+ -webkit-transform: translateX(10%);
433
+ transform: translateX(10%);
434
+ }
435
+ 100% {
436
+ opacity: 1;
437
+ -webkit-transform: translateX(0%);
438
+ transform: translateX(0%);
439
+ }
440
+ }
441
+ @keyframes fadeInLeft {
442
+ 0% {
443
+ opacity: 0;
444
+ -webkit-transform: translateX(10%);
445
+ transform: translateX(10%);
446
+ }
447
+ 100% {
448
+ opacity: 1;
449
+ -webkit-transform: translateX(0%);
450
+ transform: translateX(0%);
451
+ }
452
+ }
453
+ @-webkit-keyframes fadeInRight {
454
+ 0% {
455
+ opacity: 0;
456
+ -webkit-transform: translateX(-10%);
457
+ transform: translateX(-10%);
458
+ }
459
+ 100% {
460
+ opacity: 1;
461
+ -webkit-transform: translateX(0%);
462
+ transform: translateX(0%);
463
+ }
464
+ }
465
+ @keyframes fadeInRight {
466
+ 0% {
467
+ opacity: 0;
468
+ -webkit-transform: translateX(-10%);
469
+ transform: translateX(-10%);
470
+ }
471
+ 100% {
472
+ opacity: 1;
473
+ -webkit-transform: translateX(0%);
474
+ transform: translateX(0%);
475
+ }
476
+ }
477
+
478
+ /* Out */
479
+ @-webkit-keyframes fadeOut {
480
+ 0% {
481
+ opacity: 1;
482
+ }
483
+ 100% {
484
+ opacity: 0;
485
+ }
486
+ }
487
+ @keyframes fadeOut {
488
+ 0% {
489
+ opacity: 1;
490
+ }
491
+ 100% {
492
+ opacity: 0;
493
+ }
494
+ }
495
+ @-webkit-keyframes fadeOutUp {
496
+ 0% {
497
+ opacity: 1;
498
+ -webkit-transform: translateY(0%);
499
+ transform: translateY(0%);
500
+ }
501
+ 100% {
502
+ opacity: 0;
503
+ -webkit-transform: translateY(5%);
504
+ transform: translateY(5%);
505
+ }
506
+ }
507
+ @keyframes fadeOutUp {
508
+ 0% {
509
+ opacity: 1;
510
+ -webkit-transform: translateY(0%);
511
+ transform: translateY(0%);
512
+ }
513
+ 100% {
514
+ opacity: 0;
515
+ -webkit-transform: translateY(5%);
516
+ transform: translateY(5%);
517
+ }
518
+ }
519
+ @-webkit-keyframes fadeOutDown {
520
+ 0% {
521
+ opacity: 1;
522
+ -webkit-transform: translateY(0%);
523
+ transform: translateY(0%);
524
+ }
525
+ 100% {
526
+ opacity: 0;
527
+ -webkit-transform: translateY(-5%);
528
+ transform: translateY(-5%);
529
+ }
530
+ }
531
+ @keyframes fadeOutDown {
532
+ 0% {
533
+ opacity: 1;
534
+ -webkit-transform: translateY(0%);
535
+ transform: translateY(0%);
536
+ }
537
+ 100% {
538
+ opacity: 0;
539
+ -webkit-transform: translateY(-5%);
540
+ transform: translateY(-5%);
541
+ }
542
+ }
543
+ @-webkit-keyframes fadeOutLeft {
544
+ 0% {
545
+ opacity: 1;
546
+ -webkit-transform: translateX(0%);
547
+ transform: translateX(0%);
548
+ }
549
+ 100% {
550
+ opacity: 0;
551
+ -webkit-transform: translateX(5%);
552
+ transform: translateX(5%);
553
+ }
554
+ }
555
+ @keyframes fadeOutLeft {
556
+ 0% {
557
+ opacity: 1;
558
+ -webkit-transform: translateX(0%);
559
+ transform: translateX(0%);
560
+ }
561
+ 100% {
562
+ opacity: 0;
563
+ -webkit-transform: translateX(5%);
564
+ transform: translateX(5%);
565
+ }
566
+ }
567
+ @-webkit-keyframes fadeOutRight {
568
+ 0% {
569
+ opacity: 1;
570
+ -webkit-transform: translateX(0%);
571
+ transform: translateX(0%);
572
+ }
573
+ 100% {
574
+ opacity: 0;
575
+ -webkit-transform: translateX(-5%);
576
+ transform: translateX(-5%);
577
+ }
578
+ }
579
+ @keyframes fadeOutRight {
580
+ 0% {
581
+ opacity: 1;
582
+ -webkit-transform: translateX(0%);
583
+ transform: translateX(0%);
584
+ }
585
+ 100% {
586
+ opacity: 0;
587
+ -webkit-transform: translateX(-5%);
588
+ transform: translateX(-5%);
589
+ }
590
+ }
591
+
592
+ /*--------------
593
+ Flips
594
+ ---------------*/
595
+
596
+ .flip.transition.in,
597
+ .flip.transition.out {
598
+ -webkit-animation-duration: 600ms;
599
+ animation-duration: 600ms;
600
+ }
601
+ .horizontal.flip.transition.in {
602
+ -webkit-animation-name: horizontalFlipIn;
603
+ animation-name: horizontalFlipIn;
604
+ }
605
+ .horizontal.flip.transition.out {
606
+ -webkit-animation-name: horizontalFlipOut;
607
+ animation-name: horizontalFlipOut;
608
+ }
609
+ .vertical.flip.transition.in {
610
+ -webkit-animation-name: verticalFlipIn;
611
+ animation-name: verticalFlipIn;
612
+ }
613
+ .vertical.flip.transition.out {
614
+ -webkit-animation-name: verticalFlipOut;
615
+ animation-name: verticalFlipOut;
616
+ }
617
+
618
+ /* In */
619
+ @-webkit-keyframes horizontalFlipIn {
620
+ 0% {
621
+ -webkit-transform: perspective(2000px) rotateY(-90deg);
622
+ transform: perspective(2000px) rotateY(-90deg);
623
+ opacity: 0;
624
+ }
625
+ 100% {
626
+ -webkit-transform: perspective(2000px) rotateY(0deg);
627
+ transform: perspective(2000px) rotateY(0deg);
628
+ opacity: 1;
629
+ }
630
+ }
631
+ @keyframes horizontalFlipIn {
632
+ 0% {
633
+ -webkit-transform: perspective(2000px) rotateY(-90deg);
634
+ transform: perspective(2000px) rotateY(-90deg);
635
+ opacity: 0;
636
+ }
637
+ 100% {
638
+ -webkit-transform: perspective(2000px) rotateY(0deg);
639
+ transform: perspective(2000px) rotateY(0deg);
640
+ opacity: 1;
641
+ }
642
+ }
643
+ @-webkit-keyframes verticalFlipIn {
644
+ 0% {
645
+ -webkit-transform: perspective(2000px) rotateX(-90deg);
646
+ transform: perspective(2000px) rotateX(-90deg);
647
+ opacity: 0;
648
+ }
649
+ 100% {
650
+ -webkit-transform: perspective(2000px) rotateX(0deg);
651
+ transform: perspective(2000px) rotateX(0deg);
652
+ opacity: 1;
653
+ }
654
+ }
655
+ @keyframes verticalFlipIn {
656
+ 0% {
657
+ -webkit-transform: perspective(2000px) rotateX(-90deg);
658
+ transform: perspective(2000px) rotateX(-90deg);
659
+ opacity: 0;
660
+ }
661
+ 100% {
662
+ -webkit-transform: perspective(2000px) rotateX(0deg);
663
+ transform: perspective(2000px) rotateX(0deg);
664
+ opacity: 1;
665
+ }
666
+ }
667
+
668
+ /* Out */
669
+ @-webkit-keyframes horizontalFlipOut {
670
+ 0% {
671
+ -webkit-transform: perspective(2000px) rotateY(0deg);
672
+ transform: perspective(2000px) rotateY(0deg);
673
+ opacity: 1;
674
+ }
675
+ 100% {
676
+ -webkit-transform: perspective(2000px) rotateY(90deg);
677
+ transform: perspective(2000px) rotateY(90deg);
678
+ opacity: 0;
679
+ }
680
+ }
681
+ @keyframes horizontalFlipOut {
682
+ 0% {
683
+ -webkit-transform: perspective(2000px) rotateY(0deg);
684
+ transform: perspective(2000px) rotateY(0deg);
685
+ opacity: 1;
686
+ }
687
+ 100% {
688
+ -webkit-transform: perspective(2000px) rotateY(90deg);
689
+ transform: perspective(2000px) rotateY(90deg);
690
+ opacity: 0;
691
+ }
692
+ }
693
+ @-webkit-keyframes verticalFlipOut {
694
+ 0% {
695
+ -webkit-transform: perspective(2000px) rotateX(0deg);
696
+ transform: perspective(2000px) rotateX(0deg);
697
+ opacity: 1;
698
+ }
699
+ 100% {
700
+ -webkit-transform: perspective(2000px) rotateX(-90deg);
701
+ transform: perspective(2000px) rotateX(-90deg);
702
+ opacity: 0;
703
+ }
704
+ }
705
+ @keyframes verticalFlipOut {
706
+ 0% {
707
+ -webkit-transform: perspective(2000px) rotateX(0deg);
708
+ transform: perspective(2000px) rotateX(0deg);
709
+ opacity: 1;
710
+ }
711
+ 100% {
712
+ -webkit-transform: perspective(2000px) rotateX(-90deg);
713
+ transform: perspective(2000px) rotateX(-90deg);
714
+ opacity: 0;
715
+ }
716
+ }
717
+
718
+ /*--------------
719
+ Scale
720
+ ---------------*/
721
+
722
+ .scale.transition.in {
723
+ -webkit-animation-name: scaleIn;
724
+ animation-name: scaleIn;
725
+ }
726
+ .scale.transition.out {
727
+ -webkit-animation-name: scaleOut;
728
+ animation-name: scaleOut;
729
+ }
730
+ @-webkit-keyframes scaleIn {
731
+ 0% {
732
+ opacity: 0;
733
+ -webkit-transform: scale(0.8);
734
+ transform: scale(0.8);
735
+ }
736
+ 100% {
737
+ opacity: 1;
738
+ -webkit-transform: scale(1);
739
+ transform: scale(1);
740
+ }
741
+ }
742
+ @keyframes scaleIn {
743
+ 0% {
744
+ opacity: 0;
745
+ -webkit-transform: scale(0.8);
746
+ transform: scale(0.8);
747
+ }
748
+ 100% {
749
+ opacity: 1;
750
+ -webkit-transform: scale(1);
751
+ transform: scale(1);
752
+ }
753
+ }
754
+
755
+ /* Out */
756
+ @-webkit-keyframes scaleOut {
757
+ 0% {
758
+ opacity: 1;
759
+ -webkit-transform: scale(1);
760
+ transform: scale(1);
761
+ }
762
+ 100% {
763
+ opacity: 0;
764
+ -webkit-transform: scale(0.9);
765
+ transform: scale(0.9);
766
+ }
767
+ }
768
+ @keyframes scaleOut {
769
+ 0% {
770
+ opacity: 1;
771
+ -webkit-transform: scale(1);
772
+ transform: scale(1);
773
+ }
774
+ 100% {
775
+ opacity: 0;
776
+ -webkit-transform: scale(0.9);
777
+ transform: scale(0.9);
778
+ }
779
+ }
780
+
781
+ /*--------------
782
+ Fly
783
+ ---------------*/
784
+
785
+
786
+ /* Inward */
787
+ .transition.fly {
788
+ -webkit-animation-duration: 0.6s;
789
+ animation-duration: 0.6s;
790
+ -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
791
+ transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
792
+ }
793
+ .transition.fly.in {
794
+ -webkit-animation-name: flyIn;
795
+ animation-name: flyIn;
796
+ }
797
+ .transition[class*="fly up"].in {
798
+ -webkit-animation-name: flyInUp;
799
+ animation-name: flyInUp;
800
+ }
801
+ .transition[class*="fly down"].in {
802
+ -webkit-animation-name: flyInDown;
803
+ animation-name: flyInDown;
804
+ }
805
+ .transition[class*="fly left"].in {
806
+ -webkit-animation-name: flyInLeft;
807
+ animation-name: flyInLeft;
808
+ }
809
+ .transition[class*="fly right"].in {
810
+ -webkit-animation-name: flyInRight;
811
+ animation-name: flyInRight;
812
+ }
813
+
814
+ /* Outward */
815
+ .transition.fly.out {
816
+ -webkit-animation-name: flyOut;
817
+ animation-name: flyOut;
818
+ }
819
+ .transition[class*="fly up"].out {
820
+ -webkit-animation-name: flyOutUp;
821
+ animation-name: flyOutUp;
822
+ }
823
+ .transition[class*="fly down"].out {
824
+ -webkit-animation-name: flyOutDown;
825
+ animation-name: flyOutDown;
826
+ }
827
+ .transition[class*="fly left"].out {
828
+ -webkit-animation-name: flyOutLeft;
829
+ animation-name: flyOutLeft;
830
+ }
831
+ .transition[class*="fly right"].out {
832
+ -webkit-animation-name: flyOutRight;
833
+ animation-name: flyOutRight;
834
+ }
835
+
836
+ /* In */
837
+ @-webkit-keyframes flyIn {
838
+ 0% {
839
+ opacity: 0;
840
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
841
+ transform: scale3d(0.3, 0.3, 0.3);
842
+ }
843
+ 20% {
844
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
845
+ transform: scale3d(1.1, 1.1, 1.1);
846
+ }
847
+ 40% {
848
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
849
+ transform: scale3d(0.9, 0.9, 0.9);
850
+ }
851
+ 60% {
852
+ opacity: 1;
853
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
854
+ transform: scale3d(1.03, 1.03, 1.03);
855
+ }
856
+ 80% {
857
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
858
+ transform: scale3d(0.97, 0.97, 0.97);
859
+ }
860
+ 100% {
861
+ opacity: 1;
862
+ -webkit-transform: scale3d(1, 1, 1);
863
+ transform: scale3d(1, 1, 1);
864
+ }
865
+ }
866
+ @keyframes flyIn {
867
+ 0% {
868
+ opacity: 0;
869
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
870
+ transform: scale3d(0.3, 0.3, 0.3);
871
+ }
872
+ 20% {
873
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
874
+ transform: scale3d(1.1, 1.1, 1.1);
875
+ }
876
+ 40% {
877
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
878
+ transform: scale3d(0.9, 0.9, 0.9);
879
+ }
880
+ 60% {
881
+ opacity: 1;
882
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
883
+ transform: scale3d(1.03, 1.03, 1.03);
884
+ }
885
+ 80% {
886
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
887
+ transform: scale3d(0.97, 0.97, 0.97);
888
+ }
889
+ 100% {
890
+ opacity: 1;
891
+ -webkit-transform: scale3d(1, 1, 1);
892
+ transform: scale3d(1, 1, 1);
893
+ }
894
+ }
895
+ @-webkit-keyframes flyInUp {
896
+ 0% {
897
+ opacity: 0;
898
+ -webkit-transform: translate3d(0, 1500px, 0);
899
+ transform: translate3d(0, 1500px, 0);
900
+ }
901
+ 60% {
902
+ opacity: 1;
903
+ -webkit-transform: translate3d(0, -20px, 0);
904
+ transform: translate3d(0, -20px, 0);
905
+ }
906
+ 75% {
907
+ -webkit-transform: translate3d(0, 10px, 0);
908
+ transform: translate3d(0, 10px, 0);
909
+ }
910
+ 90% {
911
+ -webkit-transform: translate3d(0, -5px, 0);
912
+ transform: translate3d(0, -5px, 0);
913
+ }
914
+ 100% {
915
+ -webkit-transform: translate3d(0, 0, 0);
916
+ transform: translate3d(0, 0, 0);
917
+ }
918
+ }
919
+ @keyframes flyInUp {
920
+ 0% {
921
+ opacity: 0;
922
+ -webkit-transform: translate3d(0, 1500px, 0);
923
+ transform: translate3d(0, 1500px, 0);
924
+ }
925
+ 60% {
926
+ opacity: 1;
927
+ -webkit-transform: translate3d(0, -20px, 0);
928
+ transform: translate3d(0, -20px, 0);
929
+ }
930
+ 75% {
931
+ -webkit-transform: translate3d(0, 10px, 0);
932
+ transform: translate3d(0, 10px, 0);
933
+ }
934
+ 90% {
935
+ -webkit-transform: translate3d(0, -5px, 0);
936
+ transform: translate3d(0, -5px, 0);
937
+ }
938
+ 100% {
939
+ -webkit-transform: translate3d(0, 0, 0);
940
+ transform: translate3d(0, 0, 0);
941
+ }
942
+ }
943
+ @-webkit-keyframes flyInDown {
944
+ 0% {
945
+ opacity: 0;
946
+ -webkit-transform: translate3d(0, -1500px, 0);
947
+ transform: translate3d(0, -1500px, 0);
948
+ }
949
+ 60% {
950
+ opacity: 1;
951
+ -webkit-transform: translate3d(0, 25px, 0);
952
+ transform: translate3d(0, 25px, 0);
953
+ }
954
+ 75% {
955
+ -webkit-transform: translate3d(0, -10px, 0);
956
+ transform: translate3d(0, -10px, 0);
957
+ }
958
+ 90% {
959
+ -webkit-transform: translate3d(0, 5px, 0);
960
+ transform: translate3d(0, 5px, 0);
961
+ }
962
+ 100% {
963
+ -webkit-transform: none;
964
+ transform: none;
965
+ }
966
+ }
967
+ @keyframes flyInDown {
968
+ 0% {
969
+ opacity: 0;
970
+ -webkit-transform: translate3d(0, -1500px, 0);
971
+ transform: translate3d(0, -1500px, 0);
972
+ }
973
+ 60% {
974
+ opacity: 1;
975
+ -webkit-transform: translate3d(0, 25px, 0);
976
+ transform: translate3d(0, 25px, 0);
977
+ }
978
+ 75% {
979
+ -webkit-transform: translate3d(0, -10px, 0);
980
+ transform: translate3d(0, -10px, 0);
981
+ }
982
+ 90% {
983
+ -webkit-transform: translate3d(0, 5px, 0);
984
+ transform: translate3d(0, 5px, 0);
985
+ }
986
+ 100% {
987
+ -webkit-transform: none;
988
+ transform: none;
989
+ }
990
+ }
991
+ @-webkit-keyframes flyInLeft {
992
+ 0% {
993
+ opacity: 0;
994
+ -webkit-transform: translate3d(1500px, 0, 0);
995
+ transform: translate3d(1500px, 0, 0);
996
+ }
997
+ 60% {
998
+ opacity: 1;
999
+ -webkit-transform: translate3d(-25px, 0, 0);
1000
+ transform: translate3d(-25px, 0, 0);
1001
+ }
1002
+ 75% {
1003
+ -webkit-transform: translate3d(10px, 0, 0);
1004
+ transform: translate3d(10px, 0, 0);
1005
+ }
1006
+ 90% {
1007
+ -webkit-transform: translate3d(-5px, 0, 0);
1008
+ transform: translate3d(-5px, 0, 0);
1009
+ }
1010
+ 100% {
1011
+ -webkit-transform: none;
1012
+ transform: none;
1013
+ }
1014
+ }
1015
+ @keyframes flyInLeft {
1016
+ 0% {
1017
+ opacity: 0;
1018
+ -webkit-transform: translate3d(1500px, 0, 0);
1019
+ transform: translate3d(1500px, 0, 0);
1020
+ }
1021
+ 60% {
1022
+ opacity: 1;
1023
+ -webkit-transform: translate3d(-25px, 0, 0);
1024
+ transform: translate3d(-25px, 0, 0);
1025
+ }
1026
+ 75% {
1027
+ -webkit-transform: translate3d(10px, 0, 0);
1028
+ transform: translate3d(10px, 0, 0);
1029
+ }
1030
+ 90% {
1031
+ -webkit-transform: translate3d(-5px, 0, 0);
1032
+ transform: translate3d(-5px, 0, 0);
1033
+ }
1034
+ 100% {
1035
+ -webkit-transform: none;
1036
+ transform: none;
1037
+ }
1038
+ }
1039
+ @-webkit-keyframes flyInRight {
1040
+ 0% {
1041
+ opacity: 0;
1042
+ -webkit-transform: translate3d(-1500px, 0, 0);
1043
+ transform: translate3d(-1500px, 0, 0);
1044
+ }
1045
+ 60% {
1046
+ opacity: 1;
1047
+ -webkit-transform: translate3d(25px, 0, 0);
1048
+ transform: translate3d(25px, 0, 0);
1049
+ }
1050
+ 75% {
1051
+ -webkit-transform: translate3d(-10px, 0, 0);
1052
+ transform: translate3d(-10px, 0, 0);
1053
+ }
1054
+ 90% {
1055
+ -webkit-transform: translate3d(5px, 0, 0);
1056
+ transform: translate3d(5px, 0, 0);
1057
+ }
1058
+ 100% {
1059
+ -webkit-transform: none;
1060
+ transform: none;
1061
+ }
1062
+ }
1063
+ @keyframes flyInRight {
1064
+ 0% {
1065
+ opacity: 0;
1066
+ -webkit-transform: translate3d(-1500px, 0, 0);
1067
+ transform: translate3d(-1500px, 0, 0);
1068
+ }
1069
+ 60% {
1070
+ opacity: 1;
1071
+ -webkit-transform: translate3d(25px, 0, 0);
1072
+ transform: translate3d(25px, 0, 0);
1073
+ }
1074
+ 75% {
1075
+ -webkit-transform: translate3d(-10px, 0, 0);
1076
+ transform: translate3d(-10px, 0, 0);
1077
+ }
1078
+ 90% {
1079
+ -webkit-transform: translate3d(5px, 0, 0);
1080
+ transform: translate3d(5px, 0, 0);
1081
+ }
1082
+ 100% {
1083
+ -webkit-transform: none;
1084
+ transform: none;
1085
+ }
1086
+ }
1087
+
1088
+ /* Out */
1089
+ @-webkit-keyframes flyOut {
1090
+ 20% {
1091
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
1092
+ transform: scale3d(0.9, 0.9, 0.9);
1093
+ }
1094
+ 50%,
1095
+ 55% {
1096
+ opacity: 1;
1097
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
1098
+ transform: scale3d(1.1, 1.1, 1.1);
1099
+ }
1100
+ 100% {
1101
+ opacity: 0;
1102
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
1103
+ transform: scale3d(0.3, 0.3, 0.3);
1104
+ }
1105
+ }
1106
+ @keyframes flyOut {
1107
+ 20% {
1108
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
1109
+ transform: scale3d(0.9, 0.9, 0.9);
1110
+ }
1111
+ 50%,
1112
+ 55% {
1113
+ opacity: 1;
1114
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
1115
+ transform: scale3d(1.1, 1.1, 1.1);
1116
+ }
1117
+ 100% {
1118
+ opacity: 0;
1119
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
1120
+ transform: scale3d(0.3, 0.3, 0.3);
1121
+ }
1122
+ }
1123
+ @-webkit-keyframes flyOutUp {
1124
+ 20% {
1125
+ -webkit-transform: translate3d(0, 10px, 0);
1126
+ transform: translate3d(0, 10px, 0);
1127
+ }
1128
+ 40%,
1129
+ 45% {
1130
+ opacity: 1;
1131
+ -webkit-transform: translate3d(0, -20px, 0);
1132
+ transform: translate3d(0, -20px, 0);
1133
+ }
1134
+ 100% {
1135
+ opacity: 0;
1136
+ -webkit-transform: translate3d(0, 2000px, 0);
1137
+ transform: translate3d(0, 2000px, 0);
1138
+ }
1139
+ }
1140
+ @keyframes flyOutUp {
1141
+ 20% {
1142
+ -webkit-transform: translate3d(0, 10px, 0);
1143
+ transform: translate3d(0, 10px, 0);
1144
+ }
1145
+ 40%,
1146
+ 45% {
1147
+ opacity: 1;
1148
+ -webkit-transform: translate3d(0, -20px, 0);
1149
+ transform: translate3d(0, -20px, 0);
1150
+ }
1151
+ 100% {
1152
+ opacity: 0;
1153
+ -webkit-transform: translate3d(0, 2000px, 0);
1154
+ transform: translate3d(0, 2000px, 0);
1155
+ }
1156
+ }
1157
+ @-webkit-keyframes flyOutDown {
1158
+ 20% {
1159
+ -webkit-transform: translate3d(0, -10px, 0);
1160
+ transform: translate3d(0, -10px, 0);
1161
+ }
1162
+ 40%,
1163
+ 45% {
1164
+ opacity: 1;
1165
+ -webkit-transform: translate3d(0, 20px, 0);
1166
+ transform: translate3d(0, 20px, 0);
1167
+ }
1168
+ 100% {
1169
+ opacity: 0;
1170
+ -webkit-transform: translate3d(0, -2000px, 0);
1171
+ transform: translate3d(0, -2000px, 0);
1172
+ }
1173
+ }
1174
+ @keyframes flyOutDown {
1175
+ 20% {
1176
+ -webkit-transform: translate3d(0, -10px, 0);
1177
+ transform: translate3d(0, -10px, 0);
1178
+ }
1179
+ 40%,
1180
+ 45% {
1181
+ opacity: 1;
1182
+ -webkit-transform: translate3d(0, 20px, 0);
1183
+ transform: translate3d(0, 20px, 0);
1184
+ }
1185
+ 100% {
1186
+ opacity: 0;
1187
+ -webkit-transform: translate3d(0, -2000px, 0);
1188
+ transform: translate3d(0, -2000px, 0);
1189
+ }
1190
+ }
1191
+ @-webkit-keyframes flyOutRight {
1192
+ 20% {
1193
+ opacity: 1;
1194
+ -webkit-transform: translate3d(20px, 0, 0);
1195
+ transform: translate3d(20px, 0, 0);
1196
+ }
1197
+ 100% {
1198
+ opacity: 0;
1199
+ -webkit-transform: translate3d(-2000px, 0, 0);
1200
+ transform: translate3d(-2000px, 0, 0);
1201
+ }
1202
+ }
1203
+ @keyframes flyOutRight {
1204
+ 20% {
1205
+ opacity: 1;
1206
+ -webkit-transform: translate3d(20px, 0, 0);
1207
+ transform: translate3d(20px, 0, 0);
1208
+ }
1209
+ 100% {
1210
+ opacity: 0;
1211
+ -webkit-transform: translate3d(-2000px, 0, 0);
1212
+ transform: translate3d(-2000px, 0, 0);
1213
+ }
1214
+ }
1215
+ @-webkit-keyframes flyOutLeft {
1216
+ 20% {
1217
+ opacity: 1;
1218
+ -webkit-transform: translate3d(-20px, 0, 0);
1219
+ transform: translate3d(-20px, 0, 0);
1220
+ }
1221
+ 100% {
1222
+ opacity: 0;
1223
+ -webkit-transform: translate3d(2000px, 0, 0);
1224
+ transform: translate3d(2000px, 0, 0);
1225
+ }
1226
+ }
1227
+ @keyframes flyOutLeft {
1228
+ 20% {
1229
+ opacity: 1;
1230
+ -webkit-transform: translate3d(-20px, 0, 0);
1231
+ transform: translate3d(-20px, 0, 0);
1232
+ }
1233
+ 100% {
1234
+ opacity: 0;
1235
+ -webkit-transform: translate3d(2000px, 0, 0);
1236
+ transform: translate3d(2000px, 0, 0);
1237
+ }
1238
+ }
1239
+
1240
+ /*--------------
1241
+ Slide
1242
+ ---------------*/
1243
+
1244
+ .transition.slide.in,
1245
+ .transition[class*="slide down"].in {
1246
+ -webkit-animation-name: slideInY;
1247
+ animation-name: slideInY;
1248
+ -webkit-transform-origin: top center;
1249
+ transform-origin: top center;
1250
+ }
1251
+ .transition[class*="slide up"].in {
1252
+ -webkit-animation-name: slideInY;
1253
+ animation-name: slideInY;
1254
+ -webkit-transform-origin: bottom center;
1255
+ transform-origin: bottom center;
1256
+ }
1257
+ .transition[class*="slide left"].in {
1258
+ -webkit-animation-name: slideInX;
1259
+ animation-name: slideInX;
1260
+ -webkit-transform-origin: center right;
1261
+ transform-origin: center right;
1262
+ }
1263
+ .transition[class*="slide right"].in {
1264
+ -webkit-animation-name: slideInX;
1265
+ animation-name: slideInX;
1266
+ -webkit-transform-origin: center left;
1267
+ transform-origin: center left;
1268
+ }
1269
+ .transition.slide.out,
1270
+ .transition[class*="slide down"].out {
1271
+ -webkit-animation-name: slideOutY;
1272
+ animation-name: slideOutY;
1273
+ -webkit-transform-origin: top center;
1274
+ transform-origin: top center;
1275
+ }
1276
+ .transition[class*="slide up"].out {
1277
+ -webkit-animation-name: slideOutY;
1278
+ animation-name: slideOutY;
1279
+ -webkit-transform-origin: bottom center;
1280
+ transform-origin: bottom center;
1281
+ }
1282
+ .transition[class*="slide left"].out {
1283
+ -webkit-animation-name: slideOutX;
1284
+ animation-name: slideOutX;
1285
+ -webkit-transform-origin: center right;
1286
+ transform-origin: center right;
1287
+ }
1288
+ .transition[class*="slide right"].out {
1289
+ -webkit-animation-name: slideOutX;
1290
+ animation-name: slideOutX;
1291
+ -webkit-transform-origin: center left;
1292
+ transform-origin: center left;
1293
+ }
1294
+
1295
+ /* In */
1296
+ @-webkit-keyframes slideInY {
1297
+ 0% {
1298
+ opacity: 0;
1299
+ -webkit-transform: scaleY(0);
1300
+ transform: scaleY(0);
1301
+ }
1302
+ 100% {
1303
+ opacity: 1;
1304
+ -webkit-transform: scaleY(1);
1305
+ transform: scaleY(1);
1306
+ }
1307
+ }
1308
+ @keyframes slideInY {
1309
+ 0% {
1310
+ opacity: 0;
1311
+ -webkit-transform: scaleY(0);
1312
+ transform: scaleY(0);
1313
+ }
1314
+ 100% {
1315
+ opacity: 1;
1316
+ -webkit-transform: scaleY(1);
1317
+ transform: scaleY(1);
1318
+ }
1319
+ }
1320
+ @-webkit-keyframes slideInX {
1321
+ 0% {
1322
+ opacity: 0;
1323
+ -webkit-transform: scaleX(0);
1324
+ transform: scaleX(0);
1325
+ }
1326
+ 100% {
1327
+ opacity: 1;
1328
+ -webkit-transform: scaleX(1);
1329
+ transform: scaleX(1);
1330
+ }
1331
+ }
1332
+ @keyframes slideInX {
1333
+ 0% {
1334
+ opacity: 0;
1335
+ -webkit-transform: scaleX(0);
1336
+ transform: scaleX(0);
1337
+ }
1338
+ 100% {
1339
+ opacity: 1;
1340
+ -webkit-transform: scaleX(1);
1341
+ transform: scaleX(1);
1342
+ }
1343
+ }
1344
+
1345
+ /* Out */
1346
+ @-webkit-keyframes slideOutY {
1347
+ 0% {
1348
+ opacity: 1;
1349
+ -webkit-transform: scaleY(1);
1350
+ transform: scaleY(1);
1351
+ }
1352
+ 100% {
1353
+ opacity: 0;
1354
+ -webkit-transform: scaleY(0);
1355
+ transform: scaleY(0);
1356
+ }
1357
+ }
1358
+ @keyframes slideOutY {
1359
+ 0% {
1360
+ opacity: 1;
1361
+ -webkit-transform: scaleY(1);
1362
+ transform: scaleY(1);
1363
+ }
1364
+ 100% {
1365
+ opacity: 0;
1366
+ -webkit-transform: scaleY(0);
1367
+ transform: scaleY(0);
1368
+ }
1369
+ }
1370
+ @-webkit-keyframes slideOutX {
1371
+ 0% {
1372
+ opacity: 1;
1373
+ -webkit-transform: scaleX(1);
1374
+ transform: scaleX(1);
1375
+ }
1376
+ 100% {
1377
+ opacity: 0;
1378
+ -webkit-transform: scaleX(0);
1379
+ transform: scaleX(0);
1380
+ }
1381
+ }
1382
+ @keyframes slideOutX {
1383
+ 0% {
1384
+ opacity: 1;
1385
+ -webkit-transform: scaleX(1);
1386
+ transform: scaleX(1);
1387
+ }
1388
+ 100% {
1389
+ opacity: 0;
1390
+ -webkit-transform: scaleX(0);
1391
+ transform: scaleX(0);
1392
+ }
1393
+ }
1394
+
1395
+ /*--------------
1396
+ Swing
1397
+ ---------------*/
1398
+
1399
+ .transition.swing {
1400
+ -webkit-animation-duration: 800ms;
1401
+ animation-duration: 800ms;
1402
+ }
1403
+ .transition[class*="swing down"].in {
1404
+ -webkit-animation-name: swingInX;
1405
+ animation-name: swingInX;
1406
+ -webkit-transform-origin: top center;
1407
+ transform-origin: top center;
1408
+ }
1409
+ .transition[class*="swing up"].in {
1410
+ -webkit-animation-name: swingInX;
1411
+ animation-name: swingInX;
1412
+ -webkit-transform-origin: bottom center;
1413
+ transform-origin: bottom center;
1414
+ }
1415
+ .transition[class*="swing left"].in {
1416
+ -webkit-animation-name: swingInY;
1417
+ animation-name: swingInY;
1418
+ -webkit-transform-origin: center right;
1419
+ transform-origin: center right;
1420
+ }
1421
+ .transition[class*="swing right"].in {
1422
+ -webkit-animation-name: swingInY;
1423
+ animation-name: swingInY;
1424
+ -webkit-transform-origin: center left;
1425
+ transform-origin: center left;
1426
+ }
1427
+ .transition.swing.out,
1428
+ .transition[class*="swing down"].out {
1429
+ -webkit-animation-name: swingOutX;
1430
+ animation-name: swingOutX;
1431
+ -webkit-transform-origin: top center;
1432
+ transform-origin: top center;
1433
+ }
1434
+ .transition[class*="swing up"].out {
1435
+ -webkit-animation-name: swingOutX;
1436
+ animation-name: swingOutX;
1437
+ -webkit-transform-origin: bottom center;
1438
+ transform-origin: bottom center;
1439
+ }
1440
+ .transition[class*="swing left"].out {
1441
+ -webkit-animation-name: swingOutY;
1442
+ animation-name: swingOutY;
1443
+ -webkit-transform-origin: center right;
1444
+ transform-origin: center right;
1445
+ }
1446
+ .transition[class*="swing right"].out {
1447
+ -webkit-animation-name: swingOutY;
1448
+ animation-name: swingOutY;
1449
+ -webkit-transform-origin: center left;
1450
+ transform-origin: center left;
1451
+ }
1452
+
1453
+ /* In */
1454
+ @-webkit-keyframes swingInX {
1455
+ 0% {
1456
+ -webkit-transform: perspective(1000px) rotateX(90deg);
1457
+ transform: perspective(1000px) rotateX(90deg);
1458
+ opacity: 0;
1459
+ }
1460
+ 40% {
1461
+ -webkit-transform: perspective(1000px) rotateX(-30deg);
1462
+ transform: perspective(1000px) rotateX(-30deg);
1463
+ opacity: 1;
1464
+ }
1465
+ 60% {
1466
+ -webkit-transform: perspective(1000px) rotateX(15deg);
1467
+ transform: perspective(1000px) rotateX(15deg);
1468
+ }
1469
+ 80% {
1470
+ -webkit-transform: perspective(1000px) rotateX(-7.5deg);
1471
+ transform: perspective(1000px) rotateX(-7.5deg);
1472
+ }
1473
+ 100% {
1474
+ -webkit-transform: perspective(1000px) rotateX(0deg);
1475
+ transform: perspective(1000px) rotateX(0deg);
1476
+ }
1477
+ }
1478
+ @keyframes swingInX {
1479
+ 0% {
1480
+ -webkit-transform: perspective(1000px) rotateX(90deg);
1481
+ transform: perspective(1000px) rotateX(90deg);
1482
+ opacity: 0;
1483
+ }
1484
+ 40% {
1485
+ -webkit-transform: perspective(1000px) rotateX(-30deg);
1486
+ transform: perspective(1000px) rotateX(-30deg);
1487
+ opacity: 1;
1488
+ }
1489
+ 60% {
1490
+ -webkit-transform: perspective(1000px) rotateX(15deg);
1491
+ transform: perspective(1000px) rotateX(15deg);
1492
+ }
1493
+ 80% {
1494
+ -webkit-transform: perspective(1000px) rotateX(-7.5deg);
1495
+ transform: perspective(1000px) rotateX(-7.5deg);
1496
+ }
1497
+ 100% {
1498
+ -webkit-transform: perspective(1000px) rotateX(0deg);
1499
+ transform: perspective(1000px) rotateX(0deg);
1500
+ }
1501
+ }
1502
+ @-webkit-keyframes swingInY {
1503
+ 0% {
1504
+ -webkit-transform: perspective(1000px) rotateY(-90deg);
1505
+ transform: perspective(1000px) rotateY(-90deg);
1506
+ opacity: 0;
1507
+ }
1508
+ 40% {
1509
+ -webkit-transform: perspective(1000px) rotateY(30deg);
1510
+ transform: perspective(1000px) rotateY(30deg);
1511
+ opacity: 1;
1512
+ }
1513
+ 60% {
1514
+ -webkit-transform: perspective(1000px) rotateY(-17.5deg);
1515
+ transform: perspective(1000px) rotateY(-17.5deg);
1516
+ }
1517
+ 80% {
1518
+ -webkit-transform: perspective(1000px) rotateY(7.5deg);
1519
+ transform: perspective(1000px) rotateY(7.5deg);
1520
+ }
1521
+ 100% {
1522
+ -webkit-transform: perspective(1000px) rotateY(0deg);
1523
+ transform: perspective(1000px) rotateY(0deg);
1524
+ }
1525
+ }
1526
+ @keyframes swingInY {
1527
+ 0% {
1528
+ -webkit-transform: perspective(1000px) rotateY(-90deg);
1529
+ transform: perspective(1000px) rotateY(-90deg);
1530
+ opacity: 0;
1531
+ }
1532
+ 40% {
1533
+ -webkit-transform: perspective(1000px) rotateY(30deg);
1534
+ transform: perspective(1000px) rotateY(30deg);
1535
+ opacity: 1;
1536
+ }
1537
+ 60% {
1538
+ -webkit-transform: perspective(1000px) rotateY(-17.5deg);
1539
+ transform: perspective(1000px) rotateY(-17.5deg);
1540
+ }
1541
+ 80% {
1542
+ -webkit-transform: perspective(1000px) rotateY(7.5deg);
1543
+ transform: perspective(1000px) rotateY(7.5deg);
1544
+ }
1545
+ 100% {
1546
+ -webkit-transform: perspective(1000px) rotateY(0deg);
1547
+ transform: perspective(1000px) rotateY(0deg);
1548
+ }
1549
+ }
1550
+
1551
+ /* Out */
1552
+ @-webkit-keyframes swingOutX {
1553
+ 0% {
1554
+ -webkit-transform: perspective(1000px) rotateX(0deg);
1555
+ transform: perspective(1000px) rotateX(0deg);
1556
+ }
1557
+ 40% {
1558
+ -webkit-transform: perspective(1000px) rotateX(-7.5deg);
1559
+ transform: perspective(1000px) rotateX(-7.5deg);
1560
+ }
1561
+ 60% {
1562
+ -webkit-transform: perspective(1000px) rotateX(17.5deg);
1563
+ transform: perspective(1000px) rotateX(17.5deg);
1564
+ }
1565
+ 80% {
1566
+ -webkit-transform: perspective(1000px) rotateX(-30deg);
1567
+ transform: perspective(1000px) rotateX(-30deg);
1568
+ opacity: 1;
1569
+ }
1570
+ 100% {
1571
+ -webkit-transform: perspective(1000px) rotateX(90deg);
1572
+ transform: perspective(1000px) rotateX(90deg);
1573
+ opacity: 0;
1574
+ }
1575
+ }
1576
+ @keyframes swingOutX {
1577
+ 0% {
1578
+ -webkit-transform: perspective(1000px) rotateX(0deg);
1579
+ transform: perspective(1000px) rotateX(0deg);
1580
+ }
1581
+ 40% {
1582
+ -webkit-transform: perspective(1000px) rotateX(-7.5deg);
1583
+ transform: perspective(1000px) rotateX(-7.5deg);
1584
+ }
1585
+ 60% {
1586
+ -webkit-transform: perspective(1000px) rotateX(17.5deg);
1587
+ transform: perspective(1000px) rotateX(17.5deg);
1588
+ }
1589
+ 80% {
1590
+ -webkit-transform: perspective(1000px) rotateX(-30deg);
1591
+ transform: perspective(1000px) rotateX(-30deg);
1592
+ opacity: 1;
1593
+ }
1594
+ 100% {
1595
+ -webkit-transform: perspective(1000px) rotateX(90deg);
1596
+ transform: perspective(1000px) rotateX(90deg);
1597
+ opacity: 0;
1598
+ }
1599
+ }
1600
+ @-webkit-keyframes swingOutY {
1601
+ 0% {
1602
+ -webkit-transform: perspective(1000px) rotateY(0deg);
1603
+ transform: perspective(1000px) rotateY(0deg);
1604
+ }
1605
+ 40% {
1606
+ -webkit-transform: perspective(1000px) rotateY(7.5deg);
1607
+ transform: perspective(1000px) rotateY(7.5deg);
1608
+ }
1609
+ 60% {
1610
+ -webkit-transform: perspective(1000px) rotateY(-10deg);
1611
+ transform: perspective(1000px) rotateY(-10deg);
1612
+ }
1613
+ 80% {
1614
+ -webkit-transform: perspective(1000px) rotateY(30deg);
1615
+ transform: perspective(1000px) rotateY(30deg);
1616
+ opacity: 1;
1617
+ }
1618
+ 100% {
1619
+ -webkit-transform: perspective(1000px) rotateY(-90deg);
1620
+ transform: perspective(1000px) rotateY(-90deg);
1621
+ opacity: 0;
1622
+ }
1623
+ }
1624
+ @keyframes swingOutY {
1625
+ 0% {
1626
+ -webkit-transform: perspective(1000px) rotateY(0deg);
1627
+ transform: perspective(1000px) rotateY(0deg);
1628
+ }
1629
+ 40% {
1630
+ -webkit-transform: perspective(1000px) rotateY(7.5deg);
1631
+ transform: perspective(1000px) rotateY(7.5deg);
1632
+ }
1633
+ 60% {
1634
+ -webkit-transform: perspective(1000px) rotateY(-10deg);
1635
+ transform: perspective(1000px) rotateY(-10deg);
1636
+ }
1637
+ 80% {
1638
+ -webkit-transform: perspective(1000px) rotateY(30deg);
1639
+ transform: perspective(1000px) rotateY(30deg);
1640
+ opacity: 1;
1641
+ }
1642
+ 100% {
1643
+ -webkit-transform: perspective(1000px) rotateY(-90deg);
1644
+ transform: perspective(1000px) rotateY(-90deg);
1645
+ opacity: 0;
1646
+ }
1647
+ }
1648
+
1649
+
1650
+ /*******************************
1651
+ Static Animations
1652
+ *******************************/
1653
+
1654
+
1655
+ /*--------------
1656
+ Emphasis
1657
+ ---------------*/
1658
+
1659
+ .flash.transition {
1660
+ -webkit-animation-duration: 750ms;
1661
+ animation-duration: 750ms;
1662
+ -webkit-animation-name: flash;
1663
+ animation-name: flash;
1664
+ }
1665
+ .shake.transition {
1666
+ -webkit-animation-duration: 750ms;
1667
+ animation-duration: 750ms;
1668
+ -webkit-animation-name: shake;
1669
+ animation-name: shake;
1670
+ }
1671
+ .bounce.transition {
1672
+ -webkit-animation-duration: 750ms;
1673
+ animation-duration: 750ms;
1674
+ -webkit-animation-name: bounce;
1675
+ animation-name: bounce;
1676
+ }
1677
+ .tada.transition {
1678
+ -webkit-animation-duration: 750ms;
1679
+ animation-duration: 750ms;
1680
+ -webkit-animation-name: tada;
1681
+ animation-name: tada;
1682
+ }
1683
+ .pulse.transition {
1684
+ -webkit-animation-duration: 500ms;
1685
+ animation-duration: 500ms;
1686
+ -webkit-animation-name: pulse;
1687
+ animation-name: pulse;
1688
+ }
1689
+ .jiggle.transition {
1690
+ -webkit-animation-duration: 750ms;
1691
+ animation-duration: 750ms;
1692
+ -webkit-animation-name: jiggle;
1693
+ animation-name: jiggle;
1694
+ }
1695
+
1696
+ /* Flash */
1697
+ @-webkit-keyframes flash {
1698
+ 0%,
1699
+ 50%,
1700
+ 100% {
1701
+ opacity: 1;
1702
+ }
1703
+ 25%,
1704
+ 75% {
1705
+ opacity: 0;
1706
+ }
1707
+ }
1708
+ @keyframes flash {
1709
+ 0%,
1710
+ 50%,
1711
+ 100% {
1712
+ opacity: 1;
1713
+ }
1714
+ 25%,
1715
+ 75% {
1716
+ opacity: 0;
1717
+ }
1718
+ }
1719
+
1720
+ /* Shake */
1721
+ @-webkit-keyframes shake {
1722
+ 0%,
1723
+ 100% {
1724
+ -webkit-transform: translateX(0);
1725
+ transform: translateX(0);
1726
+ }
1727
+ 10%,
1728
+ 30%,
1729
+ 50%,
1730
+ 70%,
1731
+ 90% {
1732
+ -webkit-transform: translateX(-10px);
1733
+ transform: translateX(-10px);
1734
+ }
1735
+ 20%,
1736
+ 40%,
1737
+ 60%,
1738
+ 80% {
1739
+ -webkit-transform: translateX(10px);
1740
+ transform: translateX(10px);
1741
+ }
1742
+ }
1743
+ @keyframes shake {
1744
+ 0%,
1745
+ 100% {
1746
+ -webkit-transform: translateX(0);
1747
+ transform: translateX(0);
1748
+ }
1749
+ 10%,
1750
+ 30%,
1751
+ 50%,
1752
+ 70%,
1753
+ 90% {
1754
+ -webkit-transform: translateX(-10px);
1755
+ transform: translateX(-10px);
1756
+ }
1757
+ 20%,
1758
+ 40%,
1759
+ 60%,
1760
+ 80% {
1761
+ -webkit-transform: translateX(10px);
1762
+ transform: translateX(10px);
1763
+ }
1764
+ }
1765
+
1766
+ /* Bounce */
1767
+ @-webkit-keyframes bounce {
1768
+ 0%,
1769
+ 20%,
1770
+ 50%,
1771
+ 80%,
1772
+ 100% {
1773
+ -webkit-transform: translateY(0);
1774
+ transform: translateY(0);
1775
+ }
1776
+ 40% {
1777
+ -webkit-transform: translateY(-30px);
1778
+ transform: translateY(-30px);
1779
+ }
1780
+ 60% {
1781
+ -webkit-transform: translateY(-15px);
1782
+ transform: translateY(-15px);
1783
+ }
1784
+ }
1785
+ @keyframes bounce {
1786
+ 0%,
1787
+ 20%,
1788
+ 50%,
1789
+ 80%,
1790
+ 100% {
1791
+ -webkit-transform: translateY(0);
1792
+ transform: translateY(0);
1793
+ }
1794
+ 40% {
1795
+ -webkit-transform: translateY(-30px);
1796
+ transform: translateY(-30px);
1797
+ }
1798
+ 60% {
1799
+ -webkit-transform: translateY(-15px);
1800
+ transform: translateY(-15px);
1801
+ }
1802
+ }
1803
+
1804
+ /* Tada */
1805
+ @-webkit-keyframes tada {
1806
+ 0% {
1807
+ -webkit-transform: scale(1);
1808
+ transform: scale(1);
1809
+ }
1810
+ 10%,
1811
+ 20% {
1812
+ -webkit-transform: scale(0.9) rotate(-3deg);
1813
+ transform: scale(0.9) rotate(-3deg);
1814
+ }
1815
+ 30%,
1816
+ 50%,
1817
+ 70%,
1818
+ 90% {
1819
+ -webkit-transform: scale(1.1) rotate(3deg);
1820
+ transform: scale(1.1) rotate(3deg);
1821
+ }
1822
+ 40%,
1823
+ 60%,
1824
+ 80% {
1825
+ -webkit-transform: scale(1.1) rotate(-3deg);
1826
+ transform: scale(1.1) rotate(-3deg);
1827
+ }
1828
+ 100% {
1829
+ -webkit-transform: scale(1) rotate(0);
1830
+ transform: scale(1) rotate(0);
1831
+ }
1832
+ }
1833
+ @keyframes tada {
1834
+ 0% {
1835
+ -webkit-transform: scale(1);
1836
+ transform: scale(1);
1837
+ }
1838
+ 10%,
1839
+ 20% {
1840
+ -webkit-transform: scale(0.9) rotate(-3deg);
1841
+ transform: scale(0.9) rotate(-3deg);
1842
+ }
1843
+ 30%,
1844
+ 50%,
1845
+ 70%,
1846
+ 90% {
1847
+ -webkit-transform: scale(1.1) rotate(3deg);
1848
+ transform: scale(1.1) rotate(3deg);
1849
+ }
1850
+ 40%,
1851
+ 60%,
1852
+ 80% {
1853
+ -webkit-transform: scale(1.1) rotate(-3deg);
1854
+ transform: scale(1.1) rotate(-3deg);
1855
+ }
1856
+ 100% {
1857
+ -webkit-transform: scale(1) rotate(0);
1858
+ transform: scale(1) rotate(0);
1859
+ }
1860
+ }
1861
+
1862
+ /* Pulse */
1863
+ @-webkit-keyframes pulse {
1864
+ 0% {
1865
+ -webkit-transform: scale(1);
1866
+ transform: scale(1);
1867
+ opacity: 1;
1868
+ }
1869
+ 50% {
1870
+ -webkit-transform: scale(0.9);
1871
+ transform: scale(0.9);
1872
+ opacity: 0.7;
1873
+ }
1874
+ 100% {
1875
+ -webkit-transform: scale(1);
1876
+ transform: scale(1);
1877
+ opacity: 1;
1878
+ }
1879
+ }
1880
+ @keyframes pulse {
1881
+ 0% {
1882
+ -webkit-transform: scale(1);
1883
+ transform: scale(1);
1884
+ opacity: 1;
1885
+ }
1886
+ 50% {
1887
+ -webkit-transform: scale(0.9);
1888
+ transform: scale(0.9);
1889
+ opacity: 0.7;
1890
+ }
1891
+ 100% {
1892
+ -webkit-transform: scale(1);
1893
+ transform: scale(1);
1894
+ opacity: 1;
1895
+ }
1896
+ }
1897
+
1898
+ /* Rubberband */
1899
+ @-webkit-keyframes jiggle {
1900
+ 0% {
1901
+ -webkit-transform: scale3d(1, 1, 1);
1902
+ transform: scale3d(1, 1, 1);
1903
+ }
1904
+ 30% {
1905
+ -webkit-transform: scale3d(1.25, 0.75, 1);
1906
+ transform: scale3d(1.25, 0.75, 1);
1907
+ }
1908
+ 40% {
1909
+ -webkit-transform: scale3d(0.75, 1.25, 1);
1910
+ transform: scale3d(0.75, 1.25, 1);
1911
+ }
1912
+ 50% {
1913
+ -webkit-transform: scale3d(1.15, 0.85, 1);
1914
+ transform: scale3d(1.15, 0.85, 1);
1915
+ }
1916
+ 65% {
1917
+ -webkit-transform: scale3d(0.95, 1.05, 1);
1918
+ transform: scale3d(0.95, 1.05, 1);
1919
+ }
1920
+ 75% {
1921
+ -webkit-transform: scale3d(1.05, 0.95, 1);
1922
+ transform: scale3d(1.05, 0.95, 1);
1923
+ }
1924
+ 100% {
1925
+ -webkit-transform: scale3d(1, 1, 1);
1926
+ transform: scale3d(1, 1, 1);
1927
+ }
1928
+ }
1929
+ @keyframes jiggle {
1930
+ 0% {
1931
+ -webkit-transform: scale3d(1, 1, 1);
1932
+ transform: scale3d(1, 1, 1);
1933
+ }
1934
+ 30% {
1935
+ -webkit-transform: scale3d(1.25, 0.75, 1);
1936
+ transform: scale3d(1.25, 0.75, 1);
1937
+ }
1938
+ 40% {
1939
+ -webkit-transform: scale3d(0.75, 1.25, 1);
1940
+ transform: scale3d(0.75, 1.25, 1);
1941
+ }
1942
+ 50% {
1943
+ -webkit-transform: scale3d(1.15, 0.85, 1);
1944
+ transform: scale3d(1.15, 0.85, 1);
1945
+ }
1946
+ 65% {
1947
+ -webkit-transform: scale3d(0.95, 1.05, 1);
1948
+ transform: scale3d(0.95, 1.05, 1);
1949
+ }
1950
+ 75% {
1951
+ -webkit-transform: scale3d(1.05, 0.95, 1);
1952
+ transform: scale3d(1.05, 0.95, 1);
1953
+ }
1954
+ 100% {
1955
+ -webkit-transform: scale3d(1, 1, 1);
1956
+ transform: scale3d(1, 1, 1);
1957
+ }
1958
+ }
1959
+
1960
+
1961
+ /*******************************
1962
+ Site Overrides
1963
+ *******************************/
1964
+