stylish 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (458) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +7 -10
  3. data/ARCHITECTURE.md +96 -0
  4. data/Gemfile +8 -0
  5. data/README.md +25 -29
  6. data/Rakefile +24 -0
  7. data/bin/stylish +33 -0
  8. data/lib/stylish.rb +36 -1
  9. data/lib/stylish/configuration.rb +37 -0
  10. data/lib/stylish/core_ext.rb +20 -0
  11. data/lib/stylish/developer.rb +13 -0
  12. data/lib/stylish/developer/config.rb +19 -0
  13. data/lib/stylish/developer/environment.rb +75 -0
  14. data/lib/stylish/developer/listing.rb +85 -0
  15. data/lib/stylish/developer/model_delegator.rb +51 -0
  16. data/lib/stylish/developer/modification.rb +139 -0
  17. data/lib/stylish/developer/path.rb +168 -0
  18. data/lib/stylish/developer/route.rb +97 -0
  19. data/lib/stylish/developer/server.rb +40 -0
  20. data/lib/stylish/engine.rb +12 -0
  21. data/lib/stylish/fs.rb +59 -0
  22. data/lib/stylish/manifest.rb +100 -0
  23. data/lib/stylish/models.rb +119 -0
  24. data/lib/stylish/models/component.rb +19 -0
  25. data/lib/stylish/models/layout.rb +19 -0
  26. data/lib/stylish/models/library.rb +134 -0
  27. data/lib/stylish/models/package.rb +156 -0
  28. data/lib/stylish/models/script.rb +10 -0
  29. data/lib/stylish/models/stylesheet.rb +9 -0
  30. data/lib/stylish/models/template.rb +9 -0
  31. data/lib/stylish/models/theme.rb +8 -0
  32. data/lib/stylish/util.rb +20 -0
  33. data/lib/stylish/version.rb +1 -1
  34. data/library/config.json +4 -0
  35. data/library/second-theme/manifest.json +8 -0
  36. data/library/second-theme/manifest.yml +6 -0
  37. data/library/second-theme/templates/footers/footer-01.html +3 -0
  38. data/library/second-theme/templates/footers/footer-02.html +3 -0
  39. data/library/second-theme/templates/headers/header-01.html +3 -0
  40. data/library/second-theme/templates/headers/header-02.html +3 -0
  41. data/library/second-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
  42. data/library/second-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
  43. data/library/test-theme/components/footers/footer-01.json +5 -0
  44. data/library/test-theme/components/footers/footer-02.json +5 -0
  45. data/library/test-theme/components/headers/header-01.json +5 -0
  46. data/library/test-theme/components/headers/header-02.json +5 -0
  47. data/library/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
  48. data/library/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
  49. data/library/test-theme/manifest.json +8 -0
  50. data/library/test-theme/manifest.yml +6 -0
  51. data/library/test-theme/pages/page-01.json +11 -0
  52. data/library/test-theme/templates/footers/footer-01.html +3 -0
  53. data/library/test-theme/templates/footers/footer-02.html +3 -0
  54. data/library/test-theme/templates/headers/header-01.html +3 -0
  55. data/library/test-theme/templates/headers/header-02.html +3 -0
  56. data/library/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
  57. data/library/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
  58. data/library/test-theme/templates/layouts/standard-layout.html +10 -0
  59. data/spec/acceptance/listing_assets_spec.rb +20 -0
  60. data/spec/acceptance/model_browsing_spec.rb +21 -0
  61. data/spec/acceptance/model_creation_spec.rb +16 -0
  62. data/spec/acceptance/model_deleting_spec.rb +10 -0
  63. data/spec/acceptance/model_updating_spec.rb +12 -0
  64. data/spec/acceptance/modifying_assets_spec.rb +50 -0
  65. data/spec/acceptance/server_info_spec.rb +10 -0
  66. data/spec/dummy/README.rdoc +28 -0
  67. data/spec/dummy/Rakefile +6 -0
  68. data/spec/dummy/app/assets/images/.keep +0 -0
  69. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  70. data/spec/dummy/app/assets/javascripts/test.coffee +4 -0
  71. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  72. data/spec/dummy/app/assets/stylesheets/test.css.scss +6 -0
  73. data/spec/dummy/app/assets/stylesheets/writable/existing.scss.css +0 -0
  74. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  75. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  76. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  77. data/spec/dummy/app/mailers/.keep +0 -0
  78. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  79. data/spec/dummy/bin/bundle +3 -0
  80. data/spec/dummy/bin/rails +4 -0
  81. data/spec/dummy/bin/rake +4 -0
  82. data/spec/dummy/config.ru +4 -0
  83. data/spec/dummy/config/application.rb +30 -0
  84. data/spec/dummy/config/boot.rb +5 -0
  85. data/spec/dummy/config/database.yml +25 -0
  86. data/spec/dummy/config/environment.rb +5 -0
  87. data/spec/dummy/config/environments/development.rb +37 -0
  88. data/spec/dummy/config/environments/production.rb +82 -0
  89. data/spec/dummy/config/environments/test.rb +39 -0
  90. data/spec/dummy/config/initializers/assets.rb +8 -0
  91. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  92. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  93. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  94. data/spec/dummy/config/initializers/inflections.rb +16 -0
  95. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  96. data/spec/dummy/config/initializers/session_store.rb +3 -0
  97. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  98. data/spec/dummy/config/locales/en.yml +23 -0
  99. data/spec/dummy/config/routes.rb +3 -0
  100. data/spec/dummy/config/secrets.yml +22 -0
  101. data/spec/dummy/db/migrate/20140822065900_create_books.rb +11 -0
  102. data/spec/dummy/db/migrate/20140822065916_create_authors.rb +9 -0
  103. data/spec/dummy/db/migrate/20140824215902_create_users.rb +10 -0
  104. data/spec/dummy/db/migrate/20140826193259_create_libraries.rb +10 -0
  105. data/spec/dummy/db/schema.rb +37 -0
  106. data/spec/dummy/db/test.sqlite3 +0 -0
  107. data/spec/dummy/lib/assets/.keep +0 -0
  108. data/spec/dummy/log/.keep +0 -0
  109. data/spec/dummy/public/404.html +67 -0
  110. data/spec/dummy/public/422.html +67 -0
  111. data/spec/dummy/public/500.html +66 -0
  112. data/spec/dummy/public/favicon.ico +0 -0
  113. data/spec/fixtures/config.json +3 -0
  114. data/spec/fixtures/test-theme/components/footers/footer-01.json +5 -0
  115. data/spec/fixtures/test-theme/components/footers/footer-02.json +5 -0
  116. data/spec/fixtures/test-theme/components/headers/header-01.json +5 -0
  117. data/spec/fixtures/test-theme/components/headers/header-02.json +5 -0
  118. data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
  119. data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
  120. data/spec/fixtures/test-theme/manifest.json +8 -0
  121. data/spec/fixtures/test-theme/manifest.yml +6 -0
  122. data/spec/fixtures/test-theme/pages/page-01.json +11 -0
  123. data/spec/fixtures/test-theme/templates/footers/footer-01.html +3 -0
  124. data/spec/fixtures/test-theme/templates/footers/footer-02.html +3 -0
  125. data/spec/fixtures/test-theme/templates/headers/header-01.html +3 -0
  126. data/spec/fixtures/test-theme/templates/headers/header-02.html +3 -0
  127. data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
  128. data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
  129. data/spec/fixtures/test-theme/templates/layouts/standard-01.html +9 -0
  130. data/spec/lib/stylish/configuration_spec.rb +8 -0
  131. data/spec/lib/stylish/developer/path_spec.rb +36 -0
  132. data/spec/lib/stylish/developer/route_spec.rb +5 -0
  133. data/spec/lib/stylish/manifest_spec.rb +48 -0
  134. data/spec/lib/stylish/models/library_spec.rb +38 -0
  135. data/spec/lib/stylish/models/package_spec.rb +35 -0
  136. data/spec/lib/stylish/models_spec.rb +12 -0
  137. data/spec/spec_helper.rb +38 -0
  138. data/spec/support/json_helper.rb +7 -0
  139. data/spec/test.css.scss +6 -0
  140. data/stylish.gemspec +17 -2
  141. data/support/editor-app/.gitignore +2 -0
  142. data/support/editor-app/development/bower.json +9 -0
  143. data/support/editor-app/development/package.json +28 -0
  144. data/support/editor-app/development/semantic/components/accordion.css +257 -0
  145. data/support/editor-app/development/semantic/components/accordion.js +558 -0
  146. data/support/editor-app/development/semantic/components/accordion.min.css +11 -0
  147. data/support/editor-app/development/semantic/components/accordion.min.js +11 -0
  148. data/support/editor-app/development/semantic/components/ad.css +277 -0
  149. data/support/editor-app/development/semantic/components/ad.min.css +11 -0
  150. data/support/editor-app/development/semantic/components/api.js +851 -0
  151. data/support/editor-app/development/semantic/components/api.min.js +11 -0
  152. data/support/editor-app/development/semantic/components/breadcrumb.css +125 -0
  153. data/support/editor-app/development/semantic/components/breadcrumb.min.css +11 -0
  154. data/support/editor-app/development/semantic/components/button.css +2391 -0
  155. data/support/editor-app/development/semantic/components/button.min.css +11 -0
  156. data/support/editor-app/development/semantic/components/card.css +758 -0
  157. data/support/editor-app/development/semantic/components/card.min.css +11 -0
  158. data/support/editor-app/development/semantic/components/checkbox.css +514 -0
  159. data/support/editor-app/development/semantic/components/checkbox.js +507 -0
  160. data/support/editor-app/development/semantic/components/checkbox.min.css +11 -0
  161. data/support/editor-app/development/semantic/components/checkbox.min.js +11 -0
  162. data/support/editor-app/development/semantic/components/comment.css +260 -0
  163. data/support/editor-app/development/semantic/components/comment.min.css +11 -0
  164. data/support/editor-app/development/semantic/components/dimmer.css +187 -0
  165. data/support/editor-app/development/semantic/components/dimmer.js +627 -0
  166. data/support/editor-app/development/semantic/components/dimmer.min.css +11 -0
  167. data/support/editor-app/development/semantic/components/dimmer.min.js +11 -0
  168. data/support/editor-app/development/semantic/components/divider.css +244 -0
  169. data/support/editor-app/development/semantic/components/divider.min.css +11 -0
  170. data/support/editor-app/development/semantic/components/dropdown.css +1085 -0
  171. data/support/editor-app/development/semantic/components/dropdown.js +1757 -0
  172. data/support/editor-app/development/semantic/components/dropdown.min.css +11 -0
  173. data/support/editor-app/development/semantic/components/dropdown.min.js +11 -0
  174. data/support/editor-app/development/semantic/components/feed.css +277 -0
  175. data/support/editor-app/development/semantic/components/feed.min.css +11 -0
  176. data/support/editor-app/development/semantic/components/flag.css +1017 -0
  177. data/support/editor-app/development/semantic/components/flag.min.css +11 -0
  178. data/support/editor-app/development/semantic/components/form.css +875 -0
  179. data/support/editor-app/development/semantic/components/form.js +1039 -0
  180. data/support/editor-app/development/semantic/components/form.min.css +11 -0
  181. data/support/editor-app/development/semantic/components/form.min.js +11 -0
  182. data/support/editor-app/development/semantic/components/grid.css +1816 -0
  183. data/support/editor-app/development/semantic/components/grid.min.css +11 -0
  184. data/support/editor-app/development/semantic/components/header.css +572 -0
  185. data/support/editor-app/development/semantic/components/header.min.css +11 -0
  186. data/support/editor-app/development/semantic/components/icon.css +2127 -0
  187. data/support/editor-app/development/semantic/components/icon.min.css +11 -0
  188. data/support/editor-app/development/semantic/components/image.css +275 -0
  189. data/support/editor-app/development/semantic/components/image.min.css +11 -0
  190. data/support/editor-app/development/semantic/components/input.css +455 -0
  191. data/support/editor-app/development/semantic/components/input.min.css +11 -0
  192. data/support/editor-app/development/semantic/components/item.css +458 -0
  193. data/support/editor-app/development/semantic/components/item.min.css +11 -0
  194. data/support/editor-app/development/semantic/components/label.css +930 -0
  195. data/support/editor-app/development/semantic/components/label.min.css +11 -0
  196. data/support/editor-app/development/semantic/components/list.css +879 -0
  197. data/support/editor-app/development/semantic/components/list.min.css +11 -0
  198. data/support/editor-app/development/semantic/components/loader.css +279 -0
  199. data/support/editor-app/development/semantic/components/loader.min.css +11 -0
  200. data/support/editor-app/development/semantic/components/menu.css +1596 -0
  201. data/support/editor-app/development/semantic/components/menu.min.css +11 -0
  202. data/support/editor-app/development/semantic/components/message.css +422 -0
  203. data/support/editor-app/development/semantic/components/message.min.css +11 -0
  204. data/support/editor-app/development/semantic/components/modal.css +431 -0
  205. data/support/editor-app/development/semantic/components/modal.js +860 -0
  206. data/support/editor-app/development/semantic/components/modal.min.css +11 -0
  207. data/support/editor-app/development/semantic/components/modal.min.js +11 -0
  208. data/support/editor-app/development/semantic/components/nag.css +149 -0
  209. data/support/editor-app/development/semantic/components/nag.js +477 -0
  210. data/support/editor-app/development/semantic/components/nag.min.css +11 -0
  211. data/support/editor-app/development/semantic/components/nag.min.js +11 -0
  212. data/support/editor-app/development/semantic/components/popup.css +294 -0
  213. data/support/editor-app/development/semantic/components/popup.js +1187 -0
  214. data/support/editor-app/development/semantic/components/popup.min.css +11 -0
  215. data/support/editor-app/development/semantic/components/popup.min.js +11 -0
  216. data/support/editor-app/development/semantic/components/progress.css +449 -0
  217. data/support/editor-app/development/semantic/components/progress.js +785 -0
  218. data/support/editor-app/development/semantic/components/progress.min.css +11 -0
  219. data/support/editor-app/development/semantic/components/progress.min.js +11 -0
  220. data/support/editor-app/development/semantic/components/rail.css +125 -0
  221. data/support/editor-app/development/semantic/components/rail.min.css +11 -0
  222. data/support/editor-app/development/semantic/components/rating.css +262 -0
  223. data/support/editor-app/development/semantic/components/rating.js +451 -0
  224. data/support/editor-app/development/semantic/components/rating.min.css +11 -0
  225. data/support/editor-app/development/semantic/components/rating.min.js +11 -0
  226. data/support/editor-app/development/semantic/components/reset.css +430 -0
  227. data/support/editor-app/development/semantic/components/reset.min.css +11 -0
  228. data/support/editor-app/development/semantic/components/reveal.css +294 -0
  229. data/support/editor-app/development/semantic/components/reveal.min.css +11 -0
  230. data/support/editor-app/development/semantic/components/search.css +330 -0
  231. data/support/editor-app/development/semantic/components/search.js +1055 -0
  232. data/support/editor-app/development/semantic/components/search.min.css +11 -0
  233. data/support/editor-app/development/semantic/components/search.min.js +11 -0
  234. data/support/editor-app/development/semantic/components/segment.css +590 -0
  235. data/support/editor-app/development/semantic/components/segment.min.css +11 -0
  236. data/support/editor-app/development/semantic/components/shape.css +155 -0
  237. data/support/editor-app/development/semantic/components/shape.js +830 -0
  238. data/support/editor-app/development/semantic/components/shape.min.css +11 -0
  239. data/support/editor-app/development/semantic/components/shape.min.js +11 -0
  240. data/support/editor-app/development/semantic/components/sidebar.css +621 -0
  241. data/support/editor-app/development/semantic/components/sidebar.js +1084 -0
  242. data/support/editor-app/development/semantic/components/sidebar.min.css +11 -0
  243. data/support/editor-app/development/semantic/components/sidebar.min.js +11 -0
  244. data/support/editor-app/development/semantic/components/site.css +147 -0
  245. data/support/editor-app/development/semantic/components/site.js +487 -0
  246. data/support/editor-app/development/semantic/components/site.min.css +11 -0
  247. data/support/editor-app/development/semantic/components/site.min.js +11 -0
  248. data/support/editor-app/development/semantic/components/state.js +690 -0
  249. data/support/editor-app/development/semantic/components/state.min.js +11 -0
  250. data/support/editor-app/development/semantic/components/statistic.css +410 -0
  251. data/support/editor-app/development/semantic/components/statistic.min.css +11 -0
  252. data/support/editor-app/development/semantic/components/step.css +433 -0
  253. data/support/editor-app/development/semantic/components/step.min.css +11 -0
  254. data/support/editor-app/development/semantic/components/sticky.css +80 -0
  255. data/support/editor-app/development/semantic/components/sticky.js +775 -0
  256. data/support/editor-app/development/semantic/components/sticky.min.css +11 -0
  257. data/support/editor-app/development/semantic/components/sticky.min.js +11 -0
  258. data/support/editor-app/development/semantic/components/tab.css +93 -0
  259. data/support/editor-app/development/semantic/components/tab.js +787 -0
  260. data/support/editor-app/development/semantic/components/tab.min.css +11 -0
  261. data/support/editor-app/development/semantic/components/tab.min.js +11 -0
  262. data/support/editor-app/development/semantic/components/table.css +999 -0
  263. data/support/editor-app/development/semantic/components/table.min.css +11 -0
  264. data/support/editor-app/development/semantic/components/transition.css +2152 -0
  265. data/support/editor-app/development/semantic/components/transition.js +936 -0
  266. data/support/editor-app/development/semantic/components/transition.min.css +11 -0
  267. data/support/editor-app/development/semantic/components/transition.min.js +11 -0
  268. data/support/editor-app/development/semantic/components/video.css +126 -0
  269. data/support/editor-app/development/semantic/components/video.js +540 -0
  270. data/support/editor-app/development/semantic/components/video.min.css +11 -0
  271. data/support/editor-app/development/semantic/components/video.min.js +11 -0
  272. data/support/editor-app/development/semantic/components/visibility.js +970 -0
  273. data/support/editor-app/development/semantic/components/visibility.min.js +11 -0
  274. data/support/editor-app/development/semantic/semantic.css +31768 -0
  275. data/support/editor-app/development/semantic/semantic.js +18317 -0
  276. data/support/editor-app/development/semantic/semantic.min.css +11 -0
  277. data/support/editor-app/development/semantic/semantic.min.js +17 -0
  278. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.eot +0 -0
  279. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.svg +450 -0
  280. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
  281. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.woff +0 -0
  282. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.eot +0 -0
  283. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.otf +0 -0
  284. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.svg +504 -0
  285. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.ttf +0 -0
  286. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.woff +0 -0
  287. data/support/editor-app/development/semantic/themes/default/assets/images/flags.png +0 -0
  288. data/support/editor-app/development/src/apis/index.coffee +35 -0
  289. data/support/editor-app/development/src/components/editor.cjsx +58 -0
  290. data/support/editor-app/development/src/components/editor_drawer.cjsx +7 -0
  291. data/support/editor-app/development/src/components/header.cjsx +12 -0
  292. data/support/editor-app/development/src/components/index.coffee +9 -0
  293. data/support/editor-app/development/src/components/menus/icon_grid.cjsx +0 -0
  294. data/support/editor-app/development/src/components/sidebar.cjsx +24 -0
  295. data/support/editor-app/development/src/components/tiled_grid.cjsx +35 -0
  296. data/support/editor-app/development/src/index.cjsx +82 -0
  297. data/support/editor-app/development/src/lib/util.coffee +48 -0
  298. data/support/editor-app/development/src/pages/home.cjsx +46 -0
  299. data/support/editor-app/development/src/pages/index.coffee +6 -0
  300. data/support/editor-app/development/src/pages/package_details.cjsx +55 -0
  301. data/support/editor-app/development/src/registry.coffee +35 -0
  302. data/support/editor-app/development/src/styles/components/tiled_grid.css.scss +5 -0
  303. data/support/editor-app/development/src/styles/index.css.scss +240 -0
  304. data/support/editor-app/development/src/sugar.cjsx +126 -0
  305. data/support/editor-app/development/webpack.config.js +53 -0
  306. data/support/editor-app/dist/base.css +0 -0
  307. data/support/editor-app/dist/toolit.js +62 -0
  308. data/support/editor-app/dist/toolkit.js +44573 -0
  309. data/support/editor-app/index.html +50 -0
  310. data/support/editor-app/package.json +15 -0
  311. data/support/editor-app/semantic/components/accordion.css +257 -0
  312. data/support/editor-app/semantic/components/accordion.js +558 -0
  313. data/support/editor-app/semantic/components/accordion.min.css +11 -0
  314. data/support/editor-app/semantic/components/accordion.min.js +11 -0
  315. data/support/editor-app/semantic/components/ad.css +277 -0
  316. data/support/editor-app/semantic/components/ad.min.css +11 -0
  317. data/support/editor-app/semantic/components/api.js +851 -0
  318. data/support/editor-app/semantic/components/api.min.js +11 -0
  319. data/support/editor-app/semantic/components/breadcrumb.css +125 -0
  320. data/support/editor-app/semantic/components/breadcrumb.min.css +11 -0
  321. data/support/editor-app/semantic/components/button.css +2391 -0
  322. data/support/editor-app/semantic/components/button.min.css +11 -0
  323. data/support/editor-app/semantic/components/card.css +758 -0
  324. data/support/editor-app/semantic/components/card.min.css +11 -0
  325. data/support/editor-app/semantic/components/checkbox.css +514 -0
  326. data/support/editor-app/semantic/components/checkbox.js +507 -0
  327. data/support/editor-app/semantic/components/checkbox.min.css +11 -0
  328. data/support/editor-app/semantic/components/checkbox.min.js +11 -0
  329. data/support/editor-app/semantic/components/comment.css +260 -0
  330. data/support/editor-app/semantic/components/comment.min.css +11 -0
  331. data/support/editor-app/semantic/components/dimmer.css +187 -0
  332. data/support/editor-app/semantic/components/dimmer.js +627 -0
  333. data/support/editor-app/semantic/components/dimmer.min.css +11 -0
  334. data/support/editor-app/semantic/components/dimmer.min.js +11 -0
  335. data/support/editor-app/semantic/components/divider.css +244 -0
  336. data/support/editor-app/semantic/components/divider.min.css +11 -0
  337. data/support/editor-app/semantic/components/dropdown.css +1085 -0
  338. data/support/editor-app/semantic/components/dropdown.js +1757 -0
  339. data/support/editor-app/semantic/components/dropdown.min.css +11 -0
  340. data/support/editor-app/semantic/components/dropdown.min.js +11 -0
  341. data/support/editor-app/semantic/components/feed.css +277 -0
  342. data/support/editor-app/semantic/components/feed.min.css +11 -0
  343. data/support/editor-app/semantic/components/flag.css +1017 -0
  344. data/support/editor-app/semantic/components/flag.min.css +11 -0
  345. data/support/editor-app/semantic/components/form.css +875 -0
  346. data/support/editor-app/semantic/components/form.js +1039 -0
  347. data/support/editor-app/semantic/components/form.min.css +11 -0
  348. data/support/editor-app/semantic/components/form.min.js +11 -0
  349. data/support/editor-app/semantic/components/grid.css +1816 -0
  350. data/support/editor-app/semantic/components/grid.min.css +11 -0
  351. data/support/editor-app/semantic/components/header.css +572 -0
  352. data/support/editor-app/semantic/components/header.min.css +11 -0
  353. data/support/editor-app/semantic/components/icon.css +2127 -0
  354. data/support/editor-app/semantic/components/icon.min.css +11 -0
  355. data/support/editor-app/semantic/components/image.css +275 -0
  356. data/support/editor-app/semantic/components/image.min.css +11 -0
  357. data/support/editor-app/semantic/components/input.css +455 -0
  358. data/support/editor-app/semantic/components/input.min.css +11 -0
  359. data/support/editor-app/semantic/components/item.css +458 -0
  360. data/support/editor-app/semantic/components/item.min.css +11 -0
  361. data/support/editor-app/semantic/components/label.css +930 -0
  362. data/support/editor-app/semantic/components/label.min.css +11 -0
  363. data/support/editor-app/semantic/components/list.css +879 -0
  364. data/support/editor-app/semantic/components/list.min.css +11 -0
  365. data/support/editor-app/semantic/components/loader.css +279 -0
  366. data/support/editor-app/semantic/components/loader.min.css +11 -0
  367. data/support/editor-app/semantic/components/menu.css +1596 -0
  368. data/support/editor-app/semantic/components/menu.min.css +11 -0
  369. data/support/editor-app/semantic/components/message.css +422 -0
  370. data/support/editor-app/semantic/components/message.min.css +11 -0
  371. data/support/editor-app/semantic/components/modal.css +431 -0
  372. data/support/editor-app/semantic/components/modal.js +860 -0
  373. data/support/editor-app/semantic/components/modal.min.css +11 -0
  374. data/support/editor-app/semantic/components/modal.min.js +11 -0
  375. data/support/editor-app/semantic/components/nag.css +149 -0
  376. data/support/editor-app/semantic/components/nag.js +477 -0
  377. data/support/editor-app/semantic/components/nag.min.css +11 -0
  378. data/support/editor-app/semantic/components/nag.min.js +11 -0
  379. data/support/editor-app/semantic/components/popup.css +294 -0
  380. data/support/editor-app/semantic/components/popup.js +1187 -0
  381. data/support/editor-app/semantic/components/popup.min.css +11 -0
  382. data/support/editor-app/semantic/components/popup.min.js +11 -0
  383. data/support/editor-app/semantic/components/progress.css +449 -0
  384. data/support/editor-app/semantic/components/progress.js +785 -0
  385. data/support/editor-app/semantic/components/progress.min.css +11 -0
  386. data/support/editor-app/semantic/components/progress.min.js +11 -0
  387. data/support/editor-app/semantic/components/rail.css +125 -0
  388. data/support/editor-app/semantic/components/rail.min.css +11 -0
  389. data/support/editor-app/semantic/components/rating.css +262 -0
  390. data/support/editor-app/semantic/components/rating.js +451 -0
  391. data/support/editor-app/semantic/components/rating.min.css +11 -0
  392. data/support/editor-app/semantic/components/rating.min.js +11 -0
  393. data/support/editor-app/semantic/components/reset.css +430 -0
  394. data/support/editor-app/semantic/components/reset.min.css +11 -0
  395. data/support/editor-app/semantic/components/reveal.css +294 -0
  396. data/support/editor-app/semantic/components/reveal.min.css +11 -0
  397. data/support/editor-app/semantic/components/search.css +330 -0
  398. data/support/editor-app/semantic/components/search.js +1055 -0
  399. data/support/editor-app/semantic/components/search.min.css +11 -0
  400. data/support/editor-app/semantic/components/search.min.js +11 -0
  401. data/support/editor-app/semantic/components/segment.css +590 -0
  402. data/support/editor-app/semantic/components/segment.min.css +11 -0
  403. data/support/editor-app/semantic/components/shape.css +155 -0
  404. data/support/editor-app/semantic/components/shape.js +830 -0
  405. data/support/editor-app/semantic/components/shape.min.css +11 -0
  406. data/support/editor-app/semantic/components/shape.min.js +11 -0
  407. data/support/editor-app/semantic/components/sidebar.css +621 -0
  408. data/support/editor-app/semantic/components/sidebar.js +1084 -0
  409. data/support/editor-app/semantic/components/sidebar.min.css +11 -0
  410. data/support/editor-app/semantic/components/sidebar.min.js +11 -0
  411. data/support/editor-app/semantic/components/site.css +147 -0
  412. data/support/editor-app/semantic/components/site.js +487 -0
  413. data/support/editor-app/semantic/components/site.min.css +11 -0
  414. data/support/editor-app/semantic/components/site.min.js +11 -0
  415. data/support/editor-app/semantic/components/state.js +690 -0
  416. data/support/editor-app/semantic/components/state.min.js +11 -0
  417. data/support/editor-app/semantic/components/statistic.css +410 -0
  418. data/support/editor-app/semantic/components/statistic.min.css +11 -0
  419. data/support/editor-app/semantic/components/step.css +433 -0
  420. data/support/editor-app/semantic/components/step.min.css +11 -0
  421. data/support/editor-app/semantic/components/sticky.css +80 -0
  422. data/support/editor-app/semantic/components/sticky.js +775 -0
  423. data/support/editor-app/semantic/components/sticky.min.css +11 -0
  424. data/support/editor-app/semantic/components/sticky.min.js +11 -0
  425. data/support/editor-app/semantic/components/tab.css +93 -0
  426. data/support/editor-app/semantic/components/tab.js +787 -0
  427. data/support/editor-app/semantic/components/tab.min.css +11 -0
  428. data/support/editor-app/semantic/components/tab.min.js +11 -0
  429. data/support/editor-app/semantic/components/table.css +999 -0
  430. data/support/editor-app/semantic/components/table.min.css +11 -0
  431. data/support/editor-app/semantic/components/transition.css +2152 -0
  432. data/support/editor-app/semantic/components/transition.js +936 -0
  433. data/support/editor-app/semantic/components/transition.min.css +11 -0
  434. data/support/editor-app/semantic/components/transition.min.js +11 -0
  435. data/support/editor-app/semantic/components/video.css +126 -0
  436. data/support/editor-app/semantic/components/video.js +540 -0
  437. data/support/editor-app/semantic/components/video.min.css +11 -0
  438. data/support/editor-app/semantic/components/video.min.js +11 -0
  439. data/support/editor-app/semantic/components/visibility.js +970 -0
  440. data/support/editor-app/semantic/components/visibility.min.js +11 -0
  441. data/support/editor-app/semantic/semantic.css +31768 -0
  442. data/support/editor-app/semantic/semantic.js +18317 -0
  443. data/support/editor-app/semantic/semantic.min.css +11 -0
  444. data/support/editor-app/semantic/semantic.min.js +17 -0
  445. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.eot +0 -0
  446. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.svg +450 -0
  447. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
  448. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.woff +0 -0
  449. data/support/editor-app/semantic/themes/default/assets/fonts/icons.eot +0 -0
  450. data/support/editor-app/semantic/themes/default/assets/fonts/icons.otf +0 -0
  451. data/support/editor-app/semantic/themes/default/assets/fonts/icons.svg +504 -0
  452. data/support/editor-app/semantic/themes/default/assets/fonts/icons.ttf +0 -0
  453. data/support/editor-app/semantic/themes/default/assets/fonts/icons.woff +0 -0
  454. data/support/editor-app/semantic/themes/default/assets/images/flags.png +0 -0
  455. data/support/editor-app/vendor/jquery.js +8829 -0
  456. data/support/library-server/Gemfile +0 -0
  457. data/support/library-server/config.ru +4 -0
  458. metadata +740 -7
@@ -0,0 +1,11 @@
1
+ /*
2
+ * # Semantic UI - 1.8.1
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+ .ui.table{width:100%;background:#fff;margin:1em 0;border:1px solid #d0d0d0;box-shadow:none;border-radius:.25rem;color:rgba(0,0,0,.8);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 .2s ease,border-color .2s ease,color .2s ease;transition:background .2s ease,border-color .2s ease,color .2s ease}.ui.table thead{box-shadow:none}.ui.table thead th{cursor:auto;background:#f0f0f0;text-align:left;color:rgba(0,0,0,.8);padding:.7em .8em;vertical-align:middle;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid #d4d4d5;border-left:none}.ui.table thead tr>th:first-child{border-left:none}.ui.table thead tr:first-child>th:first-child{border-radius:.25rem 0 0}.ui.table thead tr:first-child>th:last-child{border-radius:0 .25rem 0 0}.ui.table thead tr:first-child>th:only-child{border-radius:.25rem .25rem 0 0}.ui.table tfoot{box-shadow:none}.ui.table tfoot th{cursor:auto;border-top:1px solid #d4d4d5;background:#fff;text-align:left;color:rgba(0,0,0,.8);padding:.7em .8em;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 .25rem}.ui.table tfoot tr:first-child>th:last-child{border-radius:0 0 .25rem}.ui.table tfoot tr:first-child>th:only-child{border-radius:0 0 .25rem .25rem}.ui.table tr td{border-top:1px solid #d4d4d5}.ui.table tr:first-child td{border-top:none}.ui.table td{padding:.7em .8em;text-align:left;vertical-align:middle}.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),.ui.table:not(.unstackable) tbody,.ui.table:not(.unstackable) tr,.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{width:100%!important;display:block!important}.ui.table:not(.unstackable){padding:0}.ui.table:not(.unstackable) tfoot,.ui.table:not(.unstackable) thead{display:block}.ui.table:not(.unstackable) tr>td,.ui.table:not(.unstackable) tr>th{background:0 0;border:none!important;padding:.25em .75em;box-shadow:none}.ui.table:not(.unstackable) td:first-child,.ui.table:not(.unstackable) th:first-child{font-weight:700;padding-top:1em}.ui.table:not(.unstackable) td:last-child,.ui.table:not(.unstackable) th:last-child{box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset;padding-bottom:1em}.ui.table:not(.unstackable) tr>td.active,.ui.table:not(.unstackable) tr>td.error,.ui.table:not(.unstackable) tr>td.negative,.ui.table:not(.unstackable) tr>td.positive,.ui.table:not(.unstackable) tr>td.warning{background-color:transparent!important}.ui.definition.table:not(.unstackable) thead th:first-child{box-shadow:none!important}.ui.definition.table:not(.unstackable) tr td:first-child{padding-bottom:1em}.ui.definition.table:not(.unstackable) tr td:nth-child(n+2){padding-top:1em}}.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 #d0d0d0;border-right:1px solid #d0d0d0}.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 #d4d4d5;border-right:1px solid #d4d4d5}.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:first-child{background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.8)}.ui.definition.table td:nth-child(2),.ui.definition.table tfoot:not(.full-width) th:nth-child(2),.ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid #d0d0d0}.ui.table td.positive,.ui.table tr.positive{box-shadow:0 0 0 #b7caa7 inset}.ui.table td.positive,.ui.table tr.positive td{background:#eeffe7!important;color:#3c763d!important}.ui.celled.table tr.positive:hover td,.ui.celled.table tr:hover td.positive{background:#e3ffd8!important;color:#376c38!important}.ui.table td.negative,.ui.table tr.negative{box-shadow:0 0 0 #dbb1b1 inset}.ui.table td.negative,.ui.table tr.negative td{background:#fff0f0!important;color:#cd2929!important}.ui.celled.table tr.negative:hover td,.ui.celled.table tr:hover td.negative{background:#ffe1e1!important;color:#c02626!important}.ui.table td.error,.ui.table tr.error{box-shadow:0 0 0 #dbb1b1 inset}.ui.table td.error,.ui.table tr.error td{background:#fff0f0!important;color:#cd2929!important}.ui.celled.table tr.error:hover td,.ui.celled.table tr:hover td.error{background:#ffe1e1!important;color:#c02626!important}.ui.table td.warning,.ui.table tr.warning{box-shadow:0 0 0 #d9caab inset}.ui.table td.warning,.ui.table tr.warning td{background:#fffbe6!important;color:#7d6c00!important}.ui.celled.table tr.warning:hover td,.ui.celled.table tr:hover td.warning{background:#fff9d7!important;color:#6e5f00!important}.ui.table td.active,.ui.table tr.active{box-shadow:0 0 0 rgba(50,50,50,.9) inset}.ui.celled.table tr.active:hover td,.ui.celled.table tr:hover td.active,.ui.table td.active,.ui.table tr.active td{background:#e0e0e0!important;color:rgba(50,50,50,.9)!important}.ui.table tr td.disabled,.ui.table tr.disabled td,.ui.table tr.disabled:hover td,.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 tfoot,.ui[class*="tablet stackable"].table thead{display:block}.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}.ui[class*="tablet stackable"].table td:first-child,.ui[class*="tablet stackable"].table th:first-child{font-weight:700;padding-top:1em}.ui[class*="tablet stackable"].table td:last-child,.ui[class*="tablet stackable"].table th:last-child{box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset;padding-bottom:1em}.ui[class*="tablet stackable"].table tr>td.active,.ui[class*="tablet stackable"].table tr>td.error,.ui[class*="tablet stackable"].table tr>td.negative,.ui[class*="tablet stackable"].table tr>td.positive,.ui[class*="tablet stackable"].table tr>td.warning{background-color:transparent!important}.ui.definition[class*="tablet stackable"].table thead th:first-child{box-shadow:none!important}.ui.definition[class*="tablet stackable"].table tr td:first-child{padding-bottom:1em}.ui.definition[class*="tablet stackable"].table tr td:nth-child(n+2){padding-top:1em}}.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 td.collapsing,.ui.table th.collapsing{width:1px;white-space:nowrap}.ui.attached.table{width:-webkit-calc(100% + 2px);width:calc(100% + 2px);margin:0 -1px;border-radius:0;box-shadow:none}.ui[class*="top attached"].table{margin-top:1em 0;border-radius:.25rem .25rem 0 0}.ui.table[class*="top attached"]:first-child{margin-top:0}.ui.table[class*="bottom attached"]{margin-top:0;margin-bottom:1em 0;border-radius:0 0 .25rem .25rem}.ui.table[class*="bottom attached"]: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,.03)}.ui.inverted.striped.table tbody tr:nth-child(2n),.ui.inverted.striped.table>tr:nth-child(2n){background-color:rgba(255,255,255,.06)}.ui.black.table{border-top:.2em solid #1b1c1d}.ui.blue.table{border-top:.2em solid #3b83c0}.ui.green.table{border-top:.2em solid #5bbd72}.ui.orange.table{border-top:.2em solid #e07b53}.ui.pink.table{border-top:.2em solid #d9499a}.ui.purple.table{border-top:.2em solid #564f8a}.ui.red.table{border-top:.2em solid #d95c5c}.ui.teal.table{border-top:.2em solid #00b5ad}.ui.yellow.table{border-top:.2em solid #f2c61f}.ui.inverted.black.table,.ui.inverted.table{background-color:#1b1c1d!important;color:#fff!important}.ui.inverted.blue.table{background-color:#3b83c0!important;color:#fff!important}.ui.inverted.green.table{background-color:#5bbd72!important;color:#fff!important}.ui.inverted.orange.table{background-color:#e07b53!important;color:#fff!important}.ui.inverted.pink.table{background-color:#d9499a!important;color:#fff!important}.ui.inverted.purple.table{background-color:#564f8a!important;color:#fff!important}.ui.inverted.red.table{background-color:#d95c5c!important;color:#fff!important}.ui.inverted.teal.table{background-color:#00b5ad!important;color:#fff!important}.ui.inverted.yellow.table{background-color:#f2c61f!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,.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 #d0d0d0;color:rgba(0,0,0,.8)}.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:inline-block;content:'';width:1em;height:1em;opacity:.8;margin:0 0 0 .5em;font-family:Icons;font-style:normal;font-weight:400;text-decoration:inherit}.ui.sortable.table thead th.ascending:after{content:'\f0d7'}.ui.sortable.table thead th.descending:after{content:'\f0d8'}.ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,.3)}.ui.sortable.table thead th.sorted,.ui.sortable.table thead th.sorted:hover,.ui.sortable.table thead th:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.ui.inverted.sortable.table thead th.sorted{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.07);background:linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.07);color:#fff}.ui.inverted.sortable.table thead th:hover{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.05);background:linear-gradient(transparent,rgba(0,0,0,.05)) rgba(255,255,255,.05);color:#fff}.ui.inverted.sortable.table thead th{border-left-color:transparent;border-right-color:transparent}.ui.inverted.table{background:#333;color:#fff;border:none}.ui.inverted.table th{background-color:rgba(0,0,0,.15);border-color:rgba(0,0,0,.2)!important;color:rgba(255,255,255,.9)}.ui.inverted.table tr td{border-color:rgba(0,0,0,.2)!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 #d0d0d0;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:.7em .8em}.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 #d4d4d5}.ui.celled.table tr td:first-child,.ui.celled.table tr th:first-child{border-left:none}.ui.padded.table td,.ui.padded.table th{padding:1em}.ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.ui[class*="very padded"].table td{padding: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,2152 @@
1
+ /*
2
+ * # Semantic UI - 1.8.1
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+
13
+
14
+ /*******************************
15
+ Transitions
16
+ *******************************/
17
+
18
+ .transition {
19
+ -webkit-animation-iteration-count: 1;
20
+ animation-iteration-count: 1;
21
+ -webkit-animation-duration: 300ms;
22
+ animation-duration: 300ms;
23
+ -webkit-animation-timing-function: ease;
24
+ animation-timing-function: ease;
25
+ -webkit-animation-fill-mode: both;
26
+ animation-fill-mode: both;
27
+ }
28
+
29
+
30
+ /*******************************
31
+ States
32
+ *******************************/
33
+
34
+
35
+ /* Animating */
36
+ .animating.transition {
37
+ -webkit-backface-visibility: hidden;
38
+ backface-visibility: hidden;
39
+ -webkit-transform: translateZ(0);
40
+ transform: translateZ(0);
41
+ visibility: visible !important;
42
+ }
43
+
44
+ /* Loading */
45
+ .loading.transition {
46
+ position: absolute;
47
+ top: -99999px;
48
+ left: -99999px;
49
+ }
50
+
51
+ /* Hidden */
52
+ .hidden.transition {
53
+ display: none;
54
+ visibility: hidden;
55
+ }
56
+
57
+ /* Visible */
58
+ .visible.transition {
59
+ display: block !important;
60
+ visibility: visible !important;
61
+ -webkit-backface-visibility: hidden;
62
+ backface-visibility: hidden;
63
+ -webkit-transform: translateZ(0);
64
+ transform: translateZ(0);
65
+ }
66
+
67
+ /* Disabled */
68
+ .disabled.transition {
69
+ -webkit-animation-play-state: paused;
70
+ animation-play-state: paused;
71
+ }
72
+
73
+
74
+ /*******************************
75
+ Variations
76
+ *******************************/
77
+
78
+ .looping.transition {
79
+ -webkit-animation-iteration-count: infinite;
80
+ animation-iteration-count: infinite;
81
+ }
82
+
83
+
84
+ /*******************************
85
+ Types
86
+ *******************************/
87
+
88
+
89
+
90
+ /*******************************
91
+ Transitions
92
+ *******************************/
93
+
94
+ /*
95
+ Some transitions adapted from Animate CSS
96
+ https://github.com/daneden/animate.css
97
+
98
+ Additional transitions adapted from Glide
99
+ by Nick Pettit - https://github.com/nickpettit/glide
100
+ */
101
+
102
+ /*--------------
103
+ Browse
104
+ ---------------*/
105
+
106
+ .browse.transition.in {
107
+ -webkit-animation-name: browseIn;
108
+ animation-name: browseIn;
109
+ }
110
+ .browse.transition.out,
111
+ .browse.transition.out.left {
112
+ -webkit-animation-name: browseOutLeft;
113
+ animation-name: browseOutLeft;
114
+ }
115
+ .browse.transition.out.right {
116
+ -webkit-animation-name: browseOutRight;
117
+ animation-name: browseOutRight;
118
+ }
119
+
120
+ /* In */
121
+ @-webkit-keyframes browseIn {
122
+
123
+ 0% {
124
+ -webkit-transform: scale(0.8) translateZ(0px);
125
+ transform: scale(0.8) translateZ(0px);
126
+ z-index: -1;
127
+ }
128
+
129
+ 10% {
130
+ -webkit-transform: scale(0.8) translateZ(0px);
131
+ transform: scale(0.8) translateZ(0px);
132
+ z-index: -1;
133
+ opacity: 0.7;
134
+ }
135
+
136
+ 80% {
137
+ -webkit-transform: scale(1.05) translateZ(0px);
138
+ transform: scale(1.05) translateZ(0px);
139
+ opacity: 1;
140
+ z-index: 999;
141
+ }
142
+
143
+ 100% {
144
+ -webkit-transform: scale(1) translateZ(0px);
145
+ transform: scale(1) translateZ(0px);
146
+ z-index: 999;
147
+ }
148
+ }
149
+ @keyframes browseIn {
150
+ 0% {
151
+ -webkit-transform: scale(0.8) translateZ(0px);
152
+ transform: scale(0.8) translateZ(0px);
153
+ z-index: -1;
154
+ }
155
+ 10% {
156
+ -webkit-transform: scale(0.8) translateZ(0px);
157
+ transform: scale(0.8) translateZ(0px);
158
+ z-index: -1;
159
+ opacity: 0.7;
160
+ }
161
+ 80% {
162
+ -webkit-transform: scale(1.05) translateZ(0px);
163
+ transform: scale(1.05) translateZ(0px);
164
+ opacity: 1;
165
+ z-index: 999;
166
+ }
167
+ 100% {
168
+ -webkit-transform: scale(1) translateZ(0px);
169
+ transform: scale(1) translateZ(0px);
170
+ z-index: 999;
171
+ }
172
+ }
173
+
174
+ /* Out */
175
+ @-webkit-keyframes browseOutLeft {
176
+
177
+ 0% {
178
+ z-index: 999;
179
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
180
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg);
181
+ }
182
+
183
+ 50% {
184
+ z-index: -1;
185
+ -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
186
+ transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
187
+ }
188
+
189
+ 80% {
190
+ opacity: 1;
191
+ }
192
+
193
+ 100% {
194
+ z-index: -1;
195
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
196
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
197
+ opacity: 0;
198
+ }
199
+ }
200
+ @keyframes browseOutLeft {
201
+ 0% {
202
+ z-index: 999;
203
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
204
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg);
205
+ }
206
+ 50% {
207
+ z-index: -1;
208
+ -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
209
+ transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
210
+ }
211
+ 80% {
212
+ opacity: 1;
213
+ }
214
+ 100% {
215
+ z-index: -1;
216
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
217
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
218
+ opacity: 0;
219
+ }
220
+ }
221
+ @-webkit-keyframes browseOutRight {
222
+
223
+ 0% {
224
+ z-index: 999;
225
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
226
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg);
227
+ }
228
+
229
+ 50% {
230
+ z-index: 1;
231
+ -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
232
+ transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
233
+ }
234
+
235
+ 80% {
236
+ opacity: 1;
237
+ }
238
+
239
+ 100% {
240
+ z-index: 1;
241
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
242
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
243
+ opacity: 0;
244
+ }
245
+ }
246
+ @keyframes browseOutRight {
247
+ 0% {
248
+ z-index: 999;
249
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
250
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg);
251
+ }
252
+ 50% {
253
+ z-index: 1;
254
+ -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
255
+ transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
256
+ }
257
+ 80% {
258
+ opacity: 1;
259
+ }
260
+ 100% {
261
+ z-index: 1;
262
+ -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
263
+ transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
264
+ opacity: 0;
265
+ }
266
+ }
267
+
268
+ /*--------------
269
+ Drop
270
+ ---------------*/
271
+
272
+ .drop.transition {
273
+ -webkit-transform-origin: top center;
274
+ -ms-transform-origin: top center;
275
+ transform-origin: top center;
276
+ -webkit-animation-duration: 0.5s;
277
+ animation-duration: 0.5s;
278
+ -webkit-animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
279
+ animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
280
+ }
281
+ .drop.transition.in {
282
+ -webkit-animation-name: dropIn;
283
+ animation-name: dropIn;
284
+ }
285
+ .drop.transition.out {
286
+ -webkit-animation-name: dropOut;
287
+ animation-name: dropOut;
288
+ }
289
+
290
+ /* Drop */
291
+ @-webkit-keyframes dropIn {
292
+
293
+ 0% {
294
+ opacity: 0;
295
+ -webkit-transform: scale(0);
296
+ transform: scale(0);
297
+ }
298
+
299
+ 100% {
300
+ opacity: 1;
301
+ -webkit-transform: scale(1);
302
+ transform: scale(1);
303
+ }
304
+ }
305
+ @keyframes dropIn {
306
+ 0% {
307
+ opacity: 0;
308
+ -webkit-transform: scale(0);
309
+ transform: scale(0);
310
+ }
311
+ 100% {
312
+ opacity: 1;
313
+ -webkit-transform: scale(1);
314
+ transform: scale(1);
315
+ }
316
+ }
317
+ @-webkit-keyframes dropOut {
318
+
319
+ 0% {
320
+ opacity: 1;
321
+ -webkit-transform: scale(1);
322
+ transform: scale(1);
323
+ }
324
+
325
+ 100% {
326
+ opacity: 0;
327
+ -webkit-transform: scale(0);
328
+ transform: scale(0);
329
+ }
330
+ }
331
+ @keyframes dropOut {
332
+ 0% {
333
+ opacity: 1;
334
+ -webkit-transform: scale(1);
335
+ transform: scale(1);
336
+ }
337
+ 100% {
338
+ opacity: 0;
339
+ -webkit-transform: scale(0);
340
+ transform: scale(0);
341
+ }
342
+ }
343
+
344
+ /*--------------
345
+ Fade
346
+ ---------------*/
347
+
348
+ .transition.fade.in {
349
+ -webkit-animation-name: fadeIn;
350
+ animation-name: fadeIn;
351
+ }
352
+ .transition.fade.in.up {
353
+ -webkit-animation-name: fadeInUp;
354
+ animation-name: fadeInUp;
355
+ }
356
+ .transition.fade.in.down {
357
+ -webkit-animation-name: fadeInDown;
358
+ animation-name: fadeInDown;
359
+ }
360
+ .transition.fade.in.left {
361
+ -webkit-animation-name: fadeInLeft;
362
+ animation-name: fadeInLeft;
363
+ }
364
+ .transition.fade.in.right {
365
+ -webkit-animation-name: fadeInRight;
366
+ animation-name: fadeInRight;
367
+ }
368
+ .transition.fade.out {
369
+ -webkit-animation-name: fadeOut;
370
+ animation-name: fadeOut;
371
+ }
372
+ .transition.fade.out.up {
373
+ -webkit-animation-name: fadeOutUp;
374
+ animation-name: fadeOutUp;
375
+ }
376
+ .transition.fade.out.down {
377
+ -webkit-animation-name: fadeOutDown;
378
+ animation-name: fadeOutDown;
379
+ }
380
+ .transition.fade.out.left {
381
+ -webkit-animation-name: fadeOutLeft;
382
+ animation-name: fadeOutLeft;
383
+ }
384
+ .transition.fade.out.right {
385
+ -webkit-animation-name: fadeOutRight;
386
+ animation-name: fadeOutRight;
387
+ }
388
+
389
+ /* In */
390
+ @-webkit-keyframes fadeIn {
391
+
392
+ 0% {
393
+ opacity: 0;
394
+ }
395
+
396
+ 100% {
397
+ opacity: 1;
398
+ }
399
+ }
400
+ @keyframes fadeIn {
401
+ 0% {
402
+ opacity: 0;
403
+ }
404
+ 100% {
405
+ opacity: 1;
406
+ }
407
+ }
408
+ @-webkit-keyframes fadeInUp {
409
+
410
+ 0% {
411
+ opacity: 0;
412
+ -webkit-transform: translateY(10%);
413
+ transform: translateY(10%);
414
+ }
415
+
416
+ 100% {
417
+ opacity: 1;
418
+ -webkit-transform: translateY(0%);
419
+ transform: translateY(0%);
420
+ }
421
+ }
422
+ @keyframes fadeInUp {
423
+ 0% {
424
+ opacity: 0;
425
+ -webkit-transform: translateY(10%);
426
+ transform: translateY(10%);
427
+ }
428
+ 100% {
429
+ opacity: 1;
430
+ -webkit-transform: translateY(0%);
431
+ transform: translateY(0%);
432
+ }
433
+ }
434
+ @-webkit-keyframes fadeInDown {
435
+
436
+ 0% {
437
+ opacity: 0;
438
+ -webkit-transform: translateY(-10%);
439
+ transform: translateY(-10%);
440
+ }
441
+
442
+ 100% {
443
+ opacity: 1;
444
+ -webkit-transform: translateY(0%);
445
+ transform: translateY(0%);
446
+ }
447
+ }
448
+ @keyframes fadeInDown {
449
+ 0% {
450
+ opacity: 0;
451
+ -webkit-transform: translateY(-10%);
452
+ transform: translateY(-10%);
453
+ }
454
+ 100% {
455
+ opacity: 1;
456
+ -webkit-transform: translateY(0%);
457
+ transform: translateY(0%);
458
+ }
459
+ }
460
+ @-webkit-keyframes fadeInLeft {
461
+
462
+ 0% {
463
+ opacity: 0;
464
+ -webkit-transform: translateX(10%);
465
+ transform: translateX(10%);
466
+ }
467
+
468
+ 100% {
469
+ opacity: 1;
470
+ -webkit-transform: translateX(0%);
471
+ transform: translateX(0%);
472
+ }
473
+ }
474
+ @keyframes fadeInLeft {
475
+ 0% {
476
+ opacity: 0;
477
+ -webkit-transform: translateX(10%);
478
+ transform: translateX(10%);
479
+ }
480
+ 100% {
481
+ opacity: 1;
482
+ -webkit-transform: translateX(0%);
483
+ transform: translateX(0%);
484
+ }
485
+ }
486
+ @-webkit-keyframes fadeInRight {
487
+
488
+ 0% {
489
+ opacity: 0;
490
+ -webkit-transform: translateX(-10%);
491
+ transform: translateX(-10%);
492
+ }
493
+
494
+ 100% {
495
+ opacity: 1;
496
+ -webkit-transform: translateX(0%);
497
+ transform: translateX(0%);
498
+ }
499
+ }
500
+ @keyframes fadeInRight {
501
+ 0% {
502
+ opacity: 0;
503
+ -webkit-transform: translateX(-10%);
504
+ transform: translateX(-10%);
505
+ }
506
+ 100% {
507
+ opacity: 1;
508
+ -webkit-transform: translateX(0%);
509
+ transform: translateX(0%);
510
+ }
511
+ }
512
+
513
+ /* Out */
514
+ @-webkit-keyframes fadeOut {
515
+
516
+ 0% {
517
+ opacity: 1;
518
+ }
519
+
520
+ 100% {
521
+ opacity: 0;
522
+ }
523
+ }
524
+ @keyframes fadeOut {
525
+ 0% {
526
+ opacity: 1;
527
+ }
528
+ 100% {
529
+ opacity: 0;
530
+ }
531
+ }
532
+ @-webkit-keyframes fadeOutUp {
533
+
534
+ 0% {
535
+ opacity: 1;
536
+ -webkit-transform: translateY(0%);
537
+ transform: translateY(0%);
538
+ }
539
+
540
+ 100% {
541
+ opacity: 0;
542
+ -webkit-transform: translateY(10%);
543
+ transform: translateY(10%);
544
+ }
545
+ }
546
+ @keyframes fadeOutUp {
547
+ 0% {
548
+ opacity: 1;
549
+ -webkit-transform: translateY(0%);
550
+ transform: translateY(0%);
551
+ }
552
+ 100% {
553
+ opacity: 0;
554
+ -webkit-transform: translateY(10%);
555
+ transform: translateY(10%);
556
+ }
557
+ }
558
+ @-webkit-keyframes fadeOutDown {
559
+
560
+ 0% {
561
+ opacity: 1;
562
+ -webkit-transform: translateY(0%);
563
+ transform: translateY(0%);
564
+ }
565
+
566
+ 100% {
567
+ opacity: 0;
568
+ -webkit-transform: translateY(-10%);
569
+ transform: translateY(-10%);
570
+ }
571
+ }
572
+ @keyframes fadeOutDown {
573
+ 0% {
574
+ opacity: 1;
575
+ -webkit-transform: translateY(0%);
576
+ transform: translateY(0%);
577
+ }
578
+ 100% {
579
+ opacity: 0;
580
+ -webkit-transform: translateY(-10%);
581
+ transform: translateY(-10%);
582
+ }
583
+ }
584
+ @-webkit-keyframes fadeOutLeft {
585
+
586
+ 0% {
587
+ opacity: 1;
588
+ -webkit-transform: translateX(0%);
589
+ transform: translateX(0%);
590
+ }
591
+
592
+ 100% {
593
+ opacity: 0;
594
+ -webkit-transform: translateX(10%);
595
+ transform: translateX(10%);
596
+ }
597
+ }
598
+ @keyframes fadeOutLeft {
599
+ 0% {
600
+ opacity: 1;
601
+ -webkit-transform: translateX(0%);
602
+ transform: translateX(0%);
603
+ }
604
+ 100% {
605
+ opacity: 0;
606
+ -webkit-transform: translateX(10%);
607
+ transform: translateX(10%);
608
+ }
609
+ }
610
+ @-webkit-keyframes fadeOutRight {
611
+
612
+ 0% {
613
+ opacity: 1;
614
+ -webkit-transform: translateX(0%);
615
+ transform: translateX(0%);
616
+ }
617
+
618
+ 100% {
619
+ opacity: 0;
620
+ -webkit-transform: translateX(-10%);
621
+ transform: translateX(-10%);
622
+ }
623
+ }
624
+ @keyframes fadeOutRight {
625
+ 0% {
626
+ opacity: 1;
627
+ -webkit-transform: translateX(0%);
628
+ transform: translateX(0%);
629
+ }
630
+ 100% {
631
+ opacity: 0;
632
+ -webkit-transform: translateX(-10%);
633
+ transform: translateX(-10%);
634
+ }
635
+ }
636
+
637
+ /*--------------
638
+ Flips
639
+ ---------------*/
640
+
641
+ .flip.transition.in,
642
+ .flip.transition.out {
643
+ -webkit-perspective: 2000px;
644
+ perspective: 2000px;
645
+ }
646
+ .horizontal.flip.transition.in {
647
+ -webkit-animation-name: horizontalFlipIn;
648
+ animation-name: horizontalFlipIn;
649
+ }
650
+ .horizontal.flip.transition.out {
651
+ -webkit-animation-name: horizontalFlipOut;
652
+ animation-name: horizontalFlipOut;
653
+ }
654
+ .vertical.flip.transition.in {
655
+ -webkit-animation-name: verticalFlipIn;
656
+ animation-name: verticalFlipIn;
657
+ }
658
+ .vertical.flip.transition.out {
659
+ -webkit-animation-name: verticalFlipOut;
660
+ animation-name: verticalFlipOut;
661
+ }
662
+
663
+ /* In */
664
+ @-webkit-keyframes horizontalFlipIn {
665
+
666
+ 0% {
667
+ -webkit-transform: perspective(2000px) rotateY(-90deg);
668
+ transform: perspective(2000px) rotateY(-90deg);
669
+ opacity: 0;
670
+ }
671
+
672
+ 100% {
673
+ -webkit-transform: perspective(2000px) rotateY(0deg);
674
+ transform: perspective(2000px) rotateY(0deg);
675
+ opacity: 1;
676
+ }
677
+ }
678
+ @keyframes horizontalFlipIn {
679
+ 0% {
680
+ -webkit-transform: perspective(2000px) rotateY(-90deg);
681
+ transform: perspective(2000px) rotateY(-90deg);
682
+ opacity: 0;
683
+ }
684
+ 100% {
685
+ -webkit-transform: perspective(2000px) rotateY(0deg);
686
+ transform: perspective(2000px) rotateY(0deg);
687
+ opacity: 1;
688
+ }
689
+ }
690
+ @-webkit-keyframes verticalFlipIn {
691
+
692
+ 0% {
693
+ -webkit-transform: perspective(2000px) rotateX(-90deg);
694
+ transform: perspective(2000px) rotateX(-90deg);
695
+ opacity: 0;
696
+ }
697
+
698
+ 100% {
699
+ -webkit-transform: perspective(2000px) rotateX(0deg);
700
+ transform: perspective(2000px) rotateX(0deg);
701
+ opacity: 1;
702
+ }
703
+ }
704
+ @keyframes verticalFlipIn {
705
+ 0% {
706
+ -webkit-transform: perspective(2000px) rotateX(-90deg);
707
+ transform: perspective(2000px) rotateX(-90deg);
708
+ opacity: 0;
709
+ }
710
+ 100% {
711
+ -webkit-transform: perspective(2000px) rotateX(0deg);
712
+ transform: perspective(2000px) rotateX(0deg);
713
+ opacity: 1;
714
+ }
715
+ }
716
+
717
+ /* Out */
718
+ @-webkit-keyframes horizontalFlipOut {
719
+
720
+ 0% {
721
+ -webkit-transform: perspective(2000px) rotateY(0deg);
722
+ transform: perspective(2000px) rotateY(0deg);
723
+ opacity: 1;
724
+ }
725
+
726
+ 100% {
727
+ -webkit-transform: perspective(2000px) rotateY(90deg);
728
+ transform: perspective(2000px) rotateY(90deg);
729
+ opacity: 0;
730
+ }
731
+ }
732
+ @keyframes horizontalFlipOut {
733
+ 0% {
734
+ -webkit-transform: perspective(2000px) rotateY(0deg);
735
+ transform: perspective(2000px) rotateY(0deg);
736
+ opacity: 1;
737
+ }
738
+ 100% {
739
+ -webkit-transform: perspective(2000px) rotateY(90deg);
740
+ transform: perspective(2000px) rotateY(90deg);
741
+ opacity: 0;
742
+ }
743
+ }
744
+ @-webkit-keyframes verticalFlipOut {
745
+
746
+ 0% {
747
+ -webkit-transform: perspective(2000px) rotateX(0deg);
748
+ transform: perspective(2000px) rotateX(0deg);
749
+ opacity: 1;
750
+ }
751
+
752
+ 100% {
753
+ -webkit-transform: perspective(2000px) rotateX(-90deg);
754
+ transform: perspective(2000px) rotateX(-90deg);
755
+ opacity: 0;
756
+ }
757
+ }
758
+ @keyframes verticalFlipOut {
759
+ 0% {
760
+ -webkit-transform: perspective(2000px) rotateX(0deg);
761
+ transform: perspective(2000px) rotateX(0deg);
762
+ opacity: 1;
763
+ }
764
+ 100% {
765
+ -webkit-transform: perspective(2000px) rotateX(-90deg);
766
+ transform: perspective(2000px) rotateX(-90deg);
767
+ opacity: 0;
768
+ }
769
+ }
770
+
771
+ /*--------------
772
+ Scale
773
+ ---------------*/
774
+
775
+ .scale.transition.in {
776
+ -webkit-animation-name: scaleIn;
777
+ animation-name: scaleIn;
778
+ }
779
+ .scale.transition.out {
780
+ -webkit-animation-name: scaleOut;
781
+ animation-name: scaleOut;
782
+ }
783
+
784
+ /* In */
785
+ @-webkit-keyframes scaleIn {
786
+
787
+ 0% {
788
+ opacity: 0;
789
+ -webkit-transform: scale(0.7);
790
+ transform: scale(0.7);
791
+ }
792
+
793
+ 100% {
794
+ opacity: 1;
795
+ -webkit-transform: scale(1);
796
+ transform: scale(1);
797
+ }
798
+ }
799
+ @keyframes scaleIn {
800
+ 0% {
801
+ opacity: 0;
802
+ -webkit-transform: scale(0.7);
803
+ transform: scale(0.7);
804
+ }
805
+ 100% {
806
+ opacity: 1;
807
+ -webkit-transform: scale(1);
808
+ transform: scale(1);
809
+ }
810
+ }
811
+
812
+ /* Out */
813
+ @-webkit-keyframes scaleOut {
814
+
815
+ 0% {
816
+ opacity: 1;
817
+ -webkit-transform: scale(1);
818
+ transform: scale(1);
819
+ }
820
+
821
+ 100% {
822
+ opacity: 0;
823
+ -webkit-transform: scale(0.7);
824
+ transform: scale(0.7);
825
+ }
826
+ }
827
+ @keyframes scaleOut {
828
+ 0% {
829
+ opacity: 1;
830
+ -webkit-transform: scale(1);
831
+ transform: scale(1);
832
+ }
833
+ 100% {
834
+ opacity: 0;
835
+ -webkit-transform: scale(0.7);
836
+ transform: scale(0.7);
837
+ }
838
+ }
839
+
840
+ /*--------------
841
+ Fly
842
+ ---------------*/
843
+
844
+ .transition.fly {
845
+ -webkit-animation-duration: 0.6s;
846
+ animation-duration: 0.6s;
847
+ -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
848
+ transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
849
+ }
850
+ .transition.fly.in {
851
+ -webkit-animation-name: flyIn;
852
+ animation-name: flyIn;
853
+ }
854
+ .transition.fly.in.up {
855
+ -webkit-animation-name: flyInUp;
856
+ animation-name: flyInUp;
857
+ }
858
+ .transition.fly.in.down {
859
+ -webkit-animation-name: flyInDown;
860
+ animation-name: flyInDown;
861
+ }
862
+ .transition.fly.in.right {
863
+ -webkit-animation-name: flyInRight;
864
+ animation-name: flyInRight;
865
+ }
866
+ .transition.fly.in.left {
867
+ -webkit-animation-name: flyInLeft;
868
+ animation-name: flyInLeft;
869
+ }
870
+ .transition.fly.out {
871
+ -webkit-animation-name: flyOut;
872
+ animation-name: flyOut;
873
+ }
874
+ .transition.fly.out.up {
875
+ -webkit-animation-name: flyOutUp;
876
+ animation-name: flyOutUp;
877
+ }
878
+ .transition.fly.out.down {
879
+ -webkit-animation-name: flyOutDown;
880
+ animation-name: flyOutDown;
881
+ }
882
+ .transition.fly.out.right {
883
+ -webkit-animation-name: flyOutRight;
884
+ animation-name: flyOutRight;
885
+ }
886
+ .transition.fly.out.left {
887
+ -webkit-animation-name: flyOutLeft;
888
+ animation-name: flyOutLeft;
889
+ }
890
+
891
+ /* In */
892
+ @-webkit-keyframes flyIn {
893
+
894
+ 0% {
895
+ opacity: 0;
896
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
897
+ transform: scale3d(0.3, 0.3, 0.3);
898
+ }
899
+
900
+ 20% {
901
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
902
+ transform: scale3d(1.1, 1.1, 1.1);
903
+ }
904
+
905
+ 40% {
906
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
907
+ transform: scale3d(0.9, 0.9, 0.9);
908
+ }
909
+
910
+ 60% {
911
+ opacity: 1;
912
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
913
+ transform: scale3d(1.03, 1.03, 1.03);
914
+ }
915
+
916
+ 80% {
917
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
918
+ transform: scale3d(0.97, 0.97, 0.97);
919
+ }
920
+
921
+ 100% {
922
+ opacity: 1;
923
+ -webkit-transform: scale3d(1, 1, 1);
924
+ transform: scale3d(1, 1, 1);
925
+ }
926
+ }
927
+ @keyframes flyIn {
928
+ 0% {
929
+ opacity: 0;
930
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
931
+ transform: scale3d(0.3, 0.3, 0.3);
932
+ }
933
+ 20% {
934
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
935
+ transform: scale3d(1.1, 1.1, 1.1);
936
+ }
937
+ 40% {
938
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
939
+ transform: scale3d(0.9, 0.9, 0.9);
940
+ }
941
+ 60% {
942
+ opacity: 1;
943
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
944
+ transform: scale3d(1.03, 1.03, 1.03);
945
+ }
946
+ 80% {
947
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
948
+ transform: scale3d(0.97, 0.97, 0.97);
949
+ }
950
+ 100% {
951
+ opacity: 1;
952
+ -webkit-transform: scale3d(1, 1, 1);
953
+ transform: scale3d(1, 1, 1);
954
+ }
955
+ }
956
+ @-webkit-keyframes flyInUp {
957
+
958
+ 0% {
959
+ opacity: 0;
960
+ -webkit-transform: translate3d(0, 1500px, 0);
961
+ transform: translate3d(0, 1500px, 0);
962
+ }
963
+
964
+ 60% {
965
+ opacity: 1;
966
+ -webkit-transform: translate3d(0, -20px, 0);
967
+ transform: translate3d(0, -20px, 0);
968
+ }
969
+
970
+ 75% {
971
+ -webkit-transform: translate3d(0, 10px, 0);
972
+ transform: translate3d(0, 10px, 0);
973
+ }
974
+
975
+ 90% {
976
+ -webkit-transform: translate3d(0, -5px, 0);
977
+ transform: translate3d(0, -5px, 0);
978
+ }
979
+
980
+ 100% {
981
+ -webkit-transform: translate3d(0, 0, 0);
982
+ transform: translate3d(0, 0, 0);
983
+ }
984
+ }
985
+ @keyframes flyInUp {
986
+ 0% {
987
+ opacity: 0;
988
+ -webkit-transform: translate3d(0, 1500px, 0);
989
+ transform: translate3d(0, 1500px, 0);
990
+ }
991
+ 60% {
992
+ opacity: 1;
993
+ -webkit-transform: translate3d(0, -20px, 0);
994
+ transform: translate3d(0, -20px, 0);
995
+ }
996
+ 75% {
997
+ -webkit-transform: translate3d(0, 10px, 0);
998
+ transform: translate3d(0, 10px, 0);
999
+ }
1000
+ 90% {
1001
+ -webkit-transform: translate3d(0, -5px, 0);
1002
+ transform: translate3d(0, -5px, 0);
1003
+ }
1004
+ 100% {
1005
+ -webkit-transform: translate3d(0, 0, 0);
1006
+ transform: translate3d(0, 0, 0);
1007
+ }
1008
+ }
1009
+ @-webkit-keyframes flyInDown {
1010
+
1011
+ 0% {
1012
+ opacity: 0;
1013
+ -webkit-transform: translate3d(0, -1500px, 0);
1014
+ transform: translate3d(0, -1500px, 0);
1015
+ }
1016
+
1017
+ 60% {
1018
+ opacity: 1;
1019
+ -webkit-transform: translate3d(0, 25px, 0);
1020
+ transform: translate3d(0, 25px, 0);
1021
+ }
1022
+
1023
+ 75% {
1024
+ -webkit-transform: translate3d(0, -10px, 0);
1025
+ transform: translate3d(0, -10px, 0);
1026
+ }
1027
+
1028
+ 90% {
1029
+ -webkit-transform: translate3d(0, 5px, 0);
1030
+ transform: translate3d(0, 5px, 0);
1031
+ }
1032
+
1033
+ 100% {
1034
+ -webkit-transform: none;
1035
+ transform: none;
1036
+ }
1037
+ }
1038
+ @keyframes flyInDown {
1039
+ 0% {
1040
+ opacity: 0;
1041
+ -webkit-transform: translate3d(0, -1500px, 0);
1042
+ transform: translate3d(0, -1500px, 0);
1043
+ }
1044
+ 60% {
1045
+ opacity: 1;
1046
+ -webkit-transform: translate3d(0, 25px, 0);
1047
+ transform: translate3d(0, 25px, 0);
1048
+ }
1049
+ 75% {
1050
+ -webkit-transform: translate3d(0, -10px, 0);
1051
+ transform: translate3d(0, -10px, 0);
1052
+ }
1053
+ 90% {
1054
+ -webkit-transform: translate3d(0, 5px, 0);
1055
+ transform: translate3d(0, 5px, 0);
1056
+ }
1057
+ 100% {
1058
+ -webkit-transform: none;
1059
+ transform: none;
1060
+ }
1061
+ }
1062
+ @-webkit-keyframes flyInLeft {
1063
+
1064
+ 0% {
1065
+ opacity: 0;
1066
+ -webkit-transform: translate3d(1500px, 0, 0);
1067
+ transform: translate3d(1500px, 0, 0);
1068
+ }
1069
+
1070
+ 60% {
1071
+ opacity: 1;
1072
+ -webkit-transform: translate3d(-25px, 0, 0);
1073
+ transform: translate3d(-25px, 0, 0);
1074
+ }
1075
+
1076
+ 75% {
1077
+ -webkit-transform: translate3d(10px, 0, 0);
1078
+ transform: translate3d(10px, 0, 0);
1079
+ }
1080
+
1081
+ 90% {
1082
+ -webkit-transform: translate3d(-5px, 0, 0);
1083
+ transform: translate3d(-5px, 0, 0);
1084
+ }
1085
+
1086
+ 100% {
1087
+ -webkit-transform: none;
1088
+ transform: none;
1089
+ }
1090
+ }
1091
+ @keyframes flyInLeft {
1092
+ 0% {
1093
+ opacity: 0;
1094
+ -webkit-transform: translate3d(1500px, 0, 0);
1095
+ transform: translate3d(1500px, 0, 0);
1096
+ }
1097
+ 60% {
1098
+ opacity: 1;
1099
+ -webkit-transform: translate3d(-25px, 0, 0);
1100
+ transform: translate3d(-25px, 0, 0);
1101
+ }
1102
+ 75% {
1103
+ -webkit-transform: translate3d(10px, 0, 0);
1104
+ transform: translate3d(10px, 0, 0);
1105
+ }
1106
+ 90% {
1107
+ -webkit-transform: translate3d(-5px, 0, 0);
1108
+ transform: translate3d(-5px, 0, 0);
1109
+ }
1110
+ 100% {
1111
+ -webkit-transform: none;
1112
+ transform: none;
1113
+ }
1114
+ }
1115
+ @-webkit-keyframes flyInRight {
1116
+
1117
+ 0% {
1118
+ opacity: 0;
1119
+ -webkit-transform: translate3d(-1500px, 0, 0);
1120
+ transform: translate3d(-1500px, 0, 0);
1121
+ }
1122
+
1123
+ 60% {
1124
+ opacity: 1;
1125
+ -webkit-transform: translate3d(25px, 0, 0);
1126
+ transform: translate3d(25px, 0, 0);
1127
+ }
1128
+
1129
+ 75% {
1130
+ -webkit-transform: translate3d(-10px, 0, 0);
1131
+ transform: translate3d(-10px, 0, 0);
1132
+ }
1133
+
1134
+ 90% {
1135
+ -webkit-transform: translate3d(5px, 0, 0);
1136
+ transform: translate3d(5px, 0, 0);
1137
+ }
1138
+
1139
+ 100% {
1140
+ -webkit-transform: none;
1141
+ transform: none;
1142
+ }
1143
+ }
1144
+ @keyframes flyInRight {
1145
+ 0% {
1146
+ opacity: 0;
1147
+ -webkit-transform: translate3d(-1500px, 0, 0);
1148
+ transform: translate3d(-1500px, 0, 0);
1149
+ }
1150
+ 60% {
1151
+ opacity: 1;
1152
+ -webkit-transform: translate3d(25px, 0, 0);
1153
+ transform: translate3d(25px, 0, 0);
1154
+ }
1155
+ 75% {
1156
+ -webkit-transform: translate3d(-10px, 0, 0);
1157
+ transform: translate3d(-10px, 0, 0);
1158
+ }
1159
+ 90% {
1160
+ -webkit-transform: translate3d(5px, 0, 0);
1161
+ transform: translate3d(5px, 0, 0);
1162
+ }
1163
+ 100% {
1164
+ -webkit-transform: none;
1165
+ transform: none;
1166
+ }
1167
+ }
1168
+
1169
+ /* Out */
1170
+ @-webkit-keyframes flyOut {
1171
+
1172
+ 20% {
1173
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
1174
+ transform: scale3d(0.9, 0.9, 0.9);
1175
+ }
1176
+
1177
+ 50%,
1178
+ 55% {
1179
+ opacity: 1;
1180
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
1181
+ transform: scale3d(1.1, 1.1, 1.1);
1182
+ }
1183
+
1184
+ 100% {
1185
+ opacity: 0;
1186
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
1187
+ transform: scale3d(0.3, 0.3, 0.3);
1188
+ }
1189
+ }
1190
+ @keyframes flyOut {
1191
+ 20% {
1192
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
1193
+ transform: scale3d(0.9, 0.9, 0.9);
1194
+ }
1195
+ 50%,
1196
+ 55% {
1197
+ opacity: 1;
1198
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
1199
+ transform: scale3d(1.1, 1.1, 1.1);
1200
+ }
1201
+ 100% {
1202
+ opacity: 0;
1203
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
1204
+ transform: scale3d(0.3, 0.3, 0.3);
1205
+ }
1206
+ }
1207
+ @-webkit-keyframes flyOutUp {
1208
+
1209
+ 20% {
1210
+ -webkit-transform: translate3d(0, 10px, 0);
1211
+ transform: translate3d(0, 10px, 0);
1212
+ }
1213
+
1214
+ 40%,
1215
+ 45% {
1216
+ opacity: 1;
1217
+ -webkit-transform: translate3d(0, -20px, 0);
1218
+ transform: translate3d(0, -20px, 0);
1219
+ }
1220
+
1221
+ 100% {
1222
+ opacity: 0;
1223
+ -webkit-transform: translate3d(0, 2000px, 0);
1224
+ transform: translate3d(0, 2000px, 0);
1225
+ }
1226
+ }
1227
+ @keyframes flyOutUp {
1228
+ 20% {
1229
+ -webkit-transform: translate3d(0, 10px, 0);
1230
+ transform: translate3d(0, 10px, 0);
1231
+ }
1232
+ 40%,
1233
+ 45% {
1234
+ opacity: 1;
1235
+ -webkit-transform: translate3d(0, -20px, 0);
1236
+ transform: translate3d(0, -20px, 0);
1237
+ }
1238
+ 100% {
1239
+ opacity: 0;
1240
+ -webkit-transform: translate3d(0, 2000px, 0);
1241
+ transform: translate3d(0, 2000px, 0);
1242
+ }
1243
+ }
1244
+ @-webkit-keyframes flyOutDown {
1245
+
1246
+ 20% {
1247
+ -webkit-transform: translate3d(0, -10px, 0);
1248
+ transform: translate3d(0, -10px, 0);
1249
+ }
1250
+
1251
+ 40%,
1252
+ 45% {
1253
+ opacity: 1;
1254
+ -webkit-transform: translate3d(0, 20px, 0);
1255
+ transform: translate3d(0, 20px, 0);
1256
+ }
1257
+
1258
+ 100% {
1259
+ opacity: 0;
1260
+ -webkit-transform: translate3d(0, -2000px, 0);
1261
+ transform: translate3d(0, -2000px, 0);
1262
+ }
1263
+ }
1264
+ @keyframes flyOutDown {
1265
+ 20% {
1266
+ -webkit-transform: translate3d(0, -10px, 0);
1267
+ transform: translate3d(0, -10px, 0);
1268
+ }
1269
+ 40%,
1270
+ 45% {
1271
+ opacity: 1;
1272
+ -webkit-transform: translate3d(0, 20px, 0);
1273
+ transform: translate3d(0, 20px, 0);
1274
+ }
1275
+ 100% {
1276
+ opacity: 0;
1277
+ -webkit-transform: translate3d(0, -2000px, 0);
1278
+ transform: translate3d(0, -2000px, 0);
1279
+ }
1280
+ }
1281
+ @-webkit-keyframes flyOutRight {
1282
+
1283
+ 20% {
1284
+ opacity: 1;
1285
+ -webkit-transform: translate3d(20px, 0, 0);
1286
+ transform: translate3d(20px, 0, 0);
1287
+ }
1288
+
1289
+ 100% {
1290
+ opacity: 0;
1291
+ -webkit-transform: translate3d(-2000px, 0, 0);
1292
+ transform: translate3d(-2000px, 0, 0);
1293
+ }
1294
+ }
1295
+ @keyframes flyOutRight {
1296
+ 20% {
1297
+ opacity: 1;
1298
+ -webkit-transform: translate3d(20px, 0, 0);
1299
+ transform: translate3d(20px, 0, 0);
1300
+ }
1301
+ 100% {
1302
+ opacity: 0;
1303
+ -webkit-transform: translate3d(-2000px, 0, 0);
1304
+ transform: translate3d(-2000px, 0, 0);
1305
+ }
1306
+ }
1307
+ @-webkit-keyframes flyOutLeft {
1308
+
1309
+ 20% {
1310
+ opacity: 1;
1311
+ -webkit-transform: translate3d(-20px, 0, 0);
1312
+ transform: translate3d(-20px, 0, 0);
1313
+ }
1314
+
1315
+ 100% {
1316
+ opacity: 0;
1317
+ -webkit-transform: translate3d(2000px, 0, 0);
1318
+ transform: translate3d(2000px, 0, 0);
1319
+ }
1320
+ }
1321
+ @keyframes flyOutLeft {
1322
+ 20% {
1323
+ opacity: 1;
1324
+ -webkit-transform: translate3d(-20px, 0, 0);
1325
+ transform: translate3d(-20px, 0, 0);
1326
+ }
1327
+ 100% {
1328
+ opacity: 0;
1329
+ -webkit-transform: translate3d(2000px, 0, 0);
1330
+ transform: translate3d(2000px, 0, 0);
1331
+ }
1332
+ }
1333
+
1334
+ /*--------------
1335
+ Slide
1336
+ ---------------*/
1337
+
1338
+ .transition.slide.in,
1339
+ .transition.slide.in.down {
1340
+ -webkit-animation-name: slideInY;
1341
+ animation-name: slideInY;
1342
+ -webkit-transform-origin: top center;
1343
+ -ms-transform-origin: top center;
1344
+ transform-origin: top center;
1345
+ }
1346
+ .transition.slide.in.up {
1347
+ -webkit-animation-name: slideInY;
1348
+ animation-name: slideInY;
1349
+ -webkit-transform-origin: bottom center;
1350
+ -ms-transform-origin: bottom center;
1351
+ transform-origin: bottom center;
1352
+ }
1353
+ .transition.slide.in.left {
1354
+ -webkit-animation-name: slideInX;
1355
+ animation-name: slideInX;
1356
+ -webkit-transform-origin: center right;
1357
+ -ms-transform-origin: center right;
1358
+ transform-origin: center right;
1359
+ }
1360
+ .transition.slide.in.right {
1361
+ -webkit-animation-name: slideInX;
1362
+ animation-name: slideInX;
1363
+ -webkit-transform-origin: center left;
1364
+ -ms-transform-origin: center left;
1365
+ transform-origin: center left;
1366
+ }
1367
+ .transition.slide.out,
1368
+ .transition.slide.out.down {
1369
+ -webkit-animation-name: slideOutY;
1370
+ animation-name: slideOutY;
1371
+ -webkit-transform-origin: top center;
1372
+ -ms-transform-origin: top center;
1373
+ transform-origin: top center;
1374
+ }
1375
+ .transition.slide.out.up {
1376
+ -webkit-animation-name: slideOutY;
1377
+ animation-name: slideOutY;
1378
+ -webkit-transform-origin: bottom center;
1379
+ -ms-transform-origin: bottom center;
1380
+ transform-origin: bottom center;
1381
+ }
1382
+ .transition.slide.out.left {
1383
+ -webkit-animation-name: slideOutX;
1384
+ animation-name: slideOutX;
1385
+ -webkit-transform-origin: center right;
1386
+ -ms-transform-origin: center right;
1387
+ transform-origin: center right;
1388
+ }
1389
+ .transition.slide.out.right {
1390
+ -webkit-animation-name: slideOutX;
1391
+ animation-name: slideOutX;
1392
+ -webkit-transform-origin: center left;
1393
+ -ms-transform-origin: center left;
1394
+ transform-origin: center left;
1395
+ }
1396
+
1397
+ /* In */
1398
+ @-webkit-keyframes slideInY {
1399
+
1400
+ 0% {
1401
+ opacity: 0;
1402
+ -webkit-transform: scaleY(0);
1403
+ transform: scaleY(0);
1404
+ }
1405
+
1406
+ 100% {
1407
+ opacity: 1;
1408
+ -webkit-transform: scaleY(1);
1409
+ transform: scaleY(1);
1410
+ }
1411
+ }
1412
+ @keyframes slideInY {
1413
+ 0% {
1414
+ opacity: 0;
1415
+ -webkit-transform: scaleY(0);
1416
+ transform: scaleY(0);
1417
+ }
1418
+ 100% {
1419
+ opacity: 1;
1420
+ -webkit-transform: scaleY(1);
1421
+ transform: scaleY(1);
1422
+ }
1423
+ }
1424
+ @-webkit-keyframes slideInX {
1425
+
1426
+ 0% {
1427
+ opacity: 0;
1428
+ -webkit-transform: scaleX(0);
1429
+ transform: scaleX(0);
1430
+ }
1431
+
1432
+ 100% {
1433
+ opacity: 1;
1434
+ -webkit-transform: scaleX(1);
1435
+ transform: scaleX(1);
1436
+ }
1437
+ }
1438
+ @keyframes slideInX {
1439
+ 0% {
1440
+ opacity: 0;
1441
+ -webkit-transform: scaleX(0);
1442
+ transform: scaleX(0);
1443
+ }
1444
+ 100% {
1445
+ opacity: 1;
1446
+ -webkit-transform: scaleX(1);
1447
+ transform: scaleX(1);
1448
+ }
1449
+ }
1450
+
1451
+ /* Out */
1452
+ @-webkit-keyframes slideOutY {
1453
+
1454
+ 0% {
1455
+ opacity: 1;
1456
+ -webkit-transform: scaleY(1);
1457
+ transform: scaleY(1);
1458
+ }
1459
+
1460
+ 100% {
1461
+ opacity: 0;
1462
+ -webkit-transform: scaleY(0);
1463
+ transform: scaleY(0);
1464
+ }
1465
+ }
1466
+ @keyframes slideOutY {
1467
+ 0% {
1468
+ opacity: 1;
1469
+ -webkit-transform: scaleY(1);
1470
+ transform: scaleY(1);
1471
+ }
1472
+ 100% {
1473
+ opacity: 0;
1474
+ -webkit-transform: scaleY(0);
1475
+ transform: scaleY(0);
1476
+ }
1477
+ }
1478
+ @-webkit-keyframes slideOutX {
1479
+
1480
+ 0% {
1481
+ opacity: 1;
1482
+ -webkit-transform: scaleX(1);
1483
+ transform: scaleX(1);
1484
+ }
1485
+
1486
+ 100% {
1487
+ opacity: 0;
1488
+ -webkit-transform: scaleX(0);
1489
+ transform: scaleX(0);
1490
+ }
1491
+ }
1492
+ @keyframes slideOutX {
1493
+ 0% {
1494
+ opacity: 1;
1495
+ -webkit-transform: scaleX(1);
1496
+ transform: scaleX(1);
1497
+ }
1498
+ 100% {
1499
+ opacity: 0;
1500
+ -webkit-transform: scaleX(0);
1501
+ transform: scaleX(0);
1502
+ }
1503
+ }
1504
+
1505
+ /*--------------
1506
+ Swing
1507
+ ---------------*/
1508
+
1509
+ .transition.swing {
1510
+ -webkit-perspective: 1000px;
1511
+ perspective: 1000px;
1512
+ -webkit-animation-duration: 0.5s;
1513
+ animation-duration: 0.5s;
1514
+ -webkit-transition-timing-function: ease-in;
1515
+ transition-timing-function: ease-in;
1516
+ }
1517
+ .transition.swing.in,
1518
+ .transition.swing.in.down {
1519
+ -webkit-transform-origin: top center;
1520
+ -ms-transform-origin: top center;
1521
+ transform-origin: top center;
1522
+ -webkit-animation-name: swingInX;
1523
+ animation-name: swingInX;
1524
+ }
1525
+ .transition.swing.in.up {
1526
+ -webkit-transform-origin: bottom center;
1527
+ -ms-transform-origin: bottom center;
1528
+ transform-origin: bottom center;
1529
+ -webkit-animation-name: swingInX;
1530
+ animation-name: swingInX;
1531
+ }
1532
+ .transition.swing.in.left {
1533
+ -webkit-transform-origin: center right;
1534
+ -ms-transform-origin: center right;
1535
+ transform-origin: center right;
1536
+ -webkit-animation-name: swingInY;
1537
+ animation-name: swingInY;
1538
+ }
1539
+ .transition.swing.in.right {
1540
+ -webkit-transform-origin: center left;
1541
+ -ms-transform-origin: center left;
1542
+ transform-origin: center left;
1543
+ -webkit-animation-name: swingInY;
1544
+ animation-name: swingInY;
1545
+ }
1546
+ .transition.swing.out.down,
1547
+ .transition.swing.out {
1548
+ -webkit-transform-origin: top center;
1549
+ -ms-transform-origin: top center;
1550
+ transform-origin: top center;
1551
+ -webkit-animation-name: swingOutDown;
1552
+ animation-name: swingOutDown;
1553
+ }
1554
+ .transition.swing.out.up {
1555
+ -webkit-transform-origin: bottom center;
1556
+ -ms-transform-origin: bottom center;
1557
+ transform-origin: bottom center;
1558
+ -webkit-animation-name: swingOutUp;
1559
+ animation-name: swingOutUp;
1560
+ }
1561
+ .transition.swing.out.left {
1562
+ -webkit-transform-origin: center right;
1563
+ -ms-transform-origin: center right;
1564
+ transform-origin: center right;
1565
+ -webkit-animation-name: swingOutLeft;
1566
+ animation-name: swingOutLeft;
1567
+ }
1568
+ .transition.swing.out.right {
1569
+ -webkit-transform-origin: center left;
1570
+ -ms-transform-origin: center left;
1571
+ transform-origin: center left;
1572
+ -webkit-animation-name: swingOutRight;
1573
+ animation-name: swingOutRight;
1574
+ }
1575
+
1576
+ /* In */
1577
+ @-webkit-keyframes swingInX {
1578
+
1579
+ 0% {
1580
+ -webkit-transform: perspective(1000px) rotateX(90deg);
1581
+ transform: perspective(1000px) rotateX(90deg);
1582
+ opacity: 0;
1583
+ }
1584
+
1585
+ 40% {
1586
+ -webkit-transform: perspective(1000px) rotateX(-20deg);
1587
+ transform: perspective(1000px) rotateX(-20deg);
1588
+ }
1589
+
1590
+ 60% {
1591
+ -webkit-transform: perspective(1000px) rotateX(10deg);
1592
+ transform: perspective(1000px) rotateX(10deg);
1593
+ }
1594
+
1595
+ 80% {
1596
+ -webkit-transform: perspective(1000px) rotateX(-5deg);
1597
+ transform: perspective(1000px) rotateX(-5deg);
1598
+ opacity: 1;
1599
+ }
1600
+
1601
+ 100% {
1602
+ -webkit-transform: perspective(1000px) rotateX(0deg);
1603
+ transform: perspective(1000px) rotateX(0deg);
1604
+ }
1605
+ }
1606
+ @keyframes swingInX {
1607
+ 0% {
1608
+ -webkit-transform: perspective(1000px) rotateX(90deg);
1609
+ transform: perspective(1000px) rotateX(90deg);
1610
+ opacity: 0;
1611
+ }
1612
+ 40% {
1613
+ -webkit-transform: perspective(1000px) rotateX(-20deg);
1614
+ transform: perspective(1000px) rotateX(-20deg);
1615
+ }
1616
+ 60% {
1617
+ -webkit-transform: perspective(1000px) rotateX(10deg);
1618
+ transform: perspective(1000px) rotateX(10deg);
1619
+ }
1620
+ 80% {
1621
+ -webkit-transform: perspective(1000px) rotateX(-5deg);
1622
+ transform: perspective(1000px) rotateX(-5deg);
1623
+ opacity: 1;
1624
+ }
1625
+ 100% {
1626
+ -webkit-transform: perspective(1000px) rotateX(0deg);
1627
+ transform: perspective(1000px) rotateX(0deg);
1628
+ }
1629
+ }
1630
+ @-webkit-keyframes swingInY {
1631
+
1632
+ 0% {
1633
+ -webkit-transform: perspective(1000px) rotateY(-90deg);
1634
+ transform: perspective(1000px) rotateY(-90deg);
1635
+ opacity: 0;
1636
+ }
1637
+
1638
+ 40% {
1639
+ -webkit-transform: perspective(1000px) rotateY(20deg);
1640
+ transform: perspective(1000px) rotateY(20deg);
1641
+ }
1642
+
1643
+ 60% {
1644
+ -webkit-transform: perspective(1000px) rotateY(-10deg);
1645
+ transform: perspective(1000px) rotateY(-10deg);
1646
+ }
1647
+
1648
+ 80% {
1649
+ -webkit-transform: perspective(1000px) rotateY(5deg);
1650
+ transform: perspective(1000px) rotateY(5deg);
1651
+ opacity: 1;
1652
+ }
1653
+
1654
+ 100% {
1655
+ -webkit-transform: perspective(1000px) rotateY(0deg);
1656
+ transform: perspective(1000px) rotateY(0deg);
1657
+ }
1658
+ }
1659
+ @keyframes swingInY {
1660
+ 0% {
1661
+ -webkit-transform: perspective(1000px) rotateY(-90deg);
1662
+ transform: perspective(1000px) rotateY(-90deg);
1663
+ opacity: 0;
1664
+ }
1665
+ 40% {
1666
+ -webkit-transform: perspective(1000px) rotateY(20deg);
1667
+ transform: perspective(1000px) rotateY(20deg);
1668
+ }
1669
+ 60% {
1670
+ -webkit-transform: perspective(1000px) rotateY(-10deg);
1671
+ transform: perspective(1000px) rotateY(-10deg);
1672
+ }
1673
+ 80% {
1674
+ -webkit-transform: perspective(1000px) rotateY(5deg);
1675
+ transform: perspective(1000px) rotateY(5deg);
1676
+ opacity: 1;
1677
+ }
1678
+ 100% {
1679
+ -webkit-transform: perspective(1000px) rotateY(0deg);
1680
+ transform: perspective(1000px) rotateY(0deg);
1681
+ }
1682
+ }
1683
+
1684
+ /* Out */
1685
+ @-webkit-keyframes swingOutUp {
1686
+
1687
+ 0% {
1688
+ -webkit-transform: perspective(1000px) rotateX(0deg);
1689
+ transform: perspective(1000px) rotateX(0deg);
1690
+ }
1691
+
1692
+ 30% {
1693
+ -webkit-transform: perspective(1000px) rotateX(-20deg);
1694
+ transform: perspective(1000px) rotateX(-20deg);
1695
+ opacity: 1;
1696
+ }
1697
+
1698
+ 100% {
1699
+ -webkit-transform: perspective(1000px) rotateX(90deg);
1700
+ transform: perspective(1000px) rotateX(90deg);
1701
+ opacity: 0;
1702
+ }
1703
+ }
1704
+ @keyframes swingOutUp {
1705
+ 0% {
1706
+ -webkit-transform: perspective(1000px) rotateX(0deg);
1707
+ transform: perspective(1000px) rotateX(0deg);
1708
+ }
1709
+ 30% {
1710
+ -webkit-transform: perspective(1000px) rotateX(-20deg);
1711
+ transform: perspective(1000px) rotateX(-20deg);
1712
+ opacity: 1;
1713
+ }
1714
+ 100% {
1715
+ -webkit-transform: perspective(1000px) rotateX(90deg);
1716
+ transform: perspective(1000px) rotateX(90deg);
1717
+ opacity: 0;
1718
+ }
1719
+ }
1720
+ @-webkit-keyframes swingOutDown {
1721
+
1722
+ 0% {
1723
+ -webkit-transform: perspective(1000px) rotateX(0deg);
1724
+ transform: perspective(1000px) rotateX(0deg);
1725
+ }
1726
+
1727
+ 30% {
1728
+ -webkit-transform: perspective(1000px) rotateX(20deg);
1729
+ transform: perspective(1000px) rotateX(20deg);
1730
+ opacity: 1;
1731
+ }
1732
+
1733
+ 100% {
1734
+ -webkit-transform: perspective(1000px) rotateX(-90deg);
1735
+ transform: perspective(1000px) rotateX(-90deg);
1736
+ opacity: 0;
1737
+ }
1738
+ }
1739
+ @keyframes swingOutDown {
1740
+ 0% {
1741
+ -webkit-transform: perspective(1000px) rotateX(0deg);
1742
+ transform: perspective(1000px) rotateX(0deg);
1743
+ }
1744
+ 30% {
1745
+ -webkit-transform: perspective(1000px) rotateX(20deg);
1746
+ transform: perspective(1000px) rotateX(20deg);
1747
+ opacity: 1;
1748
+ }
1749
+ 100% {
1750
+ -webkit-transform: perspective(1000px) rotateX(-90deg);
1751
+ transform: perspective(1000px) rotateX(-90deg);
1752
+ opacity: 0;
1753
+ }
1754
+ }
1755
+ @-webkit-keyframes swingOutLeft {
1756
+
1757
+ 0% {
1758
+ -webkit-transform: perspective(1000px) rotateY(0deg);
1759
+ transform: perspective(1000px) rotateY(0deg);
1760
+ }
1761
+
1762
+ 30% {
1763
+ -webkit-transform: perspective(1000px) rotateY(20deg);
1764
+ transform: perspective(1000px) rotateY(20deg);
1765
+ opacity: 1;
1766
+ }
1767
+
1768
+ 100% {
1769
+ -webkit-transform: perspective(1000px) rotateY(-90deg);
1770
+ transform: perspective(1000px) rotateY(-90deg);
1771
+ opacity: 0;
1772
+ }
1773
+ }
1774
+ @keyframes swingOutLeft {
1775
+ 0% {
1776
+ -webkit-transform: perspective(1000px) rotateY(0deg);
1777
+ transform: perspective(1000px) rotateY(0deg);
1778
+ }
1779
+ 30% {
1780
+ -webkit-transform: perspective(1000px) rotateY(20deg);
1781
+ transform: perspective(1000px) rotateY(20deg);
1782
+ opacity: 1;
1783
+ }
1784
+ 100% {
1785
+ -webkit-transform: perspective(1000px) rotateY(-90deg);
1786
+ transform: perspective(1000px) rotateY(-90deg);
1787
+ opacity: 0;
1788
+ }
1789
+ }
1790
+ @-webkit-keyframes swingOutRight {
1791
+
1792
+ 0% {
1793
+ -webkit-transform: perspective(1000px) rotateY(0deg);
1794
+ transform: perspective(1000px) rotateY(0deg);
1795
+ }
1796
+
1797
+ 30% {
1798
+ -webkit-transform: perspective(1000px) rotateY(-20deg);
1799
+ transform: perspective(1000px) rotateY(-20deg);
1800
+ opacity: 1;
1801
+ }
1802
+
1803
+ 100% {
1804
+ -webkit-transform: perspective(1000px) rotateY(90deg);
1805
+ transform: perspective(1000px) rotateY(90deg);
1806
+ opacity: 0;
1807
+ }
1808
+ }
1809
+ @keyframes swingOutRight {
1810
+ 0% {
1811
+ -webkit-transform: perspective(1000px) rotateY(0deg);
1812
+ transform: perspective(1000px) rotateY(0deg);
1813
+ }
1814
+ 30% {
1815
+ -webkit-transform: perspective(1000px) rotateY(-20deg);
1816
+ transform: perspective(1000px) rotateY(-20deg);
1817
+ opacity: 1;
1818
+ }
1819
+ 100% {
1820
+ -webkit-transform: perspective(1000px) rotateY(90deg);
1821
+ transform: perspective(1000px) rotateY(90deg);
1822
+ opacity: 0;
1823
+ }
1824
+ }
1825
+
1826
+
1827
+ /*******************************
1828
+ Static Animations
1829
+ *******************************/
1830
+
1831
+
1832
+ /*--------------
1833
+ Emphasis
1834
+ ---------------*/
1835
+
1836
+ .flash.transition {
1837
+ -webkit-animation-name: flash;
1838
+ animation-name: flash;
1839
+ }
1840
+ .shake.transition {
1841
+ -webkit-animation-name: shake;
1842
+ animation-name: shake;
1843
+ }
1844
+ .bounce.transition {
1845
+ -webkit-animation-name: bounce;
1846
+ animation-name: bounce;
1847
+ }
1848
+ .tada.transition {
1849
+ -webkit-animation-name: tada;
1850
+ animation-name: tada;
1851
+ }
1852
+ .pulse.transition {
1853
+ -webkit-animation-name: pulse;
1854
+ animation-name: pulse;
1855
+ }
1856
+ .jiggle.transition {
1857
+ -webkit-animation-name: jiggle;
1858
+ animation-name: jiggle;
1859
+ }
1860
+
1861
+ /* Flash */
1862
+ @-webkit-keyframes flash {
1863
+
1864
+ 0%,
1865
+ 50%,
1866
+ 100% {
1867
+ opacity: 1;
1868
+ }
1869
+
1870
+ 25%,
1871
+ 75% {
1872
+ opacity: 0;
1873
+ }
1874
+ }
1875
+ @keyframes flash {
1876
+ 0%,
1877
+ 50%,
1878
+ 100% {
1879
+ opacity: 1;
1880
+ }
1881
+ 25%,
1882
+ 75% {
1883
+ opacity: 0;
1884
+ }
1885
+ }
1886
+
1887
+ /* Shake */
1888
+ @-webkit-keyframes shake {
1889
+
1890
+ 0%,
1891
+ 100% {
1892
+ -webkit-transform: translateX(0);
1893
+ transform: translateX(0);
1894
+ }
1895
+
1896
+ 10%,
1897
+ 30%,
1898
+ 50%,
1899
+ 70%,
1900
+ 90% {
1901
+ -webkit-transform: translateX(-10px);
1902
+ transform: translateX(-10px);
1903
+ }
1904
+
1905
+ 20%,
1906
+ 40%,
1907
+ 60%,
1908
+ 80% {
1909
+ -webkit-transform: translateX(10px);
1910
+ transform: translateX(10px);
1911
+ }
1912
+ }
1913
+ @keyframes shake {
1914
+ 0%,
1915
+ 100% {
1916
+ -webkit-transform: translateX(0);
1917
+ transform: translateX(0);
1918
+ }
1919
+ 10%,
1920
+ 30%,
1921
+ 50%,
1922
+ 70%,
1923
+ 90% {
1924
+ -webkit-transform: translateX(-10px);
1925
+ transform: translateX(-10px);
1926
+ }
1927
+ 20%,
1928
+ 40%,
1929
+ 60%,
1930
+ 80% {
1931
+ -webkit-transform: translateX(10px);
1932
+ transform: translateX(10px);
1933
+ }
1934
+ }
1935
+
1936
+ /* Bounce */
1937
+ @-webkit-keyframes bounce {
1938
+
1939
+ 0%,
1940
+ 20%,
1941
+ 50%,
1942
+ 80%,
1943
+ 100% {
1944
+ -webkit-transform: translateY(0);
1945
+ transform: translateY(0);
1946
+ }
1947
+
1948
+ 40% {
1949
+ -webkit-transform: translateY(-30px);
1950
+ transform: translateY(-30px);
1951
+ }
1952
+
1953
+ 60% {
1954
+ -webkit-transform: translateY(-15px);
1955
+ transform: translateY(-15px);
1956
+ }
1957
+ }
1958
+ @keyframes bounce {
1959
+ 0%,
1960
+ 20%,
1961
+ 50%,
1962
+ 80%,
1963
+ 100% {
1964
+ -webkit-transform: translateY(0);
1965
+ transform: translateY(0);
1966
+ }
1967
+ 40% {
1968
+ -webkit-transform: translateY(-30px);
1969
+ transform: translateY(-30px);
1970
+ }
1971
+ 60% {
1972
+ -webkit-transform: translateY(-15px);
1973
+ transform: translateY(-15px);
1974
+ }
1975
+ }
1976
+
1977
+ /* Tada */
1978
+ @-webkit-keyframes tada {
1979
+
1980
+ 0% {
1981
+ -webkit-transform: scale(1);
1982
+ transform: scale(1);
1983
+ }
1984
+
1985
+ 10%,
1986
+ 20% {
1987
+ -webkit-transform: scale(0.9) rotate(-3deg);
1988
+ transform: scale(0.9) rotate(-3deg);
1989
+ }
1990
+
1991
+ 30%,
1992
+ 50%,
1993
+ 70%,
1994
+ 90% {
1995
+ -webkit-transform: scale(1.1) rotate(3deg);
1996
+ transform: scale(1.1) rotate(3deg);
1997
+ }
1998
+
1999
+ 40%,
2000
+ 60%,
2001
+ 80% {
2002
+ -webkit-transform: scale(1.1) rotate(-3deg);
2003
+ transform: scale(1.1) rotate(-3deg);
2004
+ }
2005
+
2006
+ 100% {
2007
+ -webkit-transform: scale(1) rotate(0);
2008
+ transform: scale(1) rotate(0);
2009
+ }
2010
+ }
2011
+ @keyframes tada {
2012
+ 0% {
2013
+ -webkit-transform: scale(1);
2014
+ transform: scale(1);
2015
+ }
2016
+ 10%,
2017
+ 20% {
2018
+ -webkit-transform: scale(0.9) rotate(-3deg);
2019
+ transform: scale(0.9) rotate(-3deg);
2020
+ }
2021
+ 30%,
2022
+ 50%,
2023
+ 70%,
2024
+ 90% {
2025
+ -webkit-transform: scale(1.1) rotate(3deg);
2026
+ transform: scale(1.1) rotate(3deg);
2027
+ }
2028
+ 40%,
2029
+ 60%,
2030
+ 80% {
2031
+ -webkit-transform: scale(1.1) rotate(-3deg);
2032
+ transform: scale(1.1) rotate(-3deg);
2033
+ }
2034
+ 100% {
2035
+ -webkit-transform: scale(1) rotate(0);
2036
+ transform: scale(1) rotate(0);
2037
+ }
2038
+ }
2039
+
2040
+ /* Pulse */
2041
+ @-webkit-keyframes pulse {
2042
+
2043
+ 0% {
2044
+ -webkit-transform: scale(1);
2045
+ transform: scale(1);
2046
+ opacity: 1;
2047
+ }
2048
+
2049
+ 50% {
2050
+ -webkit-transform: scale(0.9);
2051
+ transform: scale(0.9);
2052
+ opacity: 0.7;
2053
+ }
2054
+
2055
+ 100% {
2056
+ -webkit-transform: scale(1);
2057
+ transform: scale(1);
2058
+ opacity: 1;
2059
+ }
2060
+ }
2061
+ @keyframes pulse {
2062
+ 0% {
2063
+ -webkit-transform: scale(1);
2064
+ transform: scale(1);
2065
+ opacity: 1;
2066
+ }
2067
+ 50% {
2068
+ -webkit-transform: scale(0.9);
2069
+ transform: scale(0.9);
2070
+ opacity: 0.7;
2071
+ }
2072
+ 100% {
2073
+ -webkit-transform: scale(1);
2074
+ transform: scale(1);
2075
+ opacity: 1;
2076
+ }
2077
+ }
2078
+
2079
+ /* Rubberband */
2080
+ @-webkit-keyframes jiggle {
2081
+
2082
+ 0% {
2083
+ -webkit-transform: scale3d(1, 1, 1);
2084
+ transform: scale3d(1, 1, 1);
2085
+ }
2086
+
2087
+ 30% {
2088
+ -webkit-transform: scale3d(1.25, 0.75, 1);
2089
+ transform: scale3d(1.25, 0.75, 1);
2090
+ }
2091
+
2092
+ 40% {
2093
+ -webkit-transform: scale3d(0.75, 1.25, 1);
2094
+ transform: scale3d(0.75, 1.25, 1);
2095
+ }
2096
+
2097
+ 50% {
2098
+ -webkit-transform: scale3d(1.15, 0.85, 1);
2099
+ transform: scale3d(1.15, 0.85, 1);
2100
+ }
2101
+
2102
+ 65% {
2103
+ -webkit-transform: scale3d(0.95, 1.05, 1);
2104
+ transform: scale3d(0.95, 1.05, 1);
2105
+ }
2106
+
2107
+ 75% {
2108
+ -webkit-transform: scale3d(1.05, 0.95, 1);
2109
+ transform: scale3d(1.05, 0.95, 1);
2110
+ }
2111
+
2112
+ 100% {
2113
+ -webkit-transform: scale3d(1, 1, 1);
2114
+ transform: scale3d(1, 1, 1);
2115
+ }
2116
+ }
2117
+ @keyframes jiggle {
2118
+ 0% {
2119
+ -webkit-transform: scale3d(1, 1, 1);
2120
+ transform: scale3d(1, 1, 1);
2121
+ }
2122
+ 30% {
2123
+ -webkit-transform: scale3d(1.25, 0.75, 1);
2124
+ transform: scale3d(1.25, 0.75, 1);
2125
+ }
2126
+ 40% {
2127
+ -webkit-transform: scale3d(0.75, 1.25, 1);
2128
+ transform: scale3d(0.75, 1.25, 1);
2129
+ }
2130
+ 50% {
2131
+ -webkit-transform: scale3d(1.15, 0.85, 1);
2132
+ transform: scale3d(1.15, 0.85, 1);
2133
+ }
2134
+ 65% {
2135
+ -webkit-transform: scale3d(0.95, 1.05, 1);
2136
+ transform: scale3d(0.95, 1.05, 1);
2137
+ }
2138
+ 75% {
2139
+ -webkit-transform: scale3d(1.05, 0.95, 1);
2140
+ transform: scale3d(1.05, 0.95, 1);
2141
+ }
2142
+ 100% {
2143
+ -webkit-transform: scale3d(1, 1, 1);
2144
+ transform: scale3d(1, 1, 1);
2145
+ }
2146
+ }
2147
+
2148
+
2149
+ /*******************************
2150
+ Site Overrides
2151
+ *******************************/
2152
+