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,1290 @@
1
+ //
2
+ // Foundation Variables
3
+ //
4
+
5
+ // The default font-size is set to 100% of the browser style sheet (usually 16px)
6
+ // for compatibility with browser-based text zoom or user-set defaults.
7
+ $base-font-size: 100% !default;
8
+
9
+ // $base-line-height is 24px while $base-font-size is 16px
10
+ // $base-line-height: 150%;
11
+
12
+ // This is the default html and body font-size for the base em value.
13
+
14
+ // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
15
+ // If you want your base font-size to be a different size and not have it effect grid size too,
16
+ // set the value of $em-base to $base-font-size ($em-base: $base-font-size;)
17
+ $em-base: 16px !default;
18
+
19
+ // Change whether or not you include browser prefixes
20
+ // $experimental: true;
21
+
22
+ // Various global styles
23
+
24
+ $default-float: left;
25
+
26
+ $body-bg: #fff;
27
+ // $body-font-color: #222;
28
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
29
+ $body-font-family: "Roboto";
30
+ // $body-font-weight: normal;
31
+ // $body-font-style: normal;
32
+
33
+ // Font-smoothing
34
+
35
+ // $font-smoothing: antialiased;
36
+
37
+ // Text direction settings
38
+
39
+ // $text-direction: ltr;
40
+
41
+ // Colors
42
+
43
+ // $primary-color: #2ba6cb;
44
+ // $secondary-color: #e9e9e9;
45
+ // $alert-color: #c60f13;
46
+ // $success-color: #5da423;
47
+
48
+ // Make sure border radius matches unless we want it different.
49
+
50
+ // $global-radius: 3px;
51
+ // $global-rounded: 1000px;
52
+
53
+ // Inset shadow shiny edges and depressions.
54
+
55
+ // $shiny-edge-size: 0 1px 0;
56
+ // $shiny-edge-color: rgba(#fff, .5);
57
+ // $shiny-edge-active-color: rgba(#000, .2);
58
+
59
+ // Control whether or not CSS classes come through in the CSS files.
60
+
61
+ // $include-html-classes: true;
62
+ // $include-print-styles: true;
63
+ // $include-html-global-classes: $include-html-classes;
64
+ // $include-html-inline-list-classes: $include-html-classes;
65
+ // $include-html-type-classes: $include-html-classes;
66
+ // $include-html-grid-classes: $include-html-classes;
67
+ // $include-html-visibility-classes: $include-html-classes;
68
+ // $include-html-button-classes: $include-html-classes;
69
+ // $include-html-form-classes: $include-html-classes;
70
+ // $include-html-form-error-classes: $include-html-classes;
71
+ // $include-html-custom-form-classes: $include-html-classes;
72
+ // $include-html-media-classes: $include-html-classes;
73
+ // $include-html-section-classes: $include-html-classes;
74
+ // $include-html-orbit-classes: $include-html-classes;
75
+ // $include-html-reveal-classes: $include-html-classes;
76
+ // $include-html-joyride-classes: $include-html-classes;
77
+ // $include-html-clearing-classes: $include-html-classes;
78
+ // $include-html-alert-classes: $include-html-classes;
79
+ // $include-html-nav-classes: $include-html-classes;
80
+ // $include-html-top-bar-classes: $include-html-classes;
81
+ // $include-html-label-classes: $include-html-classes;
82
+ // $include-html-panel-classes: $include-html-classes;
83
+ // $include-html-pricing-classes: $include-html-classes;
84
+ // $include-html-progress-classes: $include-html-classes;
85
+ // $include-html-magellan-classes: $include-html-classes;
86
+ // $include-html-tooltip-classes: $include-html-classes;
87
+
88
+ // Media Queries
89
+
90
+ // $small-screen: 768px;
91
+ // $medium-screen: 1280px;
92
+ // $large-screen: 1440px;
93
+
94
+ // $screen: "only screen";
95
+ // $small: "only screen and (min-width: #{$small-screen})";
96
+ // $medium: "only screen and (min-width: #{$medium-screen})";
97
+ // $large: "only screen and (min-width: #{$large-screen})";
98
+ // $landscape: "only screen and (orientation: landscape)";
99
+ // $portrait: "only screen and (orientation: portrait)";
100
+
101
+ //// Cursors
102
+
103
+ //Custom use example -> $cursor-default-value: url(http://cursors-site.net/path/to/custom/cursor/default.cur),progress;
104
+
105
+ // $cursor-crosshair-value: "crosshair";
106
+ // $cursor-default-value: "default";
107
+ // $cursor-pointer-value: "pointer";
108
+ // $cursor-help-value: "help";
109
+
110
+ //
111
+ // Grid Variables
112
+ //
113
+
114
+ // $row-width: em-calc(1000);
115
+ // $column-gutter: em-calc(30);
116
+ // $total-columns: 12;
117
+
118
+ //
119
+ // Block Grid Variables
120
+ //
121
+
122
+ // We use this to control the maximum number of block grid elements per row
123
+
124
+ // $block-grid-elements: 12;
125
+ // $block-grid-default-spacing: em-calc(20);
126
+
127
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
128
+
129
+ // $block-grid-media-queries: true;
130
+
131
+ //
132
+ // Typography Variables
133
+ //
134
+
135
+ // Control header font styles
136
+
137
+ // $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
138
+ $header-font-family: "Roboto";
139
+ // $header-font-weight: bold;
140
+ // $header-font-style: normal;
141
+ // $header-font-color: #222;
142
+ $header-font-color: #fff;
143
+ // $header-line-height: 1.4;
144
+ // $header-top-margin: .2em;
145
+ // $header-bottom-margin: .5em;
146
+ // $header-text-rendering: optimizeLegibility;
147
+
148
+ // Control header font sizes
149
+
150
+ // $h1-font-size: em-calc(44);
151
+ $h1-font-size: em-calc(12);
152
+ // $h2-font-size: em-calc(37);
153
+ // $h3-font-size: em-calc(27);
154
+ // $h4-font-size: em-calc(23);
155
+ // $h5-font-size: em-calc(18);
156
+ // $h6-font-size: 1em;
157
+
158
+ // Control how subheaders are styled.
159
+
160
+ // $subheader-line-height: 1.4;
161
+ // $subheader-font-color: lighten($header-font-color, 30%);
162
+ // $subheader-font-weight: 300;
163
+ // $subheader-top-margin: .2em;
164
+ // $subheader-bottom-margin: .5em;
165
+
166
+ // A general <small> styling
167
+
168
+ // $small-font-size: 60%;
169
+ // $small-font-color: lighten($header-font-color, 30%);
170
+
171
+ // Style paragraphs
172
+
173
+ // $paragraph-font-family: inherit;
174
+ // $paragraph-font-weight: normal;
175
+ // $paragraph-font-size: 1em;
176
+ // $paragraph-line-height: 1.6;
177
+ // $paragraph-margin-bottom: em-calc(20);
178
+ // $paragraph-aside-font-size: em-calc(14);
179
+ // $paragraph-aside-line-height: 1.35;
180
+ // $paragraph-aside-font-style: italic;
181
+ // $paragraph-text-rendering: optimizeLegibility;
182
+
183
+ // Style <code> tags
184
+
185
+ // $code-color: darken($alert-color, 15%);
186
+ // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
187
+ // $code-font-weight: bold;
188
+
189
+ // Style anchors
190
+
191
+ // $anchor-text-decoration: none;
192
+ // $anchor-font-color: $primary-color;
193
+ // $anchor-font-color-hover: darken($primary-color, 5%);
194
+
195
+ // Style the <hr> element
196
+
197
+ // $hr-border-width: 1px;
198
+ // $hr-border-style: solid;
199
+ // $hr-border-color: #ddd;
200
+ // $hr-margin: em-calc(20);
201
+
202
+ // Style lists
203
+
204
+ // $list-style-position: outside;
205
+ // $list-side-margin: 0;
206
+ // $list-nested-margin: em-calc(20);
207
+ // $definition-list-header-weight: bold;
208
+ // $definition-list-header-margin-bottom: .3em;
209
+ // $definition-list-margin-bottom: em-calc(12);
210
+
211
+ // Style blockquotes
212
+
213
+ // $blockquote-font-color: lighten($header-font-color, 30%);
214
+ // $blockquote-padding: em-calc(9, 20, 0, 19);
215
+ // $blockquote-border: 1px solid #ddd;
216
+ // $blockquote-cite-font-size: em-calc(13);
217
+ // $blockquote-cite-font-color: lighten($header-font-color, 20%);
218
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
219
+
220
+ // Acronym styles
221
+
222
+ // $acronym-underline: 1px dotted #ddd;
223
+
224
+ // Control padding and margin
225
+
226
+ // $microformat-padding: em-calc(10 12);
227
+ // $microformat-margin: em-calc(0 0 20 0);
228
+
229
+ // Control the border styles
230
+
231
+ // $microformat-border-width: 1px;
232
+ // $microformat-border-style: solid;
233
+ // $microformat-border-color: #ddd;
234
+
235
+ // Control full name font styles
236
+
237
+ // $microformat-fullname-font-weight: bold;
238
+ // $microformat-fullname-font-size: em-calc(15);
239
+
240
+ // Control the summary font styles
241
+
242
+ // $microformat-summary-font-weight: bold;
243
+
244
+ // Control abbr padding
245
+ // $microformat-abbr-padding: em-calc(0 1);
246
+
247
+ // Control abbr font styles
248
+
249
+ // $microformat-abbr-font-weight: bold;
250
+ // $microformat-abbr-font-decoration: none;
251
+
252
+ //
253
+ // Form Variables
254
+ //
255
+
256
+ // We use this to set the base for lots of form spacing and positioning styles
257
+
258
+ // $form-spacing: em-calc(16);
259
+
260
+ // We use these to style the labels in different ways
261
+
262
+ // $form-label-pointer: pointer;
263
+ // $form-label-font-size: em-calc(14);
264
+ // $form-label-font-weight: 500;
265
+ // $form-label-font-color: lighten(#000, 30%);
266
+ // $form-label-bottom-margin: em-calc(3);
267
+ // $input-font-family: inherit;
268
+ // $input-font-color: rgba(0,0,0,0.75);
269
+ // $input-font-size: em-calc(14);
270
+ // $input-bg-color: #fff;
271
+ // $input-focus-bg-color: darken(#fff, 2%);
272
+ // $input-border-color: darken(#fff, 20%);
273
+ // $input-focus-border-color: darken(#fff, 40%);
274
+ // $input-border-style: solid;
275
+ // $input-border-width: 1px;
276
+ // $input-disabled-bg: #ddd;
277
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
278
+ // $input-include-glowing-effect: true;
279
+
280
+ // We use these to style the fieldset border and spacing.
281
+
282
+ // $fieldset-border-style: solid;
283
+ // $fieldset-border-width: 1px;
284
+ // $fieldset-border-color: #ddd;
285
+ // $fieldset-padding: em-calc(20);
286
+ // $fieldset-margin: em-calc(18 0);
287
+
288
+ // We use these to style the legends when you use them
289
+
290
+ // $legend-bg: #fff;
291
+ // $legend-font-weight: bold;
292
+ // $legend-padding: em-calc(0 3);
293
+
294
+ // We use these to style the prefix and postfix input elements
295
+
296
+ // $input-prefix-bg: darken(#fff, 5%);
297
+ // $input-prefix-border-color: darken(#fff, 20%);
298
+ // $input-prefix-border-size: 1px;
299
+ // $input-prefix-border-type: solid;
300
+ // $input-prefix-overflow: hidden;
301
+ // $input-prefix-font-color: #333;
302
+ // $input-prefix-font-color-alt: #fff;
303
+
304
+ // We use these to style the error states for inputs and labels
305
+
306
+ // $input-error-message-padding: em-calc(6 4);
307
+ // $input-error-message-top: 0;
308
+ // $input-error-message-font-size: em-calc(12);
309
+ // $input-error-message-font-weight: bold;
310
+ // $input-error-message-font-color: #fff;
311
+ // $input-error-message-font-color-alt: #333;
312
+
313
+ // We use this to style the glowing effect of inputs when focused
314
+
315
+ // $glowing-effect-fade-time: 0.45s;
316
+ // $glowing-effect-color: $input-focus-border-color;
317
+
318
+ //
319
+ // Button Variables
320
+ //
321
+
322
+ // We use these to build padding for buttons.
323
+
324
+ // $button-med: em-calc(12);
325
+ // $button-tny: em-calc(7);
326
+ // $button-sml: em-calc(9);
327
+ // $button-lrg: em-calc(16);
328
+
329
+ // We use this to control the display property.
330
+
331
+ // $button-display: inline-block;
332
+ // $button-margin-bottom: em-calc(20);
333
+
334
+ // We use these to control button text styles.
335
+
336
+ // $button-font-family: inherit;
337
+ // $button-font-color: #fff;
338
+ // $button-font-color-alt: #333;
339
+ // $button-font-med: em-calc(16);
340
+ // $button-font-tny: em-calc(11);
341
+ // $button-font-sml: em-calc(13);
342
+ // $button-font-lrg: em-calc(20);
343
+ // $button-font-weight: bold;
344
+ // $button-font-align: center;
345
+
346
+ // We use these to control various hover effects.
347
+
348
+ // $button-function-factor: 10%;
349
+
350
+ // We use these to control button border styles.
351
+
352
+ // $button-border-width: 1px;
353
+ // $button-border-style: solid;
354
+
355
+ // We use this to set the default radius used throughout the core.
356
+
357
+ // $button-radius: $global-radius;
358
+ // $button-round: $global-rounded;
359
+
360
+ // We use this to set default opacity for disabled buttons.
361
+
362
+ // $button-disabled-opacity: 0.6;
363
+
364
+ //
365
+ // Button Groups
366
+ //
367
+
368
+ // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
369
+
370
+ // $button-bar-margin-opposite: em-calc(10);
371
+
372
+ //
373
+ // Dropdown Button Variables
374
+ //
375
+
376
+ // We use these to set the color of the pip in dropdown buttons
377
+
378
+ // $dropdown-button-pip-color: #fff;
379
+ // $dropdown-button-pip-color-alt: #333;
380
+
381
+ // We use these to style tiny dropdown buttons
382
+
383
+ // $dropdown-button-padding-tny: $button-tny * 5;
384
+ // $dropdown-button-pip-size-tny: $button-tny;
385
+ // $dropdown-button-pip-opposite-tny: $button-tny * 2;
386
+ // $dropdown-button-pip-top-tny: -$button-tny / 2 + em-calc(1);
387
+
388
+ // We use these to style small dropdown buttons
389
+
390
+ // $dropdown-button-padding-sml: $button-sml * 5;
391
+ // $dropdown-button-pip-size-sml: $button-sml;
392
+ // $dropdown-button-pip-opposite-sml: $button-sml * 2;
393
+ // $dropdown-button-pip-top-sml: -$button-sml / 2 + em-calc(1);
394
+
395
+ // We use these to style medium dropdown buttons
396
+
397
+ // $dropdown-button-padding-med: $button-med * 4 + em-calc(3);
398
+ // $dropdown-button-pip-size-med: $button-med - em-calc(3);
399
+ // $dropdown-button-pip-opposite-med: $button-med * 2;
400
+ // $dropdown-button-pip-top-med: -$button-med / 2 + em-calc(2);
401
+
402
+ // We use these to style large dropdown buttons
403
+
404
+ // $dropdown-button-padding-lrg: $button-lrg * 4;
405
+ // $dropdown-button-pip-size-lrg: $button-lrg - em-calc(6);
406
+ // $dropdown-button-pip-opposite-lrg: $button-lrg + em-calc(12);
407
+ // $dropdown-button-pip-top-lrg: -$button-lrg / 2 + em-calc(3);
408
+
409
+ //
410
+ // Split Button Variables
411
+ //
412
+
413
+ // We use these to control different shared styles for Split Buttons
414
+
415
+ // $split-button-function-factor: 15%;
416
+ // $split-button-pip-color: #fff;
417
+ // $split-button-pip-color-alt: #333;
418
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
419
+
420
+ // We use these to control tiny split buttons
421
+
422
+ // $split-button-padding-tny: $button-tny * 9;
423
+ // $split-button-span-width-tny: $button-tny * 6.5;
424
+ // $split-button-pip-size-tny: $button-tny;
425
+ // $split-button-pip-top-tny: $button-tny * 2;
426
+ // $split-button-pip-default-float-tny: em-calc(-5);
427
+
428
+ // We use these to control small split buttons
429
+
430
+ // $split-button-padding-sml: $button-sml * 7;
431
+ // $split-button-span-width-sml: $button-sml * 5;
432
+ // $split-button-pip-size-sml: $button-sml;
433
+ // $split-button-pip-top-sml: $button-sml * 1.5;
434
+ // $split-button-pip-default-float-sml: em-calc(-9);
435
+
436
+ // We use these to control medium split buttons
437
+
438
+ // $split-button-padding-med: $button-med * 6.4;
439
+ // $split-button-span-width-med: $button-med * 4;
440
+ // $split-button-pip-size-med: $button-med - em-calc(3);
441
+ // $split-button-pip-top-med: $button-med * 1.5;
442
+ // $split-button-pip-default-float-med: em-calc(-9);
443
+
444
+ // We use these to control large split buttons
445
+
446
+ // $split-button-padding-lrg: $button-lrg * 6;
447
+ // $split-button-span-width-lrg: $button-lrg * 3.75;
448
+ // $split-button-pip-size-lrg: $button-lrg - em-calc(6);
449
+ // $split-button-pip-top-lrg: $button-lrg + em-calc(5);
450
+ // $split-button-pip-default-float-lrg: em-calc(-9);
451
+
452
+ //
453
+ // Alert Box Variables
454
+ //
455
+
456
+ // We use this to control alert padding.
457
+
458
+ // $alert-padding-top: em-calc(11);
459
+ // $alert-padding-default-float: $alert-padding-top;
460
+ // $alert-padding-opposite-direction: $alert-padding-top + em-calc(10);
461
+ // $alert-padding-bottom: $alert-padding-top + em-calc(1);
462
+
463
+ // We use these to control text style.
464
+
465
+ // $alert-font-weight: bold;
466
+ // $alert-font-size: em-calc(14);
467
+ // $alert-font-color: #fff;
468
+ // $alert-font-color-alt: darken($secondary-color, 60%);
469
+
470
+ // We use this for close hover effect.
471
+
472
+ // $alert-function-factor: 10%;
473
+
474
+ // We use these to control border styles.
475
+
476
+ // $alert-border-style: solid;
477
+ // $alert-border-width: 1px;
478
+ // $alert-border-color: darken($primary-color, $alert-function-factor);
479
+ // $alert-bottom-margin: em-calc(20);
480
+
481
+ // We use these to style the close buttons
482
+
483
+ // $alert-close-color: #333;
484
+ // $alert-close-position: em-calc(5);
485
+ // $alert-close-font-size: em-calc(22);
486
+ // $alert-close-opacity: 0.3;
487
+ // $alert-close-opacity-hover: 0.5;
488
+ // $alert-close-padding: 5px 4px 4px;
489
+
490
+ // We use this to control border radius
491
+
492
+ // $alert-radius: $global-radius;
493
+
494
+
495
+ //
496
+ // Breadcrumb Variables
497
+ //
498
+
499
+ // We use this to set the background color for the breadcrumb container.
500
+
501
+ // $crumb-bg: lighten($secondary-color, 5%);
502
+
503
+ // We use these to set the padding around the breadcrumbs.
504
+
505
+ // $crumb-padding: em-calc(9 14 9);
506
+ // $crumb-side-padding: em-calc(12);
507
+
508
+ // We use these to control border styles.
509
+
510
+ // $crumb-function-factor: 10%;
511
+ // $crumb-border-size: 1px;
512
+ // $crumb-border-style: solid;
513
+ // $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
514
+ // $crumb-radius: $global-radius;
515
+
516
+ // We use these to set various text styles for breadcrumbs.
517
+
518
+ // $crumb-font-size: em-calc(11);
519
+ // $crumb-font-color: $primary-color;
520
+ // $crumb-font-color-current: #333;
521
+ // $crumb-font-color-unavailable: #999;
522
+ // $crumb-font-transform: uppercase;
523
+ // $crumb-link-decor: underline;
524
+
525
+ // We use these to control the slash between breadcrumbs
526
+
527
+ // $crumb-slash-color: #aaa;
528
+ // $crumb-slash: "/";
529
+
530
+ //
531
+ // Clearing Variables
532
+ //
533
+
534
+ // We use these to set the background colors for parts of Clearing.
535
+
536
+ // $clearing-bg: #111;
537
+ // $clearing-caption-bg: $clearing-bg;
538
+ // $clearing-carousel-bg: #111;
539
+ // $clearing-img-bg: $clearing-bg;
540
+
541
+ // We use these to style the close button
542
+
543
+ // $clearing-close-color: #fff;
544
+ // $clearing-close-size: 40px;
545
+
546
+ // We use these to style the arrows
547
+
548
+ // $clearing-arrow-size: 16px;
549
+ // $clearing-arrow-color: $clearing-close-color;
550
+
551
+ // We use these to style captions
552
+
553
+ // $clearing-caption-font-color: #fff;
554
+ // $clearing-caption-padding: 10px 30px;
555
+
556
+ // We use these to make the image and carousel height and style
557
+
558
+ // $clearing-active-img-height: 75%;
559
+ // $clearing-carousel-height: 150px;
560
+ // $clearing-carousel-thumb-width: 175px;
561
+ // $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
562
+
563
+ //
564
+ // Custom Form Variables
565
+ //
566
+
567
+ // We use these to control the basic form styles input styles
568
+
569
+ // $custom-form-border-color: #ccc;
570
+ // $custom-form-border-size: 1px;
571
+ // $custom-form-bg: #fff;
572
+ // $custom-form-bg-disabled: #ddd;
573
+ // $custom-form-input-size: 16px;
574
+ // $custom-form-check-color: #222;
575
+ // $custom-form-check-size: 16px;
576
+ // $custom-form-radio-size: 8px;
577
+ // $custom-form-checkbox-radius: 0;
578
+
579
+ // We use these to style the custom select form element.
580
+
581
+ // $custom-select-bg: #fff;
582
+ // $custom-select-fade-to-color: #f3f3f3;
583
+ // $custom-select-border-color: #ddd;
584
+ // $custom-select-triangle-color: #aaa;
585
+ // $custom-select-triangle-color-open: #222;
586
+ // $custom-select-height: em-calc(13) + ($form-spacing * 1.5);
587
+ // $custom-select-margin-bottom: em-calc(20);
588
+ // $custom-select-font-color-selected: #141414;
589
+ // $custom-select-disabled-color: #888;
590
+
591
+ // We use these to control the style of the custom select dropdown element.
592
+
593
+ // $custom-dropdown-height: 200px;
594
+ // $custom-dropdown-bg: #fff;
595
+ // $custom-dropdown-border-color: darken(#fff, 20%);
596
+ // $custom-dropdown-border-width: 1px;
597
+ // $custom-dropdown-border-style: solid;
598
+ // $custom-dropdown-font-color: #555;
599
+ // $custom-dropdown-font-size: em-calc(14);
600
+ // $custom-dropdown-color-selected: #eeeeee;
601
+ // $custom-dropdown-font-color-selected: #000;
602
+ // $custom-dropdown-shadow: 0 2px 2px 0 rgba(0,0,0,0.1);
603
+ // $custom-dropdown-offset-top: auto;
604
+ // $custom-dropdown-list-padding: em-calc(4);
605
+ // $custom-dropdown-default-float-padding: em-calc(6);
606
+ // $custom-dropdown-opposite-padding: em-calc(38);
607
+ // $custom-dropdown-list-item-min-height: em-calc(24);
608
+ // $custom-dropdown-width-small: 134px;
609
+ // $custom-dropdown-width-medium: 254px;
610
+ // $custom-dropdown-width-large: 434px;
611
+
612
+ //
613
+ // Dropdown Variables
614
+ //
615
+
616
+ // We use these to controls height and width styles.
617
+
618
+ // $f-dropdown-max-width: 200px;
619
+ // $f-dropdown-height: auto;
620
+ // $f-dropdown-max-height: none;
621
+ // $f-dropdown-margin-top: 2px;
622
+
623
+ // We use this to control the background color
624
+
625
+ // $f-dropdown-bg: #fff;
626
+
627
+ // We use this to set the border styles for dropdowns.
628
+
629
+ // $f-dropdown-border-style: solid;
630
+ // $f-dropdown-border-width: 1px;
631
+ // $f-dropdown-border-color: darken(#fff, 20%);
632
+
633
+ // We use these to style the triangle pip.
634
+
635
+ // $f-dropdown-triangle-size: 6px;
636
+ // $f-dropdown-triangle-color: #fff;
637
+ // $f-dropdown-triangle-side-offset: 10px;
638
+
639
+ // We use these to control styles for the list elements.
640
+
641
+ // $f-dropdown-list-style: none;
642
+ // $f-dropdown-font-color: #555;
643
+ // $f-dropdown-font-size: em-calc(14);
644
+ // $f-dropdown-list-padding: em-calc(5 10);
645
+ // $f-dropdown-line-height: em-calc(18);
646
+ // $f-dropdown-list-hover-bg: #eeeeee;
647
+ // $dropdown-mobile-default-float: 0;
648
+
649
+ // We use this to control the styles for when the dropdown has custom content.
650
+
651
+ // $f-dropdown-content-padding: em-calc(20);
652
+
653
+ //
654
+ // Flex Video Variables
655
+ //
656
+
657
+ // We use these to control video container padding and margins
658
+
659
+ // $flex-video-padding-top: em-calc(25);
660
+ // $flex-video-padding-bottom: 67.5%;
661
+ // $flex-video-margin-bottom: em-calc(16);
662
+
663
+ // We use this to control widescreen bottom padding
664
+
665
+ // $flex-video-widescreen-padding-bottom: 57.25%;
666
+
667
+ //
668
+ // Inline List Variables
669
+ //
670
+
671
+ // We use this to control the margins and padding of the inline list.
672
+
673
+ // $inline-list-top-margin: 0;
674
+ // $inline-list-opposite-margin: 0;
675
+ // $inline-list-bottom-margin: em-calc(17);
676
+ // $inline-list-default-float-margin: em-calc(-22);
677
+
678
+ // $inline-list-padding: 0;
679
+
680
+ // We use this to control the overflow of the inline list.
681
+
682
+ // $inline-list-overflow: hidden;
683
+
684
+ // We use this to control the list items
685
+
686
+ // $inline-list-display: block;
687
+
688
+ // We use this to control any elments within list items
689
+
690
+ // $inline-list-children-display: block;
691
+
692
+ //
693
+ // Joyride Variables
694
+ //
695
+
696
+ // Controlling default Joyride styles
697
+
698
+ // $joyride-tip-bg: rgb(0,0,0);
699
+ // $joyride-tip-default-width: 300px;
700
+ // $joyride-tip-padding: em-calc(18 20 24);
701
+ // $joyride-tip-border: solid 1px #555;
702
+ // $joyride-tip-radius: 4px;
703
+ // $joyride-tip-position-offset: 22px;
704
+
705
+ // Here, we're setting the tip dont styles
706
+
707
+ // $joyride-tip-font-color: #fff;
708
+ // $joyride-tip-font-size: em-calc(14);
709
+ // $joyride-tip-header-weight: bold;
710
+
711
+ // This changes the nub size
712
+
713
+ // $joyride-tip-nub-size: 14px;
714
+
715
+ // This adjusts the styles for the timer when its enabled
716
+
717
+ // $joyride-tip-timer-width: 50px;
718
+ // $joyride-tip-timer-height: 3px;
719
+ // $joyride-tip-timer-color: #666;
720
+
721
+ // This changes up the styles for the close button
722
+
723
+ // $joyride-tip-close-color: #777;
724
+ // $joyride-tip-close-size: 30px;
725
+ // $joyride-tip-close-weight: normal;
726
+
727
+ // When Joyride is filling the screen, we use this style for the bg
728
+
729
+ // $joyride-screenfill: rgba(0,0,0,0.5);
730
+
731
+ //
732
+ // Keystroke Variables
733
+ //
734
+
735
+ // We use these to control text styles.
736
+
737
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
738
+ // $keystroke-font-size: em-calc(14);
739
+ // $keystroke-font-color: #222;
740
+ // $keystroke-font-color-alt: #fff;
741
+ // $keystroke-function-factor: 7%;
742
+
743
+ // We use this to control keystroke padding.
744
+
745
+ // $keystroke-padding: em-calc(2 4 0);
746
+
747
+ // We use these to control background and border styles.
748
+
749
+ // $keystroke-bg: darken(#fff, $keystroke-function-factor);
750
+ // $keystroke-border-style: solid;
751
+ // $keystroke-border-width: 1px;
752
+ // $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
753
+ // $keystroke-radius: $global-radius;
754
+
755
+ //
756
+ // Label Variables
757
+ //
758
+
759
+ // We use these to style the labels
760
+
761
+ // $label-padding: em-calc(3 10 4);
762
+ // $label-radius: $global-radius;
763
+
764
+ // We use these to style the label text
765
+
766
+ // $label-font-sizing: em-calc(14);
767
+ // $label-font-weight: bold;
768
+ // $label-font-color: #333;
769
+ // $label-font-color-alt: #fff;
770
+
771
+ //
772
+ // Magellan Variables
773
+ //
774
+
775
+ // $magellan-bg: #fff;
776
+ // $magellan-padding: 10px;
777
+
778
+ //
779
+ // Orbit Settings
780
+ //
781
+
782
+ // We use these to control the caption styles
783
+
784
+ // $orbit-container-bg: #f5f5f5;
785
+ // $orbit-caption-bg: rgba(0,0,0,0.6);
786
+ // $orbit-caption-font-color: #fff;
787
+ // $orbit-caption-font-size: em-calc(14);
788
+ // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
789
+ // $orbit-caption-padding: em-calc(10,14);
790
+ // $orbit-caption-height: auto;
791
+
792
+ // We use these to control the left/right nav styles
793
+
794
+ // $orbit-nav-bg: rgba(0,0,0,0.6);
795
+ // $orbit-nav-bg-hover: rgba(0,0,0,0.6);
796
+ // $orbit-nav-arrow-color: #fff;
797
+ // $orbit-nav-arrow-color-hover: #ccc;
798
+
799
+ // We use these to control the timer styles
800
+
801
+ // $orbit-timer-bg: rgba(0,0,0,0.6);
802
+ // $orbit-timer-show-progress-bar: true;
803
+
804
+ // We use these to control the bullet nav styles
805
+
806
+ // $orbit-bullet-nav-color: #999;
807
+ // $orbit-bullet-nav-color-active: #555;
808
+ // $orbit-bullet-radius: em-calc(18);
809
+
810
+ // We use these to controls the style of slide numbers
811
+
812
+ // $orbit-slide-number-bg: rgba(0,0,0,0);
813
+ // $orbit-slide-number-font-color: #fff;
814
+ // $orbit-slide-number-padding: em-calc(5);
815
+
816
+ // Graceful Loading Wrapper and preloader
817
+
818
+ // $wrapper-class: "slideshow-wrapper";
819
+ // $preloader-class: "preloader";
820
+
821
+ //
822
+ // Pagination Variables
823
+ //
824
+
825
+ // We use these to control the pagination container
826
+
827
+ // $pagination-height: em-calc(24);
828
+ // $pagination-margin: em-calc(-5);
829
+
830
+ // We use these to set the list-item properties
831
+
832
+ // $pagination-li-float: $default-float;
833
+ // $pagination-li-height: em-calc(24);
834
+ // $pagination-li-font-color: #222;
835
+ // $pagination-li-font-size: em-calc(14);
836
+ // $pagination-li-margin: em-calc(5);
837
+
838
+ // We use these for the pagination anchor links
839
+
840
+ // $pagination-link-pad: em-calc(1 7 1);
841
+ // $pagination-link-font-color: #999;
842
+ // $pagination-link-active-bg: darken(#fff, 10%);
843
+
844
+ // We use these for disabled anchor links
845
+
846
+ // $pagination-link-unavailable-cursor: default;
847
+ // $pagination-link-unavailable-font-color: #999;
848
+ // $pagination-link-unavailable-bg-active: transparent;
849
+
850
+ // We use these for currently selected anchor links
851
+
852
+ // $pagination-link-current-background: $primary-color;
853
+ // $pagination-link-current-font-color: #fff;
854
+ // $pagination-link-current-font-weight: bold;
855
+ // $pagination-link-current-cursor: default;
856
+ // $pagination-link-current-active-bg: $primary-color;
857
+
858
+ //
859
+ // Panel Variables
860
+ //
861
+
862
+ // We use these to control the background and border styles
863
+
864
+ // $panel-bg: darken(#fff, 5%);
865
+ // $panel-border-style: solid;
866
+ // $panel-border-size: 1px;
867
+
868
+ // We use this % to control how much we darken things on hover
869
+
870
+ // $panel-function-factor: 10%;
871
+ // $panel-border-color: darken($panel-bg, $panel-function-factor);
872
+
873
+ // We use these to set default inner padding and bottom margin
874
+
875
+ // $panel-margin-bottom: em-calc(20);
876
+ // $panel-padding: em-calc(20);
877
+
878
+ // We use these to set default font colors
879
+
880
+ // $panel-font-color: #333;
881
+ // $panel-font-color-alt: #fff;
882
+
883
+ // $panel-header-adjust: true;
884
+
885
+ //
886
+ // Pricing Table Variables
887
+ //
888
+
889
+ // We use this to control the border color
890
+
891
+ // $price-table-border: solid 1px #ddd;
892
+
893
+ // We use this to control the bottom margin of the pricing table
894
+
895
+ // $price-table-margin-bottom: em-calc(20);
896
+
897
+ // We use these to control the title styles
898
+
899
+ // $price-title-bg: #ddd;
900
+ // $price-title-padding: em-calc(15 20);
901
+ // $price-title-align: center;
902
+ // $price-title-color: #333;
903
+ // $price-title-weight: bold;
904
+ // $price-title-size: em-calc(16);
905
+
906
+ // We use these to control the price styles
907
+
908
+ // $price-money-bg: #eee;
909
+ // $price-money-padding: em-calc(15, 20);
910
+ // $price-money-align: center;
911
+ // $price-money-color: #333;
912
+ // $price-money-weight: normal;
913
+ // $price-money-size: em-calc(20);
914
+
915
+ // We use these to control the description styles
916
+
917
+ // $price-bg: #fff;
918
+ // $price-desc-color: #777;
919
+ // $price-desc-padding: em-calc(15);
920
+ // $price-desc-align: center;
921
+ // $price-desc-font-size: em-calc(12);
922
+ // $price-desc-weight: normal;
923
+ // $price-desc-line-height: 1.4;
924
+ // $price-desc-bottom-border: dotted 1px #ddd;
925
+
926
+ // We use these to control the list item styles
927
+
928
+ // $price-item-color: #333;
929
+ // $price-item-padding: em-calc(15);
930
+ // $price-item-align: center;
931
+ // $price-item-font-size: em-calc(14);
932
+ // $price-item-weight: normal;
933
+ // $price-item-bottom-border: dotted 1px #ddd;
934
+
935
+ // We use these to control the CTA area styles
936
+
937
+ // $price-cta-bg: #f5f5f5;
938
+ // $price-cta-align: center;
939
+ // $price-cta-padding: em-calc(20 20 0);
940
+
941
+ //
942
+ // Progress Bar Variables
943
+ //
944
+
945
+ // We use this to se the prog bar height
946
+
947
+ // $progress-bar-height: em-calc(25);
948
+ // $progress-bar-color: transparent;
949
+
950
+ // We use these to control the border styles
951
+
952
+ // $progress-bar-border-color: darken(#fff, 20%);
953
+ // $progress-bar-border-size: 1px;
954
+ // $progress-bar-border-style: solid;
955
+ // $progress-bar-border-radius: $global-radius;
956
+
957
+ // We use these to control the margin & padding
958
+
959
+ // $progress-bar-pad: em-calc(2);
960
+ // $progress-bar-margin-bottom: em-calc(10);
961
+
962
+ // We use these to set the meter colors
963
+
964
+ // $progress-meter-color: $primary-color;
965
+ // $progress-meter-secondary-color: $secondary-color;
966
+ // $progress-meter-success-color: $success-color;
967
+ // $progress-meter-alert-color: $alert-color;
968
+
969
+ //
970
+ // Reveal Variables
971
+ //
972
+
973
+ // We use these to control the style of the reveal overlay.
974
+
975
+ // $reveal-overlay-bg: rgba(#000, .45);
976
+ // $reveal-overlay-bg-old: #000;
977
+
978
+ // We use these to control the style of the modal itself.
979
+
980
+ // $reveal-modal-bg: #fff;
981
+ // $reveal-position-top: 50px;
982
+ // $reveal-default-width: 80%;
983
+ // $reveal-modal-padding: em-calc(20);
984
+ // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
985
+
986
+ // We use these to style the reveal close button
987
+
988
+ // $reveal-close-font-size: em-calc(22);
989
+ // $reveal-close-top: em-calc(8);
990
+ // $reveal-close-side: em-calc(11);
991
+ // $reveal-close-color: #aaa;
992
+ // $reveal-close-weight: bold;
993
+
994
+ // We use these to control the modal border
995
+
996
+ // $reveal-border-style: solid;
997
+ // $reveal-border-width: 1px;
998
+ // $reveal-border-color: #666;
999
+
1000
+ // $reveal-modal-class: "reveal-modal";
1001
+ // $close-reveal-modal-class: "close-reveal-modal";
1002
+
1003
+ //
1004
+ // Section Variables
1005
+ //
1006
+
1007
+ // We use these to set padding and hover factor
1008
+
1009
+ // $section-title-padding: em-calc(15);
1010
+ // $section-content-padding: em-calc(15);
1011
+ // $section-function-factor: 10%;
1012
+
1013
+ // These style the titles
1014
+
1015
+ // $section-title-color: #333;
1016
+ // $section-title-color-active: #333;
1017
+ // $section-title-bg: #efefef;
1018
+ // $section-title-bg-active: darken($section-title-bg, $section-function-factor);
1019
+ // $section-title-bg-active-tabs: #fff;
1020
+ // $section-title-bg-hover: darken($section-title-bg, $section-function-factor / 2);
1021
+
1022
+ // Want to control border size, here ya go!
1023
+
1024
+ // $section-border-size: 1px;
1025
+ // $section-border-style: solid;
1026
+ // $section-border-color: #ccc;
1027
+
1028
+ // Font controls
1029
+
1030
+ // $section-font-size: em-calc(14);
1031
+
1032
+ // Control the color of the background and some size options
1033
+
1034
+ // $section-content-bg: #fff;
1035
+ // $section-vertical-nav-min-width: em-calc(200);
1036
+ // $section-vertical-tabs-title-width: em-calc(200);
1037
+ // $section-bottom-margin: em-calc(20);
1038
+
1039
+ // $title-selector: ".title";
1040
+ // $content-selector: ".content";
1041
+ // $active-region-selector: ".active";
1042
+
1043
+ //
1044
+ // Side Nav Variables
1045
+ //
1046
+
1047
+ // We use this to control padding.
1048
+
1049
+ // $side-nav-padding: em-calc(14 0);
1050
+
1051
+ // We use these to control list styles.
1052
+
1053
+ // $side-nav-list-type: none;
1054
+ // $side-nav-list-position: inside;
1055
+ // $side-nav-list-margin: em-calc(0 0 7 0);
1056
+
1057
+ // We use these to control link styles.
1058
+
1059
+ // $side-nav-link-color: $primary-color;
1060
+ // $side-nav-link-color-active: lighten(#000, 30%);
1061
+ // $side-nav-font-size: em-calc(14);
1062
+ // $side-nav-font-weight: bold;
1063
+
1064
+ // We use these to control border styles
1065
+
1066
+ // $side-nav-divider-size: 1px;
1067
+ // $side-nav-divider-style: solid;
1068
+ // $side-nav-divider-color: darken(#fff, 10%);
1069
+
1070
+ //
1071
+ // Sub Nav Variables
1072
+ //
1073
+
1074
+ // We use these to control margin and padding
1075
+
1076
+ // $sub-nav-list-margin: em-calc(-4 0 18);
1077
+ // $sub-nav-list-padding-top: em-calc(4);
1078
+
1079
+ // We use this to control the definition
1080
+
1081
+ // $sub-nav-font-size: em-calc(14);
1082
+ // $sub-nav-font-color: #999;
1083
+ // $sub-nav-font-weight: normal;
1084
+ // $sub-nav-text-decoration: none;
1085
+ // $sub-nav-border-radius: 1000px;
1086
+
1087
+ // We use these to control the active item styles
1088
+
1089
+ // $sub-nav-active-font-weight: bold;
1090
+ // $sub-nav-active-bg: $primary-color;
1091
+ // $sub-nav-active-color: #fff;
1092
+ // $sub-nav-active-padding: em-calc(3 9);
1093
+ // $sub-nav-active-cursor: default;
1094
+
1095
+ // $sub-nav-item-divider: "" !default;
1096
+ // $sub-nav-item-divider-margin: em-calc(12) !default;
1097
+
1098
+ //
1099
+ // Switch Variables
1100
+ //
1101
+
1102
+ // Controlling border styles and background colors for the switch container
1103
+
1104
+ // $switch-border-color: darken(#fff, 20%);
1105
+ // $switch-border-style: solid;
1106
+ // $switch-border-width: 1px;
1107
+ // $switch-bg: #fff;
1108
+
1109
+ // We use these to control the switch heights for our default classes
1110
+
1111
+ // $switch-height-tny: 22px;
1112
+ // $switch-height-sml: 28px;
1113
+ // $switch-height-med: 36px;
1114
+ // $switch-height-lrg: 44px;
1115
+ // $switch-bottom-margin: em-calc(20);
1116
+
1117
+ // We use these to control default font sizes for our classes.
1118
+
1119
+ // $switch-font-size-tny: 11px;
1120
+ // $switch-font-size-sml: 12px;
1121
+ // $switch-font-size-med: 14px;
1122
+ // $switch-font-size-lrg: 17px;
1123
+ // $switch-label-side-padding: 6px;
1124
+
1125
+ // We use these to style the switch-paddle
1126
+
1127
+ // $switch-paddle-bg: #fff;
1128
+ // $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
1129
+ // $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
1130
+ // $switch-paddle-border-width: 1px;
1131
+ // $switch-paddle-border-style: solid;
1132
+ // $switch-paddle-transition-speed: .1s;
1133
+ // $switch-paddle-transition-ease: ease-out;
1134
+ // $switch-positive-color: lighten($success-color, 50%);
1135
+ // $switch-negative-color: #f5f5f5;
1136
+
1137
+ // Outline Style for tabbing through switches
1138
+
1139
+ // $switch-label-outline: 1px dotted #888;
1140
+
1141
+ //
1142
+ // Table Variables
1143
+ //
1144
+
1145
+ // These control the background color for the table and even rows
1146
+
1147
+ // $table-bg: #fff;
1148
+ // $table-even-row-bg: #f9f9f9;
1149
+
1150
+ // These control the table cell border style
1151
+
1152
+ // $table-border-style: solid;
1153
+ // $table-border-size: 1px;
1154
+ // $table-border-color: #ddd;
1155
+
1156
+ // These control the table head styles
1157
+
1158
+ // $table-head-bg: #f5f5f5;
1159
+ // $table-head-font-size: em-calc(14);
1160
+ // $table-head-font-color: #222;
1161
+ // $table-head-font-weight: bold;
1162
+ // $table-head-padding: em-calc(8 10 10);
1163
+
1164
+ // These control the row padding and font styles
1165
+
1166
+ // $table-row-padding: em-calc(9 10);
1167
+ // $table-row-font-size: em-calc(14);
1168
+ // $table-row-font-color: #222;
1169
+ // $table-line-height: em-calc(18);
1170
+
1171
+ // These are for controlling the display and margin of tables
1172
+
1173
+ // $table-display: table-cell;
1174
+ // $table-margin-bottom: em-calc(20);
1175
+
1176
+ //
1177
+ // Image Thumbnail Variables
1178
+ //
1179
+
1180
+ // We use these to control border styles
1181
+
1182
+ // $thumb-border-style: solid;
1183
+ // $thumb-border-width: 4px;
1184
+ // $thumb-border-color: #fff;
1185
+ // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
1186
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1187
+
1188
+ // Radius and transition speed for thumbs
1189
+
1190
+ // $thumb-radius: $global-radius;
1191
+ // $thumb-transition-speed: 200ms;
1192
+
1193
+ //
1194
+ // Tooltip Variables
1195
+ //
1196
+
1197
+ // $has-tip-border-bottom: dotted 1px #ccc;
1198
+ // $has-tip-font-weight: bold;
1199
+ // $has-tip-font-color: #333;
1200
+ // $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
1201
+ // $has-tip-font-color-hover: $primary-color;
1202
+ // $has-tip-cursor-type: help;
1203
+
1204
+ // $tooltip-padding: em-calc(8);
1205
+ // $tooltip-bg: #000;
1206
+ // $tooltip-font-size: em-calc(15);
1207
+ // $tooltip-font-weight: bold;
1208
+ // $tooltip-font-color: #fff;
1209
+ // $tooltip-line-height: 1.3;
1210
+ // $tooltip-close-font-size: em-calc(10);
1211
+ // $tooltip-close-font-weight: normal;
1212
+ // $tooltip-close-font-color: #888;
1213
+ // $tooltip-font-size-sml: em-calc(14);
1214
+ // $tooltip-radius: $global-radius;
1215
+ // $tooltip-pip-size: 5px;
1216
+
1217
+ //
1218
+ // Top Bar Variables
1219
+ //
1220
+
1221
+ // Background color for the top bar
1222
+
1223
+ // $topbar-bg-color: #111;
1224
+ // $topbar-bg: $topbar-bg-color;
1225
+
1226
+ // Height and margin
1227
+
1228
+ // $topbar-height: 45px;
1229
+ // $topbar-margin-bottom: 0;
1230
+
1231
+ // Control Input height for top bar
1232
+
1233
+ // $topbar-input-height: 2.45em;
1234
+
1235
+ // Controlling the styles for the title in the top bar
1236
+
1237
+ // $topbar-title-weight: bold;
1238
+ // $topbar-title-font-size: em-calc(17);
1239
+
1240
+ // Style the top bar dropdown elements
1241
+
1242
+ // $topbar-dropdown-bg: #222;
1243
+ // $topbar-dropdown-link-color: #fff;
1244
+ // // $topbar-dropdown-link-bg: lighten($topbar-bg-color, 5%);
1245
+ // $topbar-dropdown-toggle-size: 5px;
1246
+ // $topbar-dropdown-toggle-color: #fff;
1247
+ // $topbar-dropdown-toggle-alpha: 0.5;
1248
+
1249
+ // Set the link colors and styles for top-level nav
1250
+
1251
+ // $topbar-link-color: #fff;
1252
+ // $topbar-link-color-hover: #fff;
1253
+ // $topbar-link-color-active: #fff;
1254
+ // $topbar-link-weight: bold;
1255
+ // $topbar-link-font-size: em-calc(13);
1256
+ // $topbar-link-hover-lightness: -30%; // Darken by 30%
1257
+ // $topbar-link-bg-hover: darken($topbar-bg-color, 3%);
1258
+ // $topbar-link-bg-active: darken($topbar-bg-color, 3%);
1259
+
1260
+ // $topbar-dropdown-label-color: #555;
1261
+ // $topbar-dropdown-label-text-transform: uppercase;
1262
+ // $topbar-dropdown-label-font-weight: bold;
1263
+ // $topbar-dropdown-label-font-size: em-calc(10);
1264
+ // $topbar-dropdown-label-bg: lighten($topbar-bg-color, 5%);
1265
+
1266
+ // Top menu icon styles
1267
+
1268
+ // $topbar-menu-link-transform: uppercase;
1269
+ // $topbar-menu-link-font-size: em-calc(13);
1270
+ // $topbar-menu-link-weight: bold;
1271
+ // $topbar-menu-link-color: #fff;
1272
+ // $topbar-menu-icon-color: #fff;
1273
+ // $topbar-menu-link-color-toggled: #888;
1274
+ // $topbar-menu-icon-color-toggled: #888;
1275
+
1276
+ // Transitions and breakpoint styles
1277
+
1278
+ // $topbar-transition-speed: 300ms;
1279
+ // $topbar-breakpoint: 940px !default; // Change to 9999px for always mobile layout
1280
+ // $topbar-media-query: "only screen and (min-width: #{$topbar-breakpoint})";
1281
+
1282
+ // Divider Styles
1283
+
1284
+ // $topbar-divider-border-bottom: solid 1px lighten($topbar-bg-color, 10%);
1285
+ // $topbar-divider-border-top: solid 1px darken($topbar-bg-color, 10%);
1286
+
1287
+ // Sticky Class
1288
+
1289
+ // $topbar-sticky-class: ".sticky";
1290
+ // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item