locomotivecms_wagon 1.4.0 → 1.5.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (352) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +3 -0
  3. data/Gemfile +6 -2
  4. data/README.md +7 -1
  5. data/bin/wagon +3 -0
  6. data/generators/blank/Gemfile.tt +1 -3
  7. data/generators/blank/config/site.yml.tt +3 -3
  8. data/generators/bootstrap/config/site.yml.tt +3 -3
  9. data/generators/bootstrap3/Gemfile.tt +1 -3
  10. data/generators/bootstrap3/app/views/pages/index.liquid +21 -63
  11. data/generators/bootstrap3/app/views/pages/index.liquid.haml +15 -57
  12. data/generators/bootstrap3/config/deploy.yml +15 -15
  13. data/generators/bootstrap3/config/site.yml.tt +2 -2
  14. data/generators/bootstrap3/icon.png +0 -0
  15. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.eot +0 -0
  16. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.svg +201 -200
  17. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.ttf +0 -0
  18. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.woff +0 -0
  19. data/generators/{bootstrap2/app/content_types → bootstrap3/public/images}/.empty_directory +0 -0
  20. data/generators/bootstrap3/public/javascripts/bootstrap/affix.js +137 -0
  21. data/generators/bootstrap3/public/javascripts/bootstrap/alert.js +88 -0
  22. data/generators/bootstrap3/public/javascripts/bootstrap/button.js +107 -0
  23. data/generators/bootstrap3/public/javascripts/bootstrap/carousel.js +205 -0
  24. data/generators/bootstrap3/public/javascripts/bootstrap/collapse.js +170 -0
  25. data/generators/bootstrap3/public/javascripts/bootstrap/dropdown.js +147 -0
  26. data/generators/bootstrap3/public/javascripts/bootstrap/modal.js +243 -0
  27. data/generators/bootstrap3/public/javascripts/bootstrap/popover.js +110 -0
  28. data/generators/bootstrap3/public/javascripts/bootstrap/scrollspy.js +153 -0
  29. data/generators/bootstrap3/public/javascripts/bootstrap/tab.js +125 -0
  30. data/generators/bootstrap3/public/javascripts/bootstrap/tooltip.js +399 -0
  31. data/generators/bootstrap3/public/javascripts/bootstrap/transition.js +48 -0
  32. data/generators/bootstrap3/public/javascripts/bootstrap.min.js +12 -6
  33. data/generators/bootstrap3/public/stylesheets/application.css +1 -0
  34. data/generators/bootstrap3/public/stylesheets/application.css.scss +8 -0
  35. data/generators/bootstrap3/public/stylesheets/bootstrap/_alerts.scss +67 -0
  36. data/generators/bootstrap3/public/stylesheets/bootstrap/_badges.scss +55 -0
  37. data/generators/bootstrap3/public/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
  38. data/generators/bootstrap3/public/stylesheets/bootstrap/_button-groups.scss +226 -0
  39. data/generators/bootstrap3/public/stylesheets/bootstrap/_buttons.scss +159 -0
  40. data/generators/bootstrap3/public/stylesheets/bootstrap/_carousel.scss +232 -0
  41. data/generators/bootstrap3/public/stylesheets/bootstrap/_close.scss +35 -0
  42. data/generators/bootstrap3/public/stylesheets/bootstrap/_code.scss +63 -0
  43. data/generators/bootstrap3/public/stylesheets/bootstrap/_component-animations.scss +29 -0
  44. data/generators/bootstrap3/public/stylesheets/bootstrap/_dropdowns.scss +213 -0
  45. data/generators/bootstrap3/public/stylesheets/bootstrap/_forms.scss +436 -0
  46. data/generators/bootstrap3/public/stylesheets/bootstrap/_glyphicons.scss +233 -0
  47. data/generators/bootstrap3/public/stylesheets/bootstrap/_grid.scss +84 -0
  48. data/generators/bootstrap3/public/stylesheets/bootstrap/_input-groups.scss +162 -0
  49. data/generators/bootstrap3/public/stylesheets/bootstrap/_jumbotron.scss +44 -0
  50. data/generators/bootstrap3/public/stylesheets/bootstrap/_labels.scss +64 -0
  51. data/generators/bootstrap3/public/stylesheets/bootstrap/_list-group.scss +110 -0
  52. data/generators/bootstrap3/public/stylesheets/bootstrap/_media.scss +56 -0
  53. data/generators/bootstrap3/public/stylesheets/bootstrap/_mixins.scss +947 -0
  54. data/generators/bootstrap3/public/stylesheets/bootstrap/_modals.scss +139 -0
  55. data/generators/bootstrap3/public/stylesheets/bootstrap/_navbar.scss +620 -0
  56. data/generators/bootstrap3/public/stylesheets/bootstrap/_navs.scss +242 -0
  57. data/generators/bootstrap3/public/stylesheets/bootstrap/_normalize.scss +423 -0
  58. data/generators/bootstrap3/public/stylesheets/bootstrap/_pager.scss +55 -0
  59. data/generators/bootstrap3/public/stylesheets/bootstrap/_pagination.scss +88 -0
  60. data/generators/bootstrap3/public/stylesheets/bootstrap/_panels.scss +241 -0
  61. data/generators/bootstrap3/public/stylesheets/bootstrap/_popovers.scss +133 -0
  62. data/generators/bootstrap3/public/stylesheets/bootstrap/_print.scss +101 -0
  63. data/generators/bootstrap3/public/stylesheets/bootstrap/_progress-bars.scss +80 -0
  64. data/generators/bootstrap3/public/stylesheets/bootstrap/_responsive-utilities.scss +74 -0
  65. data/generators/bootstrap3/public/stylesheets/bootstrap/_scaffolding.scss +134 -0
  66. data/generators/bootstrap3/public/stylesheets/bootstrap/_tables.scss +233 -0
  67. data/generators/bootstrap3/public/stylesheets/bootstrap/_theme.scss +247 -0
  68. data/generators/bootstrap3/public/stylesheets/bootstrap/_thumbnails.scss +38 -0
  69. data/generators/bootstrap3/public/stylesheets/bootstrap/_tooltip.scss +95 -0
  70. data/generators/bootstrap3/public/stylesheets/bootstrap/_type.scss +284 -0
  71. data/generators/bootstrap3/public/stylesheets/bootstrap/_utilities.scss +56 -0
  72. data/generators/bootstrap3/public/stylesheets/bootstrap/_variables.scss +833 -0
  73. data/generators/bootstrap3/public/stylesheets/bootstrap/_wells.scss +29 -0
  74. data/generators/bootstrap3/public/stylesheets/bootstrap/bootstrap.css.scss +49 -0
  75. data/generators/bootstrap3/public/stylesheets/bootstrap.css +2035 -3056
  76. data/generators/bootstrap3/public/stylesheets/bootstrap.css.scss +49 -0
  77. data/generators/cloned/Gemfile.tt +1 -3
  78. data/generators/content_type/app/content_types/%slug%.yml.tt +57 -0
  79. data/generators/content_type/data/{%name%.yml.tt → %slug%.yml.tt} +2 -2
  80. data/generators/{bootstrap2 → foundation5}/Gemfile.tt +1 -3
  81. data/generators/{bootstrap2/data → foundation5/app/content_types}/.empty_directory +0 -0
  82. data/generators/{foundation → foundation5}/app/views/pages/404.liquid +1 -4
  83. data/generators/{foundation → foundation5}/app/views/pages/404.liquid.haml +1 -1
  84. data/generators/foundation5/app/views/pages/index.liquid +196 -0
  85. data/generators/foundation5/app/views/pages/index.liquid.haml +157 -0
  86. data/generators/foundation5/config/deploy.yml +15 -0
  87. data/generators/{bootstrap2 → foundation5}/config/site.yml.tt +3 -4
  88. data/generators/{bootstrap2 → foundation5}/config/translations.yml +0 -0
  89. data/generators/{bootstrap2 → foundation5}/config.ru +0 -0
  90. data/generators/{bootstrap2/public/samples → foundation5/data}/.empty_directory +0 -0
  91. data/generators/foundation5/favicon.ico +0 -0
  92. data/generators/foundation5/icon.png +0 -0
  93. data/generators/{foundation/app/content_types → foundation5/public/fonts}/.empty_directory +0 -0
  94. data/generators/{foundation/data → foundation5/public/images}/.empty_directory +0 -0
  95. data/generators/foundation5/public/javascripts/foundation/foundation.abide.js +299 -0
  96. data/generators/foundation5/public/javascripts/foundation/foundation.accordion.js +59 -0
  97. data/generators/foundation5/public/javascripts/foundation/foundation.alert.js +43 -0
  98. data/generators/foundation5/public/javascripts/foundation/foundation.clearing.js +534 -0
  99. data/generators/foundation5/public/javascripts/foundation/foundation.dropdown.js +311 -0
  100. data/generators/foundation5/public/javascripts/foundation/foundation.equalizer.js +74 -0
  101. data/generators/foundation5/public/javascripts/foundation/foundation.interchange.js +331 -0
  102. data/generators/foundation5/public/javascripts/foundation/foundation.joyride.js +843 -0
  103. data/generators/foundation5/public/javascripts/foundation/foundation.js +611 -0
  104. data/generators/foundation5/public/javascripts/foundation/foundation.magellan.js +178 -0
  105. data/generators/foundation5/public/javascripts/foundation/foundation.offcanvas.js +108 -0
  106. data/generators/foundation5/public/javascripts/foundation/foundation.orbit.js +610 -0
  107. data/generators/foundation5/public/javascripts/foundation/foundation.reveal.js +437 -0
  108. data/generators/foundation5/public/javascripts/foundation/foundation.slider.js +199 -0
  109. data/generators/foundation5/public/javascripts/foundation/foundation.tab.js +167 -0
  110. data/generators/foundation5/public/javascripts/foundation/foundation.tooltip.js +298 -0
  111. data/generators/foundation5/public/javascripts/foundation/foundation.topbar.js +425 -0
  112. data/generators/foundation5/public/javascripts/foundation.js +4161 -0
  113. data/generators/foundation5/public/javascripts/foundation.min.js +10 -0
  114. data/generators/{foundation → foundation5}/public/javascripts/vendor/custom.modernizr.js +0 -0
  115. data/generators/foundation5/public/javascripts/vendor/custom.modernizr.min.js +1 -0
  116. data/generators/foundation5/public/javascripts/vendor/fastclick.js +9 -0
  117. data/generators/foundation5/public/javascripts/vendor/fastclick.min.js +11 -0
  118. data/generators/foundation5/public/javascripts/vendor/jquery.autocomplete.js +645 -0
  119. data/generators/foundation5/public/javascripts/vendor/jquery.autocomplete.min.js +1 -0
  120. data/generators/foundation5/public/javascripts/vendor/jquery.cookie.js +8 -0
  121. data/generators/foundation5/public/javascripts/vendor/jquery.cookie.min.js +8 -0
  122. data/generators/foundation5/public/javascripts/vendor/jquery.js +26 -0
  123. data/generators/foundation5/public/javascripts/vendor/jquery.min.js +27 -0
  124. data/generators/foundation5/public/javascripts/vendor/modernizr.js +8 -0
  125. data/generators/foundation5/public/javascripts/vendor/modernizr.min.js +1 -0
  126. data/generators/foundation5/public/javascripts/vendor/placeholder.js +2 -0
  127. data/generators/foundation5/public/javascripts/vendor/placeholder.min.js +1 -0
  128. data/generators/{foundation/public/fonts → foundation5/public/samples}/.empty_directory +0 -0
  129. data/generators/foundation5/public/stylesheets/application.css +2 -0
  130. data/generators/foundation5/public/stylesheets/application.css.scss +3 -0
  131. data/generators/foundation5/public/stylesheets/foundation/_functions.scss +101 -0
  132. data/generators/foundation5/public/stylesheets/foundation/_settings.scss +1296 -0
  133. data/generators/foundation5/public/stylesheets/foundation/components/_accordion.scss +53 -0
  134. data/generators/foundation5/public/stylesheets/foundation/components/_alert-boxes.scss +126 -0
  135. data/generators/foundation5/public/stylesheets/foundation/components/_block-grid.scss +132 -0
  136. data/generators/foundation5/public/stylesheets/foundation/components/_breadcrumbs.scss +127 -0
  137. data/generators/foundation5/public/stylesheets/foundation/components/_button-groups.scss +108 -0
  138. data/generators/foundation5/public/stylesheets/foundation/components/_buttons.scss +222 -0
  139. data/generators/foundation5/public/stylesheets/foundation/components/_clearing.scss +247 -0
  140. data/generators/foundation5/public/stylesheets/foundation/components/_dropdown-buttons.scss +129 -0
  141. data/generators/foundation5/public/stylesheets/foundation/components/_dropdown.scss +248 -0
  142. data/generators/foundation5/public/stylesheets/foundation/components/_flex-video.scss +51 -0
  143. data/generators/foundation5/public/stylesheets/foundation/components/_forms.scss +498 -0
  144. data/generators/foundation5/public/stylesheets/foundation/components/_global.scss +434 -0
  145. data/generators/foundation5/public/stylesheets/foundation/components/_grid.scss +260 -0
  146. data/generators/foundation5/public/stylesheets/foundation/components/_inline-lists.scss +57 -0
  147. data/generators/foundation5/public/stylesheets/foundation/components/_joyride.scss +220 -0
  148. data/generators/foundation5/public/stylesheets/foundation/components/_keystrokes.scss +61 -0
  149. data/generators/foundation5/public/stylesheets/foundation/components/_labels.scss +104 -0
  150. data/generators/foundation5/public/stylesheets/foundation/components/_magellan.scss +34 -0
  151. data/generators/foundation5/public/stylesheets/foundation/components/_offcanvas.scss +356 -0
  152. data/generators/foundation5/public/stylesheets/foundation/components/_orbit.scss +423 -0
  153. data/generators/foundation5/public/stylesheets/foundation/components/_pagination.scss +150 -0
  154. data/generators/foundation5/public/stylesheets/foundation/components/_panels.scss +90 -0
  155. data/generators/foundation5/public/stylesheets/foundation/components/_pricing-tables.scss +150 -0
  156. data/generators/foundation5/public/stylesheets/foundation/components/_progress-bars.scss +79 -0
  157. data/generators/foundation5/public/stylesheets/foundation/components/_range-slider.scss +148 -0
  158. data/generators/foundation5/public/stylesheets/foundation/components/_reveal-new.scss +0 -0
  159. data/generators/foundation5/public/stylesheets/foundation/components/_reveal.scss +216 -0
  160. data/generators/foundation5/public/stylesheets/foundation/components/_side-nav.scss +115 -0
  161. data/generators/foundation5/public/stylesheets/foundation/components/_split-buttons.scss +191 -0
  162. data/generators/foundation5/public/stylesheets/foundation/components/_sub-nav.scss +125 -0
  163. data/generators/foundation5/public/stylesheets/foundation/components/_switch.scss +294 -0
  164. data/generators/foundation5/public/stylesheets/foundation/components/_tables.scss +129 -0
  165. data/generators/foundation5/public/stylesheets/foundation/components/_tabs.scss +109 -0
  166. data/generators/foundation5/public/stylesheets/foundation/components/_thumbs.scss +68 -0
  167. data/generators/foundation5/public/stylesheets/foundation/components/_tooltips.scss +140 -0
  168. data/generators/foundation5/public/stylesheets/foundation/components/_top-bar.scss +659 -0
  169. data/generators/foundation5/public/stylesheets/foundation/components/_type.scss +513 -0
  170. data/generators/foundation5/public/stylesheets/foundation/components/_visibility.scss +408 -0
  171. data/generators/foundation5/public/stylesheets/foundation.css +5398 -0
  172. data/generators/foundation5/public/stylesheets/foundation.css.scss +45 -0
  173. data/generators/foundation5/public/stylesheets/normalize.css +425 -0
  174. data/generators/foundation5/public/stylesheets/normalize.css.scss +425 -0
  175. data/generators/{foundation → line_case}/Gemfile.tt +1 -3
  176. data/generators/line_case/app/content_types/categories.yml +56 -0
  177. data/generators/line_case/app/content_types/emails.yml +35 -0
  178. data/generators/line_case/app/content_types/projects.yml +58 -0
  179. data/generators/{bootstrap2 → line_case}/app/views/pages/404.liquid.haml +3 -2
  180. data/generators/line_case/app/views/pages/email-registered.liquid.haml +13 -0
  181. data/generators/line_case/app/views/pages/index.liquid.haml +110 -0
  182. data/generators/line_case/app/views/pages/projects/content_type_template.liquid.haml +32 -0
  183. data/generators/line_case/app/views/snippets/newsletter_form.liquid.haml +14 -0
  184. data/generators/line_case/app/views/snippets/projects.liquid.haml +17 -0
  185. data/generators/line_case/app/views/snippets/social_links.liquid.haml +19 -0
  186. data/generators/line_case/config/deploy.yml +15 -0
  187. data/generators/{foundation → line_case}/config/site.yml.tt +3 -3
  188. data/generators/{foundation → line_case}/config/translations.yml +0 -0
  189. data/generators/{foundation → line_case}/config.ru +0 -0
  190. data/generators/line_case/data/categories.yml +8 -0
  191. data/generators/line_case/data/emails.yml +2 -0
  192. data/generators/line_case/data/projects.yml +39 -0
  193. data/generators/line_case/icon.png +0 -0
  194. data/generators/line_case/public/images/banner-header.png +0 -0
  195. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.abide.js +0 -0
  196. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.alerts.js +0 -0
  197. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.clearing.js +0 -0
  198. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.cookie.js +0 -0
  199. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.dropdown.js +0 -0
  200. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.forms.js +0 -0
  201. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.interchange.js +0 -0
  202. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.joyride.js +0 -0
  203. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.js +0 -0
  204. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.magellan.js +0 -0
  205. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.orbit.js +0 -0
  206. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.placeholder.js +0 -0
  207. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.reveal.js +0 -0
  208. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.section.js +0 -0
  209. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.tooltips.js +0 -0
  210. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.topbar.js +0 -0
  211. data/generators/{foundation → line_case}/public/javascripts/foundation.min.js +0 -0
  212. data/generators/line_case/public/javascripts/vendor/custom.modernizr.js +4 -0
  213. data/generators/{foundation → line_case}/public/javascripts/vendor/jquery.js +0 -0
  214. data/generators/{foundation → line_case}/public/javascripts/vendor/zepto.js +0 -0
  215. data/generators/line_case/public/samples/projects/sample.jpeg +0 -0
  216. data/generators/line_case/public/samples/projects/sample2.jpeg +0 -0
  217. data/generators/line_case/public/samples/projects/sample3.jpeg +0 -0
  218. data/generators/line_case/public/samples/projects/sample4.jpeg +0 -0
  219. data/generators/line_case/public/samples/projects/sample5.jpeg +0 -0
  220. data/generators/line_case/public/samples/projects/sample6.jpeg +0 -0
  221. data/generators/line_case/public/samples/projects/sample7.jpeg +0 -0
  222. data/generators/line_case/public/samples/projects/sample8.jpeg +0 -0
  223. data/generators/line_case/public/stylesheets/_variables.css.sass +20 -0
  224. data/generators/line_case/public/stylesheets/foundation/_variables.scss +1290 -0
  225. data/generators/line_case/public/stylesheets/foundation/components/_alert-boxes.scss +107 -0
  226. data/generators/line_case/public/stylesheets/foundation/components/_block-grid.scss +71 -0
  227. data/generators/line_case/public/stylesheets/foundation/components/_breadcrumbs.scss +124 -0
  228. data/generators/line_case/public/stylesheets/foundation/components/_button-groups.scss +89 -0
  229. data/generators/line_case/public/stylesheets/foundation/components/_buttons.scss +230 -0
  230. data/generators/line_case/public/stylesheets/foundation/components/_clearing.scss +227 -0
  231. data/generators/line_case/public/stylesheets/foundation/components/_custom-forms.scss +278 -0
  232. data/generators/line_case/public/stylesheets/foundation/components/_dropdown-buttons.scss +115 -0
  233. data/generators/line_case/public/stylesheets/foundation/components/_dropdown.scss +151 -0
  234. data/generators/line_case/public/stylesheets/foundation/components/_flex-video.scss +46 -0
  235. data/generators/line_case/public/stylesheets/foundation/components/_forms.scss +411 -0
  236. data/generators/line_case/public/stylesheets/foundation/components/_global.scss +366 -0
  237. data/generators/line_case/public/stylesheets/foundation/components/_grid-5.scss +214 -0
  238. data/generators/line_case/public/stylesheets/foundation/components/_grid.scss +188 -0
  239. data/generators/line_case/public/stylesheets/foundation/components/_inline-lists.scss +53 -0
  240. data/generators/line_case/public/stylesheets/foundation/components/_joyride.scss +217 -0
  241. data/generators/line_case/public/stylesheets/foundation/components/_keystrokes.scss +57 -0
  242. data/generators/line_case/public/stylesheets/foundation/components/_labels.scss +85 -0
  243. data/generators/line_case/public/stylesheets/foundation/components/_magellan.scss +23 -0
  244. data/generators/line_case/public/stylesheets/foundation/components/_orbit.scss +340 -0
  245. data/generators/line_case/public/stylesheets/foundation/components/_pagination.scss +140 -0
  246. data/generators/line_case/public/stylesheets/foundation/components/_panels.scss +83 -0
  247. data/generators/line_case/public/stylesheets/foundation/components/_pricing-tables.scss +131 -0
  248. data/generators/line_case/public/stylesheets/foundation/components/_progress-bars.scss +71 -0
  249. data/generators/line_case/public/stylesheets/foundation/components/_reveal.scss +136 -0
  250. data/generators/line_case/public/stylesheets/foundation/components/_section.scss +391 -0
  251. data/generators/line_case/public/stylesheets/foundation/components/_side-nav.scss +69 -0
  252. data/generators/line_case/public/stylesheets/foundation/components/_split-buttons.scss +167 -0
  253. data/generators/line_case/public/stylesheets/foundation/components/_sub-nav.scss +84 -0
  254. data/generators/line_case/public/stylesheets/foundation/components/_switch.scss +266 -0
  255. data/generators/line_case/public/stylesheets/foundation/components/_tables.scss +84 -0
  256. data/generators/line_case/public/stylesheets/foundation/components/_thumbs.scss +53 -0
  257. data/generators/line_case/public/stylesheets/foundation/components/_tooltips.scss +117 -0
  258. data/generators/line_case/public/stylesheets/foundation/components/_top-bar.scss +576 -0
  259. data/generators/line_case/public/stylesheets/foundation/components/_type.scss +435 -0
  260. data/generators/line_case/public/stylesheets/foundation/components/_visibility.scss +322 -0
  261. data/generators/line_case/public/stylesheets/foundation.css.scss +43 -0
  262. data/generators/{foundation → line_case}/public/stylesheets/foundation.min.css +0 -0
  263. data/generators/{foundation/public/stylesheets/normalize.css → line_case/public/stylesheets/normalize.css.scss} +5 -5
  264. data/generators/line_case/public/stylesheets/pages.css.sass +163 -0
  265. data/generators/page/template.liquid.haml.tt +8 -5
  266. data/generators/page/template.liquid.tt +6 -2
  267. data/lib/locomotive/wagon/cli.rb +139 -43
  268. data/lib/locomotive/wagon/generators/content_type.rb +26 -10
  269. data/lib/locomotive/wagon/generators/page.rb +41 -25
  270. data/lib/locomotive/wagon/generators/site/base.rb +53 -0
  271. data/lib/locomotive/wagon/generators/site/blank.rb +9 -2
  272. data/lib/locomotive/wagon/generators/site/bootstrap2.rb +8 -2
  273. data/lib/locomotive/wagon/generators/site/bootstrap3.rb +20 -2
  274. data/lib/locomotive/wagon/generators/site/cloned.rb +4 -0
  275. data/lib/locomotive/wagon/generators/site/{foundation.rb → foundation4.rb} +10 -4
  276. data/lib/locomotive/wagon/generators/site/foundation5.rb +48 -0
  277. data/lib/locomotive/wagon/generators/site/line_case.rb +20 -0
  278. data/lib/locomotive/wagon/generators/site/unzip.rb +10 -2
  279. data/lib/locomotive/wagon/generators/site.rb +48 -2
  280. data/lib/locomotive/wagon/generators/snippet.rb +2 -1
  281. data/lib/locomotive/wagon/liquid/drops/content_types.rb +9 -3
  282. data/lib/locomotive/wagon/liquid/drops/page.rb +9 -1
  283. data/lib/locomotive/wagon/liquid/scopeable.rb +1 -1
  284. data/lib/locomotive/wagon/liquid/tags/fetch_page.rb +41 -0
  285. data/lib/locomotive/wagon/liquid/tags/model_form.rb +67 -0
  286. data/lib/locomotive/wagon/liquid/tags/path_helper.rb +2 -2
  287. data/lib/locomotive/wagon/liquid/tags/with_scope.rb +1 -1
  288. data/lib/locomotive/wagon/listen.rb +18 -10
  289. data/lib/locomotive/wagon/logger.rb +4 -0
  290. data/lib/locomotive/wagon/misc/core_ext.rb +8 -0
  291. data/lib/locomotive/wagon/misc/deployment_connection.rb +120 -0
  292. data/lib/locomotive/wagon/misc/hosting_api.rb +115 -0
  293. data/lib/locomotive/wagon/misc/httparty.rb +2 -0
  294. data/lib/locomotive/wagon/misc/livereload.rb +43 -0
  295. data/lib/locomotive/wagon/misc/mounter.rb +1 -1
  296. data/lib/locomotive/wagon/misc/tcp_port.rb +42 -0
  297. data/lib/locomotive/wagon/misc/thor.rb +15 -0
  298. data/lib/locomotive/wagon/server/entry_submission.rb +69 -38
  299. data/lib/locomotive/wagon/server/middleware.rb +4 -2
  300. data/lib/locomotive/wagon/server/page.rb +2 -2
  301. data/lib/locomotive/wagon/server.rb +11 -7
  302. data/lib/locomotive/wagon/version.rb +1 -1
  303. data/lib/locomotive/wagon.rb +141 -30
  304. data/locomotivecms_wagon.gemspec +7 -6
  305. data/spec/fixtures/default/app/content_types/bands.yml +3 -1
  306. data/spec/fixtures/default/app/views/pages/all.liquid.haml +3 -0
  307. data/spec/fixtures/default/app/views/pages/events.liquid.haml +21 -0
  308. data/spec/fixtures/default/app/views/pages/filtered.liquid.haml +11 -1
  309. data/spec/fixtures/default/app/views/pages/index.liquid.haml +1 -1
  310. data/spec/fixtures/default/data/bands.yml +3 -0
  311. data/spec/integration/server/basic_spec.rb +1 -0
  312. data/spec/integration/server/contact_form_spec.rb +1 -1
  313. data/spec/integration/server/liquid_spec.rb +8 -1
  314. data/spec/integration/server/new_contact_form_spec.rb +67 -0
  315. data/spec/integration/server/with_scope_spec.rb +10 -0
  316. data/spec/spec_helper.rb +3 -0
  317. metadata +339 -144
  318. data/generators/bootstrap2/app/views/pages/404.liquid +0 -13
  319. data/generators/bootstrap2/app/views/pages/index.liquid +0 -98
  320. data/generators/bootstrap2/app/views/pages/index.liquid.haml +0 -80
  321. data/generators/bootstrap2/app/views/snippets/footer.liquid +0 -3
  322. data/generators/bootstrap2/app/views/snippets/footer.liquid.haml +0 -2
  323. data/generators/bootstrap2/config/deploy.yml +0 -15
  324. data/generators/bootstrap2/public/fonts/FontAwesome.otf +0 -0
  325. data/generators/bootstrap2/public/fonts/fontawesome-webfont.eot +0 -0
  326. data/generators/bootstrap2/public/fonts/fontawesome-webfont.svg +0 -399
  327. data/generators/bootstrap2/public/fonts/fontawesome-webfont.ttf +0 -0
  328. data/generators/bootstrap2/public/fonts/fontawesome-webfont.woff +0 -0
  329. data/generators/bootstrap2/public/javascripts/bootstrap.js +0 -2280
  330. data/generators/bootstrap2/public/javascripts/bootstrap.min.js +0 -6
  331. data/generators/bootstrap2/public/stylesheets/application.css.scss +0 -39
  332. data/generators/bootstrap2/public/stylesheets/bootstrap-responsive.css +0 -1109
  333. data/generators/bootstrap2/public/stylesheets/bootstrap-responsive.min.css +0 -9
  334. data/generators/bootstrap2/public/stylesheets/bootstrap.css +0 -5568
  335. data/generators/bootstrap2/public/stylesheets/bootstrap.min.css +0 -9
  336. data/generators/bootstrap2/public/stylesheets/fonts/awesome.css.scss +0 -3
  337. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome-ie7.css +0 -1203
  338. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome-ie7.min.css +0 -384
  339. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome.css +0 -1470
  340. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome.min.css +0 -403
  341. data/generators/bootstrap3/public/javascripts/bootstrap.js +0 -1999
  342. data/generators/bootstrap3/public/stylesheets/bootstrap-theme.css +0 -384
  343. data/generators/bootstrap3/public/stylesheets/bootstrap-theme.min.css +0 -1
  344. data/generators/bootstrap3/public/stylesheets/bootstrap.min.css +0 -9
  345. data/generators/content_type/app/content_types/%name%.yml.tt +0 -58
  346. data/generators/foundation/app/views/pages/index.liquid +0 -150
  347. data/generators/foundation/app/views/pages/index.liquid.haml +0 -125
  348. data/generators/foundation/app/views/snippets/footer.liquid +0 -16
  349. data/generators/foundation/app/views/snippets/footer.liquid.haml +0 -22
  350. data/generators/foundation/config/deploy.yml +0 -15
  351. data/generators/foundation/public/samples/.empty_directory +0 -1
  352. data/generators/foundation/public/stylesheets/foundation.css +0 -4727
@@ -0,0 +1,1296 @@
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
+ // $experimental: true;
16
+
17
+ // The default font-size is set to 100% of the browser style sheet (usually 16px)
18
+ // for compatibility with browser-based text zoom or user-set defaults.
19
+
20
+ // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
21
+ // If you want your base font-size to be different and not have it affect the grid breakpoints,
22
+ // set $rem-base to $base-font-size and make sure $base-font-size is a px value.
23
+ // $base-font-size: 100%;
24
+
25
+ // The $base-font-size is 100% while $base-line-height is 150%
26
+ // $base-line-height: 150%;
27
+
28
+ // We use this to control whether or not CSS classes come through in the gem files.
29
+ // $include-html-classes: true;
30
+ // $include-print-styles: true;
31
+ // $include-html-global-classes: $include-html-classes;
32
+
33
+ // Grid
34
+
35
+ // $include-html-grid-classes: $include-html-classes;
36
+ // $include-xl-html-grid-classes: false;
37
+
38
+ // $row-width: rem-calc(1000);
39
+ // $total-columns: 12;
40
+
41
+ // Global
42
+
43
+ // We use these to control various global styles
44
+ // $body-bg: #fff;
45
+ // $body-font-color: #222;
46
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
47
+ // $body-font-weight: $font-weight-normal;
48
+ // $body-font-style: normal;
49
+
50
+ // We use this to control font-smoothing
51
+ // $font-smoothing: antialiased;
52
+
53
+ // We use these to control text direction settings
54
+ // $text-direction: ltr;
55
+ // $opposite-direction: right;
56
+ // $default-float: left;
57
+
58
+ // We use these as default colors throughout
59
+ // $primary-color: #008CBA;
60
+ // $secondary-color: #e7e7e7;
61
+ // $alert-color: #f04124;
62
+ // $success-color: #43AC6A;
63
+ // $warning-color: #f08a24;
64
+ // $info-color: #a0d3e8;
65
+
66
+ // We use these to make sure border radius matches unless we want it different.
67
+ // $global-radius: 3px;
68
+ // $global-rounded: 1000px;
69
+
70
+ // We use these to control inset shadow shiny edges and depressions.
71
+ // $shiny-edge-size: 0 1px 0;
72
+ // $shiny-edge-color: rgba(#fff, .5);
73
+ // $shiny-edge-active-color: rgba(#000, .2);
74
+
75
+ // $column-gutter: rem-calc(30);
76
+
77
+ // Media Query Ranges
78
+ // $small-range: (0em, 40em);
79
+ // $medium-range: (40.063em, 64em);
80
+ // $large-range: (64.063em, 90em);
81
+ // $xlarge-range: (90.063em, 120em);
82
+ // $xxlarge-range: (120.063em, 99999999em);
83
+
84
+ // $screen: "only screen";
85
+
86
+ // $landscape: "#{$screen} and (orientation: landscape)";
87
+ // $portrait: "#{$screen} and (orientation: portrait)";
88
+
89
+ // $small-up: $screen;
90
+ // $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
91
+
92
+ // $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
93
+ // $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
94
+
95
+ // $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
96
+ // $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
97
+
98
+ // $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
99
+ // $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
100
+
101
+ // $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
102
+ // $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
103
+
104
+ // Legacy
105
+ // $small: $medium-up;
106
+ // $medium: $medium-up;
107
+ // $large: $large-up;
108
+
109
+ //We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
110
+ // $cursor-crosshair-value: crosshair;
111
+ // $cursor-default-value: default;
112
+ // $cursor-pointer-value: pointer;
113
+ // $cursor-help-value: help;
114
+ // $cursor-text-value: text;
115
+
116
+ //
117
+ // TYPOGRAPHY
118
+ //
119
+
120
+ // $include-html-type-classes: $include-html-classes;
121
+
122
+ // We use these to control header font styles
123
+ // $header-font-family: $body-font-family;
124
+ // $header-font-weight: $font-weight-normal;
125
+ // $header-font-style: normal;
126
+ // $header-font-color: #222;
127
+ // $header-line-height: 1.4;
128
+ // $header-top-margin: .2rem;
129
+ // $header-bottom-margin: .5rem;
130
+ // $header-text-rendering: optimizeLegibility;
131
+
132
+ // We use these to control header font sizes
133
+ // $h1-font-size: rem-calc(44);
134
+ // $h2-font-size: rem-calc(37);
135
+ // $h3-font-size: rem-calc(27);
136
+ // $h4-font-size: rem-calc(23);
137
+ // $h5-font-size: rem-calc(18);
138
+ // $h6-font-size: 1rem;
139
+
140
+ // We use these to control header size reduction on small screens
141
+ // $h1-font-reduction: rem-calc(10) !default;
142
+ // $h2-font-reduction: rem-calc(10) !default;
143
+ // $h3-font-reduction: rem-calc(5) !default;
144
+ // $h4-font-reduction: rem-calc(5) !default;
145
+ // $h5-font-reduction: 0 !default;
146
+ // $h6-font-reduction: 0 !default;
147
+
148
+ // These control how subheaders are styled.
149
+ // $subheader-line-height: 1.4;
150
+ // $subheader-font-color: scale-color($header-font-color, $lightness: 35%);
151
+ // $subheader-font-weight: $font-weight-normal;
152
+ // $subheader-top-margin: .2rem;
153
+ // $subheader-bottom-margin: .5rem;
154
+
155
+ // A general <small> styling
156
+ // $small-font-size: 60%;
157
+ // $small-font-color: scale-color($header-font-color, $lightness: 35%);
158
+
159
+ // We use these to style paragraphs
160
+ // $paragraph-font-family: inherit;
161
+ // $paragraph-font-weight: $font-weight-normal;
162
+ // $paragraph-font-size: 1rem;
163
+ // $paragraph-line-height: 1.6;
164
+ // $paragraph-margin-bottom: rem-calc(20);
165
+ // $paragraph-aside-font-size: rem-calc(14);
166
+ // $paragraph-aside-line-height: 1.35;
167
+ // $paragraph-aside-font-style: italic;
168
+ // $paragraph-text-rendering: optimizeLegibility;
169
+
170
+ // We use these to style <code> tags
171
+ // $code-color: scale-color($alert-color, $lightness: -27%);
172
+ // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
173
+ // $code-font-weight: $font-weight-bold;
174
+
175
+ // We use these to style anchors
176
+ // $anchor-text-decoration: none;
177
+ // $anchor-text-decoration-hover: none;
178
+ // $anchor-font-color: $primary-color;
179
+ // $anchor-font-color-hover: scale-color($primary-color, $lightness: -14%);
180
+
181
+ // We use these to style the <hr> element
182
+ // $hr-border-width: 1px;
183
+ // $hr-border-style: solid;
184
+ // $hr-border-color: #ddd;
185
+ // $hr-margin: rem-calc(20);
186
+
187
+ // We use these to style lists
188
+ // $list-font-family: $paragraph-font-family;
189
+ // $list-font-size: $paragraph-font-size;
190
+ // $list-line-height: $paragraph-line-height;
191
+ // $list-margin-bottom: $paragraph-margin-bottom;
192
+ // $list-style-position: outside;
193
+ // $list-side-margin: 1.1rem;
194
+ // $list-ordered-side-margin: 1.4rem;
195
+ // $list-side-margin-no-bullet: 0;
196
+ // $list-nested-margin: rem-calc(20);
197
+ // $definition-list-header-weight: $font-weight-bold;
198
+ // $definition-list-header-margin-bottom: .3rem;
199
+ // $definition-list-margin-bottom: rem-calc(12);
200
+
201
+ // We use these to style blockquotes
202
+ // $blockquote-font-color: scale-color($header-font-color, $lightness: 35%);
203
+ // $blockquote-padding: rem-calc(9 20 0 19);
204
+ // $blockquote-border: 1px solid #ddd;
205
+ // $blockquote-cite-font-size: rem-calc(13);
206
+ // $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%);
207
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
208
+
209
+ // Acronym styles
210
+ // $acronym-underline: 1px dotted #ddd;
211
+
212
+ // We use these to control padding and margin
213
+ // $microformat-padding: rem-calc(10 12);
214
+ // $microformat-margin: rem-calc(0 0 20 0);
215
+
216
+ // We use these to control the border styles
217
+ // $microformat-border-width: 1px;
218
+ // $microformat-border-style: solid;
219
+ // $microformat-border-color: #ddd;
220
+
221
+ // We use these to control full name font styles
222
+ // $microformat-fullname-font-weight: $font-weight-bold;
223
+ // $microformat-fullname-font-size: rem-calc(15);
224
+
225
+ // We use this to control the summary font styles
226
+ // $microformat-summary-font-weight: $font-weight-bold;
227
+
228
+ // We use this to control abbr padding
229
+ // $microformat-abbr-padding: rem-calc(0 1);
230
+
231
+ // We use this to control abbr font styles
232
+ // $microformat-abbr-font-weight: $font-weight-bold;
233
+ // $microformat-abbr-font-decoration: none;
234
+
235
+ // Accordion
236
+
237
+ // $include-html-accordion-classes: $include-html-classes;
238
+
239
+ // $accordion-navigation-padding: rem-calc(16);
240
+ // $accordion-navigation-bg-color: #efefef ;
241
+ // $accordion-navigation-hover-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -5%);
242
+ // $accordion-navigation-active-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -3%);
243
+ // $accordion-navigation-font-color: #222;
244
+ // $accordion-navigation-font-size: rem-calc(16);
245
+ // $accordion-navigation-font-family: $body-font-family;
246
+
247
+ // $accordion-content-padding: $column-gutter/2;
248
+ // $accordion-content-active-bg-color: #fff;
249
+
250
+ // Alert Boxes
251
+
252
+ // $include-html-alert-classes: $include-html-classes;
253
+
254
+ // We use this to control alert padding.
255
+ // $alert-padding-top: rem-calc(14);
256
+ // $alert-padding-default-float: $alert-padding-top;
257
+ // $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
258
+ // $alert-padding-bottom: $alert-padding-top;
259
+
260
+ // We use these to control text style.
261
+ // $alert-font-weight: $font-weight-normal;
262
+ // $alert-font-size: rem-calc(13);
263
+ // $alert-font-color: #fff;
264
+ // $alert-font-color-alt: scale-color($secondary-color, $lightness: -66%);
265
+
266
+ // We use this for close hover effect.
267
+ // $alert-function-factor: -14%;
268
+
269
+ // We use these to control border styles.
270
+ // $alert-border-style: solid;
271
+ // $alert-border-width: 1px;
272
+ // $alert-border-color: scale-color($primary-color, $lightness: $alert-function-factor);
273
+ // $alert-bottom-margin: rem-calc(20);
274
+
275
+ // We use these to style the close buttons
276
+ // $alert-close-color: #333;
277
+ // $alert-close-top: 50%;
278
+ // $alert-close-position: rem-calc(4);
279
+ // $alert-close-font-size: rem-calc(22);
280
+ // $alert-close-opacity: 0.3;
281
+ // $alert-close-opacity-hover: 0.5;
282
+ // $alert-close-padding: 9px 6px 4px;
283
+
284
+ // We use this to control border radius
285
+ // $alert-radius: $global-radius;
286
+
287
+ // We use this to control transition effects
288
+ // $alert-transition-speed: 300ms;
289
+ // $alert-transition-ease: ease-out;
290
+
291
+ // Block Grid
292
+
293
+ // $include-html-grid-classes: $include-html-classes;
294
+ // $include-xl-html-block-grid-classes: false;
295
+
296
+ // We use this to control the maximum number of block grid elements per row
297
+ // $block-grid-elements: 12;
298
+ // $block-grid-default-spacing: rem-calc(20);
299
+ // $align-block-grid-to-grid: false;
300
+
301
+
302
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
303
+ // $block-grid-media-queries: true;
304
+
305
+ // Breadcrumbs
306
+
307
+ // $include-html-nav-classes: $include-html-classes;
308
+
309
+ // We use this to set the background color for the breadcrumb container.
310
+ // $crumb-bg: scale-color($secondary-color, $lightness: 55%);
311
+
312
+ // We use these to set the padding around the breadcrumbs.
313
+ // $crumb-padding: rem-calc(9 14 9);
314
+ // $crumb-side-padding: rem-calc(12);
315
+
316
+ // We use these to control border styles.
317
+ // $crumb-function-factor: -10%;
318
+ // $crumb-border-size: 1px;
319
+ // $crumb-border-style: solid;
320
+ // $crumb-border-color: scale-color($crumb-bg, $lightness: $crumb-function-factor);
321
+ // $crumb-radius: $global-radius;
322
+
323
+ // We use these to set various text styles for breadcrumbs.
324
+ // $crumb-font-size: rem-calc(11);
325
+ // $crumb-font-color: $primary-color;
326
+ // $crumb-font-color-current: #333;
327
+ // $crumb-font-color-unavailable: #999;
328
+ // $crumb-font-transform: uppercase;
329
+ // $crumb-link-decor: underline;
330
+
331
+ // We use these to control the slash between breadcrumbs
332
+ // $crumb-slash-color: #aaa;
333
+ // $crumb-slash: "/";
334
+
335
+ //
336
+ // BUTTONS
337
+ //
338
+
339
+ // $include-html-button-classes: $include-html-classes;
340
+
341
+ // We use these to build padding for buttons.
342
+ // $button-tny: rem-calc(10);
343
+ // $button-sml: rem-calc(14);
344
+ // $button-med: rem-calc(16);
345
+ // $button-lrg: rem-calc(18);
346
+
347
+ // We use this to control the display property.
348
+ // $button-display: inline-block;
349
+ // $button-margin-bottom: rem-calc(20);
350
+
351
+ // We use these to control button text styles.
352
+ // $button-font-family: $body-font-family;
353
+ // $button-font-color: #fff;
354
+ // $button-font-color-alt: #333;
355
+ // $button-font-tny: rem-calc(11);
356
+ // $button-font-sml: rem-calc(13);
357
+ // $button-font-med: rem-calc(16);
358
+ // $button-font-lrg: rem-calc(20);
359
+ // $button-font-weight: $font-weight-normal;
360
+ // $button-font-align: center;
361
+
362
+ // We use these to control various hover effects.
363
+ // $button-function-factor: -20%;
364
+
365
+ // We use these to control button border styles.
366
+ // $button-border-width: 0px;
367
+ // $button-border-style: solid;
368
+ // $button-bg: $primary-color;
369
+ // $button-border-color: scale-color($bg, $lightness: $button-function-factor);
370
+
371
+ // We use this to set the default radius used throughout the core.
372
+ // $button-radius: $global-radius;
373
+ // $button-round: $global-rounded;
374
+
375
+ // We use this to set default opacity for disabled buttons.
376
+ // $button-disabled-opacity: 0.7;
377
+
378
+ // Button Groups
379
+
380
+ // $include-html-button-classes: $include-html-classes;
381
+
382
+ // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
383
+ // $button-bar-margin-opposite: rem-calc(10);
384
+ // $button-group-border-width: 1px;
385
+
386
+ // Clearing
387
+
388
+ // $include-html-clearing-classes: $include-html-classes;
389
+
390
+ // We use these to set the background colors for parts of Clearing.
391
+ // $clearing-bg: #333;
392
+ // $clearing-caption-bg: $clearing-bg;
393
+ // $clearing-carousel-bg: rgba(51,51,51,0.8);
394
+ // $clearing-img-bg: $clearing-bg;
395
+
396
+ // We use these to style the close button
397
+ // $clearing-close-color: #ccc;
398
+ // $clearing-close-size: 30px;
399
+
400
+ // We use these to style the arrows
401
+ // $clearing-arrow-size: 12px;
402
+ // $clearing-arrow-color: $clearing-close-color;
403
+
404
+ // We use these to style captions
405
+ // $clearing-caption-font-color: #ccc;
406
+ // $clearing-caption-font-size: 0.875em;
407
+ // $clearing-caption-padding: 10px 30px 20px;
408
+
409
+ // We use these to make the image and carousel height and style
410
+ // $clearing-active-img-height: 85%;
411
+ // $clearing-carousel-height: 120px;
412
+ // $clearing-carousel-thumb-width: 120px;
413
+ // $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
414
+
415
+ // Dropdown
416
+
417
+ // $include-html-dropdown-classes: $include-html-classes;
418
+
419
+ // We use these to controls height and width styles.
420
+ // $f-dropdown-max-width: 200px;
421
+ // $f-dropdown-height: auto;
422
+ // $f-dropdown-max-height: none;
423
+
424
+ // Used for bottom position
425
+ // $f-dropdown-margin-top: 2px;
426
+
427
+ // Used for right position
428
+ // $f-dropdown-margin-left: $f-dropdown-margin-top;
429
+
430
+ // Used for left position
431
+ // $f-dropdown-margin-right: $f-dropdown-margin-top;
432
+
433
+ // Used for top position
434
+ // $f-dropdown-margin-bottom: $f-dropdown-margin-top;
435
+
436
+ // We use this to control the background color
437
+ // $f-dropdown-bg: #fff;
438
+
439
+ // We use this to set the border styles for dropdowns.
440
+ // $f-dropdown-border-style: solid;
441
+ // $f-dropdown-border-width: 1px;
442
+ // $f-dropdown-border-color: scale-color(#fff, $lightness: -20%);
443
+
444
+ // We use these to style the triangle pip.
445
+ // $f-dropdown-triangle-size: 6px;
446
+ // $f-dropdown-triangle-color: #fff;
447
+ // $f-dropdown-triangle-side-offset: 10px;
448
+
449
+ // We use these to control styles for the list elements.
450
+ // $f-dropdown-list-style: none;
451
+ // $f-dropdown-font-color: #555;
452
+ // $f-dropdown-font-size: rem-calc(14);
453
+ // $f-dropdown-list-padding: rem-calc(5, 10);
454
+ // $f-dropdown-line-height: rem-calc(18);
455
+ // $f-dropdown-list-hover-bg: #eeeeee ;
456
+ // $dropdown-mobile-default-float: 0;
457
+
458
+ // We use this to control the styles for when the dropdown has custom content.
459
+ // $f-dropdown-content-padding: rem-calc(20);
460
+
461
+ // Dropdown Buttons
462
+
463
+ // $include-html-button-classes: $include-html-classes;
464
+
465
+ // We use these to set the color of the pip in dropdown buttons
466
+ // $dropdown-button-pip-color: #fff;
467
+ // $dropdown-button-pip-color-alt: #333;
468
+
469
+ // $button-pip-tny: rem-calc(6);
470
+ // $button-pip-sml: rem-calc(7);
471
+ // $button-pip-med: rem-calc(9);
472
+ // $button-pip-lrg: rem-calc(11);
473
+
474
+ // We use these to style tiny dropdown buttons
475
+ // $dropdown-button-padding-tny: $button-pip-tny * 7;
476
+ // $dropdown-button-pip-size-tny: $button-pip-tny;
477
+ // $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
478
+ // $dropdown-button-pip-top-tny: -$button-pip-tny / 2 + rem-calc(1);
479
+
480
+ // We use these to style small dropdown buttons
481
+ // $dropdown-button-padding-sml: $button-pip-sml * 7;
482
+ // $dropdown-button-pip-size-sml: $button-pip-sml;
483
+ // $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
484
+ // $dropdown-button-pip-top-sml: -$button-pip-sml / 2 + rem-calc(1);
485
+
486
+ // We use these to style medium dropdown buttons
487
+ // $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
488
+ // $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
489
+ // $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
490
+ // $dropdown-button-pip-top-med: -$button-pip-med / 2 + rem-calc(2);
491
+
492
+ // We use these to style large dropdown buttons
493
+ // $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
494
+ // $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
495
+ // $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
496
+ // $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
497
+
498
+ // Flex Video
499
+
500
+ // $include-html-media-classes: $include-html-classes;
501
+
502
+ // We use these to control video container padding and margins
503
+ // $flex-video-padding-top: rem-calc(25);
504
+ // $flex-video-padding-bottom: 67.5%;
505
+ // $flex-video-margin-bottom: rem-calc(16);
506
+
507
+ // We use this to control widescreen bottom padding
508
+ // $flex-video-widescreen-padding-bottom: 56.34%;
509
+
510
+ // Forms
511
+
512
+ // $include-html-form-classes: $include-html-classes;
513
+
514
+ // We use this to set the base for lots of form spacing and positioning styles
515
+ // $form-spacing: rem-calc(16);
516
+
517
+ // We use these to style the labels in different ways
518
+ // $form-label-pointer: pointer;
519
+ // $form-label-font-size: rem-calc(14);
520
+ // $form-label-font-weight: $font-weight-normal;
521
+ // $form-label-line-height: 1.5;
522
+ // $form-label-font-color: scale-color(#000, $lightness: 30%);
523
+ // $form-label-small-transform: capitalize;
524
+ // $form-label-bottom-margin: 0;
525
+ // $input-font-family: inherit;
526
+ // $input-font-color: rgba(0,0,0,0.75);
527
+ // $input-font-size: rem-calc(14);
528
+ // $input-bg-color: #fff;
529
+ // $input-focus-bg-color: scale-color(#fff, $lightness: -2%);
530
+ // $input-border-color: scale-color(#fff, $lightness: -20%);
531
+ // $input-focus-border-color: scale-color(#fff, $lightness: -40%);
532
+ // $input-border-style: solid;
533
+ // $input-border-width: 1px;
534
+ // $input-border-radius: $global-radius;
535
+ // $input-disabled-bg: #ddd;
536
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
537
+ // $input-include-glowing-effect: true;
538
+
539
+ // We use these to style the fieldset border and spacing.
540
+ // $fieldset-border-style: solid;
541
+ // $fieldset-border-width: 1px;
542
+ // $fieldset-border-color: #ddd;
543
+ // $fieldset-padding: rem-calc(20);
544
+ // $fieldset-margin: rem-calc(18 0);
545
+
546
+ // We use these to style the legends when you use them
547
+ // $legend-bg: #fff;
548
+ // $legend-font-weight: $font-weight-bold;
549
+ // $legend-padding: rem-calc(0 3);
550
+
551
+ // We use these to style the prefix and postfix input elements
552
+ // $input-prefix-bg: scale-color(#fff, $lightness: -5%);
553
+ // $input-prefix-border-color: scale-color(#fff, $lightness: -20%);
554
+ // $input-prefix-border-size: 1px;
555
+ // $input-prefix-border-type: solid;
556
+ // $input-prefix-overflow: hidden;
557
+ // $input-prefix-font-color: #333;
558
+ // $input-prefix-font-color-alt: #fff;
559
+
560
+ // We use these to style the error states for inputs and labels
561
+ // $input-error-message-padding: rem-calc(6 9 9);
562
+ // $input-error-message-top: -1px;
563
+ // $input-error-message-font-size: rem-calc(12);
564
+ // $input-error-message-font-weight: $font-weight-normal;
565
+ // $input-error-message-font-style: italic;
566
+ // $input-error-message-font-color: #fff;
567
+ // $input-error-message-font-color-alt: #333;
568
+
569
+ // We use this to style the glowing effect of inputs when focused
570
+ // $glowing-effect-fade-time: 0.45s;
571
+ // $glowing-effect-color: $input-focus-border-color;
572
+
573
+ // Select variables
574
+ // $select-bg-color: #fafafa;
575
+ // $select-hover-bg-color: scale-color($select-bg-color, $lightness: -3%);
576
+
577
+ // Inline Lists
578
+
579
+ // $include-html-inline-list-classes: $include-html-classes;
580
+
581
+ // We use this to control the margins and padding of the inline list.
582
+ // $inline-list-top-margin: 0;
583
+ // $inline-list-opposite-margin: 0;
584
+ // $inline-list-bottom-margin: rem-calc(17);
585
+ // $inline-list-default-float-margin: rem-calc(-22);
586
+ // $inline-list-default-float-list-margin: rem-calc(22);
587
+
588
+ // $inline-list-padding: 0;
589
+
590
+ // We use this to control the overflow of the inline list.
591
+ // $inline-list-overflow: hidden;
592
+
593
+ // We use this to control the list items
594
+ // $inline-list-display: block;
595
+
596
+ // We use this to control any elments within list items
597
+ // $inline-list-children-display: block;
598
+
599
+ // Joyride
600
+
601
+ // $include-html-joyride-classes: $include-html-classes;
602
+
603
+ // Controlling default Joyride styles
604
+ // $joyride-tip-bg: #333;
605
+ // $joyride-tip-default-width: 300px;
606
+ // $joyride-tip-padding: rem-calc(18 20 24);
607
+ // $joyride-tip-border: solid 1px #555;
608
+ // $joyride-tip-radius: 4px;
609
+ // $joyride-tip-position-offset: 22px;
610
+
611
+ // Here, we're setting the tip dont styles
612
+ // $joyride-tip-font-color: #fff;
613
+ // $joyride-tip-font-size: rem-calc(14);
614
+ // $joyride-tip-header-weight: $font-weight-bold;
615
+
616
+ // This changes the nub size
617
+ // $joyride-tip-nub-size: 10px;
618
+
619
+ // This adjusts the styles for the timer when its enabled
620
+ // $joyride-tip-timer-width: 50px;
621
+ // $joyride-tip-timer-height: 3px;
622
+ // $joyride-tip-timer-color: #666;
623
+
624
+ // This changes up the styles for the close button
625
+ // $joyride-tip-close-color: #777;
626
+ // $joyride-tip-close-size: 24px;
627
+ // $joyride-tip-close-weight: $font-weight-normal;
628
+
629
+ // When Joyride is filling the screen, we use this style for the bg
630
+ // $joyride-screenfill: rgba(0,0,0,0.5);
631
+
632
+ // Keystrokes
633
+
634
+ // $include-html-keystroke-classes: $include-html-classes;
635
+
636
+ // We use these to control text styles.
637
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
638
+ // $keystroke-font-size: inherit;
639
+ // $keystroke-font-color: #222;
640
+ // $keystroke-font-color-alt: #fff;
641
+ // $keystroke-function-factor: -7%;
642
+
643
+ // We use this to control keystroke padding.
644
+ // $keystroke-padding: rem-calc(2 4 0);
645
+
646
+ // We use these to control background and border styles.
647
+ // $keystroke-bg: scale-color(#fff, $lightness: $keystroke-function-factor);
648
+ // $keystroke-border-style: solid;
649
+ // $keystroke-border-width: 1px;
650
+ // $keystroke-border-color: scale-color($keystroke-bg, $lightness: $keystroke-function-factor);
651
+ // $keystroke-radius: $global-radius;
652
+
653
+ // Labels
654
+
655
+ // $include-html-label-classes: $include-html-classes;
656
+
657
+ // We use these to style the labels
658
+ // $label-padding: rem-calc(4 8 6);
659
+ // $label-radius: $global-radius;
660
+
661
+ // We use these to style the label text
662
+ // $label-font-sizing: rem-calc(11);
663
+ // $label-font-weight: $font-weight-normal;
664
+ // $label-font-color: #333;
665
+ // $label-font-color-alt: #fff;
666
+ // $label-font-family: $body-font-family;
667
+
668
+ // Magellan
669
+
670
+ // $include-html-magellan-classes: $include-html-classes;
671
+
672
+ // $magellan-bg: #fff;
673
+ // $magellan-padding: 10px;
674
+
675
+ // Off-canvas
676
+
677
+ // $include-html-off-canvas-classes: $include-html-classes;
678
+
679
+ // $tabbar-bg: #333;
680
+ // $tabbar-height: rem-calc(45);
681
+ // $tabbar-line-height: $tabbar-height;
682
+ // $tabbar-color: #fff;
683
+ // $tabbar-middle-padding: 0 rem-calc(10);
684
+
685
+ // Off Canvas Divider Styles
686
+ // $tabbar-right-section-border: solid 1px scale-color($tabbar-bg, $lightness: 13%);
687
+ // $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
688
+
689
+ // Off Canvas Tab Bar Headers
690
+ // $tabbar-header-color: #fff;
691
+ // $tabbar-header-weight: $font-weight-bold;
692
+ // $tabbar-header-line-height: $tabbar-height;
693
+ // $tabbar-header-margin: 0;
694
+
695
+ // Off Canvas Menu Variables
696
+ // $off-canvas-width: rem-calc(250);
697
+ // $off-canvas-bg: #333;
698
+
699
+ // Off Canvas Menu List Variables
700
+ // $off-canvas-label-padding: 0.3rem rem-calc(15);
701
+ // $off-canvas-label-color: #999;
702
+ // $off-canvas-label-text-transform: uppercase;
703
+ // $off-canvas-label-font-weight: $font-weight-bold;
704
+ // $off-canvas-label-bg: #444;
705
+ // $off-canvas-label-border-top: 1px solid scale-color(#444, $lightness: 14%);
706
+ // $off-canvas-label-border-bottom: none;
707
+ // $off-canvas-label-margin:0;
708
+ // $off-canvas-link-padding: rem-calc(10, 15);
709
+ // $off-canvas-link-color: rgba(#fff, 0.7);
710
+ // $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
711
+
712
+ // Off Canvas Menu Icon Variables
713
+ // $tabbar-menu-icon-color: #fff;
714
+ // $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
715
+
716
+ // $tabbar-menu-icon-text-indent: rem-calc(35);
717
+ // $tabbar-menu-icon-width: $tabbar-height;
718
+ // $tabbar-menu-icon-height: $tabbar-height;
719
+ // $tabbar-menu-icon-padding: 0;
720
+
721
+ // $tabbar-hamburger-icon-width: rem-calc(16);
722
+ // $tabbar-hamburger-icon-left: false;
723
+ // $tabbar-hamburger-icon-top: false;
724
+ // $tapbar-hamburger-icon-thickness: 1px;
725
+ // $tapbar-hamburger-icon-gap: 6px;
726
+
727
+ // Off Canvas Back-Link Overlay
728
+ // $off-canvas-overlay-transition: background 300ms ease;
729
+ // $off-canvas-overlay-cursor: pointer;
730
+ // $off-canvas-overlay-box-shadow: -4px 0 4px rgba(#000, 0.5), 4px 0 4px rgba(#000, 0.5);
731
+ // $off-canvas-overlay-background: rgba(#fff, 0.2);
732
+ // $off-canvas-overlay-background-hover: rgba(#fff, 0.05);
733
+
734
+ // Transition Variables
735
+ // $menu-slide: "transform 500ms ease";
736
+
737
+ // Orbit
738
+
739
+ // $include-html-orbit-classes: $include-html-classes;
740
+
741
+ // We use these to control the caption styles
742
+ // $orbit-container-bg: none;
743
+ // $orbit-caption-bg: rgba(51,51,51, 0.8);
744
+ // $orbit-caption-font-color: #fff;
745
+ // $orbit-caption-font-size: rem-calc(14);
746
+ // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
747
+ // $orbit-caption-padding: rem-calc(10 14);
748
+ // $orbit-caption-height: auto;
749
+
750
+ // We use these to control the left/right nav styles
751
+ // $orbit-nav-bg: transparent;
752
+ // $orbit-nav-bg-hover: rgba(0,0,0,0.3);
753
+ // $orbit-nav-arrow-color: #fff;
754
+ // $orbit-nav-arrow-color-hover: #fff;
755
+
756
+ // We use these to control the timer styles
757
+ // $orbit-timer-bg: rgba(255,255,255,0.3);
758
+ // $orbit-timer-show-progress-bar: true;
759
+
760
+ // We use these to control the bullet nav styles
761
+ // $orbit-bullet-nav-color: #ccc;
762
+ // $orbit-bullet-nav-color-active: #999;
763
+ // $orbit-bullet-radius: rem-calc(9);
764
+
765
+ // We use these to controls the style of slide numbers
766
+ // $orbit-slide-number-bg: rgba(0,0,0,0);
767
+ // $orbit-slide-number-font-color: #fff;
768
+ // $orbit-slide-number-padding: rem-calc(5);
769
+
770
+ // We use these to controls the css animation
771
+ // $orbit-animation-speed: 500ms;
772
+ // $orbit-animation-ease: ease-in-out;
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-font-size: rem-calc(14);
966
+ // $side-nav-font-weight: $font-weight-normal;
967
+ // $side-nav-font-weight-active: $side-nav-font-weight;
968
+ // $side-nav-font-family: $body-font-family;
969
+ // $side-nav-active-font-family: $side-nav-font-family;
970
+
971
+
972
+
973
+ // We use these to control border styles
974
+ // $side-nav-divider-size: 1px;
975
+ // $side-nav-divider-style: solid;
976
+ // $side-nav-divider-color: scale-color(#fff, $lightness: 10%);
977
+
978
+ // Split Buttons
979
+
980
+ // $include-html-button-classes: $include-html-classes;
981
+
982
+ // We use these to control different shared styles for Split Buttons
983
+ // $split-button-function-factor: 10%;
984
+ // $split-button-pip-color: #fff;
985
+ // $split-button-pip-color-alt: #333;
986
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
987
+
988
+ // We use these to control tiny split buttons
989
+ // $split-button-padding-tny: $button-pip-tny * 10;
990
+ // $split-button-span-width-tny: $button-pip-tny * 6;
991
+ // $split-button-pip-size-tny: $button-pip-tny;
992
+ // $split-button-pip-top-tny: $button-pip-tny * 2;
993
+ // $split-button-pip-default-float-tny: rem-calc(-6);
994
+
995
+ // We use these to control small split buttons
996
+ // $split-button-padding-sml: $button-pip-sml * 10;
997
+ // $split-button-span-width-sml: $button-pip-sml * 6;
998
+ // $split-button-pip-size-sml: $button-pip-sml;
999
+ // $split-button-pip-top-sml: $button-pip-sml * 1.5;
1000
+ // $split-button-pip-default-float-sml: rem-calc(-6);
1001
+
1002
+ // We use these to control medium split buttons
1003
+ // $split-button-padding-med: $button-pip-med * 9;
1004
+ // $split-button-span-width-med: $button-pip-med * 5.5;
1005
+ // $split-button-pip-size-med: $button-pip-med - rem-calc(3);
1006
+ // $split-button-pip-top-med: $button-pip-med * 1.5;
1007
+ // $split-button-pip-default-float-med: rem-calc(-6);
1008
+
1009
+ // We use these to control large split buttons
1010
+ // $split-button-padding-lrg: $button-pip-lrg * 8;
1011
+ // $split-button-span-width-lrg: $button-pip-lrg * 5;
1012
+ // $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
1013
+ // $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
1014
+ // $split-button-pip-default-float-lrg: rem-calc(-6);
1015
+
1016
+ // Sub Nav
1017
+
1018
+ // $include-html-nav-classes: $include-html-classes;
1019
+
1020
+ // We use these to control margin and padding
1021
+ // $sub-nav-list-margin: rem-calc(-4 0 18);
1022
+ // $sub-nav-list-padding-top: rem-calc(4);
1023
+
1024
+ // We use this to control the definition
1025
+ // $sub-nav-font-family: $body-font-family;
1026
+ // $sub-nav-font-size: rem-calc(14);
1027
+ // $sub-nav-font-color: #999;
1028
+ // $sub-nav-font-weight: $font-weight-normal;
1029
+ // $sub-nav-text-decoration: none;
1030
+ // $sub-nav-padding: rem-calc(3 16);
1031
+ // $sub-nav-border-radius: 3px;
1032
+ // $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
1033
+
1034
+
1035
+ // We use these to control the active item styles
1036
+ // $sub-nav-active-font-weight: $font-weight-normal;
1037
+ // $sub-nav-active-bg: $primary-color;
1038
+ // $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
1039
+ // $sub-nav-active-color: #fff;
1040
+ // $sub-nav-active-padding: $sub-nav-padding;
1041
+ // $sub-nav-active-cursor: default;
1042
+
1043
+ // $sub-nav-item-divider: "";
1044
+ // $sub-nav-item-divider-margin: rem-calc(12);
1045
+
1046
+ //
1047
+ // SWITCH
1048
+ //
1049
+
1050
+ // $include-html-form-classes: $include-html-classes;
1051
+
1052
+ // Controlling border styles and background colors for the switch container
1053
+ // $switch-border-color: scale-color(#fff, $lightness: -20%);
1054
+ // $switch-border-style: solid;
1055
+ // $switch-border-width: 1px;
1056
+ // $switch-bg: #fff;
1057
+
1058
+ // We use these to control the switch heights for our default classes
1059
+ // $switch-height-tny: 22px;
1060
+ // $switch-height-sml: 28px;
1061
+ // $switch-height-med: 36px;
1062
+ // $switch-height-lrg: 44px;
1063
+ // $switch-bottom-margin: rem-calc(20);
1064
+
1065
+ // We use these to control default font sizes for our classes.
1066
+ // $switch-font-size-tny: 11px;
1067
+ // $switch-font-size-sml: 12px;
1068
+ // $switch-font-size-med: 14px;
1069
+ // $switch-font-size-lrg: 17px;
1070
+ // $switch-label-side-padding: 6px;
1071
+
1072
+ // We use these to style the switch-paddle
1073
+ // $switch-paddle-bg: #fff;
1074
+ // $switch-paddle-fade-to-color: scale-color($switch-paddle-bg, $lightness: -10%);
1075
+ // $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
1076
+ // $switch-paddle-border-width: 1px;
1077
+ // $switch-paddle-border-style: solid;
1078
+ // $switch-paddle-transition-speed: .1s;
1079
+ // $switch-paddle-transition-ease: ease-out;
1080
+ // $switch-positive-color: scale-color($success-color, $lightness: 94%);
1081
+ // $switch-negative-color: #f5f5f5;
1082
+
1083
+ // Outline Style for tabbing through switches
1084
+ // $switch-label-outline: 1px dotted #888;
1085
+
1086
+ // Tables
1087
+
1088
+ // $include-html-table-classes: $include-html-classes;
1089
+
1090
+ // These control the background color for the table and even rows
1091
+ // $table-bg: #fff;
1092
+ // $table-even-row-bg: #f9f9f9 ;
1093
+
1094
+ // These control the table cell border style
1095
+ // $table-border-style: solid;
1096
+ // $table-border-size: 1px;
1097
+ // $table-border-color: #ddd;
1098
+
1099
+ // These control the table head styles
1100
+ // $table-head-bg: #f5f5f5 ;
1101
+ // $table-head-font-size: rem-calc(14);
1102
+ // $table-head-font-color: #222;
1103
+ // $table-head-font-weight: $font-weight-bold;
1104
+ // $table-head-padding: rem-calc(8 10 10);
1105
+
1106
+ // These control the row padding and font styles
1107
+ // $table-row-padding: rem-calc(9 10);
1108
+ // $table-row-font-size: rem-calc(14);
1109
+ // $table-row-font-color: #222;
1110
+ // $table-line-height: rem-calc(18);
1111
+
1112
+ // These are for controlling the display and margin of tables
1113
+ // $table-display: table-cell;
1114
+ // $table-margin-bottom: rem-calc(20);
1115
+
1116
+ //
1117
+ // TABS
1118
+ //
1119
+
1120
+ // $include-html-tabs-classes: $include-html-classes;
1121
+
1122
+ // $tabs-navigation-padding: rem-calc(16);
1123
+ // $tabs-navigation-bg-color: #efefef ;
1124
+ // $tabs-navigation-active-bg-color: #fff;
1125
+ // $tabs-navigation-hover-bg-color: scale-color($tabs-navigation-bg-color, $lightness: -6%);
1126
+ // $tabs-navigation-font-color: #222;
1127
+ // $tabs-navigation-active-font-color: $tabs-navigation-font-color;
1128
+ // $tabs-navigation-font-size: rem-calc(16);
1129
+ // $tabs-navigation-font-family: $body-font-family;
1130
+
1131
+ // $tabs-content-margin-bottom: rem-calc(24);
1132
+ // $tabs-content-padding: $column-gutter/2;
1133
+
1134
+ // $tabs-vertical-navigation-margin-bottom: 1.25rem;
1135
+
1136
+ //
1137
+ // THUMBNAILS
1138
+ //
1139
+
1140
+ // $include-html-media-classes: $include-html-classes;
1141
+
1142
+ // We use these to control border styles
1143
+ // $thumb-border-style: solid;
1144
+ // $thumb-border-width: 4px;
1145
+ // $thumb-border-color: #fff;
1146
+ // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
1147
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1148
+
1149
+ // Radius and transition speed for thumbs
1150
+ // $thumb-radius: $global-radius;
1151
+ // $thumb-transition-speed: 200ms;
1152
+
1153
+ //
1154
+ // TOOLTIPS
1155
+ //
1156
+
1157
+ // $include-html-tooltip-classes: $include-html-classes;
1158
+
1159
+ // $has-tip-border-bottom: dotted 1px #ccc;
1160
+ // $has-tip-font-weight: $font-weight-bold;
1161
+ // $has-tip-font-color: #333;
1162
+ // $has-tip-border-bottom-hover: dotted 1px scale-color($primary-color, $lightness: -55%);
1163
+ // $has-tip-font-color-hover: $primary-color;
1164
+ // $has-tip-cursor-type: help;
1165
+
1166
+ // $tooltip-padding: rem-calc(12);
1167
+ // $tooltip-bg: #333;
1168
+ // $tooltip-font-size: rem-calc(14);
1169
+ // $tooltip-font-weight: $font-weight-normal;
1170
+ // $tooltip-font-color: #fff;
1171
+ // $tooltip-line-height: 1.3;
1172
+ // $tooltip-close-font-size: rem-calc(10);
1173
+ // $tooltip-close-font-weight: $font-weight-normal;
1174
+ // $tooltip-close-font-color: #777;
1175
+ // $tooltip-font-size-sml: rem-calc(14);
1176
+ // $tooltip-radius: $global-radius;
1177
+ // $tooltip-rounded: $global-rounded;
1178
+ // $tooltip-pip-size: 5px;
1179
+
1180
+ //
1181
+ // TOP BAR
1182
+ //
1183
+
1184
+ // $include-html-top-bar-classes: $include-html-classes;
1185
+
1186
+ // Background color for the top bar
1187
+ // $topbar-bg-color: #333;
1188
+ // $topbar-bg: $topbar-bg-color;
1189
+
1190
+ // Height and margin
1191
+ // $topbar-height: 45px;
1192
+ // $topbar-margin-bottom: 0;
1193
+
1194
+ // Controlling the styles for the title in the top bar
1195
+ // $topbar-title-weight: $font-weight-normal;
1196
+ // $topbar-title-font-size: rem-calc(17);
1197
+
1198
+ // Style the top bar dropdown elements
1199
+ // $topbar-dropdown-bg: #333;
1200
+ // $topbar-dropdown-link-color: #fff;
1201
+ // $topbar-dropdown-link-bg: #333;
1202
+ // $topbar-dropdown-link-weight: $font-weight-normal;
1203
+ // $topbar-dropdown-toggle-size: 5px;
1204
+ // $topbar-dropdown-toggle-color: #fff;
1205
+ // $topbar-dropdown-toggle-alpha: 0.4;
1206
+
1207
+ // Set the link colors and styles for top-level nav
1208
+ // $topbar-link-color: #fff;
1209
+ // $topbar-link-color-hover: #fff;
1210
+ // $topbar-link-color-active: #fff;
1211
+ // $topbar-link-color-active-hover: #fff;
1212
+ // $topbar-link-weight: $font-weight-normal;
1213
+ // $topbar-link-font-size: rem-calc(13);
1214
+ // $topbar-link-hover-lightness: -10%; // Darken by 10%
1215
+ // $topbar-link-bg: $topbar-bg;
1216
+ // $topbar-link-bg-color-hover: #555555;
1217
+ // $topbar-link-bg-hover: #272727;
1218
+ // $topbar-link-bg-active: $primary-color;
1219
+ // $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
1220
+ // $topbar-link-font-family: $body-font-family;
1221
+ // $topbar-link-text-transform: none;
1222
+ // $topbar-link-padding: $topbar-height / 3;
1223
+
1224
+ // $topbar-button-font-size: 0.75rem;
1225
+ // $topbar-button-top: 7px;
1226
+
1227
+ // $topbar-dropdown-label-color: #777;
1228
+ // $topbar-dropdown-label-text-transform: uppercase;
1229
+ // $topbar-dropdown-label-font-weight: $font-weight-bold;
1230
+ // $topbar-dropdown-label-font-size: rem-calc(10);
1231
+ // $topbar-dropdown-label-bg: #333;
1232
+
1233
+ // Top menu icon styles
1234
+ // $topbar-menu-link-transform: uppercase;
1235
+ // $topbar-menu-link-font-size: rem-calc(13);
1236
+ // $topbar-menu-link-weight: $font-weight-bold;
1237
+ // $topbar-menu-link-color: #fff;
1238
+ // $topbar-menu-icon-color: #fff;
1239
+ // $topbar-menu-link-color-toggled: #888;
1240
+ // $topbar-menu-icon-color-toggled: #888;
1241
+
1242
+ // Transitions and breakpoint styles
1243
+ // $topbar-transition-speed: 300ms;
1244
+ // Using rem-calc for the below breakpoint causes issues with top bar
1245
+ // $topbar-breakpoint: #{lower-bound($medium-range)}; // Change to 9999px for always mobile layout
1246
+ // $topbar-media-query: $medium-up;
1247
+
1248
+ // Divider Styles
1249
+ // $topbar-divider-border-bottom: solid 1px scale-color($topbar-bg-color, $lightness: 13%);
1250
+ // $topbar-divider-border-top: solid 1px scale-color($topbar-bg-color, $lightness: -50%);
1251
+
1252
+ // Sticky Class
1253
+ // $topbar-sticky-class: ".sticky";
1254
+ // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
1255
+
1256
+ //
1257
+ // VISIBILITY CLASSES
1258
+ //
1259
+
1260
+ // $include-html-visibility-classes: $include-html-classes;
1261
+ // $include-table-visibility-classes: true;
1262
+ // $include-legacy-visibility-classes: true;
1263
+
1264
+ //
1265
+ // RANGE SLIDER
1266
+ //
1267
+
1268
+ // $include-html-range-slider-classes: $include-html-classes;
1269
+
1270
+ // These variabels define the slider bar styles
1271
+ // $range-slider-bar-width: 100%;
1272
+ // $range-slider-bar-height: rem-calc(16);
1273
+
1274
+ // $range-slider-bar-border-width: 1px;
1275
+ // $range-slider-bar-border-style: solid;
1276
+ // $range-slider-bar-border-color: #ddd;
1277
+ // $range-slider-radius: $global-radius;
1278
+ // $range-slider-round: $global-rounded;
1279
+ // $range-slider-bar-bg-color: #fafafa;
1280
+
1281
+ // Vertical bar styles
1282
+ // $range-slider-vertical-bar-width: rem-calc(16);
1283
+ // $range-slider-vertical-bar-height: rem-calc(200);
1284
+
1285
+ // These variabels define the slider handle styles
1286
+ // $range-slider-handle-width: rem-calc(32);
1287
+ // $range-slider-handle-height: rem-calc(22);
1288
+ // $range-slider-handle-position-top: rem-calc(-5);
1289
+ // $range-slider-handle-bg-color: $primary-color;
1290
+ // $range-slider-handle-border-width: 1px;
1291
+ // $range-slider-handle-border-style: solid;
1292
+ // $range-slider-handle-border-color: none;
1293
+ // $range-slider-handle-radius: $global-radius;
1294
+ // $range-slider-handle-round: $global-rounded;
1295
+ // $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
1296
+ // $range-slider-handle-cursor: pointer;