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
+ !function(e,t,r,n){e.api=e.fn.api=function(r){var o,a=e(e.isFunction(this)?t:this),i=a.selector||"",s=(new Date).getTime(),u=[],c=arguments[0],l="string"==typeof c,d=[].slice.call(arguments,1);return a.each(function(){var t,a,f,g,m,p=e.isPlainObject(r)?e.extend(!0,{},e.fn.api.settings,r):e.extend({},e.fn.api.settings),b=p.namespace,v=p.metadata,h=p.selector,y=p.error,q=p.className,x="."+b,A="module-"+b,D=e(this),P=D.closest(h.form),T=p.stateContext?e(p.stateContext):D,S=this,R=T.get(),j=D.data(A);m={initialize:function(){var e=m.get.event();l||(e?(m.debug("Attaching API events to element",e),D.on(e+x,m.event.trigger)):"now"==p.on&&(m.debug("Querying API now",e),m.query())),m.instantiate()},instantiate:function(){m.verbose("Storing instance of module",m),j=m,D.data(A,j)},destroy:function(){m.verbose("Destroying previous module for",S),D.removeData(A).off(x)},query:function(){if(m.is.disabled())return void m.debug("Element is disabled API request aborted");if(m.is.loading()&&0===p.throttle)return void m.debug("Cancelling request, previous request is still pending");if(p.defaultData&&e.extend(!0,p.urlData,m.get.defaultData()),(p.serializeForm!==!1||T.is("form"))&&("json"==p.serializeForm?e.extend(!0,p.data,m.get.formData()):p.data=m.get.formData()),a=m.get.settings(),a===!1)return void m.error(y.beforeSend);if(p.url?(m.debug("Using specified url",f),f=m.add.urlData(p.url)):(f=m.add.urlData(m.get.templateURL()),m.debug("Added URL Data to url",f)),!f){if(!D.is("form"))return void m.error(y.missingURL,p.action);m.debug("No url or action specified, defaulting to form action"),f=D.attr("action")}m.set.loading(),t=e.extend(!0,{},p,{type:p.method||p.type,data:g,url:p.base+f,beforeSend:p.beforeXHR,success:function(){},failure:function(){},complete:function(){}}),m.verbose("Creating AJAX request with settings",t),m.is.loading()?m.timer=setTimeout(function(){m.request=m.create.request(),m.xhr=m.create.xhr()},p.throttle):(m.request=m.create.request(),m.xhr=m.create.xhr())},is:{disabled:function(){return D.filter(p.filter).length>0},loading:function(){return m.request&&"pending"==m.request.state()}},was:{succesful:function(){return m.request&&"resolved"==m.request.state()},failure:function(){return m.request&&"rejected"==m.request.state()},complete:function(){return m.request&&("resolved"==m.request.state()||"rejected"==m.request.state())}},add:{urlData:function(t,r){var o,a;return t&&(o=t.match(p.regExp.required),a=t.match(p.regExp.optional),r=r||p.urlData,o&&(m.debug("Looking for required URL variables",o),e.each(o,function(o,a){var i=-1!==a.indexOf("$")?a.substr(2,a.length-3):a.substr(1,a.length-2),s=e.isPlainObject(r)&&r[i]!==n?r[i]:D.data(i)!==n?D.data(i):T.data(i)!==n?T.data(i):r[i];return s===n?(m.error(y.requiredParameter,i,t),t=!1,!1):(m.verbose("Found required variable",i,s),void(t=t.replace(a,s)))})),a&&(m.debug("Looking for optional URL variables",o),e.each(a,function(o,a){var i=-1!==a.indexOf("$")?a.substr(3,a.length-4):a.substr(2,a.length-3),s=e.isPlainObject(r)&&r[i]!==n?r[i]:D.data(i)!==n?D.data(i):T.data(i)!==n?T.data(i):r[i];s!==n?(m.verbose("Optional variable Found",i,s),t=t.replace(a,s)):(m.verbose("Optional variable not found",i),t=-1!==t.indexOf("/"+a)?t.replace("/"+a,""):t.replace(a,""))}))),t}},event:{trigger:function(e){m.query(),("submit"==e.type||"click"==e.type)&&e.preventDefault()},xhr:{always:function(){},done:function(e){var t=this,r=(new Date).getTime()-s,n=p.loadingDuration-r;n=n>0?n:0,setTimeout(function(){m.request.resolveWith(t,[e])},n)},fail:function(e,t,r){var n=this,o=(new Date).getTime()-s,a=p.loadingDuration-o;a=a>0?a:0,setTimeout(function(){"abort"!==t?m.request.rejectWith(n,[e,t,r]):m.reset()},a)}},request:{complete:function(e){m.remove.loading(),p.onComplete.call(R,e,D)},done:function(t){m.debug("API Response Received",t),"json"==p.dataType&&e.isFunction(p.successTest)?(m.debug("Checking JSON returned success",p.successTest,t),p.successTest(t)?p.onSuccess.call(R,t,D):(m.debug("JSON test specified by user and response failed",t),p.onFailure.call(R,t,D))):p.onSuccess.call(R,t,D)},error:function(t,r,o){var a,i=p.error[r]!==n?p.error[r]:o;if(t!==n)if(t.readyState!==n&&4==t.readyState){if(200!=t.status&&o!==n&&""!==o)m.error(y.statusMessage+o);else if("error"==r&&"json"==p.dataType)try{a=e.parseJSON(t.responseText),a&&a.error!==n&&(i=a.error)}catch(s){m.error(y.JSONParse)}m.remove.loading(),m.set.error(),p.errorDuration&&setTimeout(m.remove.error,p.errorDuration),m.debug("API Request error:",i),p.onError.call(R,i,D)}else p.onAbort.call(R,i,D),m.debug("Request Aborted (Most likely caused by page change or CORS Policy)",r,o)}}},create:{request:function(){return e.Deferred().always(m.event.request.complete).done(m.event.request.done).fail(m.event.request.error)},xhr:function(){return e.ajax(t).always(m.event.xhr.always).done(m.event.xhr.done).fail(m.event.xhr.fail)}},set:{error:function(){m.verbose("Adding error state to element",T),T.addClass(q.error)},loading:function(){m.verbose("Adding loading state to element",T),T.addClass(q.loading)}},remove:{error:function(){m.verbose("Removing error state from element",T),T.removeClass(q.error)},loading:function(){m.verbose("Removing loading state from element",T),T.removeClass(q.loading)}},get:{request:function(){return m.request||!1},xhr:function(){return m.xhr||!1},settings:function(){var e;return e=p.beforeSend.call(D,p),e&&(e.success!==n&&(m.debug("Legacy success callback detected",e),m.error(y.legacyParameters,e.success),e.onSuccess=e.success),e.failure!==n&&(m.debug("Legacy failure callback detected",e),m.error(y.legacyParameters,e.failure),e.onFailure=e.failure),e.complete!==n&&(m.debug("Legacy complete callback detected",e),m.error(y.legacyParameters,e.complete),e.onComplete=e.complete)),e===n&&m.error(y.noReturnedValue),e!==n?e:p},defaultData:function(){var t={};return e.isWindow(S)||(D.is("input")?t.value=D.val():D.is("form")||(t.text=D.text())),t},event:function(){return e.isWindow(S)||"now"==p.on?(m.debug("API called without element, no events attached"),!1):"auto"==p.on?D.is("input")?S.oninput!==n?"input":S.onpropertychange!==n?"propertychange":"keyup":D.is("form")?"submit":"click":p.on},formData:function(){var t;return e(this).serializeObject()!==n?t=P.serializeObject():(m.error(y.missingSerialize),t=P.serialize()),m.debug("Retrieved form data",t),t},templateURL:function(e){var t;return e=e||D.data(v.action)||p.action||!1,e&&(m.debug("Looking up url for action",e,p.api),p.api[e]!==n?(t=p.api[e],m.debug("Found template url",t)):m.error(y.missingAction,p.action,p.api)),t}},abort:function(){var e=m.get.xhr();e&&"resolved"!==e.state()&&(m.debug("Cancelling API request"),e.abort(),m.request.rejectWith(p.apiSettings))},reset:function(){m.remove.error(),m.remove.loading()},setting:function(t,r){if(m.debug("Changing setting",t,r),e.isPlainObject(t))e.extend(!0,p,t);else{if(r===n)return p[t];p[t]=r}},internal:function(t,r){if(e.isPlainObject(t))e.extend(!0,m,t);else{if(r===n)return m[t];m[t]=r}},debug:function(){p.debug&&(p.performance?m.performance.log(arguments):(m.debug=Function.prototype.bind.call(console.info,console,p.name+":"),m.debug.apply(console,arguments)))},verbose:function(){p.verbose&&p.debug&&(p.performance?m.performance.log(arguments):(m.verbose=Function.prototype.bind.call(console.info,console,p.name+":"),m.verbose.apply(console,arguments)))},error:function(){m.error=Function.prototype.bind.call(console.error,console,p.name+":"),m.error.apply(console,arguments)},performance:{log:function(e){var t,r,n;p.performance&&(t=(new Date).getTime(),n=s||t,r=t-n,s=t,u.push({Name:e[0],Arguments:[].slice.call(e,1)||"","Execution Time":r})),clearTimeout(m.performance.timer),m.performance.timer=setTimeout(m.performance.display,100)},display:function(){var t=p.name+":",r=0;s=!1,clearTimeout(m.performance.timer),e.each(u,function(e,t){r+=t["Execution Time"]}),t+=" "+r+"ms",i&&(t+=" '"+i+"'"),(console.group!==n||console.table!==n)&&u.length>0&&(console.groupCollapsed(t),console.table?console.table(u):e.each(u,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),u=[]}},invoke:function(t,r,a){var i,s,u,c=j;return r=r||d,a=S||a,"string"==typeof t&&c!==n&&(t=t.split(/[\. ]/),i=t.length-1,e.each(t,function(r,o){var a=r!=i?o+t[r+1].charAt(0).toUpperCase()+t[r+1].slice(1):t;if(e.isPlainObject(c[a])&&r!=i)c=c[a];else{if(c[a]!==n)return s=c[a],!1;if(!e.isPlainObject(c[o])||r==i)return c[o]!==n?(s=c[o],!1):(m.error(y.method,t),!1);c=c[o]}})),e.isFunction(s)?u=s.apply(a,r):s!==n&&(u=s),e.isArray(o)?o.push(u):o!==n?o=[o,u]:u!==n&&(o=u),s}},l?(j===n&&m.initialize(),m.invoke(c)):(j!==n&&m.destroy(),m.initialize())}),o!==n?o:this},e.api.settings={name:"API",namespace:"api",debug:!0,verbose:!0,performance:!0,on:"auto",filter:".disabled",stateContext:!1,loadingDuration:0,errorDuration:2e3,action:!1,url:!1,base:"",urlData:{},defaultData:!0,serializeForm:!1,throttle:0,method:"get",data:{},dataType:"json",beforeSend:function(e){return e},beforeXHR:function(){},onSuccess:function(){},onComplete:function(){},onFailure:function(){},onError:function(){},onAbort:function(){},successTest:!1,error:{beforeSend:"The before send function has aborted the request",error:"There was an error with your request",exitConditions:"API Request Aborted. Exit conditions met",JSONParse:"JSON could not be parsed during error handling",legacyParameters:"You are using legacy API success callback names",method:"The method you called is not defined",missingAction:"API action used but no url was defined",missingSerialize:"Required dependency jquery-serialize-object missing, using basic serialize",missingURL:"No URL specified for api event",noReturnedValue:"The beforeSend callback must return a settings object, beforeSend ignored.",parseError:"There was an error parsing your request",requiredParameter:"Missing a required URL parameter: ",statusMessage:"Server gave an error: ",timeout:"Your request timed out"},regExp:{required:/\{\$*[A-z0-9]+\}/g,optional:/\{\/\$*[A-z0-9]+\}/g},className:{loading:"loading",error:"error"},selector:{form:"form"},metadata:{action:"action"}},e.api.settings.api={}}(jQuery,window,document);
@@ -0,0 +1,125 @@
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
+ Breadcrumb
16
+ *******************************/
17
+
18
+ .ui.breadcrumb {
19
+ margin: 1em 0em;
20
+ display: inline-block;
21
+ vertical-align: middle;
22
+ }
23
+ .ui.breadcrumb:first-child {
24
+ margin-top: 0em;
25
+ }
26
+ .ui.breadcrumb:last-child {
27
+ margin-bottom: 0em;
28
+ }
29
+
30
+
31
+ /*******************************
32
+ Content
33
+ *******************************/
34
+
35
+
36
+ /* Divider */
37
+ .ui.breadcrumb .divider {
38
+ display: inline-block;
39
+ opacity: 0.5;
40
+ margin: 0em 0.2rem 0em;
41
+ font-size: 0.9em;
42
+ color: rgba(0, 0, 0, 0.4);
43
+ vertical-align: baseline;
44
+ }
45
+
46
+ /* Link */
47
+ .ui.breadcrumb a {
48
+ color: #009fda;
49
+ }
50
+ .ui.breadcrumb a:hover {
51
+ color: #00b2f3;
52
+ }
53
+
54
+ /* Icon Divider */
55
+ .ui.breadcrumb .icon.divider {
56
+ font-size: 0.7em;
57
+ vertical-align: middle;
58
+ }
59
+
60
+ /* Section */
61
+ .ui.breadcrumb a.section {
62
+ cursor: pointer;
63
+ }
64
+ .ui.breadcrumb .section {
65
+ display: inline-block;
66
+ margin: 0em;
67
+ padding: 0em;
68
+ }
69
+
70
+ /* Loose Coupling */
71
+ .ui.breadcrumb.segment {
72
+ display: inline-block;
73
+ padding: 0.5em 1em;
74
+ }
75
+
76
+
77
+ /*******************************
78
+ States
79
+ *******************************/
80
+
81
+ .ui.breadcrumb .active.section {
82
+ font-weight: bold;
83
+ }
84
+
85
+
86
+ /*******************************
87
+ Variations
88
+ *******************************/
89
+
90
+ .ui.mini.breadcrumb {
91
+ font-size: 0.65em;
92
+ }
93
+ .ui.tiny.breadcrumb {
94
+ font-size: 0.7em;
95
+ }
96
+ .ui.small.breadcrumb {
97
+ font-size: 0.75em;
98
+ }
99
+ .ui.breadcrumb {
100
+ font-size: 1em;
101
+ }
102
+ .ui.large.breadcrumb {
103
+ font-size: 1.1em;
104
+ }
105
+ .ui.big.breadcrumb {
106
+ font-size: 1.05em;
107
+ }
108
+ .ui.huge.breadcrumb {
109
+ font-size: 1.3em;
110
+ }
111
+ .ui.massive.breadcrumb {
112
+ font-size: 1.5em;
113
+ }
114
+
115
+
116
+ /*******************************
117
+ Theme Overrides
118
+ *******************************/
119
+
120
+
121
+
122
+ /*******************************
123
+ Site Overrides
124
+ *******************************/
125
+
@@ -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.breadcrumb{margin:1em 0;display:inline-block;vertical-align:middle}.ui.breadcrumb:first-child{margin-top:0}.ui.breadcrumb:last-child{margin-bottom:0}.ui.breadcrumb .divider{display:inline-block;opacity:.5;margin:0 .2rem;font-size:.9em;color:rgba(0,0,0,.4);vertical-align:baseline}.ui.breadcrumb a{color:#009fda}.ui.breadcrumb a:hover{color:#00b2f3}.ui.breadcrumb .icon.divider{font-size:.7em;vertical-align:middle}.ui.breadcrumb a.section{cursor:pointer}.ui.breadcrumb .section{display:inline-block;margin:0;padding:0}.ui.breadcrumb.segment{display:inline-block;padding:.5em 1em}.ui.breadcrumb .active.section{font-weight:700}.ui.mini.breadcrumb{font-size:.65em}.ui.tiny.breadcrumb{font-size:.7em}.ui.small.breadcrumb{font-size:.75em}.ui.breadcrumb{font-size:1em}.ui.large.breadcrumb{font-size:1.1em}.ui.big.breadcrumb{font-size:1.05em}.ui.huge.breadcrumb{font-size:1.3em}.ui.massive.breadcrumb{font-size:1.5em}
@@ -0,0 +1,2391 @@
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
+ Button
16
+ *******************************/
17
+
18
+ .ui.button {
19
+ cursor: pointer;
20
+ display: inline-block;
21
+ min-height: 1em;
22
+ outline: none;
23
+ border: none;
24
+ vertical-align: baseline;
25
+ background-color: #e0e0e0;
26
+ color: rgba(0, 0, 0, 0.6);
27
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
28
+ margin: 0em 0.25em 0em 0em;
29
+ padding: 0.78571em 1.5em 0.78571em;
30
+ text-transform: none;
31
+ text-shadow: none;
32
+ font-weight: bold;
33
+ line-height: 1;
34
+ font-style: normal;
35
+ text-align: center;
36
+ text-decoration: none;
37
+ background-image: none;
38
+ border-radius: 0.2857rem;
39
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
40
+ -webkit-user-select: none;
41
+ -moz-user-select: none;
42
+ -ms-user-select: none;
43
+ user-select: none;
44
+ -webkit-transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
45
+ transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
46
+ will-change: '';
47
+ -webkit-tap-highlight-color: transparent;
48
+ }
49
+
50
+
51
+ /*******************************
52
+ States
53
+ *******************************/
54
+
55
+
56
+ /*--------------
57
+ Hover
58
+ ---------------*/
59
+
60
+ .ui.button:hover {
61
+ background-color: #e8e8e8;
62
+ background-image: none;
63
+ box-shadow: '';
64
+ color: rgba(0, 0, 0, 0.8);
65
+ }
66
+ .ui.button:hover .icon {
67
+ opacity: 0.85;
68
+ }
69
+
70
+ /*--------------
71
+ Focus
72
+ ---------------*/
73
+
74
+ .ui.button:focus {
75
+ background-color: '';
76
+ color: rgba(0, 0, 0, 0.8);
77
+ background-image: '' !important;
78
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0px 1px rgba(81, 167, 232, 0.8) inset, 0px 0px 3px 2px rgba(81, 167, 232, 0.8) !important;
79
+ }
80
+ .ui.button:focus .icon {
81
+ opacity: 0.85;
82
+ }
83
+
84
+ /*--------------
85
+ Down
86
+ ---------------*/
87
+
88
+ .ui.button:active,
89
+ .ui.active.button:active {
90
+ background-color: #cccccc;
91
+ background-image: '';
92
+ color: rgba(0, 0, 0, 0.8);
93
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 1px 4px 0px rgba(39, 41, 43, 0.15) inset;
94
+ }
95
+
96
+ /*--------------
97
+ Active
98
+ ---------------*/
99
+
100
+ .ui.active.button {
101
+ background-color: #d0d0d0;
102
+ background-image: none;
103
+ box-shadow: 0px 0px 0px 1px transparent inset;
104
+ color: rgba(0, 0, 0, 0.8);
105
+ }
106
+ .ui.active.button:hover {
107
+ background-color: #d0d0d0;
108
+ background-image: none;
109
+ color: rgba(0, 0, 0, 0.8);
110
+ }
111
+ .ui.active.button:active {
112
+ background-color: #d0d0d0;
113
+ background-image: none;
114
+ }
115
+
116
+ /*--------------
117
+ Loading
118
+ ---------------*/
119
+
120
+
121
+ /* Specificity hack */
122
+ .ui.loading.loading.loading.loading.loading.loading.button {
123
+ position: relative;
124
+ cursor: default;
125
+ point-events: none;
126
+ text-shadow: none !important;
127
+ color: transparent !important;
128
+ -webkit-transition: all 0s linear;
129
+ transition: all 0s linear;
130
+ }
131
+ .ui.loading.button:before {
132
+ position: absolute;
133
+ content: '';
134
+ top: 50%;
135
+ left: 50%;
136
+ margin: -0.64285em 0em 0em -0.64285em;
137
+ width: 1.2857em;
138
+ height: 1.2857em;
139
+ border-radius: 500rem;
140
+ border: 0.2em solid rgba(0, 0, 0, 0.15);
141
+ }
142
+ .ui.loading.button:after {
143
+ position: absolute;
144
+ content: '';
145
+ top: 50%;
146
+ left: 50%;
147
+ margin: -0.64285em 0em 0em -0.64285em;
148
+ width: 1.2857em;
149
+ height: 1.2857em;
150
+ -webkit-animation: button-spin 0.6s linear;
151
+ animation: button-spin 0.6s linear;
152
+ -webkit-animation-iteration-count: infinite;
153
+ animation-iteration-count: infinite;
154
+ border-radius: 500rem;
155
+ border-color: #ffffff transparent transparent;
156
+ border-style: solid;
157
+ border-width: 0.2em;
158
+ box-shadow: 0px 0px 0px 1px transparent;
159
+ }
160
+ .ui.labeled.icon.loading.button .icon {
161
+ background-color: transparent;
162
+ box-shadow: none;
163
+ }
164
+ @-webkit-keyframes button-spin {
165
+
166
+ from {
167
+ -webkit-transform: rotate(0deg);
168
+ transform: rotate(0deg);
169
+ }
170
+
171
+ to {
172
+ -webkit-transform: rotate(360deg);
173
+ transform: rotate(360deg);
174
+ }
175
+ }
176
+ @keyframes button-spin {
177
+ from {
178
+ -webkit-transform: rotate(0deg);
179
+ transform: rotate(0deg);
180
+ }
181
+ to {
182
+ -webkit-transform: rotate(360deg);
183
+ transform: rotate(360deg);
184
+ }
185
+ }
186
+ .ui.basic.loading.button:not(.inverted):before {
187
+ border-color: rgba(0, 0, 0, 0.1);
188
+ }
189
+ .ui.basic.loading.button:not(.inverted):after {
190
+ border-top-color: #aaaaaa;
191
+ }
192
+
193
+ /*-------------------
194
+ Disabled
195
+ --------------------*/
196
+
197
+ .ui.buttons .disabled.button,
198
+ .ui.disabled.button,
199
+ .ui.disabled.button:hover,
200
+ .ui.disabled.active.button {
201
+ cursor: default;
202
+ background-color: #dcddde !important;
203
+ color: rgba(0, 0, 0, 0.4) !important;
204
+ opacity: 0.3 !important;
205
+ background-image: none !important;
206
+ box-shadow: none !important;
207
+ pointer-events: none;
208
+ }
209
+
210
+ /* Basic Group With Disabled */
211
+ .ui.basic.buttons .ui.disabled.button {
212
+ border-color: rgba(39, 41, 43, 0.5);
213
+ }
214
+
215
+
216
+ /*******************************
217
+ Types
218
+ *******************************/
219
+
220
+
221
+ /*-------------------
222
+ Animated
223
+ --------------------*/
224
+
225
+ .ui.animated.button {
226
+ position: relative;
227
+ overflow: hidden;
228
+ vertical-align: middle;
229
+ padding-right: 0em !important;
230
+ }
231
+ .ui.animated.button .content {
232
+ will-change: transform, opacity;
233
+ }
234
+ .ui.animated.button .visible.content {
235
+ position: relative;
236
+ margin-right: 1.5em;
237
+ }
238
+ .ui.animated.button .hidden.content {
239
+ position: absolute;
240
+ width: 100%;
241
+ }
242
+
243
+ /* Horizontal */
244
+ .ui.animated.button .visible.content,
245
+ .ui.animated.button .hidden.content {
246
+ -webkit-transition: right 0.3s ease 0s;
247
+ transition: right 0.3s ease 0s;
248
+ }
249
+ .ui.animated.button .visible.content {
250
+ left: auto;
251
+ right: 0%;
252
+ }
253
+ .ui.animated.button .hidden.content {
254
+ top: 50%;
255
+ left: auto;
256
+ right: -100%;
257
+ margin-top: -0.5em;
258
+ }
259
+ .ui.animated.button:hover .visible.content {
260
+ left: auto;
261
+ right: 200%;
262
+ }
263
+ .ui.animated.button:hover .hidden.content {
264
+ left: auto;
265
+ right: 0%;
266
+ }
267
+
268
+ /* Vertical */
269
+ .ui.vertical.animated.button .visible.content,
270
+ .ui.vertical.animated.button .hidden.content {
271
+ -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
272
+ transition: top 0.3s ease, transform 0.3s ease;
273
+ }
274
+ .ui.vertical.animated.button .visible.content {
275
+ -webkit-transform: translateY(0%);
276
+ -ms-transform: translateY(0%);
277
+ transform: translateY(0%);
278
+ right: auto;
279
+ }
280
+ .ui.vertical.animated.button .hidden.content {
281
+ top: -50%;
282
+ left: 0%;
283
+ right: auto;
284
+ }
285
+ .ui.vertical.animated.button:hover .visible.content {
286
+ -webkit-transform: translateY(200%);
287
+ -ms-transform: translateY(200%);
288
+ transform: translateY(200%);
289
+ right: auto;
290
+ }
291
+ .ui.vertical.animated.button:hover .hidden.content {
292
+ top: 50%;
293
+ right: auto;
294
+ }
295
+
296
+ /* Fade */
297
+ .ui.fade.animated.button .visible.content,
298
+ .ui.fade.animated.button .hidden.content {
299
+ -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
300
+ transition: opacity 0.3s ease, transform 0.3s ease;
301
+ }
302
+ .ui.fade.animated.button .visible.content {
303
+ left: auto;
304
+ right: auto;
305
+ opacity: 1;
306
+ -webkit-transform: scale(1);
307
+ -ms-transform: scale(1);
308
+ transform: scale(1);
309
+ }
310
+ .ui.fade.animated.button .hidden.content {
311
+ opacity: 0;
312
+ left: 0%;
313
+ right: auto;
314
+ -webkit-transform: scale(1.5);
315
+ -ms-transform: scale(1.5);
316
+ transform: scale(1.5);
317
+ }
318
+ .ui.fade.animated.button:hover .visible.content {
319
+ left: auto;
320
+ right: auto;
321
+ opacity: 0;
322
+ -webkit-transform: scale(0.75);
323
+ -ms-transform: scale(0.75);
324
+ transform: scale(0.75);
325
+ }
326
+ .ui.fade.animated.button:hover .hidden.content {
327
+ left: 0%;
328
+ right: auto;
329
+ opacity: 1;
330
+ -webkit-transform: scale(1);
331
+ -ms-transform: scale(1);
332
+ transform: scale(1);
333
+ }
334
+
335
+ /*-------------------
336
+ Inverted
337
+ --------------------*/
338
+
339
+ .ui.inverted.button {
340
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
341
+ background: transparent none;
342
+ color: #ffffff;
343
+ text-shadow: none !important;
344
+ }
345
+ .ui.inverted.buttons .button {
346
+ margin: 0px 0px 0px -2px;
347
+ }
348
+ .ui.inverted.buttons .button:first-child {
349
+ margin-left: 0em;
350
+ }
351
+ .ui.inverted.vertical.buttons .button {
352
+ margin: 0px 0px -2px 0px;
353
+ }
354
+ .ui.inverted.vertical.buttons .button:first-child {
355
+ margin-top: 0em;
356
+ }
357
+ .ui.inverted.buttons .button:hover {
358
+ position: relative;
359
+ }
360
+ .ui.inverted.button:hover {
361
+ background: #ffffff;
362
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
363
+ color: rgba(0, 0, 0, 0.8);
364
+ }
365
+
366
+ /*-------------------
367
+ Social
368
+ --------------------*/
369
+
370
+
371
+ /* Facebook */
372
+ .ui.facebook.button {
373
+ background-color: #3b579d;
374
+ color: #ffffff;
375
+ text-shadow: none;
376
+ background-image: none;
377
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
378
+ }
379
+ .ui.facebook.button:hover {
380
+ background-color: #3f5da8;
381
+ color: #ffffff;
382
+ text-shadow: none;
383
+ }
384
+ .ui.facebook.button:active {
385
+ background-color: #314983;
386
+ color: #ffffff;
387
+ text-shadow: none;
388
+ }
389
+
390
+ /* Twitter */
391
+ .ui.twitter.button {
392
+ background-color: #4092cc;
393
+ color: #ffffff;
394
+ text-shadow: none;
395
+ background-image: none;
396
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
397
+ }
398
+ .ui.twitter.button:hover {
399
+ background-color: #4c99cf;
400
+ color: #ffffff;
401
+ text-shadow: none;
402
+ }
403
+ .ui.twitter.button:active {
404
+ background-color: #3180b7;
405
+ color: #ffffff;
406
+ text-shadow: none;
407
+ }
408
+
409
+ /* Google Plus */
410
+ .ui.google.plus.button {
411
+ background-color: #d34836;
412
+ color: #ffffff;
413
+ text-shadow: none;
414
+ background-image: none;
415
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
416
+ }
417
+ .ui.google.plus.button:hover {
418
+ background-color: #d65343;
419
+ color: #ffffff;
420
+ text-shadow: none;
421
+ }
422
+ .ui.google.plus.button:active {
423
+ background-color: #bc3a29;
424
+ color: #ffffff;
425
+ text-shadow: none;
426
+ }
427
+
428
+ /* Linked In */
429
+ .ui.linkedin.button {
430
+ background-color: #1f88be;
431
+ color: #ffffff;
432
+ text-shadow: none;
433
+ }
434
+ .ui.linkedin.button:hover {
435
+ background-color: #2191cb;
436
+ color: #ffffff;
437
+ text-shadow: none;
438
+ }
439
+ .ui.linkedin.button:active {
440
+ background-color: #1a729f;
441
+ color: #ffffff;
442
+ text-shadow: none;
443
+ }
444
+
445
+ /* YouTube */
446
+ .ui.youtube.button {
447
+ background-color: #cc181e;
448
+ color: #ffffff;
449
+ text-shadow: none;
450
+ background-image: none;
451
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
452
+ }
453
+ .ui.youtube.button:hover {
454
+ background-color: #da1a20;
455
+ color: #ffffff;
456
+ text-shadow: none;
457
+ }
458
+ .ui.youtube.button:active {
459
+ background-color: #ac1419;
460
+ color: #ffffff;
461
+ text-shadow: none;
462
+ }
463
+
464
+ /* Instagram */
465
+ .ui.instagram.button {
466
+ background-color: #49769c;
467
+ color: #ffffff;
468
+ text-shadow: none;
469
+ background-image: none;
470
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
471
+ }
472
+ .ui.instagram.button:hover {
473
+ background-color: #4e7ea6;
474
+ color: #ffffff;
475
+ text-shadow: none;
476
+ }
477
+ .ui.instagram.button:active {
478
+ background-color: #3e6484;
479
+ color: #ffffff;
480
+ text-shadow: none;
481
+ }
482
+
483
+ /* Pinterest */
484
+ .ui.pinterest.button {
485
+ background-color: #00aced;
486
+ color: #ffffff;
487
+ text-shadow: none;
488
+ background-image: none;
489
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
490
+ }
491
+ .ui.pinterest.button:hover {
492
+ background-color: #00b7fc;
493
+ color: #ffffff;
494
+ text-shadow: none;
495
+ }
496
+ .ui.pinterest.button:active {
497
+ background-color: #0092c9;
498
+ color: #ffffff;
499
+ text-shadow: none;
500
+ }
501
+
502
+ /* VK */
503
+ .ui.vk.button {
504
+ background-color: #4D7198;
505
+ color: #ffffff;
506
+ background-image: none;
507
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
508
+ }
509
+ .ui.vk.button:hover {
510
+ background-color: #5279a2;
511
+ color: #ffffff;
512
+ }
513
+ .ui.vk.button:active {
514
+ background-color: #415f80;
515
+ color: #ffffff;
516
+ }
517
+
518
+ /*--------------
519
+ Icon
520
+ ---------------*/
521
+
522
+ .ui.button > .icon {
523
+ opacity: 0.8;
524
+ margin: 0em 0.4em 0em -0.2em;
525
+ -webkit-transition: opacity 0.2s ease;
526
+ transition: opacity 0.2s ease;
527
+ vertical-align: baseline;
528
+ color: '';
529
+ }
530
+ .ui.button > .right.icon {
531
+ margin: 0em -0.2em 0em 0.4em;
532
+ }
533
+
534
+
535
+ /*******************************
536
+ Variations
537
+ *******************************/
538
+
539
+
540
+ /*-------------------
541
+ Floated
542
+ --------------------*/
543
+
544
+ .ui[class*="left floated"].buttons,
545
+ .ui[class*="left floated"].button {
546
+ float: left;
547
+ margin-left: 0em;
548
+ margin-right: 0.25em;
549
+ }
550
+ .ui[class*="right floated"].buttons,
551
+ .ui[class*="right floated"].button {
552
+ float: right;
553
+ margin-right: 0em;
554
+ margin-left: 0.25em;
555
+ }
556
+
557
+ /*-------------------
558
+ Compact
559
+ --------------------*/
560
+
561
+ .ui.compact.buttons .button,
562
+ .ui.compact.button {
563
+ padding: 0.5892825em 1.125em 0.5892825em;
564
+ }
565
+ .ui.compact.icon.buttons .button,
566
+ .ui.compact.icon.button {
567
+ padding: 0.5892825em 0.5892825em 0.5892825em;
568
+ }
569
+ .ui.compact.labeled.icon.buttons .button,
570
+ .ui.compact.labeled.icon.button {
571
+ padding: 0.5892825em 3.69642em 0.5892825em;
572
+ }
573
+
574
+ /*-------------------
575
+ Sizes
576
+ --------------------*/
577
+
578
+ .ui.mini.buttons .button,
579
+ .ui.mini.buttons .or,
580
+ .ui.mini.button {
581
+ font-size: 0.71428571rem;
582
+ }
583
+ .ui.tiny.buttons .button,
584
+ .ui.tiny.buttons .or,
585
+ .ui.tiny.button {
586
+ font-size: 0.85714286rem;
587
+ }
588
+ .ui.small.buttons .button,
589
+ .ui.small.buttons .or,
590
+ .ui.small.button {
591
+ font-size: 0.92857143rem;
592
+ }
593
+ .ui.buttons .button,
594
+ .ui.buttons .or,
595
+ .ui.button {
596
+ font-size: 1rem;
597
+ }
598
+ .ui.large.buttons .button,
599
+ .ui.large.buttons .or,
600
+ .ui.large.button {
601
+ font-size: 1.14285714rem;
602
+ }
603
+ .ui.big.buttons .button,
604
+ .ui.big.buttons .or,
605
+ .ui.big.button {
606
+ font-size: 1.28571429rem;
607
+ }
608
+ .ui.huge.buttons .button,
609
+ .ui.huge.buttons .or,
610
+ .ui.huge.button {
611
+ font-size: 1.42857143rem;
612
+ }
613
+ .ui.massive.buttons .button,
614
+ .ui.massive.buttons .or,
615
+ .ui.massive.button {
616
+ font-size: 1.71428571rem;
617
+ }
618
+
619
+ /*--------------
620
+ Icon Only
621
+ ---------------*/
622
+
623
+ .ui.icon.buttons .button,
624
+ .ui.icon.button {
625
+ padding: 0.78571em 0.78571em 0.78571em;
626
+ }
627
+ .ui.icon.buttons .button > .icon,
628
+ .ui.icon.button > .icon {
629
+ opacity: 0.9;
630
+ margin: 0em;
631
+ vertical-align: top;
632
+ }
633
+
634
+ /*-------------------
635
+ Basic
636
+ --------------------*/
637
+
638
+ .ui.basic.buttons .button,
639
+ .ui.basic.button {
640
+ background: transparent !important;
641
+ background-image: none;
642
+ color: rgba(0, 0, 0, 0.6) !important;
643
+ font-weight: normal;
644
+ border-radius: 0.2857rem;
645
+ text-transform: none;
646
+ text-shadow: none !important;
647
+ box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) inset;
648
+ }
649
+ .ui.basic.buttons {
650
+ box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15);
651
+ border-radius: 0.2857rem;
652
+ }
653
+ .ui.basic.buttons .button {
654
+ border-radius: 0em;
655
+ }
656
+ .ui.basic.buttons .button:hover,
657
+ .ui.basic.button:hover {
658
+ background: #fafafa !important;
659
+ color: rgba(0, 0, 0, 0.8) !important;
660
+ box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) inset, 0px 0px 0px 0px rgba(39, 41, 43, 0.15) inset;
661
+ }
662
+ .ui.basic.buttons .button:active,
663
+ .ui.basic.button:active {
664
+ background: #f8f8f8 !important;
665
+ color: rgba(0, 0, 0, 0.8) !important;
666
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(39, 41, 43, 0.15) inset;
667
+ }
668
+ .ui.basic.buttons .active.button,
669
+ .ui.basic.active.button {
670
+ background: rgba(0, 0, 0, 0.05) !important;
671
+ box-shadow: '' !important;
672
+ color: rgba(0, 0, 0, 0.8);
673
+ box-shadow: rgba(39, 41, 43, 0.3);
674
+ }
675
+ .ui.basic.buttons .active.button:hover,
676
+ .ui.basic.active.button:hover {
677
+ background-color: rgba(0, 0, 0, 0.05);
678
+ }
679
+
680
+ /* Vertical */
681
+ .ui.basic.buttons .button:hover {
682
+ box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) inset, 0px 0px 0px 0px rgba(39, 41, 43, 0.15) inset inset;
683
+ }
684
+ .ui.basic.buttons .button:active {
685
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15) inset, 0px 1px 4px 0px rgba(39, 41, 43, 0.15) inset inset;
686
+ }
687
+ .ui.basic.buttons .active.button {
688
+ box-shadow: rgba(39, 41, 43, 0.3) inset;
689
+ }
690
+
691
+ /* Standard Basic Inverted */
692
+ .ui.basic.inverted.buttons .button,
693
+ .ui.basic.inverted.button {
694
+ background-color: transparent !important;
695
+ color: #fafafa !important;
696
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
697
+ }
698
+ .ui.basic.inverted.buttons .button:hover,
699
+ .ui.basic.inverted.button:hover {
700
+ color: #ffffff !important;
701
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
702
+ }
703
+ .ui.basic.inverted.buttons .button:active,
704
+ .ui.basic.inverted.button:active {
705
+ background-color: rgba(255, 255, 255, 0.05) !important;
706
+ color: #ffffff !important;
707
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.9) inset !important;
708
+ }
709
+ .ui.basic.inverted.buttons .active.button,
710
+ .ui.basic.inverted.active.button {
711
+ background-color: rgba(255, 255, 255, 0.05);
712
+ color: #ffffff;
713
+ text-shadow: none;
714
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.7) inset;
715
+ }
716
+ .ui.basic.inverted.buttons .active.button:hover,
717
+ .ui.basic.inverted.active.button:hover {
718
+ background-color: rgba(255, 255, 255, 0.07);
719
+ box-shadow: 0px 0px 0px 2px #ffffff inset !important;
720
+ }
721
+
722
+ /* Basic Group */
723
+ .ui.basic.buttons .button {
724
+ border-left: 1px solid rgba(39, 41, 43, 0.15);
725
+ box-shadow: none;
726
+ }
727
+ .ui.basic.vertical.buttons .button {
728
+ border-left: none;
729
+ }
730
+ .ui.basic.vertical.buttons .button {
731
+ border-left-width: 0px;
732
+ border-top: 1px solid rgba(39, 41, 43, 0.15);
733
+ }
734
+ .ui.basic.vertical.buttons .button:first-child {
735
+ border-top-width: 0px;
736
+ }
737
+
738
+ /*--------------
739
+ Labeled Icon
740
+ ---------------*/
741
+
742
+ .ui.labeled.icon.buttons .button,
743
+ .ui.labeled.icon.button {
744
+ position: relative;
745
+ padding-left: 4.07142em !important;
746
+ padding-right: 1.5em !important;
747
+ }
748
+
749
+ /* Left Labeled */
750
+ .ui.labeled.icon.buttons > .button > .icon,
751
+ .ui.labeled.icon.button > .icon {
752
+ position: absolute;
753
+ width: 2.57142em;
754
+ height: 100%;
755
+ background-color: rgba(0, 0, 0, 0.05);
756
+ text-align: center;
757
+ color: '';
758
+ border-radius: 0.2857rem 0px 0px 0.2857rem;
759
+ line-height: 1;
760
+ box-shadow: -1px 0px 0px 0px transparent inset;
761
+ }
762
+
763
+ /* Left Labeled */
764
+ .ui.labeled.icon.buttons > .button > .icon,
765
+ .ui.labeled.icon.button > .icon {
766
+ top: 0em;
767
+ left: 0em;
768
+ }
769
+
770
+ /* Right Labeled */
771
+ .ui[class*="right labeled"].icon.button {
772
+ padding-right: 4.07142em !important;
773
+ padding-left: 1.5em !important;
774
+ }
775
+ .ui[class*="right labeled"].icon.button > .icon {
776
+ left: auto;
777
+ right: 0em;
778
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
779
+ box-shadow: 1px 0px 0px 0px transparent inset;
780
+ }
781
+ .ui.labeled.icon.buttons > .button > .icon:before,
782
+ .ui.labeled.icon.button > .icon:before,
783
+ .ui.labeled.icon.buttons > .button > .icon:after,
784
+ .ui.labeled.icon.button > .icon:after {
785
+ display: block;
786
+ position: absolute;
787
+ width: 100%;
788
+ top: 50%;
789
+ text-align: center;
790
+ margin-top: -0.5em;
791
+ }
792
+ .ui.labeled.icon.buttons .button > .icon {
793
+ border-radius: 0em;
794
+ }
795
+ .ui.labeled.icon.buttons .button:first-child > .icon {
796
+ border-top-left-radius: 0.2857rem;
797
+ border-bottom-left-radius: 0.2857rem;
798
+ }
799
+ .ui.labeled.icon.buttons .button:last-child > .icon {
800
+ border-top-right-radius: 0.2857rem;
801
+ border-bottom-right-radius: 0.2857rem;
802
+ }
803
+ .ui.vertical.labeled.icon.buttons .button:first-child > .icon {
804
+ border-radius: 0em;
805
+ border-top-left-radius: 0.2857rem;
806
+ }
807
+ .ui.vertical.labeled.icon.buttons .button:last-child > .icon {
808
+ border-radius: 0em;
809
+ border-bottom-left-radius: 0.2857rem;
810
+ }
811
+
812
+ /* Fluid Labeled */
813
+ .ui.fluid[class*="left labeled"].icon.button,
814
+ .ui.fluid[class*="right labeled"].icon.button {
815
+ padding-left: 1.5em !important;
816
+ padding-right: 1.5em !important;
817
+ }
818
+
819
+ /*--------------
820
+ Toggle
821
+ ---------------*/
822
+
823
+
824
+ /* Toggle (Modifies active state to give affordances) */
825
+ .ui.toggle.buttons .active.button,
826
+ .ui.buttons .button.toggle.active,
827
+ .ui.button.toggle.active {
828
+ background-color: #5bbd72 !important;
829
+ box-shadow: none !important;
830
+ text-shadow: none;
831
+ color: #ffffff !important;
832
+ }
833
+ .ui.button.toggle.active:hover {
834
+ background-color: #66c17b !important;
835
+ text-shadow: none;
836
+ color: #ffffff !important;
837
+ }
838
+
839
+ /*--------------
840
+ Circular
841
+ ---------------*/
842
+
843
+ .ui.circular.button {
844
+ border-radius: 10em;
845
+ }
846
+ .ui.circular.button > .icon {
847
+ width: 1em;
848
+ vertical-align: baseline;
849
+ }
850
+
851
+ /*--------------
852
+ Attached
853
+ ---------------*/
854
+
855
+ .ui.attached.button {
856
+ display: block;
857
+ margin: 0em;
858
+ box-shadow: 0px 0px 0px 1px rgba(39, 41, 43, 0.15) !important;
859
+ border-radius: 0em;
860
+ }
861
+ .ui.attached.top.button {
862
+ border-radius: 0.2857rem 0.2857rem 0em 0em;
863
+ }
864
+ .ui.attached.bottom.button {
865
+ border-radius: 0em 0em 0.2857rem 0.2857rem;
866
+ }
867
+ .ui.attached.left.button {
868
+ display: inline-block;
869
+ border-left: none;
870
+ padding-right: 0.75em;
871
+ text-align: right;
872
+ border-radius: 0.2857rem 0em 0em 0.2857rem;
873
+ }
874
+ .ui.attached.right.button {
875
+ display: inline-block;
876
+ padding-left: 0.75em;
877
+ text-align: left;
878
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
879
+ }
880
+
881
+ /*-------------------
882
+ Or Buttons
883
+ --------------------*/
884
+
885
+ .ui.buttons .or {
886
+ position: relative;
887
+ float: left;
888
+ width: 0.3em;
889
+ height: 2.57142em;
890
+ z-index: 3;
891
+ }
892
+ .ui.buttons .or:before {
893
+ position: absolute;
894
+ text-align: center;
895
+ border-radius: 500rem;
896
+ content: 'or';
897
+ top: 50%;
898
+ left: 50%;
899
+ background-color: #ffffff;
900
+ text-shadow: none;
901
+ margin-top: -0.892855em;
902
+ margin-left: -0.892855em;
903
+ width: 1.78571em;
904
+ height: 1.78571em;
905
+ line-height: 1.78571em;
906
+ color: rgba(0, 0, 0, 0.4);
907
+ font-style: normal;
908
+ font-weight: bold;
909
+ box-shadow: 0px 0px 0px 1px transparent inset;
910
+ }
911
+ .ui.buttons .or[data-text]:before {
912
+ content: attr(data-text);
913
+ }
914
+
915
+ /* Fluid Or */
916
+ .ui.fluid.buttons .or {
917
+ width: 0em !important;
918
+ }
919
+ .ui.fluid.buttons .or:after {
920
+ display: none;
921
+ }
922
+
923
+ /*-------------------
924
+ Attached
925
+ --------------------*/
926
+
927
+
928
+ /* Plural Attached */
929
+ .attached.ui.buttons {
930
+ margin: 0px;
931
+ border-radius: 0em 0em 0em 0em;
932
+ }
933
+ .attached.ui.buttons .button {
934
+ margin: 0em;
935
+ }
936
+ .attached.ui.buttons .button:first-child {
937
+ border-radius: 0em 0em 0em 0em;
938
+ }
939
+ .attached.ui.buttons .button:last-child {
940
+ border-radius: 0em 0em 0em 0em;
941
+ }
942
+
943
+ /* Top Side */
944
+ [class*="top attached"].ui.buttons {
945
+ margin-bottom: -1px;
946
+ border-radius: 0.2857rem 0.2857rem 0em 0em;
947
+ }
948
+ [class*="top attached"].ui.buttons .button:first-child {
949
+ border-radius: 0.2857rem 0em 0em 0em;
950
+ }
951
+ [class*="top attached"].ui.buttons .button:last-child {
952
+ border-radius: 0em 0.2857rem 0em 0em;
953
+ }
954
+
955
+ /* Bottom Side */
956
+ [class*="bottom attached"].ui.buttons {
957
+ margin-top: -1px;
958
+ border-radius: 0em 0em 0.2857rem 0.2857rem;
959
+ }
960
+ [class*="bottom attached"].ui.buttons .button:first-child {
961
+ border-radius: 0em 0em 0em 0.2857rem;
962
+ }
963
+ [class*="bottom attached"].ui.buttons .button:last-child {
964
+ border-radius: 0em 0em 0.2857rem 0em;
965
+ }
966
+
967
+ /* Left Side */
968
+ [class*="left attached"].ui.buttons {
969
+ margin-left: -1px;
970
+ border-radius: 0em 0.2857rem 0.2857rem 0em;
971
+ }
972
+ [class*="left attached"].ui.buttons .button:first-child {
973
+ margin-left: -1px;
974
+ border-radius: 0em 0.2857rem 0em 0em;
975
+ }
976
+ [class*="left attached"].ui.buttons .button:last-child {
977
+ margin-left: -1px;
978
+ border-radius: 0em 0em 0.2857rem 0em;
979
+ }
980
+
981
+ /* Right Side */
982
+ [class*="right attached"].ui.buttons,
983
+ [class*="right attached"].ui.buttons .button {
984
+ margin-right: -1px;
985
+ border-radius: 0.2857rem 0em 0em 0.2857rem;
986
+ }
987
+ [class*="right attached"].ui.buttons .button:first-child {
988
+ margin-left: -1px;
989
+ border-radius: 0.2857rem 0em 0em 0em;
990
+ }
991
+ [class*="right attached"].ui.buttons .button:last-child {
992
+ margin-left: -1px;
993
+ border-radius: 0em 0em 0em 0.2857rem;
994
+ }
995
+
996
+ /* Fluid */
997
+ .ui.fluid.buttons,
998
+ .ui.button.fluid,
999
+ .ui.fluid.buttons > .button {
1000
+ display: block;
1001
+ width: 100%;
1002
+ }
1003
+ .ui.\32.buttons,
1004
+ .ui.two.buttons {
1005
+ width: 100%;
1006
+ }
1007
+ .ui.\32.buttons > .button,
1008
+ .ui.two.buttons > .button {
1009
+ width: 50%;
1010
+ }
1011
+ .ui.\33.buttons,
1012
+ .ui.three.buttons {
1013
+ width: 100%;
1014
+ }
1015
+ .ui.\33.buttons > .button,
1016
+ .ui.three.buttons > .button {
1017
+ width: 33.333%;
1018
+ }
1019
+ .ui.\34.buttons,
1020
+ .ui.four.buttons {
1021
+ width: 100%;
1022
+ }
1023
+ .ui.\34.buttons > .button,
1024
+ .ui.four.buttons > .button {
1025
+ width: 25%;
1026
+ }
1027
+ .ui.\35.buttons,
1028
+ .ui.five.buttons {
1029
+ width: 100%;
1030
+ }
1031
+ .ui.\35.buttons > .button,
1032
+ .ui.five.buttons > .button {
1033
+ width: 20%;
1034
+ }
1035
+ .ui.\36.buttons,
1036
+ .ui.six.buttons {
1037
+ width: 100%;
1038
+ }
1039
+ .ui.\36.buttons > .button,
1040
+ .ui.six.buttons > .button {
1041
+ width: 16.666%;
1042
+ }
1043
+ .ui.\37.buttons,
1044
+ .ui.seven.buttons {
1045
+ width: 100%;
1046
+ }
1047
+ .ui.\37.buttons > .button,
1048
+ .ui.seven.buttons > .button {
1049
+ width: 14.285%;
1050
+ }
1051
+ .ui.\38.buttons,
1052
+ .ui.eight.buttons {
1053
+ width: 100%;
1054
+ }
1055
+ .ui.\38.buttons > .button,
1056
+ .ui.eight.buttons > .button {
1057
+ width: 12.500%;
1058
+ }
1059
+ .ui.\39.buttons,
1060
+ .ui.nine.buttons {
1061
+ width: 100%;
1062
+ }
1063
+ .ui.\39.buttons > .button,
1064
+ .ui.nine.buttons > .button {
1065
+ width: 11.11%;
1066
+ }
1067
+ .ui.\31\30.buttons,
1068
+ .ui.ten.buttons {
1069
+ width: 100%;
1070
+ }
1071
+ .ui.\31\30.buttons > .button,
1072
+ .ui.ten.buttons > .button {
1073
+ width: 10%;
1074
+ }
1075
+ .ui.\31\31.buttons,
1076
+ .ui.eleven.buttons {
1077
+ width: 100%;
1078
+ }
1079
+ .ui.\31\31.buttons > .button,
1080
+ .ui.eleven.buttons > .button {
1081
+ width: 9.09%;
1082
+ }
1083
+ .ui.\31\32.buttons,
1084
+ .ui.twelve.buttons {
1085
+ width: 100%;
1086
+ }
1087
+ .ui.\31\32.buttons > .button,
1088
+ .ui.twelve.buttons > .button {
1089
+ width: 8.3333%;
1090
+ }
1091
+
1092
+ /* Fluid Vertical Buttons */
1093
+ .ui.fluid.vertical.buttons,
1094
+ .ui.fluid.vertical.buttons > .button {
1095
+ display: block;
1096
+ width: auto;
1097
+ }
1098
+ .ui.\32.vertical.buttons > .button,
1099
+ .ui.two.vertical.buttons > .button {
1100
+ height: 50%;
1101
+ }
1102
+ .ui.\33.vertical.buttons > .button,
1103
+ .ui.three.vertical.buttons > .button {
1104
+ height: 33.333%;
1105
+ }
1106
+ .ui.\34.vertical.buttons > .button,
1107
+ .ui.four.vertical.buttons > .button {
1108
+ height: 25%;
1109
+ }
1110
+ .ui.\35.vertical.buttons > .button,
1111
+ .ui.five.vertical.buttons > .button {
1112
+ height: 20%;
1113
+ }
1114
+ .ui.\36.vertical.buttons > .button,
1115
+ .ui.six.vertical.buttons > .button {
1116
+ height: 16.666%;
1117
+ }
1118
+ .ui.\37.vertical.buttons > .button,
1119
+ .ui.seven.vertical.buttons > .button {
1120
+ height: 14.285%;
1121
+ }
1122
+ .ui.\38.vertical.buttons > .button,
1123
+ .ui.eight.vertical.buttons > .button {
1124
+ height: 12.500%;
1125
+ }
1126
+ .ui.\39.vertical.buttons > .button,
1127
+ .ui.nine.vertical.buttons > .button {
1128
+ height: 11.11%;
1129
+ }
1130
+ .ui.\31\30.vertical.buttons > .button,
1131
+ .ui.ten.vertical.buttons > .button {
1132
+ height: 10%;
1133
+ }
1134
+ .ui.\31\31.vertical.buttons > .button,
1135
+ .ui.eleven.vertical.buttons > .button {
1136
+ height: 9.09%;
1137
+ }
1138
+ .ui.\31\32.vertical.buttons > .button,
1139
+ .ui.twelve.vertical.buttons > .button {
1140
+ height: 8.3333%;
1141
+ }
1142
+
1143
+ /*-------------------
1144
+ Colors
1145
+ --------------------*/
1146
+
1147
+
1148
+ /*--- Black ---*/
1149
+
1150
+ .ui.black.buttons .button,
1151
+ .ui.black.button {
1152
+ background-color: #1b1c1d;
1153
+ color: #ffffff;
1154
+ text-shadow: none;
1155
+ background-image: none;
1156
+ }
1157
+ .ui.black.button {
1158
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1159
+ }
1160
+ .ui.black.buttons .button:hover,
1161
+ .ui.black.button:hover {
1162
+ background-color: #1b1c1d;
1163
+ color: #ffffff;
1164
+ text-shadow: none;
1165
+ }
1166
+ .ui.black.buttons .button:active,
1167
+ .ui.black.button:active {
1168
+ background-color: #0a0a0b;
1169
+ color: #ffffff;
1170
+ text-shadow: none;
1171
+ }
1172
+ .ui.black.buttons .active.button,
1173
+ .ui.black.buttons .active.button:active,
1174
+ .ui.black.active.button,
1175
+ .ui.black.button .active.button:active {
1176
+ background-color: #0f0f10;
1177
+ color: #ffffff;
1178
+ text-shadow: none;
1179
+ }
1180
+
1181
+ /* Basic */
1182
+ .ui.basic.black.buttons .button,
1183
+ .ui.basic.black.button {
1184
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1185
+ color: rgba(0, 0, 0, 0.6) !important;
1186
+ }
1187
+ .ui.basic.black.buttons .button:hover,
1188
+ .ui.basic.black.button:hover {
1189
+ background: transparent !important;
1190
+ box-shadow: 0px 0px 0px 2px #1b1c1d inset !important;
1191
+ color: #1b1c1d !important;
1192
+ }
1193
+ .ui.basic.black.buttons .button:active,
1194
+ .ui.basic.black.button:active {
1195
+ box-shadow: 0px 0px 0px 2px #0a0a0b inset !important;
1196
+ color: #0a0a0b !important;
1197
+ }
1198
+ .ui.basic.black.buttons .active.button,
1199
+ .ui.basic.black.active.button {
1200
+ background: transparent !important;
1201
+ box-shadow: 0px 0px 0px 2px #0a0a0b inset !important;
1202
+ color: #0a0a0b !important;
1203
+ }
1204
+ .ui.buttons > .basic.black.button:not(:first-child) {
1205
+ margin-left: -2px;
1206
+ }
1207
+
1208
+ /* Inverted */
1209
+ .ui.inverted.black.buttons .button,
1210
+ .ui.inverted.black.button {
1211
+ background-color: transparent;
1212
+ box-shadow: 0px 0px 0px 2px #d4d4d5 inset !important;
1213
+ color: #ffffff;
1214
+ }
1215
+ .ui.inverted.black.buttons .button:hover,
1216
+ .ui.inverted.black.button:hover {
1217
+ box-shadow: 0px 0px 0px 2px #333333 inset !important;
1218
+ background-color: #333333;
1219
+ color: #ffffff;
1220
+ }
1221
+ .ui.inverted.black.buttons .active.button,
1222
+ .ui.inverted.black.active.button {
1223
+ box-shadow: 0px 0px 0px 2px #333333 inset !important;
1224
+ background-color: #333333;
1225
+ color: #ffffff;
1226
+ }
1227
+ .ui.inverted.black.buttons .button:active,
1228
+ .ui.inverted.black.button:active {
1229
+ box-shadow: 0px 0px 0px 2px #212121 inset !important;
1230
+ background-color: #212121;
1231
+ color: #ffffff;
1232
+ }
1233
+
1234
+ /* Inverted Basic */
1235
+ .ui.inverted.black.basic.buttons .button,
1236
+ .ui.inverted.black.buttons .basic.button,
1237
+ .ui.inverted.black.basic.button {
1238
+ background-color: transparent;
1239
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1240
+ color: #ffffff !important;
1241
+ }
1242
+ .ui.inverted.black.basic.buttons .button:hover,
1243
+ .ui.inverted.black.buttons .basic.button:hover,
1244
+ .ui.inverted.black.basic.button:hover {
1245
+ box-shadow: 0px 0px 0px 2px #333333 inset !important;
1246
+ color: #ffffff !important;
1247
+ }
1248
+ .ui.inverted.black.basic.buttons .active.button,
1249
+ .ui.inverted.black.buttons .basic.active.button,
1250
+ .ui.inverted.black.basic.active.button {
1251
+ box-shadow: 0px 0px 0px 2px #333333 inset !important;
1252
+ color: #ffffff !important;
1253
+ }
1254
+ .ui.inverted.black.basic.buttons .button:active,
1255
+ .ui.inverted.black.buttons .basic.button:active,
1256
+ .ui.inverted.black.basic.button:active {
1257
+ box-shadow: 0px 0px 0px 2px #212121 inset !important;
1258
+ color: #ffffff !important;
1259
+ }
1260
+
1261
+ /*--- Blue ---*/
1262
+
1263
+ .ui.blue.buttons .button,
1264
+ .ui.blue.button {
1265
+ background-color: #3b83c0;
1266
+ color: #ffffff;
1267
+ text-shadow: none;
1268
+ background-image: none;
1269
+ }
1270
+ .ui.blue.button {
1271
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1272
+ }
1273
+ .ui.blue.buttons .button:hover,
1274
+ .ui.blue.button:hover {
1275
+ background-color: #458ac6;
1276
+ color: #ffffff;
1277
+ text-shadow: none;
1278
+ }
1279
+ .ui.blue.buttons .button:active,
1280
+ .ui.blue.button:active {
1281
+ background-color: #3370a5;
1282
+ color: #ffffff;
1283
+ text-shadow: none;
1284
+ }
1285
+ .ui.blue.buttons .active.button,
1286
+ .ui.blue.buttons .active.button:active,
1287
+ .ui.blue.active.button,
1288
+ .ui.blue.button .active.button:active {
1289
+ background-color: #3576ac;
1290
+ color: #ffffff;
1291
+ text-shadow: none;
1292
+ }
1293
+
1294
+ /* Basic */
1295
+ .ui.basic.blue.buttons .button,
1296
+ .ui.basic.blue.button {
1297
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1298
+ color: rgba(0, 0, 0, 0.6) !important;
1299
+ }
1300
+ .ui.basic.blue.buttons .button:hover,
1301
+ .ui.basic.blue.button:hover {
1302
+ background: transparent !important;
1303
+ box-shadow: 0px 0px 0px 2px #458ac6 inset !important;
1304
+ color: #458ac6 !important;
1305
+ }
1306
+ .ui.basic.blue.buttons .button:active,
1307
+ .ui.basic.blue.button:active {
1308
+ box-shadow: 0px 0px 0px 2px #3370a5 inset !important;
1309
+ color: #3370a5 !important;
1310
+ }
1311
+ .ui.basic.blue.buttons .active.button,
1312
+ .ui.basic.blue.active.button {
1313
+ background: transparent !important;
1314
+ box-shadow: 0px 0px 0px 2px #3370a5 inset !important;
1315
+ color: #3370a5 !important;
1316
+ }
1317
+ .ui.buttons > .basic.blue.button:not(:first-child) {
1318
+ margin-left: -2px;
1319
+ }
1320
+
1321
+ /* Inverted */
1322
+ .ui.inverted.blue.buttons .button,
1323
+ .ui.inverted.blue.button {
1324
+ background-color: transparent;
1325
+ box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
1326
+ color: #54c8ff;
1327
+ }
1328
+ .ui.inverted.blue.buttons .button:hover,
1329
+ .ui.inverted.blue.button:hover {
1330
+ box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
1331
+ background-color: #54c8ff;
1332
+ color: #ffffff;
1333
+ }
1334
+ .ui.inverted.blue.buttons .active.button,
1335
+ .ui.inverted.blue.active.button {
1336
+ box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
1337
+ background-color: #54c8ff;
1338
+ color: #ffffff;
1339
+ }
1340
+ .ui.inverted.blue.buttons .button:active,
1341
+ .ui.inverted.blue.button:active {
1342
+ box-shadow: 0px 0px 0px 2px #30bdff inset !important;
1343
+ background-color: #30bdff;
1344
+ color: #ffffff;
1345
+ }
1346
+
1347
+ /* Inverted Basic */
1348
+ .ui.inverted.blue.basic.buttons .button,
1349
+ .ui.inverted.blue.buttons .basic.button,
1350
+ .ui.inverted.blue.basic.button {
1351
+ background-color: transparent;
1352
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1353
+ color: #ffffff !important;
1354
+ }
1355
+ .ui.inverted.blue.basic.buttons .button:hover,
1356
+ .ui.inverted.blue.buttons .basic.button:hover,
1357
+ .ui.inverted.blue.basic.button:hover {
1358
+ box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
1359
+ color: #54c8ff !important;
1360
+ }
1361
+ .ui.inverted.blue.basic.buttons .active.button,
1362
+ .ui.inverted.blue.buttons .basic.active.button,
1363
+ .ui.inverted.blue.basic.active.button {
1364
+ box-shadow: 0px 0px 0px 2px #54c8ff inset !important;
1365
+ color: #54c8ff !important;
1366
+ }
1367
+ .ui.inverted.blue.basic.buttons .button:active,
1368
+ .ui.inverted.blue.buttons .basic.button:active,
1369
+ .ui.inverted.blue.basic.button:active {
1370
+ box-shadow: 0px 0px 0px 2px #30bdff inset !important;
1371
+ color: #54c8ff !important;
1372
+ }
1373
+
1374
+ /*--- Green ---*/
1375
+
1376
+ .ui.green.buttons .button,
1377
+ .ui.green.button {
1378
+ background-color: #5bbd72;
1379
+ color: #ffffff;
1380
+ text-shadow: none;
1381
+ background-image: none;
1382
+ }
1383
+ .ui.green.button {
1384
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1385
+ }
1386
+ .ui.green.buttons .button:hover,
1387
+ .ui.green.button:hover {
1388
+ background-color: #66c17b;
1389
+ color: #ffffff;
1390
+ text-shadow: none;
1391
+ }
1392
+ .ui.green.buttons .button:active,
1393
+ .ui.green.button:active {
1394
+ background-color: #46ae5f;
1395
+ color: #ffffff;
1396
+ text-shadow: none;
1397
+ }
1398
+ .ui.green.buttons .active.button,
1399
+ .ui.green.buttons .active.button:active,
1400
+ .ui.green.active.button,
1401
+ .ui.green.button .active.button:active {
1402
+ background-color: #49b562;
1403
+ color: #ffffff;
1404
+ text-shadow: none;
1405
+ }
1406
+
1407
+ /* Basic */
1408
+ .ui.basic.green.buttons .button,
1409
+ .ui.basic.green.button {
1410
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1411
+ color: rgba(0, 0, 0, 0.6) !important;
1412
+ }
1413
+ .ui.basic.green.buttons .button:hover,
1414
+ .ui.basic.green.button:hover {
1415
+ background: transparent !important;
1416
+ box-shadow: 0px 0px 0px 2px #66c17b inset !important;
1417
+ color: #66c17b !important;
1418
+ }
1419
+ .ui.basic.green.buttons .button:active,
1420
+ .ui.basic.green.button:active {
1421
+ box-shadow: 0px 0px 0px 2px #46ae5f inset !important;
1422
+ color: #46ae5f !important;
1423
+ }
1424
+ .ui.basic.green.buttons .active.button,
1425
+ .ui.basic.green.active.button {
1426
+ background: transparent !important;
1427
+ box-shadow: 0px 0px 0px 2px #46ae5f inset !important;
1428
+ color: #46ae5f !important;
1429
+ }
1430
+ .ui.buttons > .basic.green.button:not(:first-child) {
1431
+ margin-left: -2px;
1432
+ }
1433
+
1434
+ /* Inverted */
1435
+ .ui.inverted.green.buttons .button,
1436
+ .ui.inverted.green.button {
1437
+ background-color: transparent;
1438
+ box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
1439
+ color: #2ecc40;
1440
+ }
1441
+ .ui.inverted.green.buttons .button:hover,
1442
+ .ui.inverted.green.button:hover {
1443
+ box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
1444
+ background-color: #2ecc40;
1445
+ color: #ffffff;
1446
+ }
1447
+ .ui.inverted.green.buttons .active.button,
1448
+ .ui.inverted.green.active.button {
1449
+ box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
1450
+ background-color: #2ecc40;
1451
+ color: #ffffff;
1452
+ }
1453
+ .ui.inverted.green.buttons .button:active,
1454
+ .ui.inverted.green.button:active {
1455
+ box-shadow: 0px 0px 0px 2px #27af37 inset !important;
1456
+ background-color: #27af37;
1457
+ color: #ffffff;
1458
+ }
1459
+
1460
+ /* Inverted Basic */
1461
+ .ui.inverted.green.basic.buttons .button,
1462
+ .ui.inverted.green.buttons .basic.button,
1463
+ .ui.inverted.green.basic.button {
1464
+ background-color: transparent;
1465
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1466
+ color: #ffffff !important;
1467
+ }
1468
+ .ui.inverted.green.basic.buttons .button:hover,
1469
+ .ui.inverted.green.buttons .basic.button:hover,
1470
+ .ui.inverted.green.basic.button:hover {
1471
+ box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
1472
+ color: #2ecc40 !important;
1473
+ }
1474
+ .ui.inverted.green.basic.buttons .active.button,
1475
+ .ui.inverted.green.buttons .basic.active.button,
1476
+ .ui.inverted.green.basic.active.button {
1477
+ box-shadow: 0px 0px 0px 2px #2ecc40 inset !important;
1478
+ color: #2ecc40 !important;
1479
+ }
1480
+ .ui.inverted.green.basic.buttons .button:active,
1481
+ .ui.inverted.green.buttons .basic.button:active,
1482
+ .ui.inverted.green.basic.button:active {
1483
+ box-shadow: 0px 0px 0px 2px #27af37 inset !important;
1484
+ color: #2ecc40 !important;
1485
+ }
1486
+
1487
+ /*--- Orange ---*/
1488
+
1489
+ .ui.orange.buttons .button,
1490
+ .ui.orange.button {
1491
+ background-color: #e07b53;
1492
+ color: #ffffff;
1493
+ text-shadow: none;
1494
+ background-image: none;
1495
+ }
1496
+ .ui.orange.button {
1497
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1498
+ }
1499
+ .ui.orange.buttons .button:hover,
1500
+ .ui.orange.button:hover {
1501
+ background-color: #e28560;
1502
+ color: #ffffff;
1503
+ text-shadow: none;
1504
+ }
1505
+ .ui.orange.buttons .button:active,
1506
+ .ui.orange.button:active {
1507
+ background-color: #db6435;
1508
+ color: #ffffff;
1509
+ text-shadow: none;
1510
+ }
1511
+ .ui.orange.buttons .active.button,
1512
+ .ui.orange.buttons .active.button:active,
1513
+ .ui.orange.active.button,
1514
+ .ui.orange.button .active.button:active {
1515
+ background-color: #dc6a3d;
1516
+ color: #ffffff;
1517
+ text-shadow: none;
1518
+ }
1519
+
1520
+ /* Basic */
1521
+ .ui.basic.orange.buttons .button,
1522
+ .ui.basic.orange.button {
1523
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1524
+ color: rgba(0, 0, 0, 0.6) !important;
1525
+ }
1526
+ .ui.basic.orange.buttons .button:hover,
1527
+ .ui.basic.orange.button:hover {
1528
+ background: transparent !important;
1529
+ box-shadow: 0px 0px 0px 2px #e28560 inset !important;
1530
+ color: #e28560 !important;
1531
+ }
1532
+ .ui.basic.orange.buttons .button:active,
1533
+ .ui.basic.orange.button:active {
1534
+ box-shadow: 0px 0px 0px 2px #db6435 inset !important;
1535
+ color: #db6435 !important;
1536
+ }
1537
+ .ui.basic.orange.buttons .active.button,
1538
+ .ui.basic.orange.active.button {
1539
+ background: transparent !important;
1540
+ box-shadow: 0px 0px 0px 2px #db6435 inset !important;
1541
+ color: #db6435 !important;
1542
+ }
1543
+ .ui.buttons > .basic.orange.button:not(:first-child) {
1544
+ margin-left: -2px;
1545
+ }
1546
+
1547
+ /* Inverted */
1548
+ .ui.inverted.orange.buttons .button,
1549
+ .ui.inverted.orange.button {
1550
+ background-color: transparent;
1551
+ box-shadow: 0px 0px 0px 2px #ff851b inset !important;
1552
+ color: #ff851b;
1553
+ }
1554
+ .ui.inverted.orange.buttons .button:hover,
1555
+ .ui.inverted.orange.button:hover {
1556
+ box-shadow: 0px 0px 0px 2px #ff851b inset !important;
1557
+ background-color: #ff851b;
1558
+ color: #ffffff;
1559
+ }
1560
+ .ui.inverted.orange.buttons .active.button,
1561
+ .ui.inverted.orange.active.button {
1562
+ box-shadow: 0px 0px 0px 2px #ff851b inset !important;
1563
+ background-color: #ff851b;
1564
+ color: #ffffff;
1565
+ }
1566
+ .ui.inverted.orange.buttons .button:active,
1567
+ .ui.inverted.orange.button:active {
1568
+ box-shadow: 0px 0px 0px 2px #f67300 inset !important;
1569
+ background-color: #f67300;
1570
+ color: #ffffff;
1571
+ }
1572
+
1573
+ /* Inverted Basic */
1574
+ .ui.inverted.orange.basic.buttons .button,
1575
+ .ui.inverted.orange.buttons .basic.button,
1576
+ .ui.inverted.orange.basic.button {
1577
+ background-color: transparent;
1578
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1579
+ color: #ffffff !important;
1580
+ }
1581
+ .ui.inverted.orange.basic.buttons .button:hover,
1582
+ .ui.inverted.orange.buttons .basic.button:hover,
1583
+ .ui.inverted.orange.basic.button:hover {
1584
+ box-shadow: 0px 0px 0px 2px #ff851b inset !important;
1585
+ color: #ff851b !important;
1586
+ }
1587
+ .ui.inverted.orange.basic.buttons .active.button,
1588
+ .ui.inverted.orange.buttons .basic.active.button,
1589
+ .ui.inverted.orange.basic.active.button {
1590
+ box-shadow: 0px 0px 0px 2px #ff851b inset !important;
1591
+ color: #ff851b !important;
1592
+ }
1593
+ .ui.inverted.orange.basic.buttons .button:active,
1594
+ .ui.inverted.orange.buttons .basic.button:active,
1595
+ .ui.inverted.orange.basic.button:active {
1596
+ box-shadow: 0px 0px 0px 2px #f67300 inset !important;
1597
+ color: #ff851b !important;
1598
+ }
1599
+
1600
+ /*--- Pink ---*/
1601
+
1602
+ .ui.pink.buttons .button,
1603
+ .ui.pink.button {
1604
+ background-color: #d9499a;
1605
+ color: #ffffff;
1606
+ text-shadow: none;
1607
+ background-image: none;
1608
+ }
1609
+ .ui.pink.button {
1610
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1611
+ }
1612
+ .ui.pink.buttons .button:hover,
1613
+ .ui.pink.button:hover {
1614
+ background-color: #dc56a1;
1615
+ color: #ffffff;
1616
+ text-shadow: none;
1617
+ }
1618
+ .ui.pink.buttons .button:active,
1619
+ .ui.pink.button:active {
1620
+ background-color: #d22c8a;
1621
+ color: #ffffff;
1622
+ text-shadow: none;
1623
+ }
1624
+ .ui.pink.buttons .active.button,
1625
+ .ui.pink.buttons .active.button:active,
1626
+ .ui.pink.active.button,
1627
+ .ui.pink.button .active.button:active {
1628
+ background-color: #d5348e;
1629
+ color: #ffffff;
1630
+ text-shadow: none;
1631
+ }
1632
+
1633
+ /* Basic */
1634
+ .ui.basic.pink.buttons .button,
1635
+ .ui.basic.pink.button {
1636
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1637
+ color: rgba(0, 0, 0, 0.6) !important;
1638
+ }
1639
+ .ui.basic.pink.buttons .button:hover,
1640
+ .ui.basic.pink.button:hover {
1641
+ background: transparent !important;
1642
+ box-shadow: 0px 0px 0px 2px #dc56a1 inset !important;
1643
+ color: #dc56a1 !important;
1644
+ }
1645
+ .ui.basic.pink.buttons .button:active,
1646
+ .ui.basic.pink.button:active {
1647
+ box-shadow: 0px 0px 0px 2px #d22c8a inset !important;
1648
+ color: #d22c8a !important;
1649
+ }
1650
+ .ui.basic.pink.buttons .active.button,
1651
+ .ui.basic.pink.active.button {
1652
+ background: transparent !important;
1653
+ box-shadow: 0px 0px 0px 2px #d22c8a inset !important;
1654
+ color: #d22c8a !important;
1655
+ }
1656
+ .ui.buttons > .basic.pink.button:not(:first-child) {
1657
+ margin-left: -2px;
1658
+ }
1659
+
1660
+ /* Inverted */
1661
+ .ui.inverted.pink.buttons .button,
1662
+ .ui.inverted.pink.button {
1663
+ background-color: transparent;
1664
+ box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
1665
+ color: #ff8edf;
1666
+ }
1667
+ .ui.inverted.pink.buttons .button:hover,
1668
+ .ui.inverted.pink.button:hover {
1669
+ box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
1670
+ background-color: #ff8edf;
1671
+ color: #ffffff;
1672
+ }
1673
+ .ui.inverted.pink.buttons .active.button,
1674
+ .ui.inverted.pink.active.button {
1675
+ box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
1676
+ background-color: #ff8edf;
1677
+ color: #ffffff;
1678
+ }
1679
+ .ui.inverted.pink.buttons .button:active,
1680
+ .ui.inverted.pink.button:active {
1681
+ box-shadow: 0px 0px 0px 2px #ff6ad5 inset !important;
1682
+ background-color: #ff6ad5;
1683
+ color: #ffffff;
1684
+ }
1685
+
1686
+ /* Inverted Basic */
1687
+ .ui.inverted.pink.basic.buttons .button,
1688
+ .ui.inverted.pink.buttons .basic.button,
1689
+ .ui.inverted.pink.basic.button {
1690
+ background-color: transparent;
1691
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1692
+ color: #ffffff !important;
1693
+ }
1694
+ .ui.inverted.pink.basic.buttons .button:hover,
1695
+ .ui.inverted.pink.buttons .basic.button:hover,
1696
+ .ui.inverted.pink.basic.button:hover {
1697
+ box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
1698
+ color: #ff8edf !important;
1699
+ }
1700
+ .ui.inverted.pink.basic.buttons .active.button,
1701
+ .ui.inverted.pink.buttons .basic.active.button,
1702
+ .ui.inverted.pink.basic.active.button {
1703
+ box-shadow: 0px 0px 0px 2px #ff8edf inset !important;
1704
+ color: #ff8edf !important;
1705
+ }
1706
+ .ui.inverted.pink.basic.buttons .button:active,
1707
+ .ui.inverted.pink.buttons .basic.button:active,
1708
+ .ui.inverted.pink.basic.button:active {
1709
+ box-shadow: 0px 0px 0px 2px #ff6ad5 inset !important;
1710
+ color: #ff8edf !important;
1711
+ }
1712
+
1713
+ /*--- Purple ---*/
1714
+
1715
+ .ui.purple.buttons .button,
1716
+ .ui.purple.button {
1717
+ background-color: #564f8a;
1718
+ color: #ffffff;
1719
+ text-shadow: none;
1720
+ background-image: none;
1721
+ }
1722
+ .ui.purple.button {
1723
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1724
+ }
1725
+ .ui.purple.buttons .button:hover,
1726
+ .ui.purple.button:hover {
1727
+ background-color: #5c5594;
1728
+ color: #ffffff;
1729
+ text-shadow: none;
1730
+ }
1731
+ .ui.purple.buttons .button:active,
1732
+ .ui.purple.button:active {
1733
+ background-color: #484273;
1734
+ color: #ffffff;
1735
+ text-shadow: none;
1736
+ }
1737
+ .ui.purple.buttons .active.button,
1738
+ .ui.purple.buttons .active.button:active,
1739
+ .ui.purple.active.button,
1740
+ .ui.purple.button .active.button:active {
1741
+ background-color: #4c467a;
1742
+ color: #ffffff;
1743
+ text-shadow: none;
1744
+ }
1745
+
1746
+ /* Basic */
1747
+ .ui.basic.purple.buttons .button,
1748
+ .ui.basic.purple.button {
1749
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1750
+ color: rgba(0, 0, 0, 0.6) !important;
1751
+ }
1752
+ .ui.basic.purple.buttons .button:hover,
1753
+ .ui.basic.purple.button:hover {
1754
+ background: transparent !important;
1755
+ box-shadow: 0px 0px 0px 2px #5c5594 inset !important;
1756
+ color: #5c5594 !important;
1757
+ }
1758
+ .ui.basic.purple.buttons .button:active,
1759
+ .ui.basic.purple.button:active {
1760
+ box-shadow: 0px 0px 0px 2px #484273 inset !important;
1761
+ color: #484273 !important;
1762
+ }
1763
+ .ui.basic.purple.buttons .active.button,
1764
+ .ui.basic.purple.active.button {
1765
+ background: transparent !important;
1766
+ box-shadow: 0px 0px 0px 2px #484273 inset !important;
1767
+ color: #484273 !important;
1768
+ }
1769
+ .ui.buttons > .basic.purple.button:not(:first-child) {
1770
+ margin-left: -2px;
1771
+ }
1772
+
1773
+ /* Inverted */
1774
+ .ui.inverted.purple.buttons .button,
1775
+ .ui.inverted.purple.button {
1776
+ background-color: transparent;
1777
+ box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
1778
+ color: #cdc6ff;
1779
+ }
1780
+ .ui.inverted.purple.buttons .button:hover,
1781
+ .ui.inverted.purple.button:hover {
1782
+ box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
1783
+ background-color: #cdc6ff;
1784
+ color: #1b1c1d;
1785
+ }
1786
+ .ui.inverted.purple.buttons .active.button,
1787
+ .ui.inverted.purple.active.button {
1788
+ box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
1789
+ background-color: #cdc6ff;
1790
+ color: #1b1c1d;
1791
+ }
1792
+ .ui.inverted.purple.buttons .button:active,
1793
+ .ui.inverted.purple.button:active {
1794
+ box-shadow: 0px 0px 0px 2px #aea2ff inset !important;
1795
+ background-color: #aea2ff;
1796
+ color: #1b1c1d;
1797
+ }
1798
+
1799
+ /* Inverted Basic */
1800
+ .ui.inverted.purple.basic.buttons .button,
1801
+ .ui.inverted.purple.buttons .basic.button,
1802
+ .ui.inverted.purple.basic.button {
1803
+ background-color: transparent;
1804
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1805
+ color: #ffffff !important;
1806
+ }
1807
+ .ui.inverted.purple.basic.buttons .button:hover,
1808
+ .ui.inverted.purple.buttons .basic.button:hover,
1809
+ .ui.inverted.purple.basic.button:hover {
1810
+ box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
1811
+ color: #cdc6ff !important;
1812
+ }
1813
+ .ui.inverted.purple.basic.buttons .active.button,
1814
+ .ui.inverted.purple.buttons .basic.active.button,
1815
+ .ui.inverted.purple.basic.active.button {
1816
+ box-shadow: 0px 0px 0px 2px #cdc6ff inset !important;
1817
+ color: #cdc6ff !important;
1818
+ }
1819
+ .ui.inverted.purple.basic.buttons .button:active,
1820
+ .ui.inverted.purple.buttons .basic.button:active,
1821
+ .ui.inverted.purple.basic.button:active {
1822
+ box-shadow: 0px 0px 0px 2px #aea2ff inset !important;
1823
+ color: #cdc6ff !important;
1824
+ }
1825
+
1826
+ /*--- Red ---*/
1827
+
1828
+ .ui.red.buttons .button,
1829
+ .ui.red.button {
1830
+ background-color: #d95c5c;
1831
+ color: #ffffff;
1832
+ text-shadow: none;
1833
+ background-image: none;
1834
+ }
1835
+ .ui.red.button {
1836
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1837
+ }
1838
+ .ui.red.buttons .button:hover,
1839
+ .ui.red.button:hover {
1840
+ background-color: #dc6868;
1841
+ color: #ffffff;
1842
+ text-shadow: none;
1843
+ }
1844
+ .ui.red.buttons .button:active,
1845
+ .ui.red.button:active {
1846
+ background-color: #d23f3f;
1847
+ color: #ffffff;
1848
+ text-shadow: none;
1849
+ }
1850
+ .ui.red.buttons .active.button,
1851
+ .ui.red.buttons .active.button:active,
1852
+ .ui.red.active.button,
1853
+ .ui.red.button .active.button:active {
1854
+ background-color: #d44747;
1855
+ color: #ffffff;
1856
+ text-shadow: none;
1857
+ }
1858
+
1859
+ /* Basic */
1860
+ .ui.basic.red.buttons .button,
1861
+ .ui.basic.red.button {
1862
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1863
+ color: rgba(0, 0, 0, 0.6) !important;
1864
+ }
1865
+ .ui.basic.red.buttons .button:hover,
1866
+ .ui.basic.red.button:hover {
1867
+ background: transparent !important;
1868
+ box-shadow: 0px 0px 0px 2px #dc6868 inset !important;
1869
+ color: #dc6868 !important;
1870
+ }
1871
+ .ui.basic.red.buttons .button:active,
1872
+ .ui.basic.red.button:active {
1873
+ box-shadow: 0px 0px 0px 2px #d23f3f inset !important;
1874
+ color: #d23f3f !important;
1875
+ }
1876
+ .ui.basic.red.buttons .active.button,
1877
+ .ui.basic.red.active.button {
1878
+ background: transparent !important;
1879
+ box-shadow: 0px 0px 0px 2px #d23f3f inset !important;
1880
+ color: #d23f3f !important;
1881
+ }
1882
+ .ui.buttons > .basic.red.button:not(:first-child) {
1883
+ margin-left: -2px;
1884
+ }
1885
+
1886
+ /* Inverted */
1887
+ .ui.inverted.red.buttons .button,
1888
+ .ui.inverted.red.button {
1889
+ background-color: transparent;
1890
+ box-shadow: 0px 0px 0px 2px #ff695e inset !important;
1891
+ color: #ff695e;
1892
+ }
1893
+ .ui.inverted.red.buttons .button:hover,
1894
+ .ui.inverted.red.button:hover {
1895
+ box-shadow: 0px 0px 0px 2px #ff695e inset !important;
1896
+ background-color: #ff695e;
1897
+ color: #ffffff;
1898
+ }
1899
+ .ui.inverted.red.buttons .active.button,
1900
+ .ui.inverted.red.active.button {
1901
+ box-shadow: 0px 0px 0px 2px #ff695e inset !important;
1902
+ background-color: #ff695e;
1903
+ color: #ffffff;
1904
+ }
1905
+ .ui.inverted.red.buttons .button:active,
1906
+ .ui.inverted.red.button:active {
1907
+ box-shadow: 0px 0px 0px 2px #ff483a inset !important;
1908
+ background-color: #ff483a;
1909
+ color: #ffffff;
1910
+ }
1911
+
1912
+ /* Inverted Basic */
1913
+ .ui.inverted.red.basic.buttons .button,
1914
+ .ui.inverted.red.buttons .basic.button,
1915
+ .ui.inverted.red.basic.button {
1916
+ background-color: transparent;
1917
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
1918
+ color: #ffffff !important;
1919
+ }
1920
+ .ui.inverted.red.basic.buttons .button:hover,
1921
+ .ui.inverted.red.buttons .basic.button:hover,
1922
+ .ui.inverted.red.basic.button:hover {
1923
+ box-shadow: 0px 0px 0px 2px #ff695e inset !important;
1924
+ color: #ff695e !important;
1925
+ }
1926
+ .ui.inverted.red.basic.buttons .active.button,
1927
+ .ui.inverted.red.buttons .basic.active.button,
1928
+ .ui.inverted.red.basic.active.button {
1929
+ box-shadow: 0px 0px 0px 2px #ff695e inset !important;
1930
+ color: #ff695e !important;
1931
+ }
1932
+ .ui.inverted.red.basic.buttons .button:active,
1933
+ .ui.inverted.red.buttons .basic.button:active,
1934
+ .ui.inverted.red.basic.button:active {
1935
+ box-shadow: 0px 0px 0px 2px #ff483a inset !important;
1936
+ color: #ff695e !important;
1937
+ }
1938
+
1939
+ /*--- Teal ---*/
1940
+
1941
+ .ui.teal.buttons .button,
1942
+ .ui.teal.button {
1943
+ background-color: #00b5ad;
1944
+ color: #ffffff;
1945
+ text-shadow: none;
1946
+ background-image: none;
1947
+ }
1948
+ .ui.teal.button {
1949
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
1950
+ }
1951
+ .ui.teal.buttons .button:hover,
1952
+ .ui.teal.button:hover {
1953
+ background-color: #00c4bc;
1954
+ color: #ffffff;
1955
+ text-shadow: none;
1956
+ }
1957
+ .ui.teal.buttons .button:active,
1958
+ .ui.teal.button:active {
1959
+ background-color: #00918b;
1960
+ color: #ffffff;
1961
+ text-shadow: none;
1962
+ }
1963
+ .ui.teal.buttons .active.button,
1964
+ .ui.teal.buttons .active.button:active,
1965
+ .ui.teal.active.button,
1966
+ .ui.teal.button .active.button:active {
1967
+ background-color: #009c95;
1968
+ color: #ffffff;
1969
+ text-shadow: none;
1970
+ }
1971
+
1972
+ /* Basic */
1973
+ .ui.basic.teal.buttons .button,
1974
+ .ui.basic.teal.button {
1975
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
1976
+ color: rgba(0, 0, 0, 0.6) !important;
1977
+ }
1978
+ .ui.basic.teal.buttons .button:hover,
1979
+ .ui.basic.teal.button:hover {
1980
+ background: transparent !important;
1981
+ box-shadow: 0px 0px 0px 2px #00c4bc inset !important;
1982
+ color: #00c4bc !important;
1983
+ }
1984
+ .ui.basic.teal.buttons .button:active,
1985
+ .ui.basic.teal.button:active {
1986
+ box-shadow: 0px 0px 0px 2px #00918b inset !important;
1987
+ color: #00918b !important;
1988
+ }
1989
+ .ui.basic.teal.buttons .active.button,
1990
+ .ui.basic.teal.active.button {
1991
+ background: transparent !important;
1992
+ box-shadow: 0px 0px 0px 2px #00918b inset !important;
1993
+ color: #00918b !important;
1994
+ }
1995
+ .ui.buttons > .basic.teal.button:not(:first-child) {
1996
+ margin-left: -2px;
1997
+ }
1998
+
1999
+ /* Inverted */
2000
+ .ui.inverted.teal.buttons .button,
2001
+ .ui.inverted.teal.button {
2002
+ background-color: transparent;
2003
+ box-shadow: 0px 0px 0px 2px #6dffff inset !important;
2004
+ color: #6dffff;
2005
+ }
2006
+ .ui.inverted.teal.buttons .button:hover,
2007
+ .ui.inverted.teal.button:hover {
2008
+ box-shadow: 0px 0px 0px 2px #6dffff inset !important;
2009
+ background-color: #6dffff;
2010
+ color: #1b1c1d;
2011
+ }
2012
+ .ui.inverted.teal.buttons .active.button,
2013
+ .ui.inverted.teal.active.button {
2014
+ box-shadow: 0px 0px 0px 2px #6dffff inset !important;
2015
+ background-color: #6dffff;
2016
+ color: #1b1c1d;
2017
+ }
2018
+ .ui.inverted.teal.buttons .button:active,
2019
+ .ui.inverted.teal.button:active {
2020
+ box-shadow: 0px 0px 0px 2px #49ffff inset !important;
2021
+ background-color: #49ffff;
2022
+ color: #1b1c1d;
2023
+ }
2024
+
2025
+ /* Inverted Basic */
2026
+ .ui.inverted.teal.basic.buttons .button,
2027
+ .ui.inverted.teal.buttons .basic.button,
2028
+ .ui.inverted.teal.basic.button {
2029
+ background-color: transparent;
2030
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2031
+ color: #ffffff !important;
2032
+ }
2033
+ .ui.inverted.teal.basic.buttons .button:hover,
2034
+ .ui.inverted.teal.buttons .basic.button:hover,
2035
+ .ui.inverted.teal.basic.button:hover {
2036
+ box-shadow: 0px 0px 0px 2px #6dffff inset !important;
2037
+ color: #6dffff !important;
2038
+ }
2039
+ .ui.inverted.teal.basic.buttons .active.button,
2040
+ .ui.inverted.teal.buttons .basic.active.button,
2041
+ .ui.inverted.teal.basic.active.button {
2042
+ box-shadow: 0px 0px 0px 2px #6dffff inset !important;
2043
+ color: #6dffff !important;
2044
+ }
2045
+ .ui.inverted.teal.basic.buttons .button:active,
2046
+ .ui.inverted.teal.buttons .basic.button:active,
2047
+ .ui.inverted.teal.basic.button:active {
2048
+ box-shadow: 0px 0px 0px 2px #49ffff inset !important;
2049
+ color: #6dffff !important;
2050
+ }
2051
+
2052
+ /*--- Yellow ---*/
2053
+
2054
+ .ui.yellow.buttons .button,
2055
+ .ui.yellow.button {
2056
+ background-color: #f2c61f;
2057
+ color: #ffffff;
2058
+ text-shadow: none;
2059
+ background-image: none;
2060
+ }
2061
+ .ui.yellow.button {
2062
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
2063
+ }
2064
+ .ui.yellow.buttons .button:hover,
2065
+ .ui.yellow.button:hover {
2066
+ background-color: #f3ca2d;
2067
+ color: #ffffff;
2068
+ text-shadow: none;
2069
+ }
2070
+ .ui.yellow.buttons .button:active,
2071
+ .ui.yellow.button:active {
2072
+ background-color: #e0b40d;
2073
+ color: #ffffff;
2074
+ text-shadow: none;
2075
+ }
2076
+ .ui.yellow.buttons .active.button,
2077
+ .ui.yellow.buttons .active.button:active,
2078
+ .ui.yellow.active.button,
2079
+ .ui.yellow.button .active.button:active {
2080
+ background-color: #eabc0e;
2081
+ color: #ffffff;
2082
+ text-shadow: none;
2083
+ }
2084
+
2085
+ /* Basic */
2086
+ .ui.basic.yellow.buttons .button,
2087
+ .ui.basic.yellow.button {
2088
+ box-shadow: 0px 0px 0px 2px rgba(39, 41, 43, 0.15) inset !important;
2089
+ color: rgba(0, 0, 0, 0.6) !important;
2090
+ }
2091
+ .ui.basic.yellow.buttons .button:hover,
2092
+ .ui.basic.yellow.button:hover {
2093
+ background: transparent !important;
2094
+ box-shadow: 0px 0px 0px 2px #f3ca2d inset !important;
2095
+ color: #f3ca2d !important;
2096
+ }
2097
+ .ui.basic.yellow.buttons .button:active,
2098
+ .ui.basic.yellow.button:active {
2099
+ box-shadow: 0px 0px 0px 2px #e0b40d inset !important;
2100
+ color: #e0b40d !important;
2101
+ }
2102
+ .ui.basic.yellow.buttons .active.button,
2103
+ .ui.basic.yellow.active.button {
2104
+ background: transparent !important;
2105
+ box-shadow: 0px 0px 0px 2px #e0b40d inset !important;
2106
+ color: #e0b40d !important;
2107
+ }
2108
+ .ui.buttons > .basic.yellow.button:not(:first-child) {
2109
+ margin-left: -2px;
2110
+ }
2111
+
2112
+ /* Inverted */
2113
+ .ui.inverted.yellow.buttons .button,
2114
+ .ui.inverted.yellow.button {
2115
+ background-color: transparent;
2116
+ box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
2117
+ color: #ffe21f;
2118
+ }
2119
+ .ui.inverted.yellow.buttons .button:hover,
2120
+ .ui.inverted.yellow.button:hover {
2121
+ box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
2122
+ background-color: #ffe21f;
2123
+ color: #1b1c1d;
2124
+ }
2125
+ .ui.inverted.yellow.buttons .active.button,
2126
+ .ui.inverted.yellow.active.button {
2127
+ box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
2128
+ background-color: #ffe21f;
2129
+ color: #1b1c1d;
2130
+ }
2131
+ .ui.inverted.yellow.buttons .button:active,
2132
+ .ui.inverted.yellow.button:active {
2133
+ box-shadow: 0px 0px 0px 2px #fada00 inset !important;
2134
+ background-color: #fada00;
2135
+ color: #1b1c1d;
2136
+ }
2137
+
2138
+ /* Inverted Basic */
2139
+ .ui.inverted.yellow.basic.buttons .button,
2140
+ .ui.inverted.yellow.buttons .basic.button,
2141
+ .ui.inverted.yellow.basic.button {
2142
+ background-color: transparent;
2143
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.5) inset !important;
2144
+ color: #ffffff !important;
2145
+ }
2146
+ .ui.inverted.yellow.basic.buttons .button:hover,
2147
+ .ui.inverted.yellow.buttons .basic.button:hover,
2148
+ .ui.inverted.yellow.basic.button:hover {
2149
+ box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
2150
+ color: #ffe21f !important;
2151
+ }
2152
+ .ui.inverted.yellow.basic.buttons .active.button,
2153
+ .ui.inverted.yellow.buttons .basic.active.button,
2154
+ .ui.inverted.yellow.basic.active.button {
2155
+ box-shadow: 0px 0px 0px 2px #ffe21f inset !important;
2156
+ color: #ffe21f !important;
2157
+ }
2158
+ .ui.inverted.yellow.basic.buttons .button:active,
2159
+ .ui.inverted.yellow.buttons .basic.button:active,
2160
+ .ui.inverted.yellow.basic.button:active {
2161
+ box-shadow: 0px 0px 0px 2px #fada00 inset !important;
2162
+ color: #ffe21f !important;
2163
+ }
2164
+
2165
+ /*-------------------
2166
+ Primary
2167
+ --------------------*/
2168
+
2169
+ .ui.primary.buttons .button,
2170
+ .ui.primary.button {
2171
+ background-color: #3b83c0;
2172
+ color: #ffffff;
2173
+ text-shadow: none;
2174
+ background-image: none;
2175
+ }
2176
+ .ui.primary.button {
2177
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
2178
+ }
2179
+ .ui.primary.buttons .button:hover,
2180
+ .ui.primary.button:hover {
2181
+ background-color: #458ac6;
2182
+ color: #ffffff;
2183
+ text-shadow: none;
2184
+ }
2185
+ .ui.primary.buttons .button:active,
2186
+ .ui.primary.button:active {
2187
+ background-color: #3370a5;
2188
+ color: #ffffff;
2189
+ text-shadow: none;
2190
+ }
2191
+ .ui.primary.buttons .active.button,
2192
+ .ui.primary.active.button {
2193
+ background-color: #3576ac;
2194
+ color: #ffffff;
2195
+ text-shadow: none;
2196
+ }
2197
+
2198
+ /*-------------------
2199
+ Secondary
2200
+ --------------------*/
2201
+
2202
+ .ui.secondary.buttons .button,
2203
+ .ui.secondary.button {
2204
+ background-color: #1b1c1d;
2205
+ color: #ffffff;
2206
+ text-shadow: none;
2207
+ background-image: none;
2208
+ }
2209
+ .ui.secondary.button {
2210
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
2211
+ }
2212
+ .ui.secondary.buttons .button:hover,
2213
+ .ui.secondary.button:hover {
2214
+ background-color: #222425;
2215
+ color: #ffffff;
2216
+ text-shadow: none;
2217
+ }
2218
+ .ui.secondary.buttons .button:active,
2219
+ .ui.secondary.button:active {
2220
+ background-color: #0a0a0b;
2221
+ color: #ffffff;
2222
+ text-shadow: none;
2223
+ }
2224
+ .ui.secondary.buttons .active.button,
2225
+ .ui.secondary.active.button {
2226
+ background-color: #0f0f10;
2227
+ color: #ffffff;
2228
+ text-shadow: none;
2229
+ }
2230
+
2231
+ /*---------------
2232
+ Positive
2233
+ ----------------*/
2234
+
2235
+ .ui.positive.buttons .button,
2236
+ .ui.positive.button {
2237
+ background-color: #5bbd72 !important;
2238
+ color: #ffffff;
2239
+ text-shadow: none;
2240
+ background-image: none;
2241
+ }
2242
+ .ui.positive.button {
2243
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
2244
+ }
2245
+ .ui.positive.buttons .button:hover,
2246
+ .ui.positive.button:hover,
2247
+ .ui.positive.buttons .active.button,
2248
+ .ui.positive.active.button {
2249
+ background-color: #66c17b !important;
2250
+ color: #ffffff;
2251
+ text-shadow: none;
2252
+ }
2253
+ .ui.positive.buttons .button:active,
2254
+ .ui.positive.button:active {
2255
+ background-color: #46ae5f !important;
2256
+ color: #ffffff;
2257
+ text-shadow: none;
2258
+ }
2259
+ .ui.positive.buttons .active.button,
2260
+ .ui.positive.buttons .active.button:active,
2261
+ .ui.positive.active.button,
2262
+ .ui.positive.button .active.button:active {
2263
+ background-color: #49b562;
2264
+ color: #ffffff;
2265
+ text-shadow: none;
2266
+ }
2267
+
2268
+ /*---------------
2269
+ Negative
2270
+ ----------------*/
2271
+
2272
+ .ui.negative.buttons .button,
2273
+ .ui.negative.button {
2274
+ background-color: #d95c5c !important;
2275
+ color: #ffffff;
2276
+ text-shadow: none;
2277
+ background-image: none;
2278
+ }
2279
+ .ui.negative.button {
2280
+ box-shadow: 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
2281
+ }
2282
+ .ui.negative.buttons .button:hover,
2283
+ .ui.negative.button:hover,
2284
+ .ui.negative.buttons .active.button,
2285
+ .ui.negative.active.button {
2286
+ background-color: #dc6868 !important;
2287
+ color: #ffffff;
2288
+ text-shadow: none;
2289
+ }
2290
+ .ui.negative.buttons .button:active,
2291
+ .ui.negative.button:active {
2292
+ background-color: #d23f3f !important;
2293
+ color: #ffffff;
2294
+ text-shadow: none;
2295
+ }
2296
+ .ui.negative.buttons .active.button,
2297
+ .ui.negative.buttons .active.button:active,
2298
+ .ui.negative.active.button,
2299
+ .ui.negative.button .active.button:active {
2300
+ background-color: #d44747;
2301
+ color: #ffffff;
2302
+ text-shadow: none;
2303
+ }
2304
+
2305
+
2306
+ /*******************************
2307
+ Groups
2308
+ *******************************/
2309
+
2310
+ .ui.buttons {
2311
+ display: inline-block;
2312
+ vertical-align: middle;
2313
+ margin: 0em 0.25em 0em 0em;
2314
+ }
2315
+ .ui.buttons > .button:hover,
2316
+ .ui.buttons > .active.button {
2317
+ position: relative;
2318
+ }
2319
+ .ui.buttons:after {
2320
+ content: ".";
2321
+ display: block;
2322
+ height: 0;
2323
+ clear: both;
2324
+ visibility: hidden;
2325
+ }
2326
+ .ui.buttons .button:first-child {
2327
+ border-left: none;
2328
+ }
2329
+ .ui.buttons:not(.basic):not(.inverted) {
2330
+ box-shadow: none;
2331
+ }
2332
+ .ui.buttons > .ui.button:not(.basic):not(.inverted),
2333
+ .ui.buttons:not(.basic):not(.inverted) > .button {
2334
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0em 0px 0px rgba(39, 41, 43, 0.15) inset;
2335
+ }
2336
+ .ui.buttons .button {
2337
+ margin: 0em;
2338
+ float: left;
2339
+ border-radius: 0em;
2340
+ margin: 0px 0px 0px 0px;
2341
+ }
2342
+ .ui.buttons .button:first-child {
2343
+ margin-left: 0em;
2344
+ border-top-left-radius: 0.2857rem;
2345
+ border-bottom-left-radius: 0.2857rem;
2346
+ }
2347
+ .ui.buttons .button:last-child {
2348
+ border-top-right-radius: 0.2857rem;
2349
+ border-bottom-right-radius: 0.2857rem;
2350
+ }
2351
+
2352
+ /* Vertical Style */
2353
+ .ui.vertical.buttons {
2354
+ display: inline-block;
2355
+ }
2356
+ .ui.vertical.buttons .button {
2357
+ display: block;
2358
+ float: none;
2359
+ margin: 0px 0px 0px 0px;
2360
+ box-shadow: none;
2361
+ }
2362
+ .ui.vertical.buttons .button:first-child,
2363
+ .ui.vertical.buttons .mini.button:first-child,
2364
+ .ui.vertical.buttons .tiny.button:first-child,
2365
+ .ui.vertical.buttons .small.button:first-child,
2366
+ .ui.vertical.buttons .massive.button:first-child,
2367
+ .ui.vertical.buttons .huge.button:first-child {
2368
+ border-radius: 0.2857rem 0.2857rem 0px 0px;
2369
+ }
2370
+ .ui.vertical.buttons .button:last-child,
2371
+ .ui.vertical.buttons .mini.button:last-child,
2372
+ .ui.vertical.buttons .tiny.button:last-child,
2373
+ .ui.vertical.buttons .small.button:last-child,
2374
+ .ui.vertical.buttons .massive.button:last-child,
2375
+ .ui.vertical.buttons .huge.button:last-child,
2376
+ .ui.vertical.buttons .gigantic.button:last-child {
2377
+ margin-bottom: 0px;
2378
+ border-radius: 0px 0px 0.2857rem 0.2857rem;
2379
+ }
2380
+
2381
+
2382
+ /*******************************
2383
+ Theme Overrides
2384
+ *******************************/
2385
+
2386
+
2387
+
2388
+ /*******************************
2389
+ Site Overrides
2390
+ *******************************/
2391
+