stylish 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (458) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +7 -10
  3. data/ARCHITECTURE.md +96 -0
  4. data/Gemfile +8 -0
  5. data/README.md +25 -29
  6. data/Rakefile +24 -0
  7. data/bin/stylish +33 -0
  8. data/lib/stylish.rb +36 -1
  9. data/lib/stylish/configuration.rb +37 -0
  10. data/lib/stylish/core_ext.rb +20 -0
  11. data/lib/stylish/developer.rb +13 -0
  12. data/lib/stylish/developer/config.rb +19 -0
  13. data/lib/stylish/developer/environment.rb +75 -0
  14. data/lib/stylish/developer/listing.rb +85 -0
  15. data/lib/stylish/developer/model_delegator.rb +51 -0
  16. data/lib/stylish/developer/modification.rb +139 -0
  17. data/lib/stylish/developer/path.rb +168 -0
  18. data/lib/stylish/developer/route.rb +97 -0
  19. data/lib/stylish/developer/server.rb +40 -0
  20. data/lib/stylish/engine.rb +12 -0
  21. data/lib/stylish/fs.rb +59 -0
  22. data/lib/stylish/manifest.rb +100 -0
  23. data/lib/stylish/models.rb +119 -0
  24. data/lib/stylish/models/component.rb +19 -0
  25. data/lib/stylish/models/layout.rb +19 -0
  26. data/lib/stylish/models/library.rb +134 -0
  27. data/lib/stylish/models/package.rb +156 -0
  28. data/lib/stylish/models/script.rb +10 -0
  29. data/lib/stylish/models/stylesheet.rb +9 -0
  30. data/lib/stylish/models/template.rb +9 -0
  31. data/lib/stylish/models/theme.rb +8 -0
  32. data/lib/stylish/util.rb +20 -0
  33. data/lib/stylish/version.rb +1 -1
  34. data/library/config.json +4 -0
  35. data/library/second-theme/manifest.json +8 -0
  36. data/library/second-theme/manifest.yml +6 -0
  37. data/library/second-theme/templates/footers/footer-01.html +3 -0
  38. data/library/second-theme/templates/footers/footer-02.html +3 -0
  39. data/library/second-theme/templates/headers/header-01.html +3 -0
  40. data/library/second-theme/templates/headers/header-02.html +3 -0
  41. data/library/second-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
  42. data/library/second-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
  43. data/library/test-theme/components/footers/footer-01.json +5 -0
  44. data/library/test-theme/components/footers/footer-02.json +5 -0
  45. data/library/test-theme/components/headers/header-01.json +5 -0
  46. data/library/test-theme/components/headers/header-02.json +5 -0
  47. data/library/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
  48. data/library/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
  49. data/library/test-theme/manifest.json +8 -0
  50. data/library/test-theme/manifest.yml +6 -0
  51. data/library/test-theme/pages/page-01.json +11 -0
  52. data/library/test-theme/templates/footers/footer-01.html +3 -0
  53. data/library/test-theme/templates/footers/footer-02.html +3 -0
  54. data/library/test-theme/templates/headers/header-01.html +3 -0
  55. data/library/test-theme/templates/headers/header-02.html +3 -0
  56. data/library/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
  57. data/library/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
  58. data/library/test-theme/templates/layouts/standard-layout.html +10 -0
  59. data/spec/acceptance/listing_assets_spec.rb +20 -0
  60. data/spec/acceptance/model_browsing_spec.rb +21 -0
  61. data/spec/acceptance/model_creation_spec.rb +16 -0
  62. data/spec/acceptance/model_deleting_spec.rb +10 -0
  63. data/spec/acceptance/model_updating_spec.rb +12 -0
  64. data/spec/acceptance/modifying_assets_spec.rb +50 -0
  65. data/spec/acceptance/server_info_spec.rb +10 -0
  66. data/spec/dummy/README.rdoc +28 -0
  67. data/spec/dummy/Rakefile +6 -0
  68. data/spec/dummy/app/assets/images/.keep +0 -0
  69. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  70. data/spec/dummy/app/assets/javascripts/test.coffee +4 -0
  71. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  72. data/spec/dummy/app/assets/stylesheets/test.css.scss +6 -0
  73. data/spec/dummy/app/assets/stylesheets/writable/existing.scss.css +0 -0
  74. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  75. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  76. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  77. data/spec/dummy/app/mailers/.keep +0 -0
  78. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  79. data/spec/dummy/bin/bundle +3 -0
  80. data/spec/dummy/bin/rails +4 -0
  81. data/spec/dummy/bin/rake +4 -0
  82. data/spec/dummy/config.ru +4 -0
  83. data/spec/dummy/config/application.rb +30 -0
  84. data/spec/dummy/config/boot.rb +5 -0
  85. data/spec/dummy/config/database.yml +25 -0
  86. data/spec/dummy/config/environment.rb +5 -0
  87. data/spec/dummy/config/environments/development.rb +37 -0
  88. data/spec/dummy/config/environments/production.rb +82 -0
  89. data/spec/dummy/config/environments/test.rb +39 -0
  90. data/spec/dummy/config/initializers/assets.rb +8 -0
  91. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  92. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  93. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  94. data/spec/dummy/config/initializers/inflections.rb +16 -0
  95. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  96. data/spec/dummy/config/initializers/session_store.rb +3 -0
  97. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  98. data/spec/dummy/config/locales/en.yml +23 -0
  99. data/spec/dummy/config/routes.rb +3 -0
  100. data/spec/dummy/config/secrets.yml +22 -0
  101. data/spec/dummy/db/migrate/20140822065900_create_books.rb +11 -0
  102. data/spec/dummy/db/migrate/20140822065916_create_authors.rb +9 -0
  103. data/spec/dummy/db/migrate/20140824215902_create_users.rb +10 -0
  104. data/spec/dummy/db/migrate/20140826193259_create_libraries.rb +10 -0
  105. data/spec/dummy/db/schema.rb +37 -0
  106. data/spec/dummy/db/test.sqlite3 +0 -0
  107. data/spec/dummy/lib/assets/.keep +0 -0
  108. data/spec/dummy/log/.keep +0 -0
  109. data/spec/dummy/public/404.html +67 -0
  110. data/spec/dummy/public/422.html +67 -0
  111. data/spec/dummy/public/500.html +66 -0
  112. data/spec/dummy/public/favicon.ico +0 -0
  113. data/spec/fixtures/config.json +3 -0
  114. data/spec/fixtures/test-theme/components/footers/footer-01.json +5 -0
  115. data/spec/fixtures/test-theme/components/footers/footer-02.json +5 -0
  116. data/spec/fixtures/test-theme/components/headers/header-01.json +5 -0
  117. data/spec/fixtures/test-theme/components/headers/header-02.json +5 -0
  118. data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
  119. data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
  120. data/spec/fixtures/test-theme/manifest.json +8 -0
  121. data/spec/fixtures/test-theme/manifest.yml +6 -0
  122. data/spec/fixtures/test-theme/pages/page-01.json +11 -0
  123. data/spec/fixtures/test-theme/templates/footers/footer-01.html +3 -0
  124. data/spec/fixtures/test-theme/templates/footers/footer-02.html +3 -0
  125. data/spec/fixtures/test-theme/templates/headers/header-01.html +3 -0
  126. data/spec/fixtures/test-theme/templates/headers/header-02.html +3 -0
  127. data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
  128. data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
  129. data/spec/fixtures/test-theme/templates/layouts/standard-01.html +9 -0
  130. data/spec/lib/stylish/configuration_spec.rb +8 -0
  131. data/spec/lib/stylish/developer/path_spec.rb +36 -0
  132. data/spec/lib/stylish/developer/route_spec.rb +5 -0
  133. data/spec/lib/stylish/manifest_spec.rb +48 -0
  134. data/spec/lib/stylish/models/library_spec.rb +38 -0
  135. data/spec/lib/stylish/models/package_spec.rb +35 -0
  136. data/spec/lib/stylish/models_spec.rb +12 -0
  137. data/spec/spec_helper.rb +38 -0
  138. data/spec/support/json_helper.rb +7 -0
  139. data/spec/test.css.scss +6 -0
  140. data/stylish.gemspec +17 -2
  141. data/support/editor-app/.gitignore +2 -0
  142. data/support/editor-app/development/bower.json +9 -0
  143. data/support/editor-app/development/package.json +28 -0
  144. data/support/editor-app/development/semantic/components/accordion.css +257 -0
  145. data/support/editor-app/development/semantic/components/accordion.js +558 -0
  146. data/support/editor-app/development/semantic/components/accordion.min.css +11 -0
  147. data/support/editor-app/development/semantic/components/accordion.min.js +11 -0
  148. data/support/editor-app/development/semantic/components/ad.css +277 -0
  149. data/support/editor-app/development/semantic/components/ad.min.css +11 -0
  150. data/support/editor-app/development/semantic/components/api.js +851 -0
  151. data/support/editor-app/development/semantic/components/api.min.js +11 -0
  152. data/support/editor-app/development/semantic/components/breadcrumb.css +125 -0
  153. data/support/editor-app/development/semantic/components/breadcrumb.min.css +11 -0
  154. data/support/editor-app/development/semantic/components/button.css +2391 -0
  155. data/support/editor-app/development/semantic/components/button.min.css +11 -0
  156. data/support/editor-app/development/semantic/components/card.css +758 -0
  157. data/support/editor-app/development/semantic/components/card.min.css +11 -0
  158. data/support/editor-app/development/semantic/components/checkbox.css +514 -0
  159. data/support/editor-app/development/semantic/components/checkbox.js +507 -0
  160. data/support/editor-app/development/semantic/components/checkbox.min.css +11 -0
  161. data/support/editor-app/development/semantic/components/checkbox.min.js +11 -0
  162. data/support/editor-app/development/semantic/components/comment.css +260 -0
  163. data/support/editor-app/development/semantic/components/comment.min.css +11 -0
  164. data/support/editor-app/development/semantic/components/dimmer.css +187 -0
  165. data/support/editor-app/development/semantic/components/dimmer.js +627 -0
  166. data/support/editor-app/development/semantic/components/dimmer.min.css +11 -0
  167. data/support/editor-app/development/semantic/components/dimmer.min.js +11 -0
  168. data/support/editor-app/development/semantic/components/divider.css +244 -0
  169. data/support/editor-app/development/semantic/components/divider.min.css +11 -0
  170. data/support/editor-app/development/semantic/components/dropdown.css +1085 -0
  171. data/support/editor-app/development/semantic/components/dropdown.js +1757 -0
  172. data/support/editor-app/development/semantic/components/dropdown.min.css +11 -0
  173. data/support/editor-app/development/semantic/components/dropdown.min.js +11 -0
  174. data/support/editor-app/development/semantic/components/feed.css +277 -0
  175. data/support/editor-app/development/semantic/components/feed.min.css +11 -0
  176. data/support/editor-app/development/semantic/components/flag.css +1017 -0
  177. data/support/editor-app/development/semantic/components/flag.min.css +11 -0
  178. data/support/editor-app/development/semantic/components/form.css +875 -0
  179. data/support/editor-app/development/semantic/components/form.js +1039 -0
  180. data/support/editor-app/development/semantic/components/form.min.css +11 -0
  181. data/support/editor-app/development/semantic/components/form.min.js +11 -0
  182. data/support/editor-app/development/semantic/components/grid.css +1816 -0
  183. data/support/editor-app/development/semantic/components/grid.min.css +11 -0
  184. data/support/editor-app/development/semantic/components/header.css +572 -0
  185. data/support/editor-app/development/semantic/components/header.min.css +11 -0
  186. data/support/editor-app/development/semantic/components/icon.css +2127 -0
  187. data/support/editor-app/development/semantic/components/icon.min.css +11 -0
  188. data/support/editor-app/development/semantic/components/image.css +275 -0
  189. data/support/editor-app/development/semantic/components/image.min.css +11 -0
  190. data/support/editor-app/development/semantic/components/input.css +455 -0
  191. data/support/editor-app/development/semantic/components/input.min.css +11 -0
  192. data/support/editor-app/development/semantic/components/item.css +458 -0
  193. data/support/editor-app/development/semantic/components/item.min.css +11 -0
  194. data/support/editor-app/development/semantic/components/label.css +930 -0
  195. data/support/editor-app/development/semantic/components/label.min.css +11 -0
  196. data/support/editor-app/development/semantic/components/list.css +879 -0
  197. data/support/editor-app/development/semantic/components/list.min.css +11 -0
  198. data/support/editor-app/development/semantic/components/loader.css +279 -0
  199. data/support/editor-app/development/semantic/components/loader.min.css +11 -0
  200. data/support/editor-app/development/semantic/components/menu.css +1596 -0
  201. data/support/editor-app/development/semantic/components/menu.min.css +11 -0
  202. data/support/editor-app/development/semantic/components/message.css +422 -0
  203. data/support/editor-app/development/semantic/components/message.min.css +11 -0
  204. data/support/editor-app/development/semantic/components/modal.css +431 -0
  205. data/support/editor-app/development/semantic/components/modal.js +860 -0
  206. data/support/editor-app/development/semantic/components/modal.min.css +11 -0
  207. data/support/editor-app/development/semantic/components/modal.min.js +11 -0
  208. data/support/editor-app/development/semantic/components/nag.css +149 -0
  209. data/support/editor-app/development/semantic/components/nag.js +477 -0
  210. data/support/editor-app/development/semantic/components/nag.min.css +11 -0
  211. data/support/editor-app/development/semantic/components/nag.min.js +11 -0
  212. data/support/editor-app/development/semantic/components/popup.css +294 -0
  213. data/support/editor-app/development/semantic/components/popup.js +1187 -0
  214. data/support/editor-app/development/semantic/components/popup.min.css +11 -0
  215. data/support/editor-app/development/semantic/components/popup.min.js +11 -0
  216. data/support/editor-app/development/semantic/components/progress.css +449 -0
  217. data/support/editor-app/development/semantic/components/progress.js +785 -0
  218. data/support/editor-app/development/semantic/components/progress.min.css +11 -0
  219. data/support/editor-app/development/semantic/components/progress.min.js +11 -0
  220. data/support/editor-app/development/semantic/components/rail.css +125 -0
  221. data/support/editor-app/development/semantic/components/rail.min.css +11 -0
  222. data/support/editor-app/development/semantic/components/rating.css +262 -0
  223. data/support/editor-app/development/semantic/components/rating.js +451 -0
  224. data/support/editor-app/development/semantic/components/rating.min.css +11 -0
  225. data/support/editor-app/development/semantic/components/rating.min.js +11 -0
  226. data/support/editor-app/development/semantic/components/reset.css +430 -0
  227. data/support/editor-app/development/semantic/components/reset.min.css +11 -0
  228. data/support/editor-app/development/semantic/components/reveal.css +294 -0
  229. data/support/editor-app/development/semantic/components/reveal.min.css +11 -0
  230. data/support/editor-app/development/semantic/components/search.css +330 -0
  231. data/support/editor-app/development/semantic/components/search.js +1055 -0
  232. data/support/editor-app/development/semantic/components/search.min.css +11 -0
  233. data/support/editor-app/development/semantic/components/search.min.js +11 -0
  234. data/support/editor-app/development/semantic/components/segment.css +590 -0
  235. data/support/editor-app/development/semantic/components/segment.min.css +11 -0
  236. data/support/editor-app/development/semantic/components/shape.css +155 -0
  237. data/support/editor-app/development/semantic/components/shape.js +830 -0
  238. data/support/editor-app/development/semantic/components/shape.min.css +11 -0
  239. data/support/editor-app/development/semantic/components/shape.min.js +11 -0
  240. data/support/editor-app/development/semantic/components/sidebar.css +621 -0
  241. data/support/editor-app/development/semantic/components/sidebar.js +1084 -0
  242. data/support/editor-app/development/semantic/components/sidebar.min.css +11 -0
  243. data/support/editor-app/development/semantic/components/sidebar.min.js +11 -0
  244. data/support/editor-app/development/semantic/components/site.css +147 -0
  245. data/support/editor-app/development/semantic/components/site.js +487 -0
  246. data/support/editor-app/development/semantic/components/site.min.css +11 -0
  247. data/support/editor-app/development/semantic/components/site.min.js +11 -0
  248. data/support/editor-app/development/semantic/components/state.js +690 -0
  249. data/support/editor-app/development/semantic/components/state.min.js +11 -0
  250. data/support/editor-app/development/semantic/components/statistic.css +410 -0
  251. data/support/editor-app/development/semantic/components/statistic.min.css +11 -0
  252. data/support/editor-app/development/semantic/components/step.css +433 -0
  253. data/support/editor-app/development/semantic/components/step.min.css +11 -0
  254. data/support/editor-app/development/semantic/components/sticky.css +80 -0
  255. data/support/editor-app/development/semantic/components/sticky.js +775 -0
  256. data/support/editor-app/development/semantic/components/sticky.min.css +11 -0
  257. data/support/editor-app/development/semantic/components/sticky.min.js +11 -0
  258. data/support/editor-app/development/semantic/components/tab.css +93 -0
  259. data/support/editor-app/development/semantic/components/tab.js +787 -0
  260. data/support/editor-app/development/semantic/components/tab.min.css +11 -0
  261. data/support/editor-app/development/semantic/components/tab.min.js +11 -0
  262. data/support/editor-app/development/semantic/components/table.css +999 -0
  263. data/support/editor-app/development/semantic/components/table.min.css +11 -0
  264. data/support/editor-app/development/semantic/components/transition.css +2152 -0
  265. data/support/editor-app/development/semantic/components/transition.js +936 -0
  266. data/support/editor-app/development/semantic/components/transition.min.css +11 -0
  267. data/support/editor-app/development/semantic/components/transition.min.js +11 -0
  268. data/support/editor-app/development/semantic/components/video.css +126 -0
  269. data/support/editor-app/development/semantic/components/video.js +540 -0
  270. data/support/editor-app/development/semantic/components/video.min.css +11 -0
  271. data/support/editor-app/development/semantic/components/video.min.js +11 -0
  272. data/support/editor-app/development/semantic/components/visibility.js +970 -0
  273. data/support/editor-app/development/semantic/components/visibility.min.js +11 -0
  274. data/support/editor-app/development/semantic/semantic.css +31768 -0
  275. data/support/editor-app/development/semantic/semantic.js +18317 -0
  276. data/support/editor-app/development/semantic/semantic.min.css +11 -0
  277. data/support/editor-app/development/semantic/semantic.min.js +17 -0
  278. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.eot +0 -0
  279. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.svg +450 -0
  280. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
  281. data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.woff +0 -0
  282. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.eot +0 -0
  283. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.otf +0 -0
  284. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.svg +504 -0
  285. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.ttf +0 -0
  286. data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.woff +0 -0
  287. data/support/editor-app/development/semantic/themes/default/assets/images/flags.png +0 -0
  288. data/support/editor-app/development/src/apis/index.coffee +35 -0
  289. data/support/editor-app/development/src/components/editor.cjsx +58 -0
  290. data/support/editor-app/development/src/components/editor_drawer.cjsx +7 -0
  291. data/support/editor-app/development/src/components/header.cjsx +12 -0
  292. data/support/editor-app/development/src/components/index.coffee +9 -0
  293. data/support/editor-app/development/src/components/menus/icon_grid.cjsx +0 -0
  294. data/support/editor-app/development/src/components/sidebar.cjsx +24 -0
  295. data/support/editor-app/development/src/components/tiled_grid.cjsx +35 -0
  296. data/support/editor-app/development/src/index.cjsx +82 -0
  297. data/support/editor-app/development/src/lib/util.coffee +48 -0
  298. data/support/editor-app/development/src/pages/home.cjsx +46 -0
  299. data/support/editor-app/development/src/pages/index.coffee +6 -0
  300. data/support/editor-app/development/src/pages/package_details.cjsx +55 -0
  301. data/support/editor-app/development/src/registry.coffee +35 -0
  302. data/support/editor-app/development/src/styles/components/tiled_grid.css.scss +5 -0
  303. data/support/editor-app/development/src/styles/index.css.scss +240 -0
  304. data/support/editor-app/development/src/sugar.cjsx +126 -0
  305. data/support/editor-app/development/webpack.config.js +53 -0
  306. data/support/editor-app/dist/base.css +0 -0
  307. data/support/editor-app/dist/toolit.js +62 -0
  308. data/support/editor-app/dist/toolkit.js +44573 -0
  309. data/support/editor-app/index.html +50 -0
  310. data/support/editor-app/package.json +15 -0
  311. data/support/editor-app/semantic/components/accordion.css +257 -0
  312. data/support/editor-app/semantic/components/accordion.js +558 -0
  313. data/support/editor-app/semantic/components/accordion.min.css +11 -0
  314. data/support/editor-app/semantic/components/accordion.min.js +11 -0
  315. data/support/editor-app/semantic/components/ad.css +277 -0
  316. data/support/editor-app/semantic/components/ad.min.css +11 -0
  317. data/support/editor-app/semantic/components/api.js +851 -0
  318. data/support/editor-app/semantic/components/api.min.js +11 -0
  319. data/support/editor-app/semantic/components/breadcrumb.css +125 -0
  320. data/support/editor-app/semantic/components/breadcrumb.min.css +11 -0
  321. data/support/editor-app/semantic/components/button.css +2391 -0
  322. data/support/editor-app/semantic/components/button.min.css +11 -0
  323. data/support/editor-app/semantic/components/card.css +758 -0
  324. data/support/editor-app/semantic/components/card.min.css +11 -0
  325. data/support/editor-app/semantic/components/checkbox.css +514 -0
  326. data/support/editor-app/semantic/components/checkbox.js +507 -0
  327. data/support/editor-app/semantic/components/checkbox.min.css +11 -0
  328. data/support/editor-app/semantic/components/checkbox.min.js +11 -0
  329. data/support/editor-app/semantic/components/comment.css +260 -0
  330. data/support/editor-app/semantic/components/comment.min.css +11 -0
  331. data/support/editor-app/semantic/components/dimmer.css +187 -0
  332. data/support/editor-app/semantic/components/dimmer.js +627 -0
  333. data/support/editor-app/semantic/components/dimmer.min.css +11 -0
  334. data/support/editor-app/semantic/components/dimmer.min.js +11 -0
  335. data/support/editor-app/semantic/components/divider.css +244 -0
  336. data/support/editor-app/semantic/components/divider.min.css +11 -0
  337. data/support/editor-app/semantic/components/dropdown.css +1085 -0
  338. data/support/editor-app/semantic/components/dropdown.js +1757 -0
  339. data/support/editor-app/semantic/components/dropdown.min.css +11 -0
  340. data/support/editor-app/semantic/components/dropdown.min.js +11 -0
  341. data/support/editor-app/semantic/components/feed.css +277 -0
  342. data/support/editor-app/semantic/components/feed.min.css +11 -0
  343. data/support/editor-app/semantic/components/flag.css +1017 -0
  344. data/support/editor-app/semantic/components/flag.min.css +11 -0
  345. data/support/editor-app/semantic/components/form.css +875 -0
  346. data/support/editor-app/semantic/components/form.js +1039 -0
  347. data/support/editor-app/semantic/components/form.min.css +11 -0
  348. data/support/editor-app/semantic/components/form.min.js +11 -0
  349. data/support/editor-app/semantic/components/grid.css +1816 -0
  350. data/support/editor-app/semantic/components/grid.min.css +11 -0
  351. data/support/editor-app/semantic/components/header.css +572 -0
  352. data/support/editor-app/semantic/components/header.min.css +11 -0
  353. data/support/editor-app/semantic/components/icon.css +2127 -0
  354. data/support/editor-app/semantic/components/icon.min.css +11 -0
  355. data/support/editor-app/semantic/components/image.css +275 -0
  356. data/support/editor-app/semantic/components/image.min.css +11 -0
  357. data/support/editor-app/semantic/components/input.css +455 -0
  358. data/support/editor-app/semantic/components/input.min.css +11 -0
  359. data/support/editor-app/semantic/components/item.css +458 -0
  360. data/support/editor-app/semantic/components/item.min.css +11 -0
  361. data/support/editor-app/semantic/components/label.css +930 -0
  362. data/support/editor-app/semantic/components/label.min.css +11 -0
  363. data/support/editor-app/semantic/components/list.css +879 -0
  364. data/support/editor-app/semantic/components/list.min.css +11 -0
  365. data/support/editor-app/semantic/components/loader.css +279 -0
  366. data/support/editor-app/semantic/components/loader.min.css +11 -0
  367. data/support/editor-app/semantic/components/menu.css +1596 -0
  368. data/support/editor-app/semantic/components/menu.min.css +11 -0
  369. data/support/editor-app/semantic/components/message.css +422 -0
  370. data/support/editor-app/semantic/components/message.min.css +11 -0
  371. data/support/editor-app/semantic/components/modal.css +431 -0
  372. data/support/editor-app/semantic/components/modal.js +860 -0
  373. data/support/editor-app/semantic/components/modal.min.css +11 -0
  374. data/support/editor-app/semantic/components/modal.min.js +11 -0
  375. data/support/editor-app/semantic/components/nag.css +149 -0
  376. data/support/editor-app/semantic/components/nag.js +477 -0
  377. data/support/editor-app/semantic/components/nag.min.css +11 -0
  378. data/support/editor-app/semantic/components/nag.min.js +11 -0
  379. data/support/editor-app/semantic/components/popup.css +294 -0
  380. data/support/editor-app/semantic/components/popup.js +1187 -0
  381. data/support/editor-app/semantic/components/popup.min.css +11 -0
  382. data/support/editor-app/semantic/components/popup.min.js +11 -0
  383. data/support/editor-app/semantic/components/progress.css +449 -0
  384. data/support/editor-app/semantic/components/progress.js +785 -0
  385. data/support/editor-app/semantic/components/progress.min.css +11 -0
  386. data/support/editor-app/semantic/components/progress.min.js +11 -0
  387. data/support/editor-app/semantic/components/rail.css +125 -0
  388. data/support/editor-app/semantic/components/rail.min.css +11 -0
  389. data/support/editor-app/semantic/components/rating.css +262 -0
  390. data/support/editor-app/semantic/components/rating.js +451 -0
  391. data/support/editor-app/semantic/components/rating.min.css +11 -0
  392. data/support/editor-app/semantic/components/rating.min.js +11 -0
  393. data/support/editor-app/semantic/components/reset.css +430 -0
  394. data/support/editor-app/semantic/components/reset.min.css +11 -0
  395. data/support/editor-app/semantic/components/reveal.css +294 -0
  396. data/support/editor-app/semantic/components/reveal.min.css +11 -0
  397. data/support/editor-app/semantic/components/search.css +330 -0
  398. data/support/editor-app/semantic/components/search.js +1055 -0
  399. data/support/editor-app/semantic/components/search.min.css +11 -0
  400. data/support/editor-app/semantic/components/search.min.js +11 -0
  401. data/support/editor-app/semantic/components/segment.css +590 -0
  402. data/support/editor-app/semantic/components/segment.min.css +11 -0
  403. data/support/editor-app/semantic/components/shape.css +155 -0
  404. data/support/editor-app/semantic/components/shape.js +830 -0
  405. data/support/editor-app/semantic/components/shape.min.css +11 -0
  406. data/support/editor-app/semantic/components/shape.min.js +11 -0
  407. data/support/editor-app/semantic/components/sidebar.css +621 -0
  408. data/support/editor-app/semantic/components/sidebar.js +1084 -0
  409. data/support/editor-app/semantic/components/sidebar.min.css +11 -0
  410. data/support/editor-app/semantic/components/sidebar.min.js +11 -0
  411. data/support/editor-app/semantic/components/site.css +147 -0
  412. data/support/editor-app/semantic/components/site.js +487 -0
  413. data/support/editor-app/semantic/components/site.min.css +11 -0
  414. data/support/editor-app/semantic/components/site.min.js +11 -0
  415. data/support/editor-app/semantic/components/state.js +690 -0
  416. data/support/editor-app/semantic/components/state.min.js +11 -0
  417. data/support/editor-app/semantic/components/statistic.css +410 -0
  418. data/support/editor-app/semantic/components/statistic.min.css +11 -0
  419. data/support/editor-app/semantic/components/step.css +433 -0
  420. data/support/editor-app/semantic/components/step.min.css +11 -0
  421. data/support/editor-app/semantic/components/sticky.css +80 -0
  422. data/support/editor-app/semantic/components/sticky.js +775 -0
  423. data/support/editor-app/semantic/components/sticky.min.css +11 -0
  424. data/support/editor-app/semantic/components/sticky.min.js +11 -0
  425. data/support/editor-app/semantic/components/tab.css +93 -0
  426. data/support/editor-app/semantic/components/tab.js +787 -0
  427. data/support/editor-app/semantic/components/tab.min.css +11 -0
  428. data/support/editor-app/semantic/components/tab.min.js +11 -0
  429. data/support/editor-app/semantic/components/table.css +999 -0
  430. data/support/editor-app/semantic/components/table.min.css +11 -0
  431. data/support/editor-app/semantic/components/transition.css +2152 -0
  432. data/support/editor-app/semantic/components/transition.js +936 -0
  433. data/support/editor-app/semantic/components/transition.min.css +11 -0
  434. data/support/editor-app/semantic/components/transition.min.js +11 -0
  435. data/support/editor-app/semantic/components/video.css +126 -0
  436. data/support/editor-app/semantic/components/video.js +540 -0
  437. data/support/editor-app/semantic/components/video.min.css +11 -0
  438. data/support/editor-app/semantic/components/video.min.js +11 -0
  439. data/support/editor-app/semantic/components/visibility.js +970 -0
  440. data/support/editor-app/semantic/components/visibility.min.js +11 -0
  441. data/support/editor-app/semantic/semantic.css +31768 -0
  442. data/support/editor-app/semantic/semantic.js +18317 -0
  443. data/support/editor-app/semantic/semantic.min.css +11 -0
  444. data/support/editor-app/semantic/semantic.min.js +17 -0
  445. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.eot +0 -0
  446. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.svg +450 -0
  447. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
  448. data/support/editor-app/semantic/themes/basic/assets/fonts/icons.woff +0 -0
  449. data/support/editor-app/semantic/themes/default/assets/fonts/icons.eot +0 -0
  450. data/support/editor-app/semantic/themes/default/assets/fonts/icons.otf +0 -0
  451. data/support/editor-app/semantic/themes/default/assets/fonts/icons.svg +504 -0
  452. data/support/editor-app/semantic/themes/default/assets/fonts/icons.ttf +0 -0
  453. data/support/editor-app/semantic/themes/default/assets/fonts/icons.woff +0 -0
  454. data/support/editor-app/semantic/themes/default/assets/images/flags.png +0 -0
  455. data/support/editor-app/vendor/jquery.js +8829 -0
  456. data/support/library-server/Gemfile +0 -0
  457. data/support/library-server/config.ru +4 -0
  458. metadata +740 -7
@@ -0,0 +1,11 @@
1
+ /*
2
+ * # Semantic UI - 1.8.1
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+ .ui.label{display:inline-block;vertical-align:baseline;line-height:1;margin:0 .125em;background-color:#e8e8e8;border-color:#e8e8e8;background-image:none;padding:.6em .8em;color:rgba(0,0,0,.6);text-transform:none;font-weight:700;border-radius:.2857rem;box-sizing:border-box;-webkit-transition:background .2s ease;transition:background .2s ease}.ui.label:first-child{margin-left:0}.ui.label:last-child{margin-right:0}a.ui.label{cursor:pointer}.ui.label a{cursor:pointer;color:inherit;opacity:.8;-webkit-transition:.2s opacity ease;transition:.2s opacity ease}.ui.label a:hover{opacity:1}.ui.label .icon{width:auto;margin:0 .75em 0 0}.ui.label .detail{display:inline-block;vertical-align:top;font-weight:700;margin-left:1em;opacity:.8}.ui.label .detail .icon{margin:0 .25em 0 0}.ui.label .close.icon,.ui.label .delete.icon{cursor:pointer;margin-right:0;margin-left:.5em;opacity:.8;-webkit-transition:background .2s ease;transition:background .2s ease}.ui.label .delete.icon:hover{opacity:1}.ui.labels .label{margin:0 .5em .75em 0}.ui.attached.segment>.ui.top.left.attached.label,.ui.bottom.attached.segment>.ui.top.left.attached.label{border-top-left-radius:0}.ui.attached.segment>.ui.top.right.attached.label,.ui.bottom.attached.segment>.ui.top.right.attached.label{border-top-right-radius:0}.ui.top.attached.segment>.ui.bottom.left.attached.label{border-bottom-left-radius:0}.ui.top.attached.segment>.ui.bottom.right.attached.label{border-bottom-right-radius:0}.ui.top.attached.label:first-child+:not(.attached){margin-top:2rem!important}.ui.bottom.attached.label:first-child~:last-child:not(.attached){margin-top:0;margin-bottom:2rem!important}.ui.image.label{width:auto!important;margin-top:0;margin-bottom:0;max-width:9999px;vertical-align:baseline;text-transform:none;background:#e8e8e8;padding:.6em .8em .6em .5em;border-radius:.2857rem;box-shadow:none}.ui.image.label img{display:inline-block;vertical-align:top;height:2.2em;margin:-.6em .5em -.6em -.5em;border-radius:.2857rem}.ui.image.label .detail{background:rgba(0,0,0,.1);margin:-.6em -.8em -.6em .5em;padding:.6em .8em;border-radius:0 .2857rem .2857rem 0}.ui.tag.label,.ui.tag.labels .label{margin-left:1em;position:relative;padding-left:1.5em;padding-right:1.5em;border-radius:0 .2857rem .2857rem 0}.ui.tag.label:before,.ui.tag.labels .label:before{position:absolute;-webkit-transform:translateY(-50%) translateX(50%) rotate(-45deg);-ms-transform:translateY(-50%) translateX(50%) rotate(-45deg);transform:translateY(-50%) translateX(50%) rotate(-45deg);top:50%;right:100%;content:'';background-color:#e8e8e8;background-image:none;width:1.56em;height:1.56em;-webkit-transition:background .2s ease;transition:background .2s ease}.ui.tag.label:after,.ui.tag.labels .label:after{position:absolute;content:'';top:50%;left:-.25em;margin-top:-.25em;background-color:#fff!important;width:.5em;height:.5em;box-shadow:0 -1px 1px 0 rgba(0,0,0,.3);border-radius:500rem}.ui.corner.label{position:absolute;top:0;right:0;margin:0;padding:0;text-align:center;width:3.25em;height:3.25em;z-index:1;-webkit-transition:border-color .2s ease;transition:border-color .2s ease;background-color:transparent!important}.ui.corner.label:after{position:absolute;content:"";right:0;top:0;z-index:-1;width:0;height:0;background-color:transparent!important;border-top:0 solid transparent;border-right:3.25em solid transparent;border-bottom:3.25em solid transparent;border-left:0 solid transparent;border-right-color:inherit;-webkit-transition:border-color .2s ease;transition:border-color .2s ease}.ui.corner.label .icon{position:relative;top:.4em;left:.75em;font-size:1em;margin:0}.ui.left.corner.label,.ui.left.corner.label:after{right:auto;left:0}.ui.left.corner.label:after{border-top:3.25em solid transparent;border-right:3.25em solid transparent;border-bottom:0 solid transparent;border-left:0 solid transparent;border-top-color:inherit}.ui.left.corner.label .icon{left:-.75em}.ui.segment>.ui.corner.label{top:-1px;right:-1px}.ui.segment>.ui.left.corner.label{right:auto;left:-1px}.ui.input>.ui.corner.label{top:1px;right:1px}.ui.input>.ui.right.corner.label{right:auto;left:1px}.ui.ribbon.label{position:relative;margin:0;left:-webkit-calc(-1rem - 1.2em);left:calc(-1rem - 1.2em);padding-left:-webkit-calc(1rem + 1.2em);padding-left:calc(1rem + 1.2em);border-radius:0 .2857rem .2857rem 0;border-color:rgba(0,0,0,.15)}.ui.ribbon.label:after{position:absolute;content:"";top:100%;left:0;background-color:transparent!important;border-style:solid;border-width:0 1.2em 1.2em 0;border-color:transparent;border-right-color:inherit;width:0;height:0}.ui[class*="right ribbon"].label{text-align:left;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);left:-webkit-calc(100% + 1rem + 1.2em);left:calc(100% + 1rem + 1.2em);border-radius:.2857rem 0 0 .2857rem;padding-left:.8em;padding-right:-webkit-calc(1rem + 1.2em);padding-right:calc(1rem + 1.2em)}.ui[class*="right ribbon"].label:after{left:auto;right:0;border-style:solid;border-width:1.2em 1.2em 0 0;border-color:transparent;border-top-color:inherit}.ui.attached.label,.ui.top.attached.label{width:100%;position:absolute;margin:0;top:0;left:0;padding:.75em 1em;border-radius:.2857rem .2857rem 0 0}.ui.bottom.attached.label{top:auto;bottom:0;border-radius:0 0 .2857rem .2857rem}.ui.top.left.attached.label{width:auto;margin-top:0!important;border-radius:.2857rem 0}.ui.top.right.attached.label{width:auto;left:auto;right:0;border-radius:0 .2857rem}.ui.bottom.left.attached.label{width:auto;top:auto;bottom:0;border-radius:0 .2857rem}.ui.bottom.right.attached.label{top:auto;bottom:0;left:auto;right:0;width:auto;border-radius:.2857rem 0}.ui.label.disabled{opacity:.5}a.ui.label:hover,a.ui.labels .label:hover{background-color:#e0e0e0;border-color:#e0e0e0;background-image:none;color:rgba(0,0,0,.8)}.ui.labels a.label:hover:before,a.ui.label:hover:before{background-color:#e0e0e0;background-image:none;color:rgba(0,0,0,.8)}.ui.label.visible,.ui.labels.visible .label{display:inline-block!important}.ui.label.hidden,.ui.labels.hidden .label{display:none!important}.ui.black.label,.ui.black.labels .label{background-color:#1b1c1d!important;border-color:#1b1c1d!important;color:#fff!important}.ui.black.label:before,.ui.black.labels .label:before,.ui.labels .black.label:before{background-color:#1b1c1d!important}a.ui.black.label:hover,a.ui.black.labels .label:hover{background-color:#1b1c1d!important;border-color:#1b1c1d!important}.ui.black.labels a.label:hover:before,.ui.labels a.black.label:hover:before,a.ui.black.label:hover:before{background-color:#1b1c1d!important}.ui.black.corner.label,.ui.black.corner.label:hover{background-color:transparent!important}.ui.black.ribbon.label{border-color:#020203!important}.ui.blue.label,.ui.blue.labels .label{background-color:#3b83c0!important;border-color:#3b83c0!important;color:#fff!important}.ui.blue.label:before,.ui.blue.labels .label:before,.ui.labels .blue.label:before{background-color:#3b83c0!important}.ui.blue.labels a.label:hover,a.ui.blue.label:hover,a.ui.blue.labels .label:hover{background-color:#458ac6!important;border-color:#458ac6!important;color:#fff!important}.ui.blue.labels a.label:hover:before,.ui.labels a.blue.label:hover:before,a.ui.blue.label:hover:before{background-color:#458ac6!important}.ui.blue.corner.label,.ui.blue.corner.label:hover{background-color:transparent!important}.ui.blue.ribbon.label{border-color:#2f6899!important}.ui.green.label,.ui.green.labels .label{background-color:#5bbd72!important;border-color:#5bbd72!important;color:#fff!important}.ui.green.label:before,.ui.green.labels .label:before,.ui.labels .green.label:before{background-color:#5bbd72!important}a.ui.green.label:hover,a.ui.green.labels .label:hover{background-color:#66c17b!important;border-color:#66c17b!important}.ui.green.labels a.label:hover:before,.ui.labels a.green.label:hover:before,a.ui.green.label:hover:before{background-color:#66c17b!important}.ui.green.corner.label,.ui.green.corner.label:hover{background-color:transparent!important}.ui.green.ribbon.label{border-color:#42a359!important}.ui.orange.label,.ui.orange.labels .label{background-color:#e07b53!important;border-color:#e07b53!important;color:#fff!important}.ui.labels .orange.label:before,.ui.orange.label:before,.ui.orange.labels .label:before{background-color:#e07b53!important}.ui.orange.labels a.label:hover,a.ui.orange.label:hover,a.ui.orange.labels .label:hover{background-color:#e28560!important;border-color:#e28560!important;color:#fff!important}.ui.labels a.orange.label:hover:before,.ui.orange.labels a.label:hover:before,a.ui.orange.label:hover:before{background-color:#e28560!important}.ui.orange.corner.label,.ui.orange.corner.label:hover{background-color:transparent!important}.ui.orange.ribbon.label{border-color:#d85a28!important}.ui.pink.label,.ui.pink.labels .label{background-color:#d9499a!important;border-color:#d9499a!important;color:#fff!important}.ui.labels .pink.label:before,.ui.pink.label:before,.ui.pink.labels .label:before{background-color:#d9499a!important}.ui.pink.labels a.label:hover,a.ui.pink.label:hover,a.ui.pink.labels .label:hover{background-color:#dc56a1!important;border-color:#dc56a1!important;color:#fff!important}.ui.labels a.pink.label:hover:before,.ui.pink.labels a.label:hover:before,a.ui.pink.label:hover:before{background-color:#dc56a1!important}.ui.pink.corner.label,.ui.pink.corner.label:hover{background-color:transparent!important}.ui.pink.ribbon.label{border-color:#c62981!important}.ui.purple.label,.ui.purple.labels .label{background-color:#564f8a!important;border-color:#564f8a!important;color:#fff!important}.ui.labels .purple.label:before,.ui.purple.label:before,.ui.purple.labels .label:before{background-color:#564f8a!important}.ui.purple.labels a.label:hover,a.ui.purple.label:hover,a.ui.purple.labels .label:hover{background-color:#5c5594!important;border-color:#5c5594!important;color:#fff!important}.ui.labels a.purple.label:hover:before,.ui.purple.labels a.label:hover:before,a.ui.purple.label:hover:before{background-color:#5c5594!important}.ui.purple.corner.label,.ui.purple.corner.label:hover{background-color:transparent!important}.ui.purple.ribbon.label{border-color:#423c6a!important}.ui.red.label,.ui.red.labels .label{background-color:#d95c5c!important;border-color:#d95c5c!important;color:#fff!important}.ui.labels .red.label:before,.ui.red.label:before,.ui.red.labels .label:before{background-color:#d95c5c!important}.ui.red.corner.label,.ui.red.corner.label:hover{background-color:transparent!important}a.ui.red.label:hover,a.ui.red.labels .label:hover{background-color:#dc6868!important;border-color:#dc6868!important;color:#fff!important}.ui.labels a.red.label:hover:before,.ui.red.labels a.label:hover:before,a.ui.red.label:hover:before{background-color:#dc6868!important}.ui.red.ribbon.label{border-color:#cf3333!important}.ui.teal.label,.ui.teal.labels .label{background-color:#00b5ad!important;border-color:#00b5ad!important;color:#fff!important}.ui.labels .teal.label:before,.ui.teal.label:before,.ui.teal.labels .label:before{background-color:#00b5ad!important}.ui.teal.labels a.label:hover,a.ui.teal.label:hover,a.ui.teal.labels .label:hover{background-color:#00c4bc!important;border-color:#00c4bc!important;color:#fff!important}.ui.labels a.teal.label:hover:before,.ui.teal.labels a.label:hover:before,a.ui.teal.label:hover:before{background-color:#00c4bc!important}.ui.teal.corner.label,.ui.teal.corner.label:hover{background-color:transparent!important}.ui.teal.ribbon.label{border-color:#00827c!important}.ui.yellow.label,.ui.yellow.labels .label{background-color:#f2c61f!important;border-color:#f2c61f!important;color:#fff!important}.ui.labels .yellow.label:before,.ui.yellow.label:before,.ui.yellow.labels .label:before{background-color:#f2c61f!important}.ui.yellow.labels a.label:hover,a.ui.yellow.label:hover,a.ui.yellow.labels .label:hover{background-color:#f3ca2d!important;border-color:#f3ca2d!important;color:#fff!important}.ui.labels a.yellow.label:hover:before,.ui.yellow.labels a.label:hover:before,a.ui.yellow.label:hover:before{background-color:#f3ca2d!important}.ui.yellow.corner.label,.ui.yellow.corner.label:hover{background-color:transparent!important}.ui.yellow.ribbon.label{border-color:#d2a90c!important}.ui.fluid.labels>.label,.ui.label.fluid{width:100%;box-sizing:border-box}.ui.inverted.label,.ui.inverted.labels .label{color:#fff!important}.ui.horizontal.label,.ui.horizontal.labels .label{margin:0 .5em 0 0;padding:.4em .8em;min-width:3em;text-align:center}.ui.circular.label,.ui.circular.labels .label{min-width:2em;min-height:2em;padding:.5em!important;line-height:1em;text-align:center;border-radius:500rem}.ui.empty.circular.label,.ui.empty.circular.labels .label{min-width:0;min-height:0;overflow:hidden;width:.5em;height:.5em;vertical-align:baseline}.ui.pointing.label{position:relative}.ui.attached.pointing.label{position:absolute}.ui.pointing.label:before{position:absolute;content:'';-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:2;width:.6em;height:.6em;-webkit-transition:background .2s ease;transition:background .2s ease;background-color:#e8e8e8;background-image:none}.ui.pointing.above.label,.ui.pointing.label{margin-top:1em}.ui.pointing.above.label:before,.ui.pointing.label:before{margin-left:-.3em;top:-.3em;left:50%}.ui.pointing.below.label,.ui.pointing.bottom.label{margin-top:0;margin-bottom:1em}.ui.pointing.below.label:before,.ui.pointing.bottom.label:before{margin-left:-.3em;top:auto;right:auto;bottom:-.3em;left:50%}.ui.pointing.left.label{margin-top:0;margin-left:.6em}.ui.pointing.left.label:before{margin-top:-.3em;bottom:auto;right:auto;top:50%;left:0}.ui.pointing.right.label{margin-top:0;margin-right:.6em}.ui.pointing.right.label:before{margin-top:-.3em;right:-.3em;top:50%;bottom:auto;left:auto}.ui.floating.label{position:absolute;z-index:100;top:-1em;left:100%;margin:0 0 0 -1.5em!important}.ui.mini.label,.ui.mini.labels .label{font-size:.6428rem}.ui.tiny.label,.ui.tiny.labels .label{font-size:.7142rem}.ui.small.label,.ui.small.labels .label{font-size:.7857rem}.ui.label,.ui.labels .label{font-size:.8571rem}.ui.large.label,.ui.large.labels .label{font-size:1rem}.ui.big.label,.ui.big.labels .label{font-size:1.1428rem}.ui.huge.label,.ui.huge.labels .label{font-size:1.2857rem}.ui.massive.label,.ui.massive.labels .label{font-size:1.4285rem}
@@ -0,0 +1,879 @@
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
+ List
16
+ *******************************/
17
+
18
+ ul.ui.list,
19
+ ol.ui.list,
20
+ .ui.list {
21
+ list-style-type: none;
22
+ margin: 1em 0em;
23
+ padding: 0em 0em;
24
+ }
25
+ ul.ui.list:first-child,
26
+ ol.ui.list:first-child,
27
+ .ui.list:first-child {
28
+ margin-top: 0em;
29
+ padding-top: 0em;
30
+ }
31
+ ul.ui.list:last-child,
32
+ ol.ui.list:last-child,
33
+ .ui.list:last-child {
34
+ margin-bottom: 0em;
35
+ padding-bottom: 0em;
36
+ }
37
+
38
+
39
+ /*******************************
40
+ Content
41
+ *******************************/
42
+
43
+
44
+ /* List Item */
45
+ ul.ui.list li,
46
+ ol.ui.list li,
47
+ .ui.list > .item,
48
+ .ui.list .list > .item {
49
+ display: list-item;
50
+ table-layout: fixed;
51
+ list-style-type: none;
52
+ list-style-position: outside;
53
+ padding: 0.3em 0em;
54
+ line-height: 1.2;
55
+ }
56
+ ul.ui.list > li:first-child:after,
57
+ ol.ui.list > li:first-child:after,
58
+ .ui.list > .list > .item,
59
+ .ui.list > .item:after {
60
+ content: '';
61
+ display: block;
62
+ height: 0;
63
+ clear: both;
64
+ visibility: hidden;
65
+ }
66
+ ul.ui.list li:first-child,
67
+ ol.ui.list li:first-child,
68
+ .ui.list .list > .item:first-child,
69
+ .ui.list > .item:first-child {
70
+ padding-top: 0em;
71
+ }
72
+ ul.ui.list li:last-child,
73
+ ol.ui.list li:last-child,
74
+ .ui.list .list > .item:last-child,
75
+ .ui.list > .item:last-child {
76
+ padding-bottom: 0em;
77
+ }
78
+
79
+ /* Child List */
80
+ ul.ui.list ul,
81
+ ol.ui.list ol,
82
+ .ui.list .list {
83
+ clear: both;
84
+ margin: 0em;
85
+ padding: 0.75em 0em 0.25em 0.5em;
86
+ }
87
+
88
+ /* Icon */
89
+ .ui.list .list > .item > i.icon,
90
+ .ui.list > .item > i.icon {
91
+ display: table-cell;
92
+ margin: 0em;
93
+ padding-top: 0.1rem;
94
+ padding-right: 0.3em;
95
+ vertical-align: middle;
96
+ -webkit-transition: color 0.2s ease;
97
+ transition: color 0.2s ease;
98
+ }
99
+ .ui.list .list > .item i[class*="top aligned"].icon,
100
+ .ui.list > .item > i[class*="top aligned"].icon {
101
+ vertical-align: top;
102
+ }
103
+ .ui.list .list > .item > i.icon:only-child,
104
+ .ui.list > .item > i.icon:only-child {
105
+ display: inline-block;
106
+ vertical-align: top;
107
+ }
108
+
109
+ /* Image */
110
+ .ui.list .list > .item > .image,
111
+ .ui.list > .item > .image {
112
+ display: table-cell;
113
+ background-color: transparent;
114
+ margin: 0em;
115
+ padding-right: 0.5em;
116
+ vertical-align: middle;
117
+ }
118
+ .ui.list .list > .item > [class*="top aligned"].image,
119
+ .ui.list > .item > [class*="top aligned"].image {
120
+ vertical-align: top;
121
+ }
122
+ .ui.list .list > .item > .image img,
123
+ .ui.list > .item > .image img {
124
+ vertical-align: middle;
125
+ }
126
+ .ui.list .list > .item > img.image,
127
+ .ui.list .list > .item > .image:only-child,
128
+ .ui.list > .item > img.image,
129
+ .ui.list > .item > .image:only-child {
130
+ display: inline-block;
131
+ padding-right: 0em;
132
+ }
133
+
134
+ /* Content */
135
+ .ui.list .list > .item > .content,
136
+ .ui.list > .item > .content {
137
+ line-height: 1.2em;
138
+ }
139
+ .ui.list .list > .item > .image + .content,
140
+ .ui.list .list > .item > .icon + .content .ui.list > .item > .image + .content,
141
+ .ui.list > .item > .icon + .content {
142
+ display: table-cell;
143
+ padding-left: 0.5em;
144
+ vertical-align: middle;
145
+ }
146
+ .ui.list .list > .item > .image + .content,
147
+ .ui.list .list > .item > .icon + .content,
148
+ .ui.list > .item > .image + .content,
149
+ .ui.list > .item > .icon + .content {
150
+ display: table-cell;
151
+ padding-left: 0.5em;
152
+ vertical-align: middle;
153
+ }
154
+ .ui.list .list > .item > img.image + .content,
155
+ .ui.list > .item > img.image + .content {
156
+ display: inline-block;
157
+ }
158
+ .ui.list .list > .item [class*="top aligned"].content,
159
+ .ui.list > .item > [class*="top aligned"].content {
160
+ vertical-align: top;
161
+ }
162
+ .ui.list .list > .item > .content > .list,
163
+ .ui.list > .item > .content > .list {
164
+ margin-left: 0em;
165
+ padding-left: 0em;
166
+ }
167
+
168
+ /* Item Link */
169
+ .ui.list .list > a.item,
170
+ .ui.list > a.item {
171
+ cursor: pointer;
172
+ color: rgba(0, 0, 0, 0.8);
173
+ }
174
+ .ui.list .list > a.item:hover,
175
+ .ui.list > a.item:hover {
176
+ color: #00b2f3;
177
+ }
178
+
179
+ /* Linked Item Icons */
180
+ .ui.list .list > a.item i.icon,
181
+ .ui.list > a.item i.icon {
182
+ color: rgba(0, 0, 0, 0.4);
183
+ }
184
+
185
+ /* Linking Content */
186
+ .ui.list .item a {
187
+ cursor: pointer;
188
+ color: rgba(0, 0, 0, 0.8) !important;
189
+ }
190
+ .ui.list .item a:hover {
191
+ color: #00b2f3 !important;
192
+ }
193
+
194
+ /* Header */
195
+ .ui.list .list > .item .header,
196
+ .ui.list > .item .header {
197
+ display: block;
198
+ margin: 0em;
199
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
200
+ font-weight: bold;
201
+ color: rgba(0, 0, 0, 0.8);
202
+ }
203
+ .ui.list .list > .item .description,
204
+ .ui.list > .item .description {
205
+ display: block;
206
+ color: rgba(0, 0, 0, 0.8);
207
+ }
208
+
209
+ /* Floated Content */
210
+ .ui.list .list > .item [class*="left floated"],
211
+ .ui.list > .item [class*="left floated"] {
212
+ float: left;
213
+ margin: 0em 1em 0em 0em;
214
+ }
215
+ .ui.list .list > .item [class*="right floated"],
216
+ .ui.list > .item [class*="right floated"] {
217
+ float: right;
218
+ margin: 0em 0em 0em 1em;
219
+ }
220
+
221
+
222
+ /*******************************
223
+ Coupling
224
+ *******************************/
225
+
226
+ .ui.menu .ui.list > .item,
227
+ .ui.menu .ui.list .list > .item {
228
+ display: list-item;
229
+ table-layout: fixed;
230
+ background-color: transparent;
231
+ list-style-type: none;
232
+ list-style-position: outside;
233
+ padding: 0.3em 0em;
234
+ line-height: 1.2;
235
+ }
236
+ .ui.menu .ui.list .list > .item:before,
237
+ .ui.menu .ui.list > .item:before {
238
+ border: none;
239
+ background: none;
240
+ }
241
+ .ui.menu .ui.list .list > .item:first-child,
242
+ .ui.menu .ui.list > .item:first-child {
243
+ padding-top: 0em;
244
+ }
245
+ .ui.menu .ui.list .list > .item:last-child,
246
+ .ui.menu .ui.list > .item:last-child {
247
+ padding-bottom: 0em;
248
+ }
249
+
250
+
251
+ /*******************************
252
+ Types
253
+ *******************************/
254
+
255
+
256
+ /*-------------------
257
+ Horizontal
258
+ --------------------*/
259
+
260
+ .ui.horizontal.list {
261
+ display: inline-block;
262
+ font-size: 0em;
263
+ }
264
+ .ui.horizontal.list > .item {
265
+ display: inline-block;
266
+ margin-left: 1em;
267
+ font-size: 1rem;
268
+ }
269
+ .ui.horizontal.list > .item:first-child {
270
+ margin-left: 0em !important;
271
+ padding-left: 0em !important;
272
+ }
273
+ .ui.horizontal.list .list {
274
+ padding-left: 0em;
275
+ padding-bottom: 0em;
276
+ }
277
+
278
+ /* Padding on all elements */
279
+ .ui.horizontal.list > .item:first-child,
280
+ .ui.horizontal.list > .item:last-child {
281
+ padding-top: 0.3em;
282
+ padding-bottom: 0.3em;
283
+ }
284
+
285
+ /* Horizontal List */
286
+ .ui.horizontal.list > .item > i.icon {
287
+ margin: 0em;
288
+ padding: 0em 0.25em 0em 0em;
289
+ }
290
+ .ui.horizontal.list > .item > .icon,
291
+ .ui.horizontal.list > .item > .icon + .content {
292
+ float: none;
293
+ display: inline-block;
294
+ }
295
+
296
+
297
+ /*******************************
298
+ States
299
+ *******************************/
300
+
301
+
302
+ /*-------------------
303
+ Disabled
304
+ --------------------*/
305
+
306
+ .ui.list .list > .disabled.item,
307
+ .ui.list > .disabled.item {
308
+ pointer-events: none;
309
+ color: rgba(40, 40, 40, 0.3) !important;
310
+ }
311
+ .ui.inverted.list .list > .disabled.item,
312
+ .ui.inverted.list > .disabled.item {
313
+ color: rgba(225, 225, 225, 0.3) !important;
314
+ }
315
+
316
+ /*-------------------
317
+ Hover
318
+ --------------------*/
319
+
320
+ .ui.list .list > a.item:hover .icon,
321
+ .ui.list > a.item:hover .icon {
322
+ color: rgba(0, 0, 0, 0.8);
323
+ }
324
+
325
+
326
+ /*******************************
327
+ Variations
328
+ *******************************/
329
+
330
+
331
+ /*-------------------
332
+ Inverted
333
+ --------------------*/
334
+
335
+ .ui.inverted.list .list > a.item > .icon,
336
+ .ui.inverted.list > a.item > .icon {
337
+ color: rgba(255, 255, 255, 0.8);
338
+ }
339
+ .ui.inverted.list .list > .item .header,
340
+ .ui.inverted.list > .item .header {
341
+ color: #ffffff;
342
+ }
343
+ .ui.inverted.list .list > .item .description,
344
+ .ui.inverted.list > .item .description {
345
+ color: rgba(255, 255, 255, 0.8);
346
+ }
347
+
348
+ /* Item Link */
349
+ .ui.inverted.list .list > a.item,
350
+ .ui.inverted.list > a.item {
351
+ cursor: pointer;
352
+ color: #ffffff;
353
+ }
354
+ .ui.inverted.list .list > a.item:hover,
355
+ .ui.inverted.list > a.item:hover {
356
+ color: #00b2f3;
357
+ }
358
+
359
+ /* Linking Content */
360
+ .ui.inverted.list .item a {
361
+ cursor: pointer;
362
+ color: #ffffff !important;
363
+ }
364
+ .ui.inverted.list .item a:hover {
365
+ color: #00b2f3 !important;
366
+ }
367
+
368
+ /*-------------------
369
+ Link
370
+ --------------------*/
371
+
372
+ .ui.link.list .item,
373
+ .ui.link.list a.item,
374
+ .ui.link.list .item a {
375
+ color: rgba(0, 0, 0, 0.4);
376
+ -webkit-transition: 0.2s color ease;
377
+ transition: 0.2s color ease;
378
+ }
379
+ .ui.link.list a.item:hover,
380
+ .ui.link.list .item a:hover {
381
+ color: rgba(0, 0, 0, 0.8);
382
+ }
383
+ .ui.link.list a.item:active,
384
+ .ui.link.list .item a:active {
385
+ color: rgba(0, 0, 0, 0.8);
386
+ }
387
+ .ui.link.list .active.item,
388
+ .ui.link.list .active.item a {
389
+ color: rgba(0, 0, 0, 0.8);
390
+ }
391
+
392
+ /* Inverted */
393
+ .ui.inverted.link.list .item,
394
+ .ui.inverted.link.list a.item,
395
+ .ui.inverted.link.list .item a {
396
+ color: rgba(255, 255, 255, 0.5);
397
+ }
398
+ .ui.inverted.link.list a.item:hover,
399
+ .ui.inverted.link.list .item a:hover {
400
+ color: #ffffff;
401
+ }
402
+ .ui.inverted.link.list a.item:active,
403
+ .ui.inverted.link.list .item a:active {
404
+ color: #ffffff;
405
+ }
406
+ .ui.inverted.link.list a.active.item,
407
+ .ui.inverted.link.list .active.item a {
408
+ color: #ffffff;
409
+ }
410
+
411
+ /*-------------------
412
+ Selection
413
+ --------------------*/
414
+
415
+ .ui.selection.list .list > .item,
416
+ .ui.selection.list > .item {
417
+ cursor: pointer;
418
+ background: transparent;
419
+ padding: 0.5em 0.5em;
420
+ margin: 0em;
421
+ color: rgba(0, 0, 0, 0.4);
422
+ border-radius: 0.5em;
423
+ -webkit-transition: 0.2s color ease, 0.2s padding-left ease, 0.2s background-color ease;
424
+ transition: 0.2s color ease, 0.2s padding-left ease, 0.2s background-color ease;
425
+ }
426
+ .ui.selection.list .list > .item:last-child,
427
+ .ui.selection.list > .item:last-child {
428
+ margin-bottom: 0em;
429
+ }
430
+ .ui.selection.list.list > .item:hover,
431
+ .ui.selection.list > .item:hover {
432
+ background: rgba(0, 0, 0, 0.03);
433
+ color: rgba(0, 0, 0, 0.8);
434
+ }
435
+ .ui.selection.list .list > .item:active,
436
+ .ui.selection.list > .item:active {
437
+ background: rgba(0, 0, 0, 0.05);
438
+ color: rgba(0, 0, 0, 0.8);
439
+ }
440
+ .ui.selection.list .list > .item.active,
441
+ .ui.selection.list > .item.active {
442
+ background: rgba(0, 0, 0, 0.05);
443
+ color: rgba(0, 0, 0, 0.8);
444
+ }
445
+
446
+ /* Inverted */
447
+ .ui.inverted.selection.list > .item,
448
+ .ui.inverted.selection.list > .item {
449
+ background: transparent;
450
+ color: rgba(255, 255, 255, 0.5);
451
+ }
452
+ .ui.inverted.selection.list > .item:hover,
453
+ .ui.inverted.selection.list > .item:hover {
454
+ background: rgba(255, 255, 255, 0.02);
455
+ color: #ffffff;
456
+ }
457
+ .ui.inverted.selection.list > .item:active,
458
+ .ui.inverted.selection.list > .item:active {
459
+ background: rgba(255, 255, 255, 0.05);
460
+ color: #ffffff;
461
+ }
462
+ .ui.inverted.selection.list > .item.active,
463
+ .ui.inverted.selection.list > .item.active {
464
+ background: rgba(255, 255, 255, 0.05);
465
+ color: #ffffff;
466
+ }
467
+
468
+ /* Celled / Divided Selection List */
469
+ .ui.celled.selection.list .list > .item,
470
+ .ui.divided.selection.list .list > .item,
471
+ .ui.celled.selection.list > .item,
472
+ .ui.divided.selection.list > .item {
473
+ border-radius: 0em;
474
+ }
475
+
476
+ /*-------------------
477
+ Animated
478
+ --------------------*/
479
+
480
+ .ui.animated.list > .item {
481
+ -webkit-transition: 0.2s color ease, 0.2s padding-left ease, 0.2s background-color ease;
482
+ transition: 0.2s color ease, 0.2s padding-left ease, 0.2s background-color ease;
483
+ }
484
+ .ui.animated.list:not(.horizontal) > .item:hover {
485
+ padding-left: 1em;
486
+ }
487
+
488
+ /*-------------------
489
+ Fitted
490
+ --------------------*/
491
+
492
+ .ui.fitted.list:not(.selection) .list > .item,
493
+ .ui.fitted.list:not(.selection) > .item {
494
+ padding-left: 0em;
495
+ padding-right: 0em;
496
+ }
497
+ .ui.fitted.selection.list .list > .item,
498
+ .ui.fitted.selection.list > .item {
499
+ margin-left: -0.5em;
500
+ margin-right: -0.5em;
501
+ }
502
+
503
+ /*-------------------
504
+ Bulleted
505
+ --------------------*/
506
+
507
+ ul.ui.list,
508
+ .ui.bulleted.list {
509
+ margin-left: 1rem;
510
+ }
511
+ ul.ui.list li,
512
+ .ui.bulleted.list .list > .item,
513
+ .ui.bulleted.list > .item {
514
+ position: relative;
515
+ }
516
+ ul.ui.list li:before,
517
+ .ui.bulleted.list .list > .item:before,
518
+ .ui.bulleted.list > .item:before {
519
+ position: absolute;
520
+ top: auto;
521
+ left: auto;
522
+ margin-left: -1rem;
523
+ content: '•';
524
+ opacity: 1;
525
+ color: rgba(0, 0, 0, 0.8);
526
+ vertical-align: top;
527
+ }
528
+ ul.ui.list ul,
529
+ .ui.bulleted.list .list {
530
+ padding-left: 1rem;
531
+ }
532
+
533
+ /* Horizontal Bulleted */
534
+ ul.ui.horizontal.bulleted.list,
535
+ .ui.horizontal.bulleted.list {
536
+ margin-left: 0em;
537
+ }
538
+ ul.ui.horizontal.bulleted.list li,
539
+ .ui.horizontal.bulleted.list > .item {
540
+ margin-left: 1.5rem;
541
+ }
542
+ ul.ui.horizontal.bulleted.list li:first-child,
543
+ .ui.horizontal.bulleted.list > .item:first-child {
544
+ margin-left: 0em;
545
+ }
546
+ ul.ui.horizontal.bulleted.list li:first-child::before,
547
+ .ui.horizontal.bulleted.list > .item:first-child::before {
548
+ display: none;
549
+ }
550
+
551
+ /*-------------------
552
+ Ordered
553
+ --------------------*/
554
+
555
+ ol.ui.list,
556
+ .ui.ordered.list,
557
+ .ui.ordered.list .list,
558
+ ol.ui.list ol {
559
+ counter-reset: ordered;
560
+ margin-left: 1.25rem;
561
+ list-style-type: none;
562
+ }
563
+ ol.ui.list li,
564
+ .ui.ordered.list .list > .item,
565
+ .ui.ordered.list > .item {
566
+ list-style-type: none;
567
+ position: relative;
568
+ }
569
+ ol.ui.list li:before,
570
+ .ui.ordered.list .list > .item:before,
571
+ .ui.ordered.list > .item:before {
572
+ position: absolute;
573
+ top: auto;
574
+ left: auto;
575
+ margin-left: -1.25rem;
576
+ counter-increment: ordered;
577
+ content: counters(ordered, ".") " ";
578
+ text-align: right;
579
+ color: rgba(0, 0, 0, 0.8);
580
+ vertical-align: middle;
581
+ opacity: 0.8;
582
+ }
583
+
584
+ /* Child Lists */
585
+ ol.ui.list ol,
586
+ .ui.ordered.list .list {
587
+ margin-left: 1em;
588
+ }
589
+ ol.ui.list ol li:before,
590
+ .ui.ordered.list .list > .item:before {
591
+ margin-left: -2em;
592
+ }
593
+
594
+ /* Horizontal Ordered */
595
+ ol.ui.horizontal.list,
596
+ .ui.ordered.horizontal.list {
597
+ margin-left: 0em;
598
+ }
599
+ ol.ui.horizontal.list li:before,
600
+ .ui.ordered.horizontal.list .list > .item:before,
601
+ .ui.ordered.horizontal.list > .item:before {
602
+ position: static;
603
+ margin: 0em 0.5em 0em 0em;
604
+ }
605
+
606
+ /*-------------------
607
+ Divided
608
+ --------------------*/
609
+
610
+ .ui.divided.list > .item {
611
+ border-top: 1px solid rgba(39, 41, 43, 0.15);
612
+ }
613
+ .ui.divided.list .list > .item {
614
+ border-top: none;
615
+ }
616
+ .ui.divided.list .item .list > .item {
617
+ border-top: none;
618
+ }
619
+ .ui.divided.list .list > .item:first-child,
620
+ .ui.divided.list > .item:first-child {
621
+ border-top: none;
622
+ }
623
+
624
+ /* Sub Menu */
625
+ .ui.divided.list:not(.horizontal) .list > .item:first-child {
626
+ border-top-width: 1px;
627
+ }
628
+
629
+ /* Divided bulleted */
630
+ .ui.divided.bulleted.list:not(.horizontal),
631
+ .ui.divided.bulleted.list .list {
632
+ margin-left: 0em;
633
+ padding-left: 0em;
634
+ }
635
+ .ui.divided.bulleted.list .list > .item:not(.horizontal),
636
+ .ui.divided.bulleted.list > .item:not(.horizontal) {
637
+ padding-left: 1rem;
638
+ }
639
+
640
+ /* Divided Ordered */
641
+ .ui.divided.ordered.list {
642
+ margin-left: 0em;
643
+ }
644
+ .ui.divided.ordered.list .list > .item,
645
+ .ui.divided.ordered.list > .item {
646
+ padding-left: 1.25rem;
647
+ }
648
+ .ui.divided.ordered.list .item .list {
649
+ margin-left: 0em;
650
+ margin-right: 0em;
651
+ padding-bottom: 0.3em;
652
+ }
653
+ .ui.divided.ordered.list .item .list > .item {
654
+ padding-left: 1em;
655
+ }
656
+
657
+ /* Divided Selection */
658
+ .ui.divided.selection.list .list > .item,
659
+ .ui.divided.selection.list > .item {
660
+ margin: 0em;
661
+ border-radius: 0em;
662
+ }
663
+
664
+ /* Divided horizontal */
665
+ .ui.divided.horizontal.list {
666
+ margin-left: 0em;
667
+ }
668
+ .ui.divided.horizontal.list > .item {
669
+ border-top: none;
670
+ border-left: 1px solid rgba(39, 41, 43, 0.15);
671
+ margin: 0em;
672
+ padding-left: 0.5em;
673
+ padding-right: 0.5em;
674
+ line-height: 0.6;
675
+ }
676
+ .ui.horizontal.divided.list > .item:first-child {
677
+ border-left: none;
678
+ }
679
+
680
+ /* Inverted */
681
+ .ui.divided.inverted.list > .item,
682
+ .ui.divided.inverted.list > .list,
683
+ .ui.divided.inverted.horizontal.list > .item {
684
+ border-color: rgba(255, 255, 255, 0.2);
685
+ }
686
+
687
+ /*-------------------
688
+ Celled
689
+ --------------------*/
690
+
691
+ .ui.celled.list > .item,
692
+ .ui.celled.list > .list {
693
+ border-top: 1px solid rgba(39, 41, 43, 0.15);
694
+ padding-left: 0.5em;
695
+ padding-right: 0.5em;
696
+ }
697
+ .ui.celled.list > .item:last-child {
698
+ border-bottom: 1px solid rgba(39, 41, 43, 0.15);
699
+ }
700
+
701
+ /* Padding on all elements */
702
+ .ui.celled.list > .item:first-child,
703
+ .ui.celled.list > .item:last-child {
704
+ padding-top: 0.3em;
705
+ padding-bottom: 0.3em;
706
+ }
707
+
708
+ /* Sub Menu */
709
+ .ui.celled.list .item .list > .item {
710
+ border-width: 0px;
711
+ }
712
+ .ui.celled.list .list > .item:first-child {
713
+ border-top-width: 0px;
714
+ }
715
+
716
+ /* Celled Bulleted */
717
+ .ui.celled.bulleted.list {
718
+ margin-left: 0em;
719
+ }
720
+ .ui.celled.bulleted.list .list > .item,
721
+ .ui.celled.bulleted.list > .item {
722
+ padding-left: 1rem;
723
+ }
724
+ .ui.celled.bulleted.list .item .list {
725
+ margin-left: -1rem;
726
+ margin-right: -1rem;
727
+ padding-bottom: 0.3em;
728
+ }
729
+
730
+ /* Celled Ordered */
731
+ .ui.celled.ordered.list {
732
+ margin-left: 0em;
733
+ }
734
+ .ui.celled.ordered.list .list > .item,
735
+ .ui.celled.ordered.list > .item {
736
+ padding-left: 1.25rem;
737
+ }
738
+ .ui.celled.ordered.list .item .list {
739
+ margin-left: 0em;
740
+ margin-right: 0em;
741
+ padding-bottom: 0.3em;
742
+ }
743
+ .ui.celled.ordered.list .list > .item {
744
+ padding-left: 1em;
745
+ }
746
+
747
+ /* Celled Horizontal */
748
+ .ui.horizontal.celled.list {
749
+ margin-left: 0em;
750
+ }
751
+ .ui.horizontal.celled.list .list > .item,
752
+ .ui.horizontal.celled.list > .item {
753
+ border-top: none;
754
+ border-left: 1px solid rgba(39, 41, 43, 0.15);
755
+ margin: 0em;
756
+ padding-left: 0.5em;
757
+ padding-right: 0.5em;
758
+ line-height: 0.6;
759
+ }
760
+ .ui.horizontal.celled.list .list > .item:last-child,
761
+ .ui.horizontal.celled.list > .item:last-child {
762
+ border-bottom: none;
763
+ border-right: 1px solid rgba(39, 41, 43, 0.15);
764
+ }
765
+
766
+ /* Inverted */
767
+ .ui.celled.inverted.list > .item,
768
+ .ui.celled.inverted.list > .list {
769
+ border-color: 1px solid rgba(255, 255, 255, 0.2);
770
+ }
771
+ .ui.celled.inverted.horizontal.list .list > .item,
772
+ .ui.celled.inverted.horizontal.list > .item {
773
+ border-color: 1px solid rgba(255, 255, 255, 0.2);
774
+ }
775
+
776
+ /*-------------------
777
+ Relaxed
778
+ --------------------*/
779
+
780
+ .ui.relaxed.list:not(.horizontal) > .item {
781
+ padding-top: 0.5rem;
782
+ padding-bottom: 0.5rem;
783
+ }
784
+ .ui.relaxed.list .list > .item .header,
785
+ .ui.relaxed.list > .item .header {
786
+ /*margin-bottom: @relaxedHeaderMargin;*/
787
+ }
788
+ .ui.horizontal.relaxed.list > .item {
789
+ padding-left: 1.25rem;
790
+ padding-right: 1.25rem;
791
+ }
792
+
793
+ /* Very Relaxed */
794
+ .ui[class*="very relaxed"].list:not(.horizontal) > .item {
795
+ padding-top: 1rem;
796
+ padding-bottom: 1rem;
797
+ }
798
+ .ui[class*="very relaxed"].list .list > .item .header,
799
+ .ui[class*="very relaxed"].list > .item .header {
800
+ /*margin-bottom: @veryRelaxedHeaderMargin;*/
801
+ }
802
+ .ui.horizontal[class*="very relaxed"].list .list > .item,
803
+ .ui.horizontal[class*="very relaxed"].list > .item {
804
+ padding-left: 2rem;
805
+ padding-right: 2rem;
806
+ }
807
+
808
+ /*-------------------
809
+ Sizes
810
+ --------------------*/
811
+
812
+ .ui.mini.list {
813
+ font-size: 0.71428571em;
814
+ }
815
+ .ui.tiny.list {
816
+ font-size: 0.85714286em;
817
+ }
818
+ .ui.small.list {
819
+ font-size: 0.92857143em;
820
+ }
821
+ .ui.list {
822
+ font-size: 1em;
823
+ }
824
+ .ui.large.list {
825
+ font-size: 1.14285714em;
826
+ }
827
+ .ui.big.list {
828
+ font-size: 1.28571429em;
829
+ }
830
+ .ui.huge.list {
831
+ font-size: 1.42857143em;
832
+ }
833
+ .ui.massive.list {
834
+ font-size: 1.71428571em;
835
+ }
836
+ .ui.mini.horizontal.list .list > .item,
837
+ .ui.mini.horizontal.list > .item {
838
+ font-size: 0.71428571rem;
839
+ }
840
+ .ui.tiny.horizontal.list .list > .item,
841
+ .ui.tiny.horizontal.list > .item {
842
+ font-size: 0.85714286rem;
843
+ }
844
+ .ui.small.horizontal.list .list > .item,
845
+ .ui.small.horizontal.list > .item {
846
+ font-size: 0.92857143rem;
847
+ }
848
+ .ui.horizontal.list .list > .item,
849
+ .ui.horizontal.list > .item {
850
+ font-size: 1rem;
851
+ }
852
+ .ui.large.horizontal.list .list > .item,
853
+ .ui.large.horizontal.list > .item {
854
+ font-size: 1.14285714rem;
855
+ }
856
+ .ui.big.horizontal.list .list > .item,
857
+ .ui.big.horizontal.list > .item {
858
+ font-size: 1.28571429rem;
859
+ }
860
+ .ui.huge.horizontal.list .list > .item,
861
+ .ui.huge.horizontal.list > .item {
862
+ font-size: 1.42857143rem;
863
+ }
864
+ .ui.massive.horizontal.list .list > .item,
865
+ .ui.massive.horizontal.list > .item {
866
+ font-size: 1.71428571rem;
867
+ }
868
+
869
+
870
+ /*******************************
871
+ Theme Overrides
872
+ *******************************/
873
+
874
+
875
+
876
+ /*******************************
877
+ User Variable Overrides
878
+ *******************************/
879
+