cloudrider 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (426) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/.rspec +1 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +31 -0
  7. data/Rakefile +2 -0
  8. data/cloudrider.gemspec +30 -0
  9. data/generica/.bowerrc +3 -0
  10. data/generica/.rspec +2 -0
  11. data/generica/Gemfile +67 -0
  12. data/generica/Gemfile.lock +363 -0
  13. data/generica/LICENSE.txt +22 -0
  14. data/generica/README.md +156 -0
  15. data/generica/Rakefile +5 -0
  16. data/generica/app/assets/images/.keep +0 -0
  17. data/generica/app/assets/images/cookie-splash/albatross.jpg +0 -0
  18. data/generica/app/assets/images/cookie-splash/california.png +0 -0
  19. data/generica/app/assets/images/hero-splash/albatross.jpg +0 -0
  20. data/generica/app/assets/images/hero-splash/california.jpg +0 -0
  21. data/generica/app/assets/images/hero-splash/rocks.jpg +0 -0
  22. data/generica/app/assets/images/hero-splash/seaweed.png +0 -0
  23. data/generica/app/assets/images/introductory-lobby/fishing.jpg +0 -0
  24. data/generica/app/assets/images/products-showcase/rocks.jpg +0 -0
  25. data/generica/app/assets/images/table-booths/411.png +0 -0
  26. data/generica/app/assets/javascripts/adapters/admin/employee.js.ls +20 -0
  27. data/generica/app/assets/javascripts/adapters/admin/product.js.ls +20 -0
  28. data/generica/app/assets/javascripts/adapters/admin/session.js.em +2 -0
  29. data/generica/app/assets/javascripts/adapters/application.js.em +2 -0
  30. data/generica/app/assets/javascripts/apiv1.js.ls +24 -0
  31. data/generica/app/assets/javascripts/application.js +23 -0
  32. data/generica/app/assets/javascripts/components/.gitkeep +0 -0
  33. data/generica/app/assets/javascripts/components/block-grid-pictures.js.em +3 -0
  34. data/generica/app/assets/javascripts/components/block-picture.js.em +8 -0
  35. data/generica/app/assets/javascripts/components/cookie-splash.js.em +2 -0
  36. data/generica/app/assets/javascripts/components/fancy-paginator.js.em +23 -0
  37. data/generica/app/assets/javascripts/components/files-field.js.em +28 -0
  38. data/generica/app/assets/javascripts/components/flash-message.js.em +6 -0
  39. data/generica/app/assets/javascripts/components/flash-slice.js.em +32 -0
  40. data/generica/app/assets/javascripts/components/form-for.js.em +28 -0
  41. data/generica/app/assets/javascripts/components/hero-splash.js.em +17 -0
  42. data/generica/app/assets/javascripts/components/introductory-lobby.js.em +13 -0
  43. data/generica/app/assets/javascripts/components/product-display.js.em +3 -0
  44. data/generica/app/assets/javascripts/components/product-listing.js.em +3 -0
  45. data/generica/app/assets/javascripts/components/products-catalog.js.em +2 -0
  46. data/generica/app/assets/javascripts/components/products-showcase.js.ls +5 -0
  47. data/generica/app/assets/javascripts/components/promise-button.js.em +20 -0
  48. data/generica/app/assets/javascripts/components/search-and-filter.js.em +13 -0
  49. data/generica/app/assets/javascripts/components/select-locale.js.em +19 -0
  50. data/generica/app/assets/javascripts/components/site-footer.js.em +8 -0
  51. data/generica/app/assets/javascripts/components/site-nav.js.em +3 -0
  52. data/generica/app/assets/javascripts/components/table-booths.js.em +10 -0
  53. data/generica/app/assets/javascripts/components/tr-span.js.em +18 -0
  54. data/generica/app/assets/javascripts/components/tree/taxon-li.js.em +46 -0
  55. data/generica/app/assets/javascripts/components/tree/taxon-ul.js.em +3 -0
  56. data/generica/app/assets/javascripts/components/tree/taxon-wrapper.js.em +22 -0
  57. data/generica/app/assets/javascripts/components/type-ahead.js.em +17 -0
  58. data/generica/app/assets/javascripts/config/i18n-translations.js.ls +3 -0
  59. data/generica/app/assets/javascripts/config/router.js.ls +29 -0
  60. data/generica/app/assets/javascripts/controllers/.gitkeep +0 -0
  61. data/generica/app/assets/javascripts/controllers/admin/employees/new_controller.js.em +16 -0
  62. data/generica/app/assets/javascripts/controllers/admin/employees/slice_controller.js.em +4 -0
  63. data/generica/app/assets/javascripts/controllers/admin/product/edit_controller.js.em +21 -0
  64. data/generica/app/assets/javascripts/controllers/admin/products/new_controller.js.em +16 -0
  65. data/generica/app/assets/javascripts/controllers/admin/products/slice_controller.js.em +4 -0
  66. data/generica/app/assets/javascripts/controllers/admin/translation/edit_controller.js.em +19 -0
  67. data/generica/app/assets/javascripts/controllers/admin/translation/form_controller.js.em +10 -0
  68. data/generica/app/assets/javascripts/controllers/admin/translations/index_controller.js.em +19 -0
  69. data/generica/app/assets/javascripts/controllers/admin/translations/sliver_controller.js.em +8 -0
  70. data/generica/app/assets/javascripts/controllers/application_controller.js.em +9 -0
  71. data/generica/app/assets/javascripts/controllers/index_controller.js.em +20 -0
  72. data/generica/app/assets/javascripts/controllers/modals/login_controller.js.em +24 -0
  73. data/generica/app/assets/javascripts/controllers/products/index_controller.js.em +28 -0
  74. data/generica/app/assets/javascripts/controllers/products/product/show_controller.js.em +17 -0
  75. data/generica/app/assets/javascripts/helpers/.gitkeep +0 -0
  76. data/generica/app/assets/javascripts/helpers/array_ex.js.ls +27 -0
  77. data/generica/app/assets/javascripts/helpers/i18n.js.ls +3 -0
  78. data/generica/app/assets/javascripts/helpers/string_ex.js.ls +21 -0
  79. data/generica/app/assets/javascripts/mixins/.gitkeep +0 -0
  80. data/generica/app/assets/javascripts/mixins/file_drag_and_drop.js.em +57 -0
  81. data/generica/app/assets/javascripts/mixins/type_ahead_builder.js.em +41 -0
  82. data/generica/app/assets/javascripts/models/.gitkeep +0 -0
  83. data/generica/app/assets/javascripts/models/admin/employee.js.em +6 -0
  84. data/generica/app/assets/javascripts/models/admin/offer.js.em +1 -0
  85. data/generica/app/assets/javascripts/models/admin/product.js.em +12 -0
  86. data/generica/app/assets/javascripts/models/admin/session.js.em +3 -0
  87. data/generica/app/assets/javascripts/models/admin/taxon.js.em +1 -0
  88. data/generica/app/assets/javascripts/models/attachment.js.em +9 -0
  89. data/generica/app/assets/javascripts/models/employee.js.em +16 -0
  90. data/generica/app/assets/javascripts/models/listing.js.em +20 -0
  91. data/generica/app/assets/javascripts/models/offer.js.em +12 -0
  92. data/generica/app/assets/javascripts/models/picture.js.em +11 -0
  93. data/generica/app/assets/javascripts/models/product.js.em +29 -0
  94. data/generica/app/assets/javascripts/models/session.js.ls +4 -0
  95. data/generica/app/assets/javascripts/models/taxon.js.em +31 -0
  96. data/generica/app/assets/javascripts/models/translation.js.em +46 -0
  97. data/generica/app/assets/javascripts/packages/flash.js.em +36 -0
  98. data/generica/app/assets/javascripts/packages/tranny.js.ls +51 -0
  99. data/generica/app/assets/javascripts/routes/.gitkeep +0 -0
  100. data/generica/app/assets/javascripts/routes/admin/employees/index_route.js.em +3 -0
  101. data/generica/app/assets/javascripts/routes/admin/employees/new_route.js.em +3 -0
  102. data/generica/app/assets/javascripts/routes/admin/index_route.js.em +1 -0
  103. data/generica/app/assets/javascripts/routes/admin/product_route.js.em +3 -0
  104. data/generica/app/assets/javascripts/routes/admin/products/index_route.js.em +3 -0
  105. data/generica/app/assets/javascripts/routes/admin/products/new_route.js.em +3 -0
  106. data/generica/app/assets/javascripts/routes/admin/taxons/index_route.js.em +2 -0
  107. data/generica/app/assets/javascripts/routes/admin/translation/edit_route.js.em +1 -0
  108. data/generica/app/assets/javascripts/routes/admin/translation_route.js.em +12 -0
  109. data/generica/app/assets/javascripts/routes/admin/translations/index_route.js.em +20 -0
  110. data/generica/app/assets/javascripts/routes/admin_route.js.em +4 -0
  111. data/generica/app/assets/javascripts/routes/application_route.js.em +19 -0
  112. data/generica/app/assets/javascripts/routes/index_route.js.em +4 -0
  113. data/generica/app/assets/javascripts/routes/products/index_route.js.em +3 -0
  114. data/generica/app/assets/javascripts/routes/products_route.js.em +4 -0
  115. data/generica/app/assets/javascripts/templates/.gitkeep +0 -0
  116. data/generica/app/assets/javascripts/templates/admin.emblem +23 -0
  117. data/generica/app/assets/javascripts/templates/admin/employees/index.emblem +22 -0
  118. data/generica/app/assets/javascripts/templates/admin/employees/new.emblem +35 -0
  119. data/generica/app/assets/javascripts/templates/admin/employees/slice.emblem +22 -0
  120. data/generica/app/assets/javascripts/templates/admin/index.emblem +3 -0
  121. data/generica/app/assets/javascripts/templates/admin/product/edit.emblem +69 -0
  122. data/generica/app/assets/javascripts/templates/admin/products/index.emblem +22 -0
  123. data/generica/app/assets/javascripts/templates/admin/products/new.emblem +56 -0
  124. data/generica/app/assets/javascripts/templates/admin/products/slice.emblem +22 -0
  125. data/generica/app/assets/javascripts/templates/admin/taxons/index.emblem +10 -0
  126. data/generica/app/assets/javascripts/templates/admin/taxons/new.emblem +0 -0
  127. data/generica/app/assets/javascripts/templates/admin/translation/edit.emblem +11 -0
  128. data/generica/app/assets/javascripts/templates/admin/translation/form.emblem +20 -0
  129. data/generica/app/assets/javascripts/templates/admin/translations/index.emblem +43 -0
  130. data/generica/app/assets/javascripts/templates/admin/translations/slice.emblem +23 -0
  131. data/generica/app/assets/javascripts/templates/admin/translations/sliver.emblem +18 -0
  132. data/generica/app/assets/javascripts/templates/application.emblem +14 -0
  133. data/generica/app/assets/javascripts/templates/components/.gitkeep +0 -0
  134. data/generica/app/assets/javascripts/templates/components/block-grid-pictures.emblem +5 -0
  135. data/generica/app/assets/javascripts/templates/components/block-picture.emblem +7 -0
  136. data/generica/app/assets/javascripts/templates/components/cookie-splash.emblem +14 -0
  137. data/generica/app/assets/javascripts/templates/components/fancy-paginator.emblem +31 -0
  138. data/generica/app/assets/javascripts/templates/components/flash-message.emblem +2 -0
  139. data/generica/app/assets/javascripts/templates/components/flash-slice.emblem +6 -0
  140. data/generica/app/assets/javascripts/templates/components/form-for.emblem +2 -0
  141. data/generica/app/assets/javascripts/templates/components/hero-splash.emblem +13 -0
  142. data/generica/app/assets/javascripts/templates/components/hero-splash/_splash-cta.emblem +7 -0
  143. data/generica/app/assets/javascripts/templates/components/hero-splash/_splash-tagline.emblem +8 -0
  144. data/generica/app/assets/javascripts/templates/components/introductory-lobby.emblem +12 -0
  145. data/generica/app/assets/javascripts/templates/components/product-display.emblem +47 -0
  146. data/generica/app/assets/javascripts/templates/components/product-listing.emblem +26 -0
  147. data/generica/app/assets/javascripts/templates/components/products-catalog.emblem +16 -0
  148. data/generica/app/assets/javascripts/templates/components/products-showcase.emblem +12 -0
  149. data/generica/app/assets/javascripts/templates/components/products-showcase/_contained-media-one.emblem +20 -0
  150. data/generica/app/assets/javascripts/templates/components/promise-button.emblem +6 -0
  151. data/generica/app/assets/javascripts/templates/components/search-and-filter.emblem +11 -0
  152. data/generica/app/assets/javascripts/templates/components/select-locale.emblem +1 -0
  153. data/generica/app/assets/javascripts/templates/components/site-footer.emblem +9 -0
  154. data/generica/app/assets/javascripts/templates/components/site-nav.emblem +7 -0
  155. data/generica/app/assets/javascripts/templates/components/site-nav/_left-nav.emblem +19 -0
  156. data/generica/app/assets/javascripts/templates/components/site-nav/_top-nav.emblem +22 -0
  157. data/generica/app/assets/javascripts/templates/components/table-booths.emblem +75 -0
  158. data/generica/app/assets/javascripts/templates/components/tr-span.emblem +1 -0
  159. data/generica/app/assets/javascripts/templates/components/tree-taxon-li.emblem +29 -0
  160. data/generica/app/assets/javascripts/templates/components/tree-taxon-ul.emblem +9 -0
  161. data/generica/app/assets/javascripts/templates/components/tree-taxon-wrapper.emblem +3 -0
  162. data/generica/app/assets/javascripts/templates/index.emblem +7 -0
  163. data/generica/app/assets/javascripts/templates/modals/login.emblem +27 -0
  164. data/generica/app/assets/javascripts/templates/products.emblem +3 -0
  165. data/generica/app/assets/javascripts/templates/products/index.emblem +7 -0
  166. data/generica/app/assets/javascripts/templates/products/product/show.emblem +71 -0
  167. data/generica/app/assets/javascripts/transforms/files_transform.js.ls +7 -0
  168. data/generica/app/assets/javascripts/transforms/form_data_transformer.js.ls +25 -0
  169. data/generica/app/assets/javascripts/transforms/strings_transform.js.ls +4 -0
  170. data/generica/app/assets/javascripts/views/.gitkeep +0 -0
  171. data/generica/app/assets/stylesheets/apiv1.css.scss +8 -0
  172. data/generica/app/assets/stylesheets/apiv1/_admin.css.scss +14 -0
  173. data/generica/app/assets/stylesheets/apiv1/_application.css.scss +70 -0
  174. data/generica/app/assets/stylesheets/apiv1/admin/contacts/_index.css.scss +3 -0
  175. data/generica/app/assets/stylesheets/apiv1/admin/products/_index.css.scss +64 -0
  176. data/generica/app/assets/stylesheets/apiv1/admin/products/_new.css.scss +11 -0
  177. data/generica/app/assets/stylesheets/apiv1/admin/translations/_index.css.scss +68 -0
  178. data/generica/app/assets/stylesheets/apiv1/components/_block-grid-pictures.css.scss +21 -0
  179. data/generica/app/assets/stylesheets/apiv1/components/_cookie-splash.css.scss +60 -0
  180. data/generica/app/assets/stylesheets/apiv1/components/_fancy-paginator.css.scss +22 -0
  181. data/generica/app/assets/stylesheets/apiv1/components/_files-field.css.scss +10 -0
  182. data/generica/app/assets/stylesheets/apiv1/components/_flash-message.css.scss +35 -0
  183. data/generica/app/assets/stylesheets/apiv1/components/_hero-splash.css.scss +39 -0
  184. data/generica/app/assets/stylesheets/apiv1/components/_introductory-lobby.css.scss +22 -0
  185. data/generica/app/assets/stylesheets/apiv1/components/_product-display.css.scss +27 -0
  186. data/generica/app/assets/stylesheets/apiv1/components/_product-listing.css.scss +34 -0
  187. data/generica/app/assets/stylesheets/apiv1/components/_products-catalog.css.scss +2 -0
  188. data/generica/app/assets/stylesheets/apiv1/components/_products-showcase.css.scss +2 -0
  189. data/generica/app/assets/stylesheets/apiv1/components/_promise-button.css.scss +8 -0
  190. data/generica/app/assets/stylesheets/apiv1/components/_search-and-filter.css.scss +9 -0
  191. data/generica/app/assets/stylesheets/apiv1/components/_select-locale.css.scss +48 -0
  192. data/generica/app/assets/stylesheets/apiv1/components/_site-footer.css.scss +23 -0
  193. data/generica/app/assets/stylesheets/apiv1/components/_site-nav.css.scss +1 -0
  194. data/generica/app/assets/stylesheets/apiv1/components/_table-booths.css.scss +25 -0
  195. data/generica/app/assets/stylesheets/apiv1/components/_tree-taxon-wrapper.css.scss +92 -0
  196. data/generica/app/assets/stylesheets/apiv1/components/_type-ahead.css.scss +59 -0
  197. data/generica/app/assets/stylesheets/apiv1/components/products-catalog/_expanding-media.css.scss +3 -0
  198. data/generica/app/assets/stylesheets/apiv1/components/products-showcase/_contained-media-one.css.scss +35 -0
  199. data/generica/app/assets/stylesheets/apiv1/components/site-nav/_left-nav.css.scss +105 -0
  200. data/generica/app/assets/stylesheets/apiv1/components/site-nav/_top-nav.css.scss +106 -0
  201. data/generica/app/assets/stylesheets/apiv1/modals/_login.css.scss +26 -0
  202. data/generica/app/assets/stylesheets/apiv1/products/product/_show.css.scss +18 -0
  203. data/generica/app/assets/stylesheets/apiv1/shared/_constants.css.scss +77 -0
  204. data/generica/app/assets/stylesheets/apiv1/shared/_variables.css.scss +23 -0
  205. data/generica/app/assets/stylesheets/application.css +15 -0
  206. data/generica/app/assets/stylesheets/foundation_and_overrides.scss +1322 -0
  207. data/generica/app/controllers/admin/base_controller.rb +9 -0
  208. data/generica/app/controllers/admin/employees/create_controller.rb +26 -0
  209. data/generica/app/controllers/admin/products/create_controller.rb +26 -0
  210. data/generica/app/controllers/admin/products/update_controller.rb +29 -0
  211. data/generica/app/controllers/admin/sessions/create_controller.rb +34 -0
  212. data/generica/app/controllers/apiv1/employees/destroy_controller.rb +9 -0
  213. data/generica/app/controllers/apiv1/employees/index_controller.rb +9 -0
  214. data/generica/app/controllers/apiv1/home_controller.rb +4 -0
  215. data/generica/app/controllers/apiv1/i18n_translations/index_controller.rb +11 -0
  216. data/generica/app/controllers/apiv1/pictures/destroy_controller.rb +13 -0
  217. data/generica/app/controllers/apiv1/pictures/show_controller.rb +9 -0
  218. data/generica/app/controllers/apiv1/product_metadatum/show_controller.rb +16 -0
  219. data/generica/app/controllers/apiv1/products/destroy_controller.rb +9 -0
  220. data/generica/app/controllers/apiv1/products/index_controller.rb +21 -0
  221. data/generica/app/controllers/apiv1/products/show_controller.rb +12 -0
  222. data/generica/app/controllers/apiv1/taxons/index_controller.rb +11 -0
  223. data/generica/app/controllers/apiv1/taxons/show_controller.rb +9 -0
  224. data/generica/app/controllers/apiv1/translations/create_controller.rb +31 -0
  225. data/generica/app/controllers/apiv1/translations/index_controller.rb +22 -0
  226. data/generica/app/controllers/apiv1/translations/show_controller.rb +9 -0
  227. data/generica/app/controllers/apiv1/translations/update_controller.rb +35 -0
  228. data/generica/app/controllers/application_controller.rb +5 -0
  229. data/generica/app/controllers/concerns/.keep +0 -0
  230. data/generica/app/helpers/application_helper.rb +2 -0
  231. data/generica/app/mailers/.keep +0 -0
  232. data/generica/app/models/.keep +0 -0
  233. data/generica/app/models/admin.rb +5 -0
  234. data/generica/app/models/admin/employee_factory.rb +31 -0
  235. data/generica/app/models/admin/pictures_factory.rb +17 -0
  236. data/generica/app/models/admin/product_factory.rb +51 -0
  237. data/generica/app/models/admin/product_modifier.rb +39 -0
  238. data/generica/app/models/admin/user.rb +25 -0
  239. data/generica/app/models/apiv1.rb +5 -0
  240. data/generica/app/models/apiv1/attachment.rb +45 -0
  241. data/generica/app/models/apiv1/employee.rb +29 -0
  242. data/generica/app/models/apiv1/listings.rb +5 -0
  243. data/generica/app/models/apiv1/listings/taxon_relationship.rb +19 -0
  244. data/generica/app/models/apiv1/permalinkifier.rb +22 -0
  245. data/generica/app/models/apiv1/picture.rb +37 -0
  246. data/generica/app/models/apiv1/product.rb +71 -0
  247. data/generica/app/models/apiv1/products_machine.rb +65 -0
  248. data/generica/app/models/apiv1/taxon.rb +88 -0
  249. data/generica/app/models/apiv1/translation.rb +57 -0
  250. data/generica/app/models/apiv1/translation_machine.rb +57 -0
  251. data/generica/app/models/concerns/.keep +0 -0
  252. data/generica/app/varissets/javascripts/templates/application.emblem.erb +28 -0
  253. data/generica/app/varissets/javascripts/templates/components/cookie-splash.emblem.erb +17 -0
  254. data/generica/app/varissets/javascripts/templates/components/hero-splash.emblem.erb +25 -0
  255. data/generica/app/varissets/javascripts/templates/components/introductory-lobby.emblem.erb +12 -0
  256. data/generica/app/varissets/javascripts/templates/components/product-display.emblem.erb +51 -0
  257. data/generica/app/varissets/javascripts/templates/components/product-listing.emblem.erb +29 -0
  258. data/generica/app/varissets/javascripts/templates/components/products-catalog.emblem.erb +18 -0
  259. data/generica/app/varissets/javascripts/templates/components/products-showcase.emblem.erb +23 -0
  260. data/generica/app/varissets/javascripts/templates/components/site-nav.emblem.erb +47 -0
  261. data/generica/app/varissets/javascripts/templates/components/table-booths.emblem.erb +71 -0
  262. data/generica/app/varissets/javascripts/templates/index.emblem.erb +11 -0
  263. data/generica/app/varissets/stylesheets/apiv1/_application.css.scss.erb +66 -0
  264. data/generica/app/varissets/stylesheets/apiv1/components/_cookie-splash.css.scss.erb +61 -0
  265. data/generica/app/varissets/stylesheets/apiv1/components/_hero-splash.css.scss.erb +42 -0
  266. data/generica/app/varissets/stylesheets/apiv1/components/_introductory-lobby.css.scss.erb +26 -0
  267. data/generica/app/varissets/stylesheets/apiv1/components/_product-display.css.scss.erb +30 -0
  268. data/generica/app/varissets/stylesheets/apiv1/components/_product-listing.css.scss.erb +37 -0
  269. data/generica/app/varissets/stylesheets/apiv1/components/_products-catalog.css.scss.erb +5 -0
  270. data/generica/app/varissets/stylesheets/apiv1/components/_products-showcase.css.scss.erb +39 -0
  271. data/generica/app/varissets/stylesheets/apiv1/components/_site-nav.css.scss.erb +213 -0
  272. data/generica/app/varissets/stylesheets/apiv1/components/_table-booths.css.scss.erb +28 -0
  273. data/generica/app/views/apiv1/home/index.html.haml +2 -0
  274. data/generica/app/views/apiv1/layouts/application.html.haml +21 -0
  275. data/generica/app/views/layouts/application.html.erb +14 -0
  276. data/generica/bin/bundle +3 -0
  277. data/generica/bin/rails +8 -0
  278. data/generica/bin/rake +8 -0
  279. data/generica/bin/spring +18 -0
  280. data/generica/bower.json +21 -0
  281. data/generica/config.ru +4 -0
  282. data/generica/config/application.rb +23 -0
  283. data/generica/config/boot.rb +4 -0
  284. data/generica/config/database.yml +54 -0
  285. data/generica/config/database.yml.erb +53 -0
  286. data/generica/config/desired_languages.yml +28 -0
  287. data/generica/config/environment.rb +5 -0
  288. data/generica/config/environments/development.rb +37 -0
  289. data/generica/config/environments/production.rb +82 -0
  290. data/generica/config/environments/test.rb +39 -0
  291. data/generica/config/initializers/assets.rb +8 -0
  292. data/generica/config/initializers/backtrace_silencers.rb +7 -0
  293. data/generica/config/initializers/cookies_serializer.rb +3 -0
  294. data/generica/config/initializers/filter_parameter_logging.rb +4 -0
  295. data/generica/config/initializers/inflections.rb +16 -0
  296. data/generica/config/initializers/mime_types.rb +4 -0
  297. data/generica/config/initializers/session_store.rb +3 -0
  298. data/generica/config/initializers/sorcery.rb +437 -0
  299. data/generica/config/initializers/wrap_parameters.rb +14 -0
  300. data/generica/config/locales/ar.yml +78 -0
  301. data/generica/config/locales/ca.yml +78 -0
  302. data/generica/config/locales/cs.yml +78 -0
  303. data/generica/config/locales/da.yml +78 -0
  304. data/generica/config/locales/de.yml +78 -0
  305. data/generica/config/locales/el.yml +78 -0
  306. data/generica/config/locales/en.yml +78 -0
  307. data/generica/config/locales/es.yml +78 -0
  308. data/generica/config/locales/fi.yml +78 -0
  309. data/generica/config/locales/fr.yml +78 -0
  310. data/generica/config/locales/hu.yml +78 -0
  311. data/generica/config/locales/id.yml +78 -0
  312. data/generica/config/locales/is.yml +78 -0
  313. data/generica/config/locales/it.yml +78 -0
  314. data/generica/config/locales/ja.yml +78 -0
  315. data/generica/config/locales/ko.yml +78 -0
  316. data/generica/config/locales/ms.yml +78 -0
  317. data/generica/config/locales/nl.yml +78 -0
  318. data/generica/config/locales/no.yml +78 -0
  319. data/generica/config/locales/pl.yml +78 -0
  320. data/generica/config/locales/pt.yml +78 -0
  321. data/generica/config/locales/ru.yml +78 -0
  322. data/generica/config/locales/sv.yml +78 -0
  323. data/generica/config/locales/th.yml +78 -0
  324. data/generica/config/locales/tr.yml +78 -0
  325. data/generica/config/locales/zh-CN.yml +78 -0
  326. data/generica/config/locales/zh-TW.yml +78 -0
  327. data/generica/config/nginx.conf +36 -0
  328. data/generica/config/routes.rb +35 -0
  329. data/generica/config/secrets.yml +22 -0
  330. data/generica/config/unicorn.conf.rb +101 -0
  331. data/generica/db/migrate/20140930052333_create_apiv1_taxons.rb +14 -0
  332. data/generica/db/migrate/20140930052559_create_apiv1_listings_plastics.rb +18 -0
  333. data/generica/db/migrate/20140930180107_create_apiv1_pictures.rb +8 -0
  334. data/generica/db/migrate/20140930180108_add_attachment_pic_to_apiv1_pictures.rb +11 -0
  335. data/generica/db/migrate/20141001063631_create_commerce_units_dimensions.rb +11 -0
  336. data/generica/db/migrate/20141001212635_create_apiv1_listings_taxon_relationships.rb +9 -0
  337. data/generica/db/migrate/20141006231820_create_apiv1_employees.rb +11 -0
  338. data/generica/db/migrate/20141010215459_create_apiv1_translations.rb +11 -0
  339. data/generica/db/migrate/20141018235809_add_attachment_document_to_attachments.rb +13 -0
  340. data/generica/db/migrate/20141021003733_sorcery_core.rb +13 -0
  341. data/generica/db/migrate/20141021003734_sorcery_remember_me.rb +8 -0
  342. data/generica/db/schema.rb +141 -0
  343. data/generica/db/seeds.rb +15 -0
  344. data/generica/db/seeds/dimensions.rb +42 -0
  345. data/generica/db/seeds/products.rb +30 -0
  346. data/generica/db/seeds/taxons.rb +81 -0
  347. data/generica/db/seeds/translation_seeds.rb +2132 -0
  348. data/generica/db/seeds/users.rb +2 -0
  349. data/generica/lib/assets/.keep +0 -0
  350. data/generica/lib/generica.rb +4 -0
  351. data/generica/lib/generica/locale.yml.erb +6 -0
  352. data/generica/lib/generica/seed.en.yml +77 -0
  353. data/generica/lib/generica/seed_generator.rb +119 -0
  354. data/generica/lib/generica/translation_seeds.rb.erb +4 -0
  355. data/generica/lib/generica/yaml_writer.rb +54 -0
  356. data/generica/lib/tasks/.keep +0 -0
  357. data/generica/lib/tasks/assets_unretardifier.rake +7 -0
  358. data/generica/lib/tasks/cloudrider.rake +7 -0
  359. data/generica/lib/tasks/elasticsearch.rake +10 -0
  360. data/generica/lib/tasks/production.rake +14 -0
  361. data/generica/lib/tasks/seeds.rake +13 -0
  362. data/generica/lib/tasks/translation.rake +7 -0
  363. data/generica/log/.keep +0 -0
  364. data/generica/public/404.html +67 -0
  365. data/generica/public/422.html +67 -0
  366. data/generica/public/500.html +66 -0
  367. data/generica/public/favicon.ico +0 -0
  368. data/generica/public/javascripts/translations.js +2 -0
  369. data/generica/public/robots.txt +5 -0
  370. data/generica/public/tests/dog.png +0 -0
  371. data/generica/public/tests/husky.png +0 -0
  372. data/generica/spec/controllers/admin/employees/create_controller_spec.rb +48 -0
  373. data/generica/spec/controllers/admin/products/create_controller_spec.rb +55 -0
  374. data/generica/spec/controllers/admin/products/update_controller_spec.rb +44 -0
  375. data/generica/spec/controllers/admin/sessions/create_controller_spec.rb +66 -0
  376. data/generica/spec/controllers/apiv1/pictures/destroy_controller_spec.rb +36 -0
  377. data/generica/spec/factories/admin/user_factory.rb +22 -0
  378. data/generica/spec/factories/apiv1/picture_factory.rb +25 -0
  379. data/generica/spec/factories/apiv1/product_factory.rb +48 -0
  380. data/generica/spec/factories/apiv1/taxon_factory.rb +40 -0
  381. data/generica/spec/factories/base_factory.rb +30 -0
  382. data/generica/spec/models/admin/pictures_factory_spec.rb +14 -0
  383. data/generica/spec/models/admin/product_factory_spec.rb +54 -0
  384. data/generica/spec/models/admin/product_modifier_spec.rb +123 -0
  385. data/generica/spec/models/apiv1/product_spec.rb +61 -0
  386. data/generica/spec/rails_helper.rb +51 -0
  387. data/generica/spec/spec_helper.rb +85 -0
  388. data/generica/vendor/assets/javascripts/.keep +0 -0
  389. data/generica/vendor/assets/stylesheets/.keep +0 -0
  390. data/lib/cloudrider.rb +4 -0
  391. data/lib/cloudrider/apiv1.rb +72 -0
  392. data/lib/cloudrider/apiv1/application_emblem.rb +12 -0
  393. data/lib/cloudrider/apiv1/application_sass.rb +31 -0
  394. data/lib/cloudrider/apiv1/base.rb +63 -0
  395. data/lib/cloudrider/apiv1/cookie_splash_component.rb +14 -0
  396. data/lib/cloudrider/apiv1/cookie_splash_sass.rb +20 -0
  397. data/lib/cloudrider/apiv1/hero_splash_component.rb +37 -0
  398. data/lib/cloudrider/apiv1/hero_splash_sass.rb +43 -0
  399. data/lib/cloudrider/apiv1/index_emblem.rb +11 -0
  400. data/lib/cloudrider/apiv1/introductory_lobby_component.rb +17 -0
  401. data/lib/cloudrider/apiv1/introductory_lobby_sass.rb +17 -0
  402. data/lib/cloudrider/apiv1/product_display_component.rb +11 -0
  403. data/lib/cloudrider/apiv1/product_display_sass.rb +11 -0
  404. data/lib/cloudrider/apiv1/product_listing_component.rb +11 -0
  405. data/lib/cloudrider/apiv1/product_listing_sass.rb +11 -0
  406. data/lib/cloudrider/apiv1/products_catalog_component.rb +11 -0
  407. data/lib/cloudrider/apiv1/products_catalog_sass.rb +11 -0
  408. data/lib/cloudrider/apiv1/products_showcase_component.rb +11 -0
  409. data/lib/cloudrider/apiv1/products_showcase_sass.rb +20 -0
  410. data/lib/cloudrider/apiv1/site_nav_component.rb +15 -0
  411. data/lib/cloudrider/apiv1/site_nav_sass.rb +11 -0
  412. data/lib/cloudrider/apiv1/table_booths_component.rb +11 -0
  413. data/lib/cloudrider/apiv1/table_booths_sass.rb +11 -0
  414. data/lib/cloudrider/application_commander.rb +119 -0
  415. data/lib/cloudrider/file_orders_maker.rb +24 -0
  416. data/lib/cloudrider/protofile.rb +9 -0
  417. data/lib/cloudrider/templates/application.emblem.erb +28 -0
  418. data/lib/cloudrider/version.rb +3 -0
  419. data/lib/generators/cloudrider/USAGE +1 -0
  420. data/lib/generators/cloudrider/backend/backend_generator.rb +49 -0
  421. data/lib/generators/cloudrider/client/client_generator.rb +110 -0
  422. data/lib/generators/cloudrider/varissets/varissets_generator.rb +35 -0
  423. data/spec/cloudrider/apiv1_base_spec.rb +46 -0
  424. data/spec/cloudrider/apiv1_spec.rb +20 -0
  425. data/spec/spec_helper.rb +1 -0
  426. metadata +555 -0
@@ -0,0 +1,26 @@
1
+ .apiv1-login-modal {
2
+ border: 2px solid #777;
3
+ background-color: #eee;
4
+
5
+ .action-cancel {
6
+ @include border-radius(25px);
7
+ @include transition-property(background-color);
8
+ @include transition-duration(300ms);
9
+ @include transition-timing-function(ease-out);
10
+ float: right;
11
+ margin-top: -20px;
12
+ @media #{$small-up} {
13
+ margin-right: 0px;
14
+ }
15
+ @media #{$large-up} {
16
+ margin-right: -25px;
17
+ }
18
+ padding: 15px 20px 15px 20px;
19
+ background-color: #f04124;
20
+ &:hover {
21
+ background-color: darken(#f04124, 10%);
22
+ }
23
+ border: 1px solid #007095;
24
+ color: #eee;
25
+ }
26
+ }
@@ -0,0 +1,18 @@
1
+ .products-product-show {
2
+ .main-image {
3
+ min-width: 275px;
4
+ max-width: 400px;
5
+ @media #{$medium-only} {
6
+ min-width: 200px;
7
+ max-width: 210px;
8
+ }
9
+ }
10
+ .other-image {
11
+ max-height: 100px;
12
+ }
13
+ .call-to-action {
14
+ margin-top: 15px;
15
+ margin-bottom: 15px;
16
+ font-size: 1.45rem;
17
+ }
18
+ }
@@ -0,0 +1,77 @@
1
+ .asterisk:before {
2
+ content: "*";
3
+ }
4
+ .dash:after {
5
+ content: " - ";
6
+ }
7
+ .spacebar:after {
8
+ content: " ";
9
+ }
10
+ .prespace:before {
11
+ content: " ";
12
+ }
13
+ .predash:before {
14
+ content: " - ";
15
+ }
16
+ .pound:after {
17
+ content: '#';
18
+ }
19
+ .ellipsis {
20
+ text-overflow: ellipsis;
21
+ }
22
+ .parantheses:after {
23
+ content: ")";
24
+ }
25
+ .parantheses:before {
26
+ content: "(";
27
+ }
28
+ .italic {
29
+ font-style: italic;
30
+ }
31
+ .capitalize {
32
+ text-transform: capitalize;
33
+ }
34
+ .upcase {
35
+ text-transform: uppercase;
36
+ }
37
+ .align-right {
38
+ text-align: right;
39
+ }
40
+ .align-center {
41
+ text-align: center;
42
+ }
43
+ .align-left {
44
+ text-align: left;
45
+ }
46
+ .bold {
47
+ font-weight: bold;
48
+ }
49
+ .colon:after {
50
+ content: ":";
51
+ }
52
+ .ellipsis:after {
53
+ content: "...";
54
+ }
55
+ .hidden {
56
+ display: none;
57
+ }
58
+ .comma:not(:last-child) {
59
+ &:after {
60
+ content: ",";
61
+ }
62
+ }
63
+ .pointer {
64
+ cursor: pointer;
65
+ }
66
+ .opaque {
67
+ @include opacity(1);
68
+ }
69
+ .translucent {
70
+ @include opacity(0.7);
71
+ }
72
+ .transparent {
73
+ @include opacity(0);
74
+ }
75
+ .full-width {
76
+ width: 100%;
77
+ }
@@ -0,0 +1,23 @@
1
+ // background-theme-tone: dark, light, sephia, rainbow
2
+ $row-width: 1250px;
3
+
4
+ $max-row-width: 1250px;
5
+
6
+ $standard-padding-left: 15px;
7
+
8
+ $background-color: #eee;
9
+
10
+ @mixin main-headline-font {
11
+ font-size: 2rem;
12
+ font-weight: bold;
13
+ }
14
+
15
+ @mixin secondary-headline-font {
16
+ font-size: 1.65rem;
17
+ font-style: italic;
18
+ }
19
+
20
+ @mixin standard-content-font {
21
+ font-size: 1rem;
22
+ }
23
+
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_self
14
+ *= require ./apiv1
15
+ */
@@ -0,0 +1,1322 @@
1
+ // Foundation by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ //
6
+ // FOUNDATION SETTINGS
7
+ //
8
+
9
+ // This is the default html and body font-size for the base rem value.
10
+ // $rem-base: 16px;
11
+
12
+ // Allows the use of rem-calc() or lower-bound() in your settings
13
+ @import "foundation/functions";
14
+
15
+ // The default font-size is set to 100% of the browser style sheet (usually 16px)
16
+ // for compatibility with browser-based text zoom or user-set defaults.
17
+
18
+ // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
19
+ // If you want your base font-size to be different and not have it affect the grid breakpoints,
20
+ // set $rem-base to $base-font-size and make sure $base-font-size is a px value.
21
+ // $base-font-size: 100%;
22
+
23
+ // The $base-font-size is 100% while $base-line-height is 150%
24
+ // $base-line-height: 150%;
25
+
26
+ // We use this to control whether or not CSS classes come through in the gem files.
27
+ $include-html-classes: true;
28
+ // $include-print-styles: true;
29
+ $include-html-global-classes: $include-html-classes;
30
+
31
+ // Grid
32
+
33
+ // $include-html-grid-classes: $include-html-classes;
34
+ // $include-xl-html-grid-classes: false;
35
+
36
+ // $row-width: rem-calc(1000);
37
+ // $total-columns: 12;
38
+
39
+ // Global
40
+
41
+ // We use these to define default font weights
42
+ // $font-weight-normal: normal !default;
43
+ // $font-weight-bold: bold !default;
44
+
45
+ // We use these to control various global styles
46
+ // $body-bg: #fff;
47
+ // $body-font-color: #222;
48
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
49
+ $font-weight-normal:normal;
50
+ $body-font-weight: $font-weight-normal;
51
+ // $body-font-style: normal;
52
+
53
+ // We use this to control font-smoothing
54
+ // $font-smoothing: antialiased;
55
+
56
+ // We use these to control text direction settings
57
+ // $text-direction: ltr;
58
+ // $opposite-direction: right;
59
+ // $default-float: left;
60
+
61
+ // We use these as default colors throughout
62
+ $primary-color: #008CBA;
63
+ // $secondary-color: #e7e7e7;
64
+ // $alert-color: #f04124;
65
+ // $success-color: #43AC6A;
66
+ // $warning-color: #f08a24;
67
+ // $info-color: #a0d3e8;
68
+
69
+ // We use these to make sure border radius matches unless we want it different.
70
+ // $global-radius: 3px;
71
+ // $global-rounded: 1000px;
72
+
73
+ // We use these to control inset shadow shiny edges and depressions.
74
+ // $shiny-edge-size: 0 1px 0;
75
+ // $shiny-edge-color: rgba(#fff, .5);
76
+ // $shiny-edge-active-color: rgba(#000, .2);
77
+
78
+ // $column-gutter: rem-calc(30);
79
+
80
+ // Media Query Ranges
81
+ // $small-range: (0em, 40em);
82
+ // $medium-range: (40.063em, 64em);
83
+ // $large-range: (64.063em, 90em);
84
+ // $xlarge-range: (90.063em, 120em);
85
+ // $xxlarge-range: (120.063em, 99999999em);
86
+
87
+ // $screen: "only screen";
88
+
89
+ // $landscape: "#{$screen} and (orientation: landscape)";
90
+ // $portrait: "#{$screen} and (orientation: portrait)";
91
+
92
+ // $small-up: $screen;
93
+ // $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
94
+
95
+ // $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
96
+ // $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
97
+
98
+ // $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
99
+ // $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
100
+
101
+ // $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
102
+ // $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
103
+
104
+ // $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
105
+ // $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
106
+
107
+ // Legacy
108
+ // $small: $medium-up;
109
+ // $medium: $medium-up;
110
+ // $large: $large-up;
111
+
112
+ //We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
113
+ // $cursor-crosshair-value: crosshair;
114
+ // $cursor-default-value: default;
115
+ // $cursor-pointer-value: pointer;
116
+ // $cursor-help-value: help;
117
+ // $cursor-text-value: text;
118
+
119
+ //
120
+ // TYPOGRAPHY
121
+ //
122
+
123
+ // $include-html-type-classes: $include-html-classes;
124
+
125
+ // We use these to control header font styles
126
+ // $header-font-family: $body-font-family;
127
+ // $header-font-weight: $font-weight-normal;
128
+ // $header-font-style: normal;
129
+ // $header-font-color: #222;
130
+ // $header-line-height: 1.4;
131
+ // $header-top-margin: .2rem;
132
+ // $header-bottom-margin: .5rem;
133
+ // $header-text-rendering: optimizeLegibility;
134
+
135
+ // We use these to control header font sizes
136
+ // $h1-font-size: rem-calc(44);
137
+ // $h2-font-size: rem-calc(37);
138
+ // $h3-font-size: rem-calc(27);
139
+ // $h4-font-size: rem-calc(23);
140
+ // $h5-font-size: rem-calc(18);
141
+ // $h6-font-size: 1rem;
142
+
143
+ // We use these to control header size reduction on small screens
144
+ // $h1-font-reduction: rem-calc(10) !default;
145
+ // $h2-font-reduction: rem-calc(10) !default;
146
+ // $h3-font-reduction: rem-calc(5) !default;
147
+ // $h4-font-reduction: rem-calc(5) !default;
148
+ // $h5-font-reduction: 0 !default;
149
+ // $h6-font-reduction: 0 !default;
150
+
151
+ // These control how subheaders are styled.
152
+ // $subheader-line-height: 1.4;
153
+ // $subheader-font-color: scale-color($header-font-color, $lightness: 35%);
154
+ // $subheader-font-weight: $font-weight-normal;
155
+ // $subheader-top-margin: .2rem;
156
+ // $subheader-bottom-margin: .5rem;
157
+
158
+ // A general <small> styling
159
+ // $small-font-size: 60%;
160
+ // $small-font-color: scale-color($header-font-color, $lightness: 35%);
161
+
162
+ // We use these to style paragraphs
163
+ // $paragraph-font-family: inherit;
164
+ // $paragraph-font-weight: $font-weight-normal;
165
+ // $paragraph-font-size: 1rem;
166
+ // $paragraph-line-height: 1.6;
167
+ // $paragraph-margin-bottom: rem-calc(20);
168
+ // $paragraph-aside-font-size: rem-calc(14);
169
+ // $paragraph-aside-line-height: 1.35;
170
+ // $paragraph-aside-font-style: italic;
171
+ // $paragraph-text-rendering: optimizeLegibility;
172
+
173
+ // We use these to style <code> tags
174
+ // $code-color: scale-color($alert-color, $lightness: -27%);
175
+ // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
176
+ // $code-font-weight: $font-weight-bold;
177
+
178
+ // We use these to style anchors
179
+ // $anchor-text-decoration: none;
180
+ // $anchor-text-decoration-hover: none;
181
+ // $anchor-font-color: $primary-color;
182
+ // $anchor-font-color-hover: scale-color($primary-color, $lightness: -14%);
183
+
184
+ // We use these to style the <hr> element
185
+ // $hr-border-width: 1px;
186
+ // $hr-border-style: solid;
187
+ // $hr-border-color: #ddd;
188
+ // $hr-margin: rem-calc(20);
189
+
190
+ // We use these to style lists
191
+ // $list-font-family: $paragraph-font-family;
192
+ // $list-font-size: $paragraph-font-size;
193
+ // $list-line-height: $paragraph-line-height;
194
+ // $list-margin-bottom: $paragraph-margin-bottom;
195
+ // $list-style-position: outside;
196
+ // $list-side-margin: 1.1rem;
197
+ // $list-ordered-side-margin: 1.4rem;
198
+ // $list-side-margin-no-bullet: 0;
199
+ // $list-nested-margin: rem-calc(20);
200
+ // $definition-list-header-weight: $font-weight-bold;
201
+ // $definition-list-header-margin-bottom: .3rem;
202
+ // $definition-list-margin-bottom: rem-calc(12);
203
+
204
+ // We use these to style blockquotes
205
+ // $blockquote-font-color: scale-color($header-font-color, $lightness: 35%);
206
+ // $blockquote-padding: rem-calc(9 20 0 19);
207
+ // $blockquote-border: 1px solid #ddd;
208
+ // $blockquote-cite-font-size: rem-calc(13);
209
+ // $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%);
210
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
211
+
212
+ // Acronym styles
213
+ // $acronym-underline: 1px dotted #ddd;
214
+
215
+ // We use these to control padding and margin
216
+ // $microformat-padding: rem-calc(10 12);
217
+ // $microformat-margin: rem-calc(0 0 20 0);
218
+
219
+ // We use these to control the border styles
220
+ // $microformat-border-width: 1px;
221
+ // $microformat-border-style: solid;
222
+ // $microformat-border-color: #ddd;
223
+
224
+ // We use these to control full name font styles
225
+ // $microformat-fullname-font-weight: $font-weight-bold;
226
+ // $microformat-fullname-font-size: rem-calc(15);
227
+
228
+ // We use this to control the summary font styles
229
+ // $microformat-summary-font-weight: $font-weight-bold;
230
+
231
+ // We use this to control abbr padding
232
+ // $microformat-abbr-padding: rem-calc(0 1);
233
+
234
+ // We use this to control abbr font styles
235
+ // $microformat-abbr-font-weight: $font-weight-bold;
236
+ // $microformat-abbr-font-decoration: none;
237
+
238
+ // Accordion
239
+
240
+ // $include-html-accordion-classes: $include-html-classes;
241
+
242
+ // $accordion-navigation-padding: rem-calc(16);
243
+ // $accordion-navigation-bg-color: #efefef ;
244
+ // $accordion-navigation-hover-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -5%);
245
+ // $accordion-navigation-active-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -3%);
246
+ // $accordion-navigation-font-color: #222;
247
+ // $accordion-navigation-font-size: rem-calc(16);
248
+ // $accordion-navigation-font-family: $body-font-family;
249
+
250
+ // $accordion-content-padding: $column-gutter/2;
251
+ // $accordion-content-active-bg-color: #fff;
252
+
253
+ // Alert Boxes
254
+
255
+ // $include-html-alert-classes: $include-html-classes;
256
+
257
+ // We use this to control alert padding.
258
+ // $alert-padding-top: rem-calc(14);
259
+ // $alert-padding-default-float: $alert-padding-top;
260
+ // $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
261
+ // $alert-padding-bottom: $alert-padding-top;
262
+
263
+ // We use these to control text style.
264
+ // $alert-font-weight: $font-weight-normal;
265
+ // $alert-font-size: rem-calc(13);
266
+ // $alert-font-color: #fff;
267
+ // $alert-font-color-alt: scale-color($secondary-color, $lightness: -66%);
268
+
269
+ // We use this for close hover effect.
270
+ // $alert-function-factor: -14%;
271
+
272
+ // We use these to control border styles.
273
+ // $alert-border-style: solid;
274
+ // $alert-border-width: 1px;
275
+ // $alert-border-color: scale-color($primary-color, $lightness: $alert-function-factor);
276
+ // $alert-bottom-margin: rem-calc(20);
277
+
278
+ // We use these to style the close buttons
279
+ // $alert-close-color: #333;
280
+ // $alert-close-top: 50%;
281
+ // $alert-close-position: rem-calc(4);
282
+ // $alert-close-font-size: rem-calc(22);
283
+ // $alert-close-opacity: 0.3;
284
+ // $alert-close-opacity-hover: 0.5;
285
+ // $alert-close-padding: 9px 6px 4px;
286
+
287
+ // We use this to control border radius
288
+ // $alert-radius: $global-radius;
289
+
290
+ // We use this to control transition effects
291
+ // $alert-transition-speed: 300ms;
292
+ // $alert-transition-ease: ease-out;
293
+
294
+ // Block Grid
295
+
296
+ // $include-html-block-grid-classes: $include-html-classes;
297
+ // $include-xl-html-block-grid-classes: false;
298
+
299
+ // We use this to control the maximum number of block grid elements per row
300
+ // $block-grid-elements: 12;
301
+ // $block-grid-default-spacing: rem-calc(20);
302
+ // $align-block-grid-to-grid: false;
303
+
304
+
305
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
306
+ // $block-grid-media-queries: true;
307
+
308
+ // Breadcrumbs
309
+
310
+ // $include-html-nav-classes: $include-html-classes;
311
+
312
+ // We use this to set the background color for the breadcrumb container.
313
+ // $crumb-bg: scale-color($secondary-color, $lightness: 55%);
314
+
315
+ // We use these to set the padding around the breadcrumbs.
316
+ // $crumb-padding: rem-calc(9 14 9);
317
+ // $crumb-side-padding: rem-calc(12);
318
+
319
+ // We use these to control border styles.
320
+ // $crumb-function-factor: -10%;
321
+ // $crumb-border-size: 1px;
322
+ // $crumb-border-style: solid;
323
+ // $crumb-border-color: scale-color($crumb-bg, $lightness: $crumb-function-factor);
324
+ // $crumb-radius: $global-radius;
325
+
326
+ // We use these to set various text styles for breadcrumbs.
327
+ // $crumb-font-size: rem-calc(11);
328
+ // $crumb-font-color: $primary-color;
329
+ // $crumb-font-color-current: #333;
330
+ // $crumb-font-color-unavailable: #999;
331
+ // $crumb-font-transform: uppercase;
332
+ // $crumb-link-decor: underline;
333
+
334
+ // We use these to control the slash between breadcrumbs
335
+ // $crumb-slash-color: #aaa;
336
+ // $crumb-slash: "/";
337
+
338
+ //
339
+ // BUTTONS
340
+ //
341
+
342
+ // $include-html-button-classes: $include-html-classes;
343
+
344
+ // We use these to build padding for buttons.
345
+ // $button-tny: rem-calc(10);
346
+ // $button-sml: rem-calc(14);
347
+ // $button-med: rem-calc(16);
348
+ // $button-lrg: rem-calc(18);
349
+
350
+ // We use this to control the display property.
351
+ // $button-display: inline-block;
352
+ // $button-margin-bottom: rem-calc(20);
353
+
354
+ // We use these to control button text styles.
355
+ // $button-font-family: $body-font-family;
356
+ // $button-font-color: #fff;
357
+ // $button-font-color-alt: #333;
358
+ // $button-font-tny: rem-calc(11);
359
+ // $button-font-sml: rem-calc(13);
360
+ // $button-font-med: rem-calc(16);
361
+ // $button-font-lrg: rem-calc(20);
362
+ // $button-font-weight: $font-weight-normal;
363
+ // $button-font-align: center;
364
+
365
+ // We use these to control various hover effects.
366
+ // $button-function-factor: -20%;
367
+
368
+ // We use these to control button border styles.
369
+ // $button-border-width: 0px;
370
+ // $button-border-style: solid;
371
+ // $button-bg: $primary-color;
372
+ // $button-border-color: scale-color($button-bg, $lightness: $button-function-factor);
373
+
374
+ // We use this to set the default radius used throughout the core.
375
+ // $button-radius: $global-radius;
376
+ // $button-round: $global-rounded;
377
+
378
+ // We use this to set default opacity for disabled buttons.
379
+ // $button-disabled-opacity: 0.7;
380
+
381
+ // Button Groups
382
+
383
+ // $include-html-button-classes: $include-html-classes;
384
+
385
+ // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
386
+ // $button-bar-margin-opposite: rem-calc(10);
387
+ // $button-group-border-width: 1px;
388
+
389
+ // Clearing
390
+
391
+ // $include-html-clearing-classes: $include-html-classes;
392
+
393
+ // We use these to set the background colors for parts of Clearing.
394
+ // $clearing-bg: #333;
395
+ // $clearing-caption-bg: $clearing-bg;
396
+ // $clearing-carousel-bg: rgba(51,51,51,0.8);
397
+ // $clearing-img-bg: $clearing-bg;
398
+
399
+ // We use these to style the close button
400
+ // $clearing-close-color: #ccc;
401
+ // $clearing-close-size: 30px;
402
+
403
+ // We use these to style the arrows
404
+ // $clearing-arrow-size: 12px;
405
+ // $clearing-arrow-color: $clearing-close-color;
406
+
407
+ // We use these to style captions
408
+ // $clearing-caption-font-color: #ccc;
409
+ // $clearing-caption-font-size: 0.875em;
410
+ // $clearing-caption-padding: 10px 30px 20px;
411
+
412
+ // We use these to make the image and carousel height and style
413
+ // $clearing-active-img-height: 85%;
414
+ // $clearing-carousel-height: 120px;
415
+ // $clearing-carousel-thumb-width: 120px;
416
+ // $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
417
+
418
+ // Dropdown
419
+
420
+ // $include-html-dropdown-classes: $include-html-classes;
421
+
422
+ // We use these to controls height and width styles.
423
+ // $f-dropdown-max-width: 200px;
424
+ // $f-dropdown-height: auto;
425
+ // $f-dropdown-max-height: none;
426
+
427
+ // Used for bottom position
428
+ // $f-dropdown-margin-top: 2px;
429
+
430
+ // Used for right position
431
+ // $f-dropdown-margin-left: $f-dropdown-margin-top;
432
+
433
+ // Used for left position
434
+ // $f-dropdown-margin-right: $f-dropdown-margin-top;
435
+
436
+ // Used for top position
437
+ // $f-dropdown-margin-bottom: $f-dropdown-margin-top;
438
+
439
+ // We use this to control the background color
440
+ // $f-dropdown-bg: #fff;
441
+
442
+ // We use this to set the border styles for dropdowns.
443
+ // $f-dropdown-border-style: solid;
444
+ // $f-dropdown-border-width: 1px;
445
+ // $f-dropdown-border-color: scale-color(#fff, $lightness: -20%);
446
+
447
+ // We use these to style the triangle pip.
448
+ // $f-dropdown-triangle-size: 6px;
449
+ // $f-dropdown-triangle-color: #fff;
450
+ // $f-dropdown-triangle-side-offset: 10px;
451
+
452
+ // We use these to control styles for the list elements.
453
+ // $f-dropdown-list-style: none;
454
+ // $f-dropdown-font-color: #555;
455
+ // $f-dropdown-font-size: rem-calc(14);
456
+ // $f-dropdown-list-padding: rem-calc(5, 10);
457
+ // $f-dropdown-line-height: rem-calc(18);
458
+ // $f-dropdown-list-hover-bg: #eeeeee ;
459
+ // $dropdown-mobile-default-float: 0;
460
+
461
+ // We use this to control the styles for when the dropdown has custom content.
462
+ // $f-dropdown-content-padding: rem-calc(20);
463
+
464
+ // Dropdown Buttons
465
+
466
+ // $include-html-button-classes: $include-html-classes;
467
+
468
+ // We use these to set the color of the pip in dropdown buttons
469
+ // $dropdown-button-pip-color: #fff;
470
+ // $dropdown-button-pip-color-alt: #333;
471
+
472
+ // $button-pip-tny: rem-calc(6);
473
+ // $button-pip-sml: rem-calc(7);
474
+ // $button-pip-med: rem-calc(9);
475
+ // $button-pip-lrg: rem-calc(11);
476
+
477
+ // We use these to style tiny dropdown buttons
478
+ // $dropdown-button-padding-tny: $button-pip-tny * 7;
479
+ // $dropdown-button-pip-size-tny: $button-pip-tny;
480
+ // $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
481
+ // $dropdown-button-pip-top-tny: -$button-pip-tny / 2 + rem-calc(1);
482
+
483
+ // We use these to style small dropdown buttons
484
+ // $dropdown-button-padding-sml: $button-pip-sml * 7;
485
+ // $dropdown-button-pip-size-sml: $button-pip-sml;
486
+ // $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
487
+ // $dropdown-button-pip-top-sml: -$button-pip-sml / 2 + rem-calc(1);
488
+
489
+ // We use these to style medium dropdown buttons
490
+ // $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
491
+ // $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
492
+ // $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
493
+ // $dropdown-button-pip-top-med: -$button-pip-med / 2 + rem-calc(2);
494
+
495
+ // We use these to style large dropdown buttons
496
+ // $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
497
+ // $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
498
+ // $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
499
+ // $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
500
+
501
+ // Flex Video
502
+
503
+ // $include-html-media-classes: $include-html-classes;
504
+
505
+ // We use these to control video container padding and margins
506
+ // $flex-video-padding-top: rem-calc(25);
507
+ // $flex-video-padding-bottom: 67.5%;
508
+ // $flex-video-margin-bottom: rem-calc(16);
509
+
510
+ // We use this to control widescreen bottom padding
511
+ // $flex-video-widescreen-padding-bottom: 56.34%;
512
+
513
+ // Forms
514
+
515
+ // $include-html-form-classes: $include-html-classes;
516
+
517
+ // We use this to set the base for lots of form spacing and positioning styles
518
+ // $form-spacing: rem-calc(16);
519
+
520
+ // We use these to style the labels in different ways
521
+ // $form-label-pointer: pointer;
522
+ // $form-label-font-size: rem-calc(14);
523
+ // $form-label-font-weight: $font-weight-normal;
524
+ // $form-label-line-height: 1.5;
525
+ // $form-label-font-color: scale-color(#000, $lightness: 30%);
526
+ // $form-label-small-transform: capitalize;
527
+ // $form-label-bottom-margin: 0;
528
+ // $input-font-family: inherit;
529
+ // $input-font-color: rgba(0,0,0,0.75);
530
+ // $input-font-size: rem-calc(14);
531
+ // $input-bg-color: #fff;
532
+ // $input-focus-bg-color: scale-color(#fff, $lightness: -2%);
533
+ // $input-border-color: scale-color(#fff, $lightness: -20%);
534
+ // $input-focus-border-color: scale-color(#fff, $lightness: -40%);
535
+ // $input-border-style: solid;
536
+ // $input-border-width: 1px;
537
+ // $input-border-radius: $global-radius;
538
+ // $input-disabled-bg: #ddd;
539
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
540
+ // $input-include-glowing-effect: true;
541
+
542
+ // We use these to style the fieldset border and spacing.
543
+ // $fieldset-border-style: solid;
544
+ // $fieldset-border-width: 1px;
545
+ // $fieldset-border-color: #ddd;
546
+ // $fieldset-padding: rem-calc(20);
547
+ // $fieldset-margin: rem-calc(18 0);
548
+
549
+ // We use these to style the legends when you use them
550
+ // $legend-bg: #fff;
551
+ // $legend-font-weight: $font-weight-bold;
552
+ // $legend-padding: rem-calc(0 3);
553
+
554
+ // We use these to style the prefix and postfix input elements
555
+ // $input-prefix-bg: scale-color(#fff, $lightness: -5%);
556
+ // $input-prefix-border-color: scale-color(#fff, $lightness: -20%);
557
+ // $input-prefix-border-size: 1px;
558
+ // $input-prefix-border-type: solid;
559
+ // $input-prefix-overflow: hidden;
560
+ // $input-prefix-font-color: #333;
561
+ // $input-prefix-font-color-alt: #fff;
562
+
563
+ // We use these to style the error states for inputs and labels
564
+ // $input-error-message-padding: rem-calc(6 9 9);
565
+ // $input-error-message-top: -1px;
566
+ // $input-error-message-font-size: rem-calc(12);
567
+ // $input-error-message-font-weight: $font-weight-normal;
568
+ // $input-error-message-font-style: italic;
569
+ // $input-error-message-font-color: #fff;
570
+ // $input-error-message-font-color-alt: #333;
571
+
572
+ // We use this to style the glowing effect of inputs when focused
573
+ // $glowing-effect-fade-time: 0.45s;
574
+ // $glowing-effect-color: $input-focus-border-color;
575
+
576
+ // Select variables
577
+ // $select-bg-color: #fafafa;
578
+ // $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%);
579
+
580
+ // Inline Lists
581
+
582
+ // $include-html-inline-list-classes: $include-html-classes;
583
+
584
+ // We use this to control the margins and padding of the inline list.
585
+ // $inline-list-top-margin: 0;
586
+ // $inline-list-opposite-margin: 0;
587
+ // $inline-list-bottom-margin: rem-calc(17);
588
+ // $inline-list-default-float-margin: rem-calc(-22);
589
+ // $inline-list-default-float-list-margin: rem-calc(22);
590
+
591
+ // $inline-list-padding: 0;
592
+
593
+ // We use this to control the overflow of the inline list.
594
+ // $inline-list-overflow: hidden;
595
+
596
+ // We use this to control the list items
597
+ // $inline-list-display: block;
598
+
599
+ // We use this to control any elments within list items
600
+ // $inline-list-children-display: block;
601
+
602
+ // Joyride
603
+
604
+ // $include-html-joyride-classes: $include-html-classes;
605
+
606
+ // Controlling default Joyride styles
607
+ // $joyride-tip-bg: #333;
608
+ // $joyride-tip-default-width: 300px;
609
+ // $joyride-tip-padding: rem-calc(18 20 24);
610
+ // $joyride-tip-border: solid 1px #555;
611
+ // $joyride-tip-radius: 4px;
612
+ // $joyride-tip-position-offset: 22px;
613
+
614
+ // Here, we're setting the tip dont styles
615
+ // $joyride-tip-font-color: #fff;
616
+ // $joyride-tip-font-size: rem-calc(14);
617
+ // $joyride-tip-header-weight: $font-weight-bold;
618
+
619
+ // This changes the nub size
620
+ // $joyride-tip-nub-size: 10px;
621
+
622
+ // This adjusts the styles for the timer when its enabled
623
+ // $joyride-tip-timer-width: 50px;
624
+ // $joyride-tip-timer-height: 3px;
625
+ // $joyride-tip-timer-color: #666;
626
+
627
+ // This changes up the styles for the close button
628
+ // $joyride-tip-close-color: #777;
629
+ // $joyride-tip-close-size: 24px;
630
+ // $joyride-tip-close-weight: $font-weight-normal;
631
+
632
+ // When Joyride is filling the screen, we use this style for the bg
633
+ // $joyride-screenfill: rgba(0,0,0,0.5);
634
+
635
+ // Keystrokes
636
+
637
+ // $include-html-keystroke-classes: $include-html-classes;
638
+
639
+ // We use these to control text styles.
640
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
641
+ // $keystroke-font-size: inherit;
642
+ // $keystroke-font-color: #222;
643
+ // $keystroke-font-color-alt: #fff;
644
+ // $keystroke-function-factor: -7%;
645
+
646
+ // We use this to control keystroke padding.
647
+ // $keystroke-padding: rem-calc(2 4 0);
648
+
649
+ // We use these to control background and border styles.
650
+ // $keystroke-bg: scale-color(#fff, $lightness: $keystroke-function-factor);
651
+ // $keystroke-border-style: solid;
652
+ // $keystroke-border-width: 1px;
653
+ // $keystroke-border-color: scale-color($keystroke-bg, $lightness: $keystroke-function-factor);
654
+ // $keystroke-radius: $global-radius;
655
+
656
+ // Labels
657
+
658
+ // $include-html-label-classes: $include-html-classes;
659
+
660
+ // We use these to style the labels
661
+ // $label-padding: rem-calc(4 8 6);
662
+ // $label-radius: $global-radius;
663
+
664
+ // We use these to style the label text
665
+ // $label-font-sizing: rem-calc(11);
666
+ // $label-font-weight: $font-weight-normal;
667
+ // $label-font-color: #333;
668
+ // $label-font-color-alt: #fff;
669
+ // $label-font-family: $body-font-family;
670
+
671
+ // Magellan
672
+
673
+ // $include-html-magellan-classes: $include-html-classes;
674
+
675
+ // $magellan-bg: #fff;
676
+ $magellan-padding: 0 !important;
677
+
678
+ // Off-canvas
679
+
680
+ // $include-html-off-canvas-classes: $include-html-classes;
681
+
682
+ // $tabbar-bg: #333;
683
+ // $tabbar-height: rem-calc(45);
684
+ // $tabbar-icon-width: $tabbar-height;
685
+ // $tabbar-line-height: $tabbar-height;
686
+ // $tabbar-color: #fff;
687
+ // $tabbar-middle-padding: 0 rem-calc(10);
688
+
689
+ // Off Canvas Divider Styles
690
+ // $tabbar-right-section-border: solid 1px scale-color($tabbar-bg, $lightness: 13%);
691
+ // $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
692
+
693
+ // Off Canvas Tab Bar Headers
694
+ // $tabbar-header-color: #fff;
695
+ // $tabbar-header-weight: $font-weight-bold;
696
+ // $tabbar-header-line-height: $tabbar-height;
697
+ // $tabbar-header-margin: 0;
698
+
699
+ // Off Canvas Menu Variables
700
+ // $off-canvas-width: rem-calc(250);
701
+ // $off-canvas-bg: #333;
702
+
703
+ // Off Canvas Menu List Variables
704
+ // $off-canvas-label-padding: 0.3rem rem-calc(15);
705
+ // $off-canvas-label-color: #999;
706
+ // $off-canvas-label-text-transform: uppercase;
707
+ // $off-canvas-label-font-weight: $font-weight-bold;
708
+ // $off-canvas-label-bg: #444;
709
+ // $off-canvas-label-border-top: 1px solid scale-color(#444, $lightness: 14%);
710
+ // $off-canvas-label-border-bottom: none;
711
+ // $off-canvas-label-margin:0;
712
+ // $off-canvas-link-padding: rem-calc(10, 15);
713
+ // $off-canvas-link-color: rgba(#fff, 0.7);
714
+ // $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
715
+
716
+ // Off Canvas Menu Icon Variables
717
+ // $tabbar-menu-icon-color: #fff;
718
+ // $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
719
+
720
+ // $tabbar-menu-icon-text-indent: rem-calc(35);
721
+ // $tabbar-menu-icon-width: $tabbar-height;
722
+ // $tabbar-menu-icon-height: $tabbar-height;
723
+ // $tabbar-menu-icon-padding: 0;
724
+
725
+ // $tabbar-hamburger-icon-width: rem-calc(16);
726
+ // $tabbar-hamburger-icon-left: false;
727
+ // $tabbar-hamburger-icon-top: false;
728
+ // $tabbar-hamburger-icon-thickness: 1px;
729
+ // $tabbar-hamburger-icon-gap: 6px;
730
+
731
+ // Off Canvas Back-Link Overlay
732
+ // $off-canvas-overlay-transition: background 300ms ease;
733
+ // $off-canvas-overlay-cursor: pointer;
734
+ // $off-canvas-overlay-box-shadow: -4px 0 4px rgba(#000, 0.5), 4px 0 4px rgba(#000, 0.5);
735
+ // $off-canvas-overlay-background: rgba(#fff, 0.2);
736
+ // $off-canvas-overlay-background-hover: rgba(#fff, 0.05);
737
+
738
+ // Transition Variables
739
+ // $menu-slide: "transform 500ms ease";
740
+
741
+ // Orbit
742
+
743
+ // $include-html-orbit-classes: $include-html-classes;
744
+
745
+ // We use these to control the caption styles
746
+ // $orbit-container-bg: none;
747
+ // $orbit-caption-bg: rgba(51,51,51, 0.8);
748
+ // $orbit-caption-font-color: #fff;
749
+ // $orbit-caption-font-size: rem-calc(14);
750
+ // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
751
+ // $orbit-caption-padding: rem-calc(10 14);
752
+ // $orbit-caption-height: auto;
753
+
754
+ // We use these to control the left/right nav styles
755
+ // $orbit-nav-bg: transparent;
756
+ // $orbit-nav-bg-hover: rgba(0,0,0,0.3);
757
+ // $orbit-nav-arrow-color: #fff;
758
+ // $orbit-nav-arrow-color-hover: #fff;
759
+
760
+ // We use these to control the timer styles
761
+ // $orbit-timer-bg: rgba(255,255,255,0.3);
762
+ // $orbit-timer-show-progress-bar: true;
763
+
764
+ // We use these to control the bullet nav styles
765
+ // $orbit-bullet-nav-color: #ccc;
766
+ // $orbit-bullet-nav-color-active: #999;
767
+ // $orbit-bullet-radius: rem-calc(9);
768
+
769
+ // We use these to controls the style of slide numbers
770
+ // $orbit-slide-number-bg: rgba(0,0,0,0);
771
+ // $orbit-slide-number-font-color: #fff;
772
+ // $orbit-slide-number-padding: rem-calc(5);
773
+
774
+ // Hide controls on small
775
+ // $orbit-nav-hide-for-small: true;
776
+ // $orbit-bullet-hide-for-small: true;
777
+ // $orbit-timer-hide-for-small: true;
778
+
779
+ // Graceful Loading Wrapper and preloader
780
+ // $wrapper-class: "slideshow-wrapper";
781
+ // $preloader-class: "preloader";
782
+
783
+ // Pagination
784
+
785
+ // $include-pagination-classes: $include-html-classes;
786
+
787
+ // We use these to control the pagination container
788
+ // $pagination-height: rem-calc(24);
789
+ // $pagination-margin: rem-calc(-5);
790
+
791
+ // We use these to set the list-item properties
792
+ // $pagination-li-float: $default-float;
793
+ // $pagination-li-height: rem-calc(24);
794
+ // $pagination-li-font-color: #222;
795
+ // $pagination-li-font-size: rem-calc(14);
796
+ // $pagination-li-margin: rem-calc(5);
797
+
798
+ // We use these for the pagination anchor links
799
+ // $pagination-link-pad: rem-calc(1 10 1);
800
+ // $pagination-link-font-color: #999;
801
+ // $pagination-link-active-bg: scale-color(#fff, $lightness: -10%);
802
+
803
+ // We use these for disabled anchor links
804
+ // $pagination-link-unavailable-cursor: default;
805
+ // $pagination-link-unavailable-font-color: #999;
806
+ // $pagination-link-unavailable-bg-active: transparent;
807
+
808
+ // We use these for currently selected anchor links
809
+ // $pagination-link-current-background: $primary-color;
810
+ // $pagination-link-current-font-color: #fff;
811
+ // $pagination-link-current-font-weight: $font-weight-bold;
812
+ // $pagination-link-current-cursor: default;
813
+ // $pagination-link-current-active-bg: $primary-color;
814
+
815
+ // Panels
816
+
817
+ // $include-html-panel-classes: $include-html-classes;
818
+
819
+ // We use these to control the background and border styles
820
+ // $panel-bg: scale-color(#fff, $lightness: -5%);
821
+ // $panel-border-style: solid;
822
+ // $panel-border-size: 1px;
823
+
824
+ // We use this % to control how much we darken things on hover
825
+ // $panel-function-factor: -11%;
826
+ // $panel-border-color: scale-color($panel-bg, $lightness: $panel-function-factor);
827
+
828
+ // We use these to set default inner padding and bottom margin
829
+ // $panel-margin-bottom: rem-calc(20);
830
+ // $panel-padding: rem-calc(20);
831
+
832
+ // We use these to set default font colors
833
+ // $panel-font-color: #333;
834
+ // $panel-font-color-alt: #fff;
835
+
836
+ // $panel-header-adjust: true;
837
+ // $callout-panel-link-color: $primary-color;
838
+
839
+ // Pricing Tables
840
+
841
+ // $include-html-pricing-classes: $include-html-classes;
842
+
843
+ // We use this to control the border color
844
+ // $price-table-border: solid 1px #ddd;
845
+
846
+ // We use this to control the bottom margin of the pricing table
847
+ // $price-table-margin-bottom: rem-calc(20);
848
+
849
+ // We use these to control the title styles
850
+ // $price-title-bg: #333;
851
+ // $price-title-padding: rem-calc(15 20);
852
+ // $price-title-align: center;
853
+ // $price-title-color: #eee;
854
+ // $price-title-weight: $font-weight-normal;
855
+ // $price-title-size: rem-calc(16);
856
+ // $price-title-font-family: $body-font-family;
857
+
858
+ // We use these to control the price styles
859
+ // $price-money-bg: #f6f6f6 ;
860
+ // $price-money-padding: rem-calc(15 20);
861
+ // $price-money-align: center;
862
+ // $price-money-color: #333;
863
+ // $price-money-weight: $font-weight-normal;
864
+ // $price-money-size: rem-calc(32);
865
+ // $price-money-font-family: $body-font-family;
866
+
867
+
868
+ // We use these to control the description styles
869
+ // $price-bg: #fff;
870
+ // $price-desc-color: #777;
871
+ // $price-desc-padding: rem-calc(15);
872
+ // $price-desc-align: center;
873
+ // $price-desc-font-size: rem-calc(12);
874
+ // $price-desc-weight: $font-weight-normal;
875
+ // $price-desc-line-height: 1.4;
876
+ // $price-desc-bottom-border: dotted 1px #ddd;
877
+
878
+ // We use these to control the list item styles
879
+ // $price-item-color: #333;
880
+ // $price-item-padding: rem-calc(15);
881
+ // $price-item-align: center;
882
+ // $price-item-font-size: rem-calc(14);
883
+ // $price-item-weight: $font-weight-normal;
884
+ // $price-item-bottom-border: dotted 1px #ddd;
885
+
886
+ // We use these to control the CTA area styles
887
+ // $price-cta-bg: #fff;
888
+ // $price-cta-align: center;
889
+ // $price-cta-padding: rem-calc(20 20 0);
890
+
891
+ // Progress Bar
892
+
893
+ // $include-html-media-classes: $include-html-classes;
894
+
895
+ // We use this to set the progress bar height
896
+ // $progress-bar-height: rem-calc(25);
897
+ // $progress-bar-color: #f6f6f6 ;
898
+
899
+ // We use these to control the border styles
900
+ // $progress-bar-border-color: scale-color(#fff, $lightness: 20%);
901
+ // $progress-bar-border-size: 1px;
902
+ // $progress-bar-border-style: solid;
903
+ // $progress-bar-border-radius: $global-radius;
904
+
905
+ // We use these to control the margin & padding
906
+ // $progress-bar-pad: rem-calc(2);
907
+ // $progress-bar-margin-bottom: rem-calc(10);
908
+
909
+ // We use these to set the meter colors
910
+ // $progress-meter-color: $primary-color;
911
+ // $progress-meter-secondary-color: $secondary-color;
912
+ // $progress-meter-success-color: $success-color;
913
+ // $progress-meter-alert-color: $alert-color;
914
+
915
+ // Reveal
916
+
917
+ // $include-html-reveal-classes: $include-html-classes;
918
+
919
+ // We use these to control the style of the reveal overlay.
920
+ // $reveal-overlay-bg: rgba(#000, .45);
921
+ // $reveal-overlay-bg-old: #000;
922
+
923
+ // We use these to control the style of the modal itself.
924
+ // $reveal-modal-bg: #fff;
925
+ // $reveal-position-top: rem-calc(100);
926
+ // $reveal-default-width: 80%;
927
+ // $reveal-modal-padding: rem-calc(20);
928
+ // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
929
+
930
+ // We use these to style the reveal close button
931
+ // $reveal-close-font-size: rem-calc(40);
932
+ // $reveal-close-top: rem-calc(8);
933
+ // $reveal-close-side: rem-calc(11);
934
+ // $reveal-close-color: #aaa;
935
+ // $reveal-close-weight: $font-weight-bold;
936
+
937
+ // We use this to set the default radius used throughout the core.
938
+ // $reveal-radius: $global-radius;
939
+ // $reveal-round: $global-rounded;
940
+
941
+ // We use these to control the modal border
942
+ // $reveal-border-style: solid;
943
+ // $reveal-border-width: 1px;
944
+ // $reveal-border-color: #666;
945
+
946
+ // $reveal-modal-class: "reveal-modal";
947
+ // $close-reveal-modal-class: "close-reveal-modal";
948
+
949
+ // Side Nav
950
+
951
+ // $include-html-nav-classes: $include-html-classes;
952
+
953
+ // We use this to control padding.
954
+ // $side-nav-padding: rem-calc(14 0);
955
+
956
+ // We use these to control list styles.
957
+ // $side-nav-list-type: none;
958
+ // $side-nav-list-position: inside;
959
+ // $side-nav-list-margin: rem-calc(0 0 7 0);
960
+
961
+ // We use these to control link styles.
962
+ // $side-nav-link-color: $primary-color;
963
+ // $side-nav-link-color-active: scale-color($side-nav-link-color, $lightness: 30%);
964
+ // $side-nav-link-color-hover: scale-color($side-nav-link-color, $lightness: 30%);
965
+ // $side-nav-link-bg-hover: hsla(0, 0, 0, 0.025);
966
+ // $side-nav-link-margin: 0;
967
+ // $side-nav-link-padding: rem-calc(7 14);
968
+ // $side-nav-font-size: rem-calc(14);
969
+ // $side-nav-font-weight: $font-weight-normal;
970
+ // $side-nav-font-weight-active: $side-nav-font-weight;
971
+ // $side-nav-font-family: $body-font-family;
972
+ // $side-nav-active-font-family: $side-nav-font-family;
973
+
974
+ // We use these to control heading styles.
975
+ // $side-nav-heading-color: $side-nav-link-color;
976
+ // $side-nav-heading-font-size: $side-nav-font-size;
977
+ // $side-nav-heading-font-weight: bold;
978
+ // $side-nav-heading-text-transform: uppercase;
979
+
980
+ // We use these to control border styles
981
+ // $side-nav-divider-size: 1px;
982
+ // $side-nav-divider-style: solid;
983
+ // $side-nav-divider-color: scale-color(#fff, $lightness: 10%);
984
+
985
+ // Split Buttons
986
+
987
+ // $include-html-button-classes: $include-html-classes;
988
+
989
+ // We use these to control different shared styles for Split Buttons
990
+ // $split-button-function-factor: 10%;
991
+ // $split-button-pip-color: #fff;
992
+ // $split-button-pip-color-alt: #333;
993
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
994
+
995
+ // We use these to control tiny split buttons
996
+ // $split-button-padding-tny: $button-pip-tny * 10;
997
+ // $split-button-span-width-tny: $button-pip-tny * 6;
998
+ // $split-button-pip-size-tny: $button-pip-tny;
999
+ // $split-button-pip-top-tny: $button-pip-tny * 2;
1000
+ // $split-button-pip-default-float-tny: rem-calc(-6);
1001
+
1002
+ // We use these to control small split buttons
1003
+ // $split-button-padding-sml: $button-pip-sml * 10;
1004
+ // $split-button-span-width-sml: $button-pip-sml * 6;
1005
+ // $split-button-pip-size-sml: $button-pip-sml;
1006
+ // $split-button-pip-top-sml: $button-pip-sml * 1.5;
1007
+ // $split-button-pip-default-float-sml: rem-calc(-6);
1008
+
1009
+ // We use these to control medium split buttons
1010
+ // $split-button-padding-med: $button-pip-med * 9;
1011
+ // $split-button-span-width-med: $button-pip-med * 5.5;
1012
+ // $split-button-pip-size-med: $button-pip-med - rem-calc(3);
1013
+ // $split-button-pip-top-med: $button-pip-med * 1.5;
1014
+ // $split-button-pip-default-float-med: rem-calc(-6);
1015
+
1016
+ // We use these to control large split buttons
1017
+ // $split-button-padding-lrg: $button-pip-lrg * 8;
1018
+ // $split-button-span-width-lrg: $button-pip-lrg * 5;
1019
+ // $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
1020
+ // $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
1021
+ // $split-button-pip-default-float-lrg: rem-calc(-6);
1022
+
1023
+ // Sub Nav
1024
+
1025
+ // $include-html-nav-classes: $include-html-classes;
1026
+
1027
+ // We use these to control margin and padding
1028
+ // $sub-nav-list-margin: rem-calc(-4 0 18);
1029
+ // $sub-nav-list-padding-top: rem-calc(4);
1030
+
1031
+ // We use this to control the definition
1032
+ // $sub-nav-font-family: $body-font-family;
1033
+ // $sub-nav-font-size: rem-calc(14);
1034
+ // $sub-nav-font-color: #999;
1035
+ // $sub-nav-font-weight: $font-weight-normal;
1036
+ // $sub-nav-text-decoration: none;
1037
+ $sub-nav-padding: rem-calc(3 16);
1038
+ // $sub-nav-border-radius: 3px;
1039
+ // $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
1040
+
1041
+
1042
+ // We use these to control the active item styles
1043
+ $sub-nav-active-font-weight: $font-weight-normal;
1044
+ $sub-nav-active-bg: $primary-color;
1045
+ $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
1046
+ $sub-nav-active-color: #fff;
1047
+ $sub-nav-active-padding: $sub-nav-padding;
1048
+ $sub-nav-active-cursor: default;
1049
+
1050
+ // $sub-nav-item-divider: "";
1051
+ // $sub-nav-item-divider-margin: rem-calc(12);
1052
+
1053
+ //
1054
+ // SWITCH
1055
+ //
1056
+
1057
+ // $include-html-form-classes: $include-html-classes;
1058
+
1059
+ // Controlling border styles and background colors for the switch container
1060
+ // $switch-border-color: scale-color(#fff, $lightness: -20%);
1061
+ // $switch-border-style: solid;
1062
+ // $switch-border-width: 1px;
1063
+ // $switch-bg: #fff;
1064
+
1065
+ // We use these to control the switch heights for our default classes
1066
+ // $switch-height-tny: rem-calc(22);
1067
+ // $switch-height-sml: rem-calc(28);
1068
+ // $switch-height-med: rem-calc(36);
1069
+ // $switch-height-lrg: rem-calc(44);
1070
+ // $switch-bottom-margin: rem-calc(20);
1071
+
1072
+ // We use these to control default font sizes for our classes.
1073
+ // $switch-font-size-tny: 11px;
1074
+ // $switch-font-size-sml: 12px;
1075
+ // $switch-font-size-med: 14px;
1076
+ // $switch-font-size-lrg: 17px;
1077
+ // $switch-label-side-padding: 6px;
1078
+
1079
+ // We use these to style the switch-paddle
1080
+ // $switch-paddle-bg: #fff;
1081
+ // $switch-paddle-fade-to-color: scale-color($switch-paddle-bg, $lightness: -10%);
1082
+ // $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
1083
+ // $switch-paddle-border-width: 1px;
1084
+ // $switch-paddle-border-style: solid;
1085
+ // $switch-paddle-transition-speed: .1s;
1086
+ // $switch-paddle-transition-ease: ease-out;
1087
+ // $switch-positive-color: scale-color($success-color, $lightness: 94%);
1088
+ // $switch-negative-color: #f5f5f5;
1089
+
1090
+ // Outline Style for tabbing through switches
1091
+ // $switch-label-outline: 1px dotted #888;
1092
+
1093
+ // Tables
1094
+
1095
+ // $include-html-table-classes: $include-html-classes;
1096
+
1097
+ // These control the background color for the table and even rows
1098
+ // $table-bg: #fff;
1099
+ // $table-even-row-bg: #f9f9f9 ;
1100
+
1101
+ // These control the table cell border style
1102
+ // $table-border-style: solid;
1103
+ // $table-border-size: 1px;
1104
+ // $table-border-color: #ddd;
1105
+
1106
+ // These control the table head styles
1107
+ // $table-head-bg: #f5f5f5 ;
1108
+ // $table-head-font-size: rem-calc(14);
1109
+ // $table-head-font-color: #222;
1110
+ // $table-head-font-weight: $font-weight-bold;
1111
+ // $table-head-padding: rem-calc(8 10 10);
1112
+
1113
+ // These control the row padding and font styles
1114
+ // $table-row-padding: rem-calc(9 10);
1115
+ // $table-row-font-size: rem-calc(14);
1116
+ // $table-row-font-color: #222;
1117
+ // $table-line-height: rem-calc(18);
1118
+
1119
+ // These are for controlling the display and margin of tables
1120
+ // $table-display: table-cell;
1121
+ // $table-margin-bottom: rem-calc(20);
1122
+
1123
+ //
1124
+ // TABS
1125
+ //
1126
+
1127
+ // $include-html-tabs-classes: $include-html-classes;
1128
+
1129
+ // $tabs-navigation-padding: rem-calc(16);
1130
+ // $tabs-navigation-bg-color: #efefef ;
1131
+ // $tabs-navigation-active-bg-color: #fff;
1132
+ // $tabs-navigation-hover-bg-color: scale-color($tabs-navigation-bg-color, $lightness: -6%);
1133
+ // $tabs-navigation-font-color: #222;
1134
+ // $tabs-navigation-active-font-color: $tabs-navigation-font-color;
1135
+ // $tabs-navigation-font-size: rem-calc(16);
1136
+ // $tabs-navigation-font-family: $body-font-family;
1137
+
1138
+ // $tabs-content-margin-bottom: rem-calc(24);
1139
+ // $tabs-content-padding: $column-gutter/2;
1140
+
1141
+ // $tabs-vertical-navigation-margin-bottom: 1.25rem;
1142
+
1143
+ //
1144
+ // THUMBNAILS
1145
+ //
1146
+
1147
+ // $include-html-media-classes: $include-html-classes;
1148
+
1149
+ // We use these to control border styles
1150
+ // $thumb-border-style: solid;
1151
+ // $thumb-border-width: 4px;
1152
+ // $thumb-border-color: #fff;
1153
+ // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
1154
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1155
+
1156
+ // Radius and transition speed for thumbs
1157
+ // $thumb-radius: $global-radius;
1158
+ // $thumb-transition-speed: 200ms;
1159
+
1160
+ //
1161
+ // TOOLTIPS
1162
+ //
1163
+
1164
+ // $include-html-tooltip-classes: $include-html-classes;
1165
+
1166
+ // $has-tip-border-bottom: dotted 1px #ccc;
1167
+ // $has-tip-font-weight: $font-weight-bold;
1168
+ // $has-tip-font-color: #333;
1169
+ // $has-tip-border-bottom-hover: dotted 1px scale-color($primary-color, $lightness: -55%);
1170
+ // $has-tip-font-color-hover: $primary-color;
1171
+ // $has-tip-cursor-type: help;
1172
+
1173
+ // $tooltip-padding: rem-calc(12);
1174
+ // $tooltip-bg: #333;
1175
+ // $tooltip-font-size: rem-calc(14);
1176
+ // $tooltip-font-weight: $font-weight-normal;
1177
+ // $tooltip-font-color: #fff;
1178
+ // $tooltip-line-height: 1.3;
1179
+ // $tooltip-close-font-size: rem-calc(10);
1180
+ // $tooltip-close-font-weight: $font-weight-normal;
1181
+ // $tooltip-close-font-color: #777;
1182
+ // $tooltip-font-size-sml: rem-calc(14);
1183
+ // $tooltip-radius: $global-radius;
1184
+ // $tooltip-rounded: $global-rounded;
1185
+ // $tooltip-pip-size: 5px;
1186
+ // $tooltip-max-width: 300px;
1187
+
1188
+ //
1189
+ // TOP BAR
1190
+ //
1191
+
1192
+ // $include-html-top-bar-classes: $include-html-classes;
1193
+
1194
+ // Background color for the top bar
1195
+ // $topbar-bg-color: #333;
1196
+ // $topbar-bg: $topbar-bg-color;
1197
+
1198
+ // Height and margin
1199
+ // $topbar-height: 45px;
1200
+ // $topbar-margin-bottom: 0;
1201
+
1202
+ // Controlling the styles for the title in the top bar
1203
+ // $topbar-title-weight: $font-weight-normal;
1204
+ // $topbar-title-font-size: rem-calc(17);
1205
+
1206
+ // Style the top bar dropdown elements
1207
+ // $topbar-dropdown-bg: #333;
1208
+ // $topbar-dropdown-link-color: #fff;
1209
+ // $topbar-dropdown-link-bg: #333;
1210
+ // $topbar-dropdown-link-weight: $font-weight-normal;
1211
+ // $topbar-dropdown-toggle-size: 5px;
1212
+ // $topbar-dropdown-toggle-color: #fff;
1213
+ // $topbar-dropdown-toggle-alpha: 0.4;
1214
+
1215
+ // Set the link colors and styles for top-level nav
1216
+ // $topbar-link-color: #fff;
1217
+ // $topbar-link-color-hover: #fff;
1218
+ // $topbar-link-color-active: #fff;
1219
+ // $topbar-link-color-active-hover: #fff;
1220
+ // $topbar-link-weight: $font-weight-normal;
1221
+ // $topbar-link-font-size: rem-calc(13);
1222
+ // $topbar-link-hover-lightness: -10%; // Darken by 10%
1223
+ // $topbar-link-bg: $topbar-bg;
1224
+ // $topbar-link-bg-color-hover: #555555;
1225
+ // $topbar-link-bg-hover: #272727;
1226
+ // $topbar-link-bg-active: $primary-color;
1227
+ // $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
1228
+ // $topbar-link-font-family: $body-font-family;
1229
+ // $topbar-link-text-transform: none;
1230
+ // $topbar-link-padding: $topbar-height / 3;
1231
+
1232
+ // $topbar-button-font-size: 0.75rem;
1233
+ // $topbar-button-top: 7px;
1234
+
1235
+ // $topbar-dropdown-label-color: #777;
1236
+ // $topbar-dropdown-label-text-transform: uppercase;
1237
+ // $topbar-dropdown-label-font-weight: $font-weight-bold;
1238
+ // $topbar-dropdown-label-font-size: rem-calc(10);
1239
+ // $topbar-dropdown-label-bg: #333;
1240
+
1241
+ // Top menu icon styles
1242
+ // $topbar-menu-link-transform: uppercase;
1243
+ // $topbar-menu-link-font-size: rem-calc(13);
1244
+ // $topbar-menu-link-weight: $font-weight-bold;
1245
+ // $topbar-menu-link-color: #fff;
1246
+ // $topbar-menu-icon-color: #fff;
1247
+ // $topbar-menu-link-color-toggled: #888;
1248
+ // $topbar-menu-icon-color-toggled: #888;
1249
+
1250
+ // Transitions and breakpoint styles
1251
+ // $topbar-transition-speed: 300ms;
1252
+ // Using rem-calc for the below breakpoint causes issues with top bar
1253
+ // $topbar-breakpoint: #{lower-bound($medium-range)}; // Change to 9999px for always mobile layout
1254
+ // $topbar-media-query: $medium-up;
1255
+
1256
+ // Divider Styles
1257
+ // $topbar-divider-border-bottom: solid 1px scale-color($topbar-bg-color, $lightness: 13%);
1258
+ // $topbar-divider-border-top: solid 1px scale-color($topbar-bg-color, $lightness: -50%);
1259
+
1260
+ // Sticky Class
1261
+ // $topbar-sticky-class: ".sticky";
1262
+ // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
1263
+
1264
+ // ICON BAR
1265
+
1266
+ // We use these to style the icon-bar and items
1267
+ // $include-html-icon-bar-classes: $include-html-classes;
1268
+ // $icon-bar-bg: #333;
1269
+ // $icon-bar-font-color: #fff;
1270
+ // $icon-bar-font-size: 1rem;
1271
+ // $icon-bar-hover-color: $primary-color;
1272
+ // $icon-bar-icon-color: #fff;
1273
+ // $icon-bar-icon-size: 1.875rem;
1274
+ // $icon-bar-image-width: 1.875rem;
1275
+ // $icon-bar-image-height: 1.875rem;
1276
+ // $icon-bar-active-color: $primary-color;
1277
+ // $icon-bar-item-padding: 1.25rem;
1278
+
1279
+ //
1280
+ // VISIBILITY CLASSES
1281
+ //
1282
+
1283
+ // $include-html-visibility-classes: $include-html-classes;
1284
+ // $include-table-visibility-classes: true;
1285
+ // $include-legacy-visibility-classes: true;
1286
+ // $include-accessibility-classes: true;
1287
+
1288
+ //
1289
+ // RANGE SLIDER
1290
+ //
1291
+
1292
+ // $include-html-range-slider-classes: $include-html-classes;
1293
+
1294
+ // These variabels define the slider bar styles
1295
+ // $range-slider-bar-width: 100%;
1296
+ // $range-slider-bar-height: rem-calc(16);
1297
+
1298
+ // $range-slider-bar-border-width: 1px;
1299
+ // $range-slider-bar-border-style: solid;
1300
+ // $range-slider-bar-border-color: #ddd;
1301
+ // $range-slider-radius: $global-radius;
1302
+ // $range-slider-round: $global-rounded;
1303
+ // $range-slider-bar-bg-color: #fafafa;
1304
+
1305
+ // Vertical bar styles
1306
+ // $range-slider-vertical-bar-width: rem-calc(16);
1307
+ // $range-slider-vertical-bar-height: rem-calc(200);
1308
+
1309
+ // These variabels define the slider handle styles
1310
+ // $range-slider-handle-width: rem-calc(32);
1311
+ // $range-slider-handle-height: rem-calc(22);
1312
+ // $range-slider-handle-position-top: rem-calc(-5);
1313
+ // $range-slider-handle-bg-color: $primary-color;
1314
+ // $range-slider-handle-border-width: 1px;
1315
+ // $range-slider-handle-border-style: solid;
1316
+ // $range-slider-handle-border-color: none;
1317
+ // $range-slider-handle-radius: $global-radius;
1318
+ // $range-slider-handle-round: $global-rounded;
1319
+ // $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
1320
+ // $range-slider-handle-cursor: pointer;
1321
+
1322
+ @import 'foundation';