exo_cms 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (515) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/images/exo/admin/favicon.ico +0 -0
  5. data/app/assets/images/exo/admin/logo.png +0 -0
  6. data/app/assets/images/exo/admin/logo_mini.png +0 -0
  7. data/app/assets/javascripts/exo/admin/application.js +77 -0
  8. data/app/assets/javascripts/exo/admin/ckeditor_init.js +7 -0
  9. data/app/assets/javascripts/exo/admin/ckeditor_path.js.erb +6 -0
  10. data/app/assets/javascripts/exo/admin/editor_overrides.js.coffee +40 -0
  11. data/app/assets/javascripts/exo/admin/epiceditor.js +2947 -0
  12. data/app/assets/javascripts/exo/admin/responsive-tables.js +67 -0
  13. data/app/assets/javascripts/exo/delayed_foundation.js +7 -0
  14. data/app/assets/stylesheets/exo/admin/application.sass +68 -0
  15. data/app/assets/stylesheets/exo/admin/components/colorize.sass +9 -0
  16. data/app/assets/stylesheets/exo/admin/components/content.sass +28 -0
  17. data/app/assets/stylesheets/exo/admin/components/header.sass +8 -0
  18. data/app/assets/stylesheets/exo/admin/components/sidebar.sass +19 -0
  19. data/app/assets/stylesheets/exo/admin/components/tables.sass +14 -0
  20. data/app/assets/stylesheets/exo/admin/components/wrapper.sass +15 -0
  21. data/app/assets/stylesheets/exo/admin/epiceditor/epic-light.css +12 -0
  22. data/app/assets/stylesheets/exo/admin/epiceditor/epiceditor.css +70 -0
  23. data/app/assets/stylesheets/exo/admin/epiceditor/github.css +368 -0
  24. data/app/assets/stylesheets/exo/admin/foundation_and_overrides.scss +1003 -0
  25. data/app/assets/stylesheets/exo/admin/mercury.css +36 -0
  26. data/app/assets/stylesheets/exo/admin/mercury_overrides.css +17 -0
  27. data/app/assets/stylesheets/exo/admin/responsive-tables.css +38 -0
  28. data/app/assets/stylesheets/exo/foundation_and_overrides copy.scss +993 -0
  29. data/app/controllers/concerns/exo/admin/site_slug_id_filter.rb +25 -0
  30. data/app/controllers/concerns/exo/host_filter.rb +22 -0
  31. data/app/controllers/concerns/exo/route_filter.rb +19 -0
  32. data/app/controllers/exo/admin/application_controller.rb +12 -0
  33. data/app/controllers/exo/admin/assets_controller.rb +41 -0
  34. data/app/controllers/exo/admin/ckeditor_assets_controller.rb +29 -0
  35. data/app/controllers/exo/admin/ckeditor_blocks_controller.rb +23 -0
  36. data/app/controllers/exo/admin/contributors_controller.rb +5 -0
  37. data/app/controllers/exo/admin/items_controller.rb +80 -0
  38. data/app/controllers/exo/admin/pages_controller.rb +23 -0
  39. data/app/controllers/exo/admin/resources_controller.rb +5 -0
  40. data/app/controllers/exo/admin/routes_controller.rb +11 -0
  41. data/app/controllers/exo/admin/sessions_controller.rb +6 -0
  42. data/app/controllers/exo/admin/settings_controller.rb +66 -0
  43. data/app/controllers/exo/admin/site_controller.rb +4 -0
  44. data/app/controllers/exo/application_controller.rb +6 -0
  45. data/app/controllers/exo/gridfs_controller.rb +32 -0
  46. data/app/controllers/exo/pages_controller.rb +24 -0
  47. data/app/exceptions/exo/route/unknow_path_error.rb +13 -0
  48. data/app/exceptions/exo/site/unknow_host_error.rb +12 -0
  49. data/app/helpers/application_helper.rb +2 -0
  50. data/app/helpers/exo/block_helper.rb +21 -0
  51. data/app/helpers/exo/pagination_helper.rb +21 -0
  52. data/app/helpers/exo/resources_helper.rb +65 -0
  53. data/app/models/concerns/exo/document.rb +8 -0
  54. data/app/models/exo/asset.rb +32 -0
  55. data/app/models/exo/block.rb +13 -0
  56. data/app/models/exo/contributor.rb +42 -0
  57. data/app/models/exo/resource/item/abstract_relation.rb +21 -0
  58. data/app/models/exo/resource/item/abstract_value.rb +35 -0
  59. data/app/models/exo/resource/item/asset_value.rb +17 -0
  60. data/app/models/exo/resource/item/belongs_to_value.rb +26 -0
  61. data/app/models/exo/resource/item/has_many_value.rb +24 -0
  62. data/app/models/exo/resource/item/list_value.rb +23 -0
  63. data/app/models/exo/resource/item/markdown_value.rb +52 -0
  64. data/app/models/exo/resource/item/simple_value.rb +15 -0
  65. data/app/models/exo/resource/item.rb +169 -0
  66. data/app/models/exo/resource/item_asset.rb +20 -0
  67. data/app/models/exo/resource/meta_errors.rb +24 -0
  68. data/app/models/exo/resource/meta_field.rb +20 -0
  69. data/app/models/exo/resource/meta_relation.rb +25 -0
  70. data/app/models/exo/resource/meta_value.rb +60 -0
  71. data/app/models/exo/resource.rb +40 -0
  72. data/app/models/exo/route/page.rb +11 -0
  73. data/app/models/exo/route/redirection.rb +8 -0
  74. data/app/models/exo/route.rb +38 -0
  75. data/app/models/exo/service.rb +13 -0
  76. data/app/models/exo/setting.rb +31 -0
  77. data/app/models/exo/site.rb +63 -0
  78. data/app/presenters/exo/item_presenter.rb +19 -0
  79. data/app/presenters/exo/resource_presenter.rb +25 -0
  80. data/app/presenters/exo/route_presenter.rb +33 -0
  81. data/app/presenters/exo/scope_wraper.rb +58 -0
  82. data/app/presenters/exo/site_presenter.rb +35 -0
  83. data/app/resources/templates/application.html.haml +11 -0
  84. data/app/resources/templates/page.html.haml +3 -0
  85. data/app/services/ckeditor_railser.rb +78 -0
  86. data/app/services/exo/config.rb +138 -0
  87. data/app/services/exo/generator.rb +59 -0
  88. data/app/services/exo/item_builder.rb +39 -0
  89. data/app/services/exo/mongoid.rb +1 -0
  90. data/app/services/exo/path_matcher.rb +55 -0
  91. data/app/services/exo/tick.rb +36 -0
  92. data/app/services/exo/view_generator.rb +74 -0
  93. data/app/uploaders/exo/asset_uploader.rb +62 -0
  94. data/app/uploaders/exo/item_asset_uploader.rb +71 -0
  95. data/app/uploaders/exo/upload_versions.rb +58 -0
  96. data/app/views/contributors/confirmations/new.html.haml +9 -0
  97. data/app/views/contributors/mailer/confirmation_instructions.html.haml +4 -0
  98. data/app/views/contributors/mailer/reset_password_instructions.html.haml +6 -0
  99. data/app/views/contributors/mailer/unlock_instructions.html.haml +5 -0
  100. data/app/views/contributors/passwords/edit.html.haml +11 -0
  101. data/app/views/contributors/passwords/new.html.haml +9 -0
  102. data/app/views/contributors/registrations/edit.html.haml +18 -0
  103. data/app/views/contributors/registrations/new.html.haml +10 -0
  104. data/app/views/contributors/sessions/new.html.haml +10 -0
  105. data/app/views/contributors/shared/_links.haml +19 -0
  106. data/app/views/contributors/unlocks/new.html.haml +9 -0
  107. data/app/views/exo/admin/application/_bheader.html.haml +27 -0
  108. data/app/views/exo/admin/application/_editor_header.html.haml +12 -0
  109. data/app/views/exo/admin/application/_header.html.haml +40 -0
  110. data/app/views/exo/admin/application/_meta_errors.html.haml +5 -0
  111. data/app/views/exo/admin/application/_sidebar.html.haml +22 -0
  112. data/app/views/exo/admin/application/_sidenav.html.haml +48 -0
  113. data/app/views/exo/admin/application/fields/_image.html.haml +3 -0
  114. data/app/views/exo/admin/application/fields/_markdown.html.haml +3 -0
  115. data/app/views/exo/admin/assets/_form.html.haml +11 -0
  116. data/app/views/exo/admin/assets/edit.html.haml +7 -0
  117. data/app/views/exo/admin/assets/index.html.haml +15 -0
  118. data/app/views/exo/admin/assets/new.html.haml +5 -0
  119. data/app/views/exo/admin/assets/show.html.haml +14 -0
  120. data/app/views/exo/admin/ckeditor_assets/create.html.erb +8 -0
  121. data/app/views/exo/admin/contributors/index.html.haml +21 -0
  122. data/app/views/exo/admin/contributors/show.html.haml +26 -0
  123. data/app/views/exo/admin/items/_form.html.haml +20 -0
  124. data/app/views/exo/admin/items/edit.html.haml +16 -0
  125. data/app/views/exo/admin/items/new.html.haml +8 -0
  126. data/app/views/exo/admin/items/show.html.haml +44 -0
  127. data/app/views/exo/admin/resources/index.html.haml +13 -0
  128. data/app/views/exo/admin/resources/show.html.haml +36 -0
  129. data/app/views/exo/admin/routes/edit.html.haml +1 -0
  130. data/app/views/exo/admin/routes/index.html.haml +22 -0
  131. data/app/views/exo/admin/routes/show.html.haml +39 -0
  132. data/app/views/exo/admin/settings/_form.html.haml +21 -0
  133. data/app/views/exo/admin/settings/edit.html.haml +22 -0
  134. data/app/views/exo/admin/settings/index.html.haml +33 -0
  135. data/app/views/exo/admin/settings/new.html.haml +11 -0
  136. data/app/views/exo/admin/site/show.html.haml +0 -0
  137. data/app/views/exo/errors/_unknow_host.html.haml +2 -0
  138. data/app/views/exo/errors/_unknow_path.html.haml +2 -0
  139. data/app/views/layouts/application.html.erb +19 -0
  140. data/app/views/layouts/devise.html.haml +18 -0
  141. data/app/views/layouts/exo/admin/application.html.haml +22 -0
  142. data/app/views/layouts/exo/admin/editor.html.haml +11 -0
  143. data/app/views/layouts/exo/error.html.haml +1 -0
  144. data/config/initializers/carrier_wave.rb +35 -0
  145. data/config/initializers/devise.rb +246 -0
  146. data/config/initializers/simple_form_foundation.rb +27 -0
  147. data/config/routes.rb +42 -0
  148. data/lib/exo/engine.rb +7 -0
  149. data/lib/exo/regexp.rb +6 -0
  150. data/lib/exo/version.rb +3 -0
  151. data/lib/exo.rb +30 -0
  152. data/lib/tasks/ckeditor.rake +9 -0
  153. data/lib/tasks/contributor.rake +11 -0
  154. data/lib/tasks/exo_engine_tasks.rake +4 -0
  155. data/lib/tasks/generate.rake +8 -0
  156. data/lib/tasks/migration.rake +13 -0
  157. data/lib/tasks/seed.rake +7 -0
  158. data/spec/dummy/Rakefile +6 -0
  159. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  160. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  161. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  162. data/spec/dummy/app/controllers/exo/admin/customs_controller.rb +7 -0
  163. data/spec/dummy/app/controllers/my_app/site_customs_controller.rb +10 -0
  164. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  165. data/spec/dummy/app/views/a_sierra_theme/a_page.html.haml +1 -0
  166. data/spec/dummy/app/views/a_sierra_theme/a_page_with_block.html.haml +3 -0
  167. data/spec/dummy/app/views/demo/home.html.haml +3 -0
  168. data/spec/dummy/app/views/demo/posts/show.html.haml +3 -0
  169. data/spec/dummy/app/views/exo/admin/customs/index.html.haml +1 -0
  170. data/spec/dummy/app/views/layouts/a_sierra_theme/application.html.erb +14 -0
  171. data/spec/dummy/app/views/layouts/demo/application.html.haml +11 -0
  172. data/spec/dummy/app/views/my_app/site_customs/index.html.haml +1 -0
  173. data/spec/dummy/bin/bundle +3 -0
  174. data/spec/dummy/bin/rails +4 -0
  175. data/spec/dummy/bin/rake +4 -0
  176. data/spec/dummy/config/application.rb +27 -0
  177. data/spec/dummy/config/boot.rb +5 -0
  178. data/spec/dummy/config/database.yml +25 -0
  179. data/spec/dummy/config/environment.rb +5 -0
  180. data/spec/dummy/config/environments/development.rb +29 -0
  181. data/spec/dummy/config/environments/production.rb +80 -0
  182. data/spec/dummy/config/environments/test.rb +36 -0
  183. data/spec/dummy/config/exo/demo.yml +13 -0
  184. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  185. data/spec/dummy/config/initializers/exo.rb +3 -0
  186. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  187. data/spec/dummy/config/initializers/inflections.rb +16 -0
  188. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  189. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  190. data/spec/dummy/config/initializers/session_store.rb +3 -0
  191. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  192. data/spec/dummy/config/locales/en.yml +23 -0
  193. data/spec/dummy/config/mongoid.yml +78 -0
  194. data/spec/dummy/config/routes.rb +14 -0
  195. data/spec/dummy/config.ru +4 -0
  196. data/spec/dummy/log/development.log +16106 -0
  197. data/spec/dummy/log/test.log +0 -0
  198. data/spec/dummy/public/404.html +58 -0
  199. data/spec/dummy/public/422.html +58 -0
  200. data/spec/dummy/public/500.html +57 -0
  201. data/spec/dummy/public/favicon.ico +0 -0
  202. data/spec/dummy/tmp/cache/assets/development/sass/02ac2db4c4233a0290d18f376407059bb8c9d43c/colorize.sassc +0 -0
  203. data/spec/dummy/tmp/cache/assets/development/sass/02ac2db4c4233a0290d18f376407059bb8c9d43c/content.sassc +0 -0
  204. data/spec/dummy/tmp/cache/assets/development/sass/02ac2db4c4233a0290d18f376407059bb8c9d43c/header.sassc +0 -0
  205. data/spec/dummy/tmp/cache/assets/development/sass/02ac2db4c4233a0290d18f376407059bb8c9d43c/sidebar.sassc +0 -0
  206. data/spec/dummy/tmp/cache/assets/development/sass/02ac2db4c4233a0290d18f376407059bb8c9d43c/tables.sassc +0 -0
  207. data/spec/dummy/tmp/cache/assets/development/sass/1117950fc1adf8b31294376d9067eb7feadc7de0/colorize.sassc +0 -0
  208. data/spec/dummy/tmp/cache/assets/development/sass/1117950fc1adf8b31294376d9067eb7feadc7de0/content.sassc +0 -0
  209. data/spec/dummy/tmp/cache/assets/development/sass/1117950fc1adf8b31294376d9067eb7feadc7de0/header.sassc +0 -0
  210. data/spec/dummy/tmp/cache/assets/development/sass/1117950fc1adf8b31294376d9067eb7feadc7de0/sidebar.sassc +0 -0
  211. data/spec/dummy/tmp/cache/assets/development/sass/1117950fc1adf8b31294376d9067eb7feadc7de0/tables.sassc +0 -0
  212. data/spec/dummy/tmp/cache/assets/development/sass/1117950fc1adf8b31294376d9067eb7feadc7de0/wrapper.sassc +0 -0
  213. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_accordion.scssc +0 -0
  214. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_alert-boxes.scssc +0 -0
  215. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_block-grid.scssc +0 -0
  216. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_breadcrumbs.scssc +0 -0
  217. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_button-groups.scssc +0 -0
  218. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_buttons.scssc +0 -0
  219. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_clearing.scssc +0 -0
  220. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_dropdown-buttons.scssc +0 -0
  221. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_dropdown.scssc +0 -0
  222. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_flex-video.scssc +0 -0
  223. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_forms.scssc +0 -0
  224. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_global.scssc +0 -0
  225. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_grid.scssc +0 -0
  226. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_inline-lists.scssc +0 -0
  227. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_joyride.scssc +0 -0
  228. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_keystrokes.scssc +0 -0
  229. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_labels.scssc +0 -0
  230. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_magellan.scssc +0 -0
  231. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_offcanvas.scssc +0 -0
  232. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_orbit.scssc +0 -0
  233. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_pagination.scssc +0 -0
  234. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_panels.scssc +0 -0
  235. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_pricing-tables.scssc +0 -0
  236. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_progress-bars.scssc +0 -0
  237. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_reveal.scssc +0 -0
  238. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_side-nav.scssc +0 -0
  239. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_split-buttons.scssc +0 -0
  240. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_sub-nav.scssc +0 -0
  241. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_switch.scssc +0 -0
  242. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_tables.scssc +0 -0
  243. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_tabs.scssc +0 -0
  244. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_thumbs.scssc +0 -0
  245. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_tooltips.scssc +0 -0
  246. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_top-bar.scssc +0 -0
  247. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_type.scssc +0 -0
  248. data/spec/dummy/tmp/cache/assets/development/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_visibility.scssc +0 -0
  249. data/spec/dummy/tmp/cache/assets/development/sass/54bc91a8b995104fa44ba264c53dbd8d0a6ce1eb/font-awesome.css.erbc +0 -0
  250. data/spec/dummy/tmp/cache/assets/development/sass/868bdcd3c8e6bd73d750879e972f235f451b00af/application.sassc +0 -0
  251. data/spec/dummy/tmp/cache/assets/development/sass/868bdcd3c8e6bd73d750879e972f235f451b00af/foundation_and_overrides.scssc +0 -0
  252. data/spec/dummy/tmp/cache/assets/development/sass/868bdcd3c8e6bd73d750879e972f235f451b00af/responsive-tables.cssc +0 -0
  253. data/spec/dummy/tmp/cache/assets/development/sass/8b743f22fdd8d5759b06979128c44050617d3f73/_functions.scssc +0 -0
  254. data/spec/dummy/tmp/cache/assets/development/sass/e0f19c3e3433ffd972f6483c2c2cebc0799332b3/application.sassc +0 -0
  255. data/spec/dummy/tmp/cache/assets/development/sass/e0f19c3e3433ffd972f6483c2c2cebc0799332b3/foundation_and_overrides.scssc +0 -0
  256. data/spec/dummy/tmp/cache/assets/development/sass/e0f19c3e3433ffd972f6483c2c2cebc0799332b3/responsive-tables.cssc +0 -0
  257. data/spec/dummy/tmp/cache/assets/development/sass/f3df6673492a24d914db00517c65da0ef5b69493/foundation.scssc +0 -0
  258. data/spec/dummy/tmp/cache/assets/development/sprockets/0123c70bd5e30312ff515d82eb213b31 +0 -0
  259. data/spec/dummy/tmp/cache/assets/development/sprockets/017471d0ab6ff8d09517b238fe3e7c74 +0 -0
  260. data/spec/dummy/tmp/cache/assets/development/sprockets/01abbc5a8fe11302981249d2cba594c0 +0 -0
  261. data/spec/dummy/tmp/cache/assets/development/sprockets/06d7650b175d7850bc0819d0411e6c0d +0 -0
  262. data/spec/dummy/tmp/cache/assets/development/sprockets/0b8cbd6c43ff11ed3ab96976a2e98e2b +0 -0
  263. data/spec/dummy/tmp/cache/assets/development/sprockets/0d6d0302ec5d1661cb20ead3e3cfe729 +0 -0
  264. data/spec/dummy/tmp/cache/assets/development/sprockets/0e0e73dbc12f68468bc9813d331495fb +0 -0
  265. data/spec/dummy/tmp/cache/assets/development/sprockets/12134b245bdcf4dfc47cdd9b2fd05f85 +0 -0
  266. data/spec/dummy/tmp/cache/assets/development/sprockets/142b7b2297d55a50c6d15fd20457cd59 +0 -0
  267. data/spec/dummy/tmp/cache/assets/development/sprockets/183ad03b62e09a44e33c6a89e49be502 +0 -0
  268. data/spec/dummy/tmp/cache/assets/development/sprockets/18c44637348179373a9122410e9dd97f +0 -0
  269. data/spec/dummy/tmp/cache/assets/development/sprockets/1cca26710c02dc6d0fa2b562b7fd4402 +0 -0
  270. data/spec/dummy/tmp/cache/assets/development/sprockets/1cf836008e16cfe5e1057d9f8eda6957 +0 -0
  271. data/spec/dummy/tmp/cache/assets/development/sprockets/23dd3f3a5bc3511847dbe6fc5c7a2baf +0 -0
  272. data/spec/dummy/tmp/cache/assets/development/sprockets/24b1f3579f65df49c0801f4abd62b0ea +0 -0
  273. data/spec/dummy/tmp/cache/assets/development/sprockets/24cee8f6e43f5162d55fd1dcb8387207 +0 -0
  274. data/spec/dummy/tmp/cache/assets/development/sprockets/25909c1bc6f6dc8570bba1f681a299f3 +0 -0
  275. data/spec/dummy/tmp/cache/assets/development/sprockets/262d063e267800f380425e714dfb7377 +0 -0
  276. data/spec/dummy/tmp/cache/assets/development/sprockets/27cec58cf4ba029687152cedc2fb4f31 +0 -0
  277. data/spec/dummy/tmp/cache/assets/development/sprockets/2868201e7752aa2d76c04d6807493e17 +0 -0
  278. data/spec/dummy/tmp/cache/assets/development/sprockets/2bd6f962abf45ed50b78d14ba0904581 +0 -0
  279. data/spec/dummy/tmp/cache/assets/development/sprockets/2d93710bc1b018dbbf68607d1b862b19 +0 -0
  280. data/spec/dummy/tmp/cache/assets/development/sprockets/3176c16477eed7502d9646e03412a047 +0 -0
  281. data/spec/dummy/tmp/cache/assets/development/sprockets/3360fbdb00ed8ef59706becb7dbb41e4 +0 -0
  282. data/spec/dummy/tmp/cache/assets/development/sprockets/34f82b1703cb8350ca18f16392967779 +0 -0
  283. data/spec/dummy/tmp/cache/assets/development/sprockets/3cde31b62e801f1864e3566e83c43dfc +0 -0
  284. data/spec/dummy/tmp/cache/assets/development/sprockets/3f13b6783888bfdb18d8c58b24f62606 +0 -0
  285. data/spec/dummy/tmp/cache/assets/development/sprockets/3f2f49fd9b6431526dee6aaf69dc8dc0 +0 -0
  286. data/spec/dummy/tmp/cache/assets/development/sprockets/447161da5ee42f4d3b0702a328975499 +0 -0
  287. data/spec/dummy/tmp/cache/assets/development/sprockets/44920eab3d362e37f9841d9e5adb59f9 +0 -0
  288. data/spec/dummy/tmp/cache/assets/development/sprockets/4887510ef9b27d0f87d2fcdad555fa2c +0 -0
  289. data/spec/dummy/tmp/cache/assets/development/sprockets/4c363b6936cf63c23770ad8490f24dca +0 -0
  290. data/spec/dummy/tmp/cache/assets/development/sprockets/4cef1887720ac882dcc3c407779b5cc6 +0 -0
  291. data/spec/dummy/tmp/cache/assets/development/sprockets/4f53b61a3cb95e2cbe41669c8e52a6e9 +0 -0
  292. data/spec/dummy/tmp/cache/assets/development/sprockets/59f85eee3687eb4ed457a687daec4864 +0 -0
  293. data/spec/dummy/tmp/cache/assets/development/sprockets/5e3f3fcd99b13708971f707016d43020 +0 -0
  294. data/spec/dummy/tmp/cache/assets/development/sprockets/5e9e6e4b1c4bb6da2f89517e17fdca8b +0 -0
  295. data/spec/dummy/tmp/cache/assets/development/sprockets/5ea76ce82eaf44306e67d57bd758126e +0 -0
  296. data/spec/dummy/tmp/cache/assets/development/sprockets/65602f2f2646ac35105f3ee8fe0bb8c3 +0 -0
  297. data/spec/dummy/tmp/cache/assets/development/sprockets/676293868de93b34edf64d211de01c51 +0 -0
  298. data/spec/dummy/tmp/cache/assets/development/sprockets/6aa2f8ad895ab9c85a6adaa546654be7 +0 -0
  299. data/spec/dummy/tmp/cache/assets/development/sprockets/6df5499acca0edd86677d5beec5c2b18 +0 -0
  300. data/spec/dummy/tmp/cache/assets/development/sprockets/7124dbdd12afd3bc07d58a0ec3dddc65 +0 -0
  301. data/spec/dummy/tmp/cache/assets/development/sprockets/727bcd360e44edbb990ea53347896a64 +0 -0
  302. data/spec/dummy/tmp/cache/assets/development/sprockets/76d85daa1c4000f529bf26504ebde8d9 +0 -0
  303. data/spec/dummy/tmp/cache/assets/development/sprockets/7a776312a5e143757ba6fddbc33d3569 +0 -0
  304. data/spec/dummy/tmp/cache/assets/development/sprockets/7b2ab31b2e6b523c32133b2ccd942519 +0 -0
  305. data/spec/dummy/tmp/cache/assets/development/sprockets/7f3979d7c79893750db9cc673b603964 +0 -0
  306. data/spec/dummy/tmp/cache/assets/development/sprockets/7fd0671e74c96f97acc46cf12b97d34f +0 -0
  307. data/spec/dummy/tmp/cache/assets/development/sprockets/808539184f4890b8bc0cd62ddaae16f5 +0 -0
  308. data/spec/dummy/tmp/cache/assets/development/sprockets/818cac0ff4010d81cb9e6a2c5a17f494 +0 -0
  309. data/spec/dummy/tmp/cache/assets/development/sprockets/892ddb9c90db88e3c27b9bcdf13cc874 +0 -0
  310. data/spec/dummy/tmp/cache/assets/development/sprockets/8995a544bd8d9493c79f811452bc53c1 +0 -0
  311. data/spec/dummy/tmp/cache/assets/development/sprockets/8c37b2f2c33ead52769fac2c7aed8483 +0 -0
  312. data/spec/dummy/tmp/cache/assets/development/sprockets/911cbd3125fce783b8020caeb73c3d63 +0 -0
  313. data/spec/dummy/tmp/cache/assets/development/sprockets/9125c95d28b56e41a01d40a3ac95b3a1 +0 -0
  314. data/spec/dummy/tmp/cache/assets/development/sprockets/916fb1d316cf3a47b5fb8750981d020d +0 -0
  315. data/spec/dummy/tmp/cache/assets/development/sprockets/9a65689623c3096b82dd97819ef02b79 +0 -0
  316. data/spec/dummy/tmp/cache/assets/development/sprockets/9fb3b25a6094ba7546ef5d57ff154168 +0 -0
  317. data/spec/dummy/tmp/cache/assets/development/sprockets/a96fdd6e9cbae9c2f20789797d959cec +0 -0
  318. data/spec/dummy/tmp/cache/assets/development/sprockets/aaf89432055b14102caf4b80b7119d89 +0 -0
  319. data/spec/dummy/tmp/cache/assets/development/sprockets/ab360497106ba942135a8adee9a5d590 +0 -0
  320. data/spec/dummy/tmp/cache/assets/development/sprockets/ad82812e3dc354abb67d844dd84bf3cc +0 -0
  321. data/spec/dummy/tmp/cache/assets/development/sprockets/afb9268b0a27b448fa720fbbc0bb9628 +0 -0
  322. data/spec/dummy/tmp/cache/assets/development/sprockets/afec8da62e80022371c6a4bd3b0b8f9c +0 -0
  323. data/spec/dummy/tmp/cache/assets/development/sprockets/b0d34688aa81dc13171af7ebc2f6dda8 +0 -0
  324. data/spec/dummy/tmp/cache/assets/development/sprockets/b1ffcbb1bdbbfb46264e1f4b71d5dcf4 +0 -0
  325. data/spec/dummy/tmp/cache/assets/development/sprockets/b30e4385f999fefded784baa3436ecd3 +0 -0
  326. data/spec/dummy/tmp/cache/assets/development/sprockets/b4306f0aa05caff091d0998f73413207 +0 -0
  327. data/spec/dummy/tmp/cache/assets/development/sprockets/b682063a22ac7898fb5fab4c62304705 +0 -0
  328. data/spec/dummy/tmp/cache/assets/development/sprockets/b9df96c25252b82da00791df6d017199 +0 -0
  329. data/spec/dummy/tmp/cache/assets/development/sprockets/bab9d2b1312356b02c042aa46731369e +0 -0
  330. data/spec/dummy/tmp/cache/assets/development/sprockets/bc2974a23dfae3959d75891cba8e32f0 +0 -0
  331. data/spec/dummy/tmp/cache/assets/development/sprockets/bdebcd2a8dbc156cff64abc02cd9e669 +0 -0
  332. data/spec/dummy/tmp/cache/assets/development/sprockets/c08bb167930ddaf0637f6bb96a02f85f +0 -0
  333. data/spec/dummy/tmp/cache/assets/development/sprockets/c097d88a1c22b3559f635ed573e4f48f +0 -0
  334. data/spec/dummy/tmp/cache/assets/development/sprockets/c4a4a83aca2e4e9e987ec76930c664e7 +0 -0
  335. data/spec/dummy/tmp/cache/assets/development/sprockets/c4fcfae26eaf97324dd20db9b9e6e259 +0 -0
  336. data/spec/dummy/tmp/cache/assets/development/sprockets/c5b02654a71cc6e5646941d266964c8a +0 -0
  337. data/spec/dummy/tmp/cache/assets/development/sprockets/ca6ae3b0212906e203a675ad02a7729e +0 -0
  338. data/spec/dummy/tmp/cache/assets/development/sprockets/d081c4fcdb728213519ed45cd995eb11 +0 -0
  339. data/spec/dummy/tmp/cache/assets/development/sprockets/d0dd43eb5157bf58a581d451b38b381b +0 -0
  340. data/spec/dummy/tmp/cache/assets/development/sprockets/d15ce5f6879e59975286ede4318a248e +0 -0
  341. data/spec/dummy/tmp/cache/assets/development/sprockets/d340ed6abb07538c8a7f5628f96a321c +0 -0
  342. data/spec/dummy/tmp/cache/assets/development/sprockets/dbd4c6c705c6eef71f281c5f10aa1c12 +0 -0
  343. data/spec/dummy/tmp/cache/assets/development/sprockets/e3efb6f18e9d6f7f1f7a2bfdb4a616d3 +0 -0
  344. data/spec/dummy/tmp/cache/assets/development/sprockets/e868832c39075b1130b5eb600824cabf +0 -0
  345. data/spec/dummy/tmp/cache/assets/development/sprockets/e94c184030f553c4dba8000a3112597c +0 -0
  346. data/spec/dummy/tmp/cache/assets/development/sprockets/efdfaf9c072c61f54f6fe482990d4901 +0 -0
  347. data/spec/dummy/tmp/cache/assets/development/sprockets/f3a1c84ec35a01045bb6b638d1fd975f +0 -0
  348. data/spec/dummy/tmp/cache/assets/development/sprockets/f444a8ac8dfe6e3fecd2ee1b3eb660d2 +0 -0
  349. data/spec/dummy/tmp/cache/assets/development/sprockets/f5cb53dda9311da5c302df8dde1b98f0 +0 -0
  350. data/spec/dummy/tmp/cache/assets/development/sprockets/f873fbedb1dd78144b7a2d9203979b73 +0 -0
  351. data/spec/dummy/tmp/cache/assets/development/sprockets/f94211d95775b7b113ff83fbab9d96e5 +0 -0
  352. data/spec/dummy/tmp/cache/assets/development/sprockets/fd421c922607b7e36737167c1d5f12f4 +0 -0
  353. data/spec/dummy/tmp/cache/assets/development/sprockets/fde03b35c3de27e23e356c238f398a51 +0 -0
  354. data/spec/dummy/tmp/cache/assets/development/sprockets/fe26af7b1d422e2d98a6f52452bc8576 +0 -0
  355. data/spec/dummy/tmp/cache/assets/development/sprockets/fe2acad4ddcdce6fe73b2deba6fc235d +0 -0
  356. data/spec/dummy/tmp/cache/assets/test/sass/02ac2db4c4233a0290d18f376407059bb8c9d43c/colorize.sassc +0 -0
  357. data/spec/dummy/tmp/cache/assets/test/sass/02ac2db4c4233a0290d18f376407059bb8c9d43c/content.sassc +0 -0
  358. data/spec/dummy/tmp/cache/assets/test/sass/02ac2db4c4233a0290d18f376407059bb8c9d43c/header.sassc +0 -0
  359. data/spec/dummy/tmp/cache/assets/test/sass/02ac2db4c4233a0290d18f376407059bb8c9d43c/sidebar.sassc +0 -0
  360. data/spec/dummy/tmp/cache/assets/test/sass/02ac2db4c4233a0290d18f376407059bb8c9d43c/tables.sassc +0 -0
  361. data/spec/dummy/tmp/cache/assets/test/sass/1117950fc1adf8b31294376d9067eb7feadc7de0/colorize.sassc +0 -0
  362. data/spec/dummy/tmp/cache/assets/test/sass/1117950fc1adf8b31294376d9067eb7feadc7de0/content.sassc +0 -0
  363. data/spec/dummy/tmp/cache/assets/test/sass/1117950fc1adf8b31294376d9067eb7feadc7de0/header.sassc +0 -0
  364. data/spec/dummy/tmp/cache/assets/test/sass/1117950fc1adf8b31294376d9067eb7feadc7de0/sidebar.sassc +0 -0
  365. data/spec/dummy/tmp/cache/assets/test/sass/1117950fc1adf8b31294376d9067eb7feadc7de0/tables.sassc +0 -0
  366. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_accordion.scssc +0 -0
  367. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_alert-boxes.scssc +0 -0
  368. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_block-grid.scssc +0 -0
  369. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_breadcrumbs.scssc +0 -0
  370. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_button-groups.scssc +0 -0
  371. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_buttons.scssc +0 -0
  372. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_clearing.scssc +0 -0
  373. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_dropdown-buttons.scssc +0 -0
  374. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_dropdown.scssc +0 -0
  375. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_flex-video.scssc +0 -0
  376. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_forms.scssc +0 -0
  377. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_global.scssc +0 -0
  378. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_grid.scssc +0 -0
  379. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_inline-lists.scssc +0 -0
  380. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_joyride.scssc +0 -0
  381. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_keystrokes.scssc +0 -0
  382. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_labels.scssc +0 -0
  383. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_magellan.scssc +0 -0
  384. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_offcanvas.scssc +0 -0
  385. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_orbit.scssc +0 -0
  386. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_pagination.scssc +0 -0
  387. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_panels.scssc +0 -0
  388. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_pricing-tables.scssc +0 -0
  389. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_progress-bars.scssc +0 -0
  390. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_reveal.scssc +0 -0
  391. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_side-nav.scssc +0 -0
  392. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_split-buttons.scssc +0 -0
  393. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_sub-nav.scssc +0 -0
  394. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_switch.scssc +0 -0
  395. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_tables.scssc +0 -0
  396. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_tabs.scssc +0 -0
  397. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_thumbs.scssc +0 -0
  398. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_tooltips.scssc +0 -0
  399. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_top-bar.scssc +0 -0
  400. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_type.scssc +0 -0
  401. data/spec/dummy/tmp/cache/assets/test/sass/4d2c02410fd2c7d987069b7a4033b725cb831f1f/_visibility.scssc +0 -0
  402. data/spec/dummy/tmp/cache/assets/test/sass/54bc91a8b995104fa44ba264c53dbd8d0a6ce1eb/font-awesome.css.erbc +0 -0
  403. data/spec/dummy/tmp/cache/assets/test/sass/868bdcd3c8e6bd73d750879e972f235f451b00af/application.sassc +0 -0
  404. data/spec/dummy/tmp/cache/assets/test/sass/868bdcd3c8e6bd73d750879e972f235f451b00af/foundation_and_overrides.scssc +0 -0
  405. data/spec/dummy/tmp/cache/assets/test/sass/868bdcd3c8e6bd73d750879e972f235f451b00af/responsive-tables.cssc +0 -0
  406. data/spec/dummy/tmp/cache/assets/test/sass/8b743f22fdd8d5759b06979128c44050617d3f73/_functions.scssc +0 -0
  407. data/spec/dummy/tmp/cache/assets/test/sass/e0f19c3e3433ffd972f6483c2c2cebc0799332b3/application.sassc +0 -0
  408. data/spec/dummy/tmp/cache/assets/test/sass/e0f19c3e3433ffd972f6483c2c2cebc0799332b3/foundation_and_overrides.scssc +0 -0
  409. data/spec/dummy/tmp/cache/assets/test/sass/e0f19c3e3433ffd972f6483c2c2cebc0799332b3/responsive-tables.cssc +0 -0
  410. data/spec/dummy/tmp/cache/assets/test/sass/f3df6673492a24d914db00517c65da0ef5b69493/foundation.scssc +0 -0
  411. data/spec/dummy/tmp/cache/assets/test/sprockets/0123c70bd5e30312ff515d82eb213b31 +0 -0
  412. data/spec/dummy/tmp/cache/assets/test/sprockets/017471d0ab6ff8d09517b238fe3e7c74 +0 -0
  413. data/spec/dummy/tmp/cache/assets/test/sprockets/01abbc5a8fe11302981249d2cba594c0 +0 -0
  414. data/spec/dummy/tmp/cache/assets/test/sprockets/0436b299d86917aa132d8d63a5d974b8 +0 -0
  415. data/spec/dummy/tmp/cache/assets/test/sprockets/0b8cbd6c43ff11ed3ab96976a2e98e2b +0 -0
  416. data/spec/dummy/tmp/cache/assets/test/sprockets/0d6d0302ec5d1661cb20ead3e3cfe729 +0 -0
  417. data/spec/dummy/tmp/cache/assets/test/sprockets/0e0e73dbc12f68468bc9813d331495fb +0 -0
  418. data/spec/dummy/tmp/cache/assets/test/sprockets/12134b245bdcf4dfc47cdd9b2fd05f85 +0 -0
  419. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  420. data/spec/dummy/tmp/cache/assets/test/sprockets/183ad03b62e09a44e33c6a89e49be502 +0 -0
  421. data/spec/dummy/tmp/cache/assets/test/sprockets/18c44637348179373a9122410e9dd97f +0 -0
  422. data/spec/dummy/tmp/cache/assets/test/sprockets/1cca26710c02dc6d0fa2b562b7fd4402 +0 -0
  423. data/spec/dummy/tmp/cache/assets/test/sprockets/1cf836008e16cfe5e1057d9f8eda6957 +0 -0
  424. data/spec/dummy/tmp/cache/assets/test/sprockets/24b1f3579f65df49c0801f4abd62b0ea +0 -0
  425. data/spec/dummy/tmp/cache/assets/test/sprockets/24cee8f6e43f5162d55fd1dcb8387207 +0 -0
  426. data/spec/dummy/tmp/cache/assets/test/sprockets/25909c1bc6f6dc8570bba1f681a299f3 +0 -0
  427. data/spec/dummy/tmp/cache/assets/test/sprockets/262d063e267800f380425e714dfb7377 +0 -0
  428. data/spec/dummy/tmp/cache/assets/test/sprockets/26df301c0de83087195edeb5e88bde36 +0 -0
  429. data/spec/dummy/tmp/cache/assets/test/sprockets/27cec58cf4ba029687152cedc2fb4f31 +0 -0
  430. data/spec/dummy/tmp/cache/assets/test/sprockets/2868201e7752aa2d76c04d6807493e17 +0 -0
  431. data/spec/dummy/tmp/cache/assets/test/sprockets/2bd6f962abf45ed50b78d14ba0904581 +0 -0
  432. data/spec/dummy/tmp/cache/assets/test/sprockets/2d93710bc1b018dbbf68607d1b862b19 +0 -0
  433. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  434. data/spec/dummy/tmp/cache/assets/test/sprockets/3360fbdb00ed8ef59706becb7dbb41e4 +0 -0
  435. data/spec/dummy/tmp/cache/assets/test/sprockets/34f82b1703cb8350ca18f16392967779 +0 -0
  436. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  437. data/spec/dummy/tmp/cache/assets/test/sprockets/3cde31b62e801f1864e3566e83c43dfc +0 -0
  438. data/spec/dummy/tmp/cache/assets/test/sprockets/3f2f49fd9b6431526dee6aaf69dc8dc0 +0 -0
  439. data/spec/dummy/tmp/cache/assets/test/sprockets/447161da5ee42f4d3b0702a328975499 +0 -0
  440. data/spec/dummy/tmp/cache/assets/test/sprockets/44920eab3d362e37f9841d9e5adb59f9 +0 -0
  441. data/spec/dummy/tmp/cache/assets/test/sprockets/4887510ef9b27d0f87d2fcdad555fa2c +0 -0
  442. data/spec/dummy/tmp/cache/assets/test/sprockets/4c363b6936cf63c23770ad8490f24dca +0 -0
  443. data/spec/dummy/tmp/cache/assets/test/sprockets/4cef1887720ac882dcc3c407779b5cc6 +0 -0
  444. data/spec/dummy/tmp/cache/assets/test/sprockets/4f53b61a3cb95e2cbe41669c8e52a6e9 +0 -0
  445. data/spec/dummy/tmp/cache/assets/test/sprockets/59f85eee3687eb4ed457a687daec4864 +0 -0
  446. data/spec/dummy/tmp/cache/assets/test/sprockets/5e3f3fcd99b13708971f707016d43020 +0 -0
  447. data/spec/dummy/tmp/cache/assets/test/sprockets/5e9e6e4b1c4bb6da2f89517e17fdca8b +0 -0
  448. data/spec/dummy/tmp/cache/assets/test/sprockets/65602f2f2646ac35105f3ee8fe0bb8c3 +0 -0
  449. data/spec/dummy/tmp/cache/assets/test/sprockets/676293868de93b34edf64d211de01c51 +0 -0
  450. data/spec/dummy/tmp/cache/assets/test/sprockets/6aa2f8ad895ab9c85a6adaa546654be7 +0 -0
  451. data/spec/dummy/tmp/cache/assets/test/sprockets/6df5499acca0edd86677d5beec5c2b18 +0 -0
  452. data/spec/dummy/tmp/cache/assets/test/sprockets/7124dbdd12afd3bc07d58a0ec3dddc65 +0 -0
  453. data/spec/dummy/tmp/cache/assets/test/sprockets/76d85daa1c4000f529bf26504ebde8d9 +0 -0
  454. data/spec/dummy/tmp/cache/assets/test/sprockets/7a776312a5e143757ba6fddbc33d3569 +0 -0
  455. data/spec/dummy/tmp/cache/assets/test/sprockets/7f3979d7c79893750db9cc673b603964 +0 -0
  456. data/spec/dummy/tmp/cache/assets/test/sprockets/7fd0671e74c96f97acc46cf12b97d34f +0 -0
  457. data/spec/dummy/tmp/cache/assets/test/sprockets/808539184f4890b8bc0cd62ddaae16f5 +0 -0
  458. data/spec/dummy/tmp/cache/assets/test/sprockets/892ddb9c90db88e3c27b9bcdf13cc874 +0 -0
  459. data/spec/dummy/tmp/cache/assets/test/sprockets/8995a544bd8d9493c79f811452bc53c1 +0 -0
  460. data/spec/dummy/tmp/cache/assets/test/sprockets/8c37b2f2c33ead52769fac2c7aed8483 +0 -0
  461. data/spec/dummy/tmp/cache/assets/test/sprockets/911cbd3125fce783b8020caeb73c3d63 +0 -0
  462. data/spec/dummy/tmp/cache/assets/test/sprockets/9125c95d28b56e41a01d40a3ac95b3a1 +0 -0
  463. data/spec/dummy/tmp/cache/assets/test/sprockets/916fb1d316cf3a47b5fb8750981d020d +0 -0
  464. data/spec/dummy/tmp/cache/assets/test/sprockets/9a65689623c3096b82dd97819ef02b79 +0 -0
  465. data/spec/dummy/tmp/cache/assets/test/sprockets/9fb3b25a6094ba7546ef5d57ff154168 +0 -0
  466. data/spec/dummy/tmp/cache/assets/test/sprockets/ad82812e3dc354abb67d844dd84bf3cc +0 -0
  467. data/spec/dummy/tmp/cache/assets/test/sprockets/afec8da62e80022371c6a4bd3b0b8f9c +0 -0
  468. data/spec/dummy/tmp/cache/assets/test/sprockets/b1ffcbb1bdbbfb46264e1f4b71d5dcf4 +0 -0
  469. data/spec/dummy/tmp/cache/assets/test/sprockets/b30e4385f999fefded784baa3436ecd3 +0 -0
  470. data/spec/dummy/tmp/cache/assets/test/sprockets/b682063a22ac7898fb5fab4c62304705 +0 -0
  471. data/spec/dummy/tmp/cache/assets/test/sprockets/b9df96c25252b82da00791df6d017199 +0 -0
  472. data/spec/dummy/tmp/cache/assets/test/sprockets/bab9d2b1312356b02c042aa46731369e +0 -0
  473. data/spec/dummy/tmp/cache/assets/test/sprockets/bc2974a23dfae3959d75891cba8e32f0 +0 -0
  474. data/spec/dummy/tmp/cache/assets/test/sprockets/bdebcd2a8dbc156cff64abc02cd9e669 +0 -0
  475. data/spec/dummy/tmp/cache/assets/test/sprockets/c4a4a83aca2e4e9e987ec76930c664e7 +0 -0
  476. data/spec/dummy/tmp/cache/assets/test/sprockets/c4fcfae26eaf97324dd20db9b9e6e259 +0 -0
  477. data/spec/dummy/tmp/cache/assets/test/sprockets/ca6ae3b0212906e203a675ad02a7729e +0 -0
  478. data/spec/dummy/tmp/cache/assets/test/sprockets/ccf123d21b7729fcc4a32f35152ad7ea +0 -0
  479. data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  480. data/spec/dummy/tmp/cache/assets/test/sprockets/d081c4fcdb728213519ed45cd995eb11 +0 -0
  481. data/spec/dummy/tmp/cache/assets/test/sprockets/d15ce5f6879e59975286ede4318a248e +0 -0
  482. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  483. data/spec/dummy/tmp/cache/assets/test/sprockets/dbd4c6c705c6eef71f281c5f10aa1c12 +0 -0
  484. data/spec/dummy/tmp/cache/assets/test/sprockets/e3efb6f18e9d6f7f1f7a2bfdb4a616d3 +0 -0
  485. data/spec/dummy/tmp/cache/assets/test/sprockets/e868832c39075b1130b5eb600824cabf +0 -0
  486. data/spec/dummy/tmp/cache/assets/test/sprockets/f3a1c84ec35a01045bb6b638d1fd975f +0 -0
  487. data/spec/dummy/tmp/cache/assets/test/sprockets/f444a8ac8dfe6e3fecd2ee1b3eb660d2 +0 -0
  488. data/spec/dummy/tmp/cache/assets/test/sprockets/f5cb53dda9311da5c302df8dde1b98f0 +0 -0
  489. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  490. data/spec/dummy/tmp/cache/assets/test/sprockets/f94211d95775b7b113ff83fbab9d96e5 +0 -0
  491. data/spec/dummy/tmp/cache/assets/test/sprockets/fd421c922607b7e36737167c1d5f12f4 +0 -0
  492. data/spec/dummy/tmp/cache/assets/test/sprockets/fde03b35c3de27e23e356c238f398a51 +0 -0
  493. data/spec/dummy/tmp/cache/assets/test/sprockets/fe26af7b1d422e2d98a6f52452bc8576 +0 -0
  494. data/spec/dummy/tmp/pids/server.pid +1 -0
  495. data/spec/features/admin/collaborators/sign_in_spec.rb +17 -0
  496. data/spec/features/admin/custom/global_service_controller_spec.rb +22 -0
  497. data/spec/features/admin/custom/sidebar_services_spec.rb +29 -0
  498. data/spec/features/admin/custom/site_service_controller_spec.rb +37 -0
  499. data/spec/features/admin/domains/domian_routing_spec.rb +34 -0
  500. data/spec/features/admin/routes/details_spec.rb +24 -0
  501. data/spec/features/front/domain_routing_spec.rb +34 -0
  502. data/spec/features/front/page_blocks/defined_spec.rb +30 -0
  503. data/spec/features/front/page_blocks/undefined_spec.rb +19 -0
  504. data/spec/features/front/routes/page_spec.rb +18 -0
  505. data/spec/features/front/routes/redirection_spec.rb +19 -0
  506. data/spec/models/sierra/contributor_spec.rb +7 -0
  507. data/spec/models/sierra/site_spec.rb +37 -0
  508. data/spec/spec_helper.rb +56 -0
  509. data/spec/support/contributor_support.rb +75 -0
  510. data/spec/support/factories/block_factory.rb +10 -0
  511. data/spec/support/factories/contributor_factory.rb +8 -0
  512. data/spec/support/factories/route_factory.rb +18 -0
  513. data/spec/support/factories/service_factory.rb +6 -0
  514. data/spec/support/factories/site_factory.rb +9 -0
  515. metadata +1583 -0
@@ -0,0 +1,1003 @@
1
+ //
2
+ // FOUNDATION SETTINGS
3
+ //
4
+
5
+ // Uncomment to use rem-calc() in your settings
6
+ // @import "foundation/functions";
7
+
8
+ // $experimental: true;
9
+
10
+ // The default font-size is set to 100% of the browser style sheet (usually 16px)
11
+ // for compatibility with brower-based text zoom or user-set defaults.
12
+
13
+ // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
14
+ // If you want your base font-size to be different and not have it affect the grid breakpoints,
15
+ // set $rem-base to $base-font-size and make sure $base-font-size is a px value.
16
+ // $base-font-size: 100%;
17
+
18
+ // The $base-line-height is 100% while $base-font-size is 150%
19
+ // $base-line-height: 150%;
20
+
21
+ // This is the default html and body font-size for the base rem value.
22
+ // $rem-base: 16px;
23
+
24
+ // We use this to control whether or not CSS classes come through in the gem files.
25
+ // $include-html-classes: true;
26
+ // $include-print-styles: true;
27
+ // $include-html-global-classes: $include-html-classes;
28
+
29
+ // Grid
30
+
31
+ // $include-html-grid-classes: $include-html-classes;
32
+
33
+ // $row-width: rem-calc(1000);
34
+ // $column-gutter: rem-calc(30);
35
+ // $total-columns: 12;
36
+
37
+ // We use these as default colors throughout
38
+ //$primary-color: #39a19d;
39
+ $primary-color: #b391d3;
40
+ $secondary-color: #5a6eb2;
41
+ // $alert-color: #f04124;
42
+ //$success-color: #59d19d;
43
+ $success-color: #9ae161;
44
+
45
+ // We use these to control various global styles
46
+ $body-bg: #ccc;
47
+ $body-font-color: #555;
48
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
49
+ // $body-font-weight: normal;
50
+ // $body-font-style: normal;
51
+
52
+ // We use this to control font-smoothing
53
+ // $font-smoothing: antialiased;
54
+
55
+ // We use these to control text direction settings
56
+ // $text-direction: ltr;
57
+ // $opposite-direction: right;
58
+ // $default-float: left;
59
+
60
+ // We use these to make sure border radius matches unless we want it different.
61
+ // $global-radius: 3px;
62
+ // $global-rounded: 1000px;
63
+
64
+ // We use these to control inset shadow shiny edges and depressions.
65
+ // $shiny-edge-size: 0 1px 0;
66
+ // $shiny-edge-color: rgba(#fff, .5);
67
+ // $shiny-edge-active-color: rgba(#000, .2);
68
+
69
+ // Media Query Ranges
70
+ // $small-range: (0em, 40em);
71
+ // $medium-range: (40.063em, 64em);
72
+ // $large-range: (64.063em, 90em);
73
+ // $xlarge-range: (90.063em, 120em);
74
+ // $xxlarge-range: (120.063em);
75
+
76
+ // $screen: "only screen";
77
+
78
+ // $landscape: "#{$screen} and (orientation: landscape)";
79
+ // $portrait: "#{$screen} and (orientation: portrait)";
80
+
81
+ // $small-up: $screen;
82
+ // $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
83
+
84
+ // $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
85
+ // $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
86
+
87
+ // $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
88
+ // $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
89
+
90
+ // $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
91
+ // $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
92
+
93
+ // $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
94
+ // $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
95
+
96
+ // Legacy
97
+ // $small: $medium-up;
98
+ // $medium: $medium-up;
99
+ // $large: $large-up;
100
+
101
+ //We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
102
+ // $cursor-crosshair-value: crosshair;
103
+ // $cursor-default-value: default;
104
+ // $cursor-pointer-value: pointer;
105
+ // $cursor-help-value: help;
106
+ // $cursor-text-value: text;
107
+
108
+ // Accordion
109
+
110
+ // $include-html-accordion-classes: $include-html-classes;
111
+
112
+ // $accordion-navigation-padding: rem-calc(16);
113
+ // $accordion-navigation-bg-color: #efefef ;
114
+ // $accordion-navigation-hover-bg-color: darken($accordion-navigation-bg-color, 5%);
115
+ // $accordion-navigation-active-bg-color: darken($accordion-navigation-bg-color, 3%);
116
+ // $accordion-navigation-font-color: #222;
117
+ // $accordion-navigation-font-size: rem-calc(16);
118
+ // $accordion-navigation-font-family: $body-font-family;
119
+
120
+ // $accordion-content-padding: $column-gutter/2;
121
+ // $accordion-content-active-bg-color: #fff;
122
+
123
+ // Alert Boxes
124
+
125
+ // $include-html-alert-classes: $include-html-classes;
126
+
127
+ // We use this to control alert padding.
128
+ // $alert-padding-top: rem-calc(14);
129
+ // $alert-padding-default-float: $alert-padding-top;
130
+ // $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
131
+ // $alert-padding-bottom: $alert-padding-top;
132
+
133
+ // We use these to control text style.
134
+ // $alert-font-weight: normal;
135
+ // $alert-font-size: rem-calc(13);
136
+ // $alert-font-color: #fff;
137
+ // $alert-font-color-alt: darken($secondary-color, 60%);
138
+
139
+ // We use this for close hover effect.
140
+ // $alert-function-factor: 5%;
141
+
142
+ // We use these to control border styles.
143
+ // $alert-border-style: solid;
144
+ // $alert-border-width: 1px;
145
+ // $alert-border-color: darken($primary-color, $alert-function-factor);
146
+ // $alert-bottom-margin: rem-calc(20);
147
+
148
+ // We use these to style the close buttons
149
+ // $alert-close-color: #333;
150
+ // $alert-close-position: rem-calc(5);
151
+ // $alert-close-font-size: rem-calc(22);
152
+ // $alert-close-opacity: 0.3;
153
+ // $alert-close-opacity-hover: 0.5;
154
+ // $alert-close-padding: 9px 6px 4px;
155
+
156
+ // We use this to control border radius
157
+ // $alert-radius: $global-radius;
158
+
159
+ // Block Grid
160
+
161
+ // $include-html-grid-classes: $include-html-classes;
162
+
163
+ // We use this to control the maximum number of block grid elements per row
164
+ // $block-grid-elements: 12;
165
+ // $block-grid-default-spacing: rem-calc(20);
166
+
167
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
168
+ // $block-grid-media-queries: true;
169
+
170
+ // Breadcrumbs
171
+
172
+ // $include-html-nav-classes: $include-html-classes;
173
+
174
+ // We use this to set the background color for the breadcrumb container.
175
+ // $crumb-bg: lighten($secondary-color, 5%);
176
+
177
+ // We use these to set the padding around the breadcrumbs.
178
+ // $crumb-padding: rem-calc(9 14 9);
179
+ // $crumb-side-padding: rem-calc(12);
180
+
181
+ // We use these to control border styles.
182
+ // $crumb-function-factor: 10%;
183
+ // $crumb-border-size: 1px;
184
+ // $crumb-border-style: solid;
185
+ // $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
186
+ // $crumb-radius: $global-radius;
187
+
188
+ // We use these to set various text styles for breadcrumbs.
189
+ // $crumb-font-size: rem-calc(11);
190
+ // $crumb-font-color: $primary-color;
191
+ // $crumb-font-color-current: #333;
192
+ // $crumb-font-color-unavailable: #999;
193
+ // $crumb-font-transform: uppercase;
194
+ // $crumb-link-decor: underline;
195
+
196
+ // We use these to control the slash between breadcrumbs
197
+ // $crumb-slash-color: #aaa;
198
+ // $crumb-slash: "/";
199
+
200
+ // Button Groups
201
+
202
+ // $include-html-button-classes: $include-html-classes;
203
+
204
+ // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
205
+ // $button-bar-margin-opposite: rem-calc(10);
206
+ // $button-group-border-width: 1px;
207
+
208
+ // Clearing
209
+
210
+ // $include-html-clearing-classes: $include-html-classes;
211
+
212
+ // We use these to set the background colors for parts of Clearing.
213
+ // $clearing-bg: #333;
214
+ // $clearing-caption-bg: $clearing-bg;
215
+ // $clearing-carousel-bg: rgba (51,51,51,0.8);
216
+ // $clearing-img-bg: $clearing-bg;
217
+
218
+ // We use these to style the close button
219
+ // $clearing-close-color: #ccc;
220
+ // $clearing-close-size: 30px;
221
+
222
+ // We use these to style the arrows
223
+ // $clearing-arrow-size: 12px;
224
+ // $clearing-arrow-color: $clearing-close-color;
225
+
226
+ // We use these to style captions
227
+ // $clearing-caption-font-color: #ccc;
228
+ // $clearing-caption-font-size: 0.875em;
229
+ // $clearing-caption-padding: 10px 30px 20px;
230
+
231
+ // We use these to make the image and carousel height and style
232
+ // $clearing-active-img-height: 85%;
233
+ // $clearing-carousel-height: 120px;
234
+ // $clearing-carousel-thumb-width: 120px;
235
+ // $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
236
+
237
+ // Dropdown
238
+
239
+ // $include-html-button-classes: $include-html-classes;
240
+
241
+ // We use these to controls height and width styles.
242
+ // $f-dropdown-max-width: 200px;
243
+ // $f-dropdown-height: auto;
244
+ // $f-dropdown-max-height: none;
245
+ // $f-dropdown-margin-top: 2px;
246
+
247
+ // We use this to control the background color
248
+ // $f-dropdown-bg: #fff;
249
+
250
+ // We use this to set the border styles for dropdowns.
251
+ // $f-dropdown-border-style: solid;
252
+ // $f-dropdown-border-width: 1px;
253
+ // $f-dropdown-border-color: darken(#fff, 20%);
254
+
255
+ // We use these to style the triangle pip.
256
+ // $f-dropdown-triangle-size: 6px;
257
+ // $f-dropdown-triangle-color: #fff;
258
+ // $f-dropdown-triangle-side-offset: 10px;
259
+
260
+ // We use these to control styles for the list elements.
261
+ // $f-dropdown-list-style: none;
262
+ // $f-dropdown-font-color: #555;
263
+ // $f-dropdown-font-size: rem-calc(14);
264
+ // $f-dropdown-list-padding: rem-calc(5, 10);
265
+ // $f-dropdown-line-height: rem-calc(18);
266
+ // $f-dropdown-list-hover-bg: #eeeeee ;
267
+ // $dropdown-mobile-default-float: 0;
268
+
269
+ // We use this to control the styles for when the dropdown has custom content.
270
+ // $f-dropdown-content-padding: rem-calc(20);
271
+
272
+ // Dropdown Buttons
273
+
274
+ // $include-html-button-classes: $include-html-classes;
275
+
276
+ // We use these to set the color of the pip in dropdown buttons
277
+ // $dropdown-button-pip-color: #fff;
278
+ // $dropdown-button-pip-color-alt: #333;
279
+
280
+ // $button-pip-tny: rem-calc(6);
281
+ // $button-pip-sml: rem-calc(7);
282
+ // $button-pip-med: rem-calc(9);
283
+ // $button-pip-lrg: rem-calc(11);
284
+
285
+ // We use these to style tiny dropdown buttons
286
+ // $dropdown-button-padding-tny: $button-pip-tny * 7;
287
+ // $dropdown-button-pip-size-tny: $button-pip-tny;
288
+ // $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
289
+ // $dropdown-button-pip-top-tny: -$button-pip-tny / 2 + rem-calc(1);
290
+
291
+ // We use these to style small dropdown buttons
292
+ // $dropdown-button-padding-sml: $button-pip-sml * 7;
293
+ // $dropdown-button-pip-size-sml: $button-pip-sml;
294
+ // $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
295
+ // $dropdown-button-pip-top-sml: -$button-pip-sml / 2 + rem-calc(1);
296
+
297
+ // We use these to style medium dropdown buttons
298
+ // $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
299
+ // $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
300
+ // $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
301
+ // $dropdown-button-pip-top-med: -$button-pip-med / 2 + rem-calc(2);
302
+
303
+ // We use these to style large dropdown buttons
304
+ // $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
305
+ // $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
306
+ // $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
307
+ // $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
308
+
309
+ // Flex Video
310
+
311
+ // $include-html-media-classes: $include-html-classes;
312
+
313
+ // We use these to control video container padding and margins
314
+ // $flex-video-padding-top: rem-calc(25);
315
+ // $flex-video-padding-bottom: 67.5%;
316
+ // $flex-video-margin-bottom: rem-calc(16);
317
+
318
+ // We use this to control widescreen bottom padding
319
+ // $flex-video-widescreen-padding-bottom: 57.25%;
320
+
321
+ // Forms
322
+
323
+ // $include-html-form-classes: $include-html-classes;
324
+
325
+ // We use this to set the base for lots of form spacing and positioning styles
326
+ //$form-spacing: 1.5rem;
327
+
328
+ // We use these to style the labels in different ways
329
+ // $form-label-pointer: pointer;
330
+ // $form-label-font-size: rem-calc(14);
331
+ // $form-label-font-weight: normal;
332
+ // $form-label-font-color: lighten(#000, 30%);
333
+ // $form-label-bottom-margin: rem-calc(8);
334
+ // $input-font-family: inherit;
335
+ // $input-font-color: rgba(0,0,0,0.75);
336
+ // $input-font-size: rem-calc(14);
337
+ // $input-bg-color: #fff;
338
+ // $input-focus-bg-color: darken(#fff, 2%);
339
+ // $input-border-color: darken(#fff, 20%);
340
+ // $input-focus-border-color: darken(#fff, 40%);
341
+ $input-focus-border-color: $primary-color;
342
+ // $input-border-style: solid;
343
+ // $input-border-width: 1px;
344
+ $input-border-width: 0px;
345
+ // $input-disabled-bg: #ddd;
346
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
347
+ // $input-include-glowing-effect: true;
348
+
349
+ // We use these to style the fieldset border and spacing.
350
+ // $fieldset-border-style: solid;
351
+ // $fieldset-border-width: 1px;
352
+ // $fieldset-border-color: #ddd;
353
+ // $fieldset-padding: rem-calc(20);
354
+ // $fieldset-margin: rem-calc(18 0);
355
+
356
+ // We use these to style the legends when you use them
357
+ // $legend-bg: #fff;
358
+ // $legend-font-weight: bold;
359
+ // $legend-padding: rem-calc(0 3);
360
+
361
+ // We use these to style the prefix and postfix input elements
362
+ // $input-prefix-bg: darken(#fff, 5%);
363
+ // $input-prefix-border-color: darken(#fff, 20%);
364
+ // $input-prefix-border-size: 1px;
365
+ // $input-prefix-border-type: solid;
366
+ // $input-prefix-overflow: hidden;
367
+ // $input-prefix-font-color: #333;
368
+ // $input-prefix-font-color-alt: #fff;
369
+
370
+ // We use these to style the error states for inputs and labels
371
+ // $input-error-message-padding: rem-calc(6 9 9);
372
+ // $input-error-message-top: -1px;
373
+ // $input-error-message-font-size: rem-calc(12);
374
+ // $input-error-message-font-weight: normal;
375
+ // $input-error-message-font-style: italic;
376
+ // $input-error-message-font-color: #fff;
377
+ // $input-error-message-font-color-alt: #333;
378
+
379
+ // We use this to style the glowing effect of inputs when focused
380
+ // $glowing-effect-fade-time: 0.45s;
381
+ // $glowing-effect-color: $input-focus-border-color;
382
+
383
+ // Select variables
384
+ // $select-bg-color: #fafafa ;
385
+
386
+ // Inline Lists
387
+
388
+ // $include-html-inline-list-classes: $include-html-classes;
389
+
390
+ // We use this to control the margins and padding of the inline list.
391
+ // $inline-list-top-margin: 0;
392
+ // $inline-list-opposite-margin: 0;
393
+ // $inline-list-bottom-margin: rem-calc(17);
394
+ // $inline-list-default-float-margin: rem-calc(-22);
395
+
396
+ // $inline-list-padding: 0;
397
+
398
+ // We use this to control the overflow of the inline list.
399
+ // $inline-list-overflow: hidden;
400
+
401
+ // We use this to control the list items
402
+ // $inline-list-display: block;
403
+
404
+ // We use this to control any elments within list items
405
+ // $inline-list-children-display: block;
406
+
407
+ // Joyride
408
+
409
+ // $include-html-joyride-classes: $include-html-classes;
410
+
411
+ // Controlling default Joyride styles
412
+ // $joyride-tip-bg: #333;
413
+ // $joyride-tip-default-width: 300px;
414
+ // $joyride-tip-padding: rem-calc(18 20 24);
415
+ // $joyride-tip-border: solid 1px #555;
416
+ // $joyride-tip-radius: 4px;
417
+ // $joyride-tip-position-offset: 22px;
418
+
419
+ // Here, we're setting the tip dont styles
420
+ // $joyride-tip-font-color: #fff;
421
+ // $joyride-tip-font-size: rem-calc(14);
422
+ // $joyride-tip-header-weight: bold;
423
+
424
+ // This changes the nub size
425
+ // $joyride-tip-nub-size: 10px;
426
+
427
+ // This adjusts the styles for the timer when its enabled
428
+ // $joyride-tip-timer-width: 50px;
429
+ // $joyride-tip-timer-height: 3px;
430
+ // $joyride-tip-timer-color: #666;
431
+
432
+ // This changes up the styles for the close button
433
+ // $joyride-tip-close-color: #777;
434
+ // $joyride-tip-close-size: 24px;
435
+ // $joyride-tip-close-weight: normal;
436
+
437
+ // When Joyride is filling the screen, we use this style for the bg
438
+ // $joyride-screenfill: rgba(0,0,0,0.5);
439
+
440
+ // Keystrokes
441
+
442
+ // $include-html-type-classes: $include-html-classes;
443
+
444
+ // We use these to control text styles.
445
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
446
+ // $keystroke-font-size: rem-calc(14);
447
+ // $keystroke-font-color: #222;
448
+ // $keystroke-font-color-alt: #fff;
449
+ // $keystroke-function-factor: 7%;
450
+
451
+ // We use this to control keystroke padding.
452
+ // $keystroke-padding: rem-calc(2 4 0);
453
+
454
+ // We use these to control background and border styles.
455
+ // $keystroke-bg: darken(#fff, $keystroke-function-factor);
456
+ // $keystroke-border-style: solid;
457
+ // $keystroke-border-width: 1px;
458
+ // $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
459
+ // $keystroke-radius: $global-radius;
460
+
461
+ // Labels
462
+
463
+ // $include-html-label-classes: $include-html-classes;
464
+
465
+ // We use these to style the labels
466
+ // $label-padding: rem-calc(4 8 6);
467
+ // $label-radius: $global-radius;
468
+
469
+ // We use these to style the label text
470
+ // $label-font-sizing: rem-calc(11);
471
+ // $label-font-weight: normal;
472
+ // $label-font-color: #333;
473
+ // $label-font-color-alt: #fff;
474
+ // $label-font-family: $body-font-family;
475
+
476
+ // Magellan
477
+
478
+ // $include-html-magellan-classes: $include-html-classes;
479
+
480
+ // $magellan-bg: #fff;
481
+ // $magellan-padding: 10px;
482
+
483
+ // Off-canvas
484
+
485
+ // $tabbar-bg: #333;
486
+ // $tabbar-height: rem-calc(45);
487
+ // $tabbar-line-height: $tabbar-height;
488
+ // $tabbar-color: #FFF;
489
+ // $tabbar-middle-padding: 0 rem-calc(10);
490
+
491
+ // Off Canvas Divider Styles
492
+ // $tabbar-right-section-border: solid 1px lighten($tabbar-bg, 10%);
493
+ // $tabbar-left-section-border: solid 1px darken($tabbar-bg, 10%);
494
+
495
+ // Off Canvas Tab Bar Headers
496
+ // $tabbar-header-color: #FFF;
497
+ // $tabbar-header-weight: bold;
498
+ // $tabbar-header-line-height: $tabbar-height;
499
+ // $tabbar-header-margin: 0;
500
+
501
+ // Off Canvas Menu Variables
502
+ // $off-canvas-width: 250px;
503
+ // $off-canvas-bg: #333;
504
+
505
+ // Off Canvas Menu List Variables
506
+ // $off-canvas-label-padding: 0.3rem rem-calc(15);
507
+ // $off-canvas-label-color: #999;
508
+ // $off-canvas-label-text-transform: uppercase;
509
+ // $off-canvas-label-font-weight: bold;
510
+ // $off-canvas-label-bg: #444;
511
+ // $off-canvas-label-border-top: 1px solid lighten(#444, 10%);
512
+ // $off-canvas-label-border-bottom: none;
513
+ // $off-canvas-label-margin:0;
514
+ // $off-canvas-link-padding: rem-calc(10, 15);
515
+ // $off-canvas-link-color: rgba(#FFF, 0.7);
516
+ // $off-canvas-link-border-bottom: 1px solid darken($off-canvas-bg, 5%);
517
+
518
+ // Off Canvas Menu Icon Variables
519
+ // $tabbar-menu-icon-color: #FFF;
520
+ // $tabbar-menu-icon-hover: darken($tabbar-menu-icon-color, 30%);
521
+
522
+ // $tabbar-menu-icon-text-indent: rem-calc(35);
523
+ // $tabbar-menu-icon-width: $tabbar-height;
524
+ // $tabbar-menu-icon-height: $tabbar-height;
525
+ // $tabbar-menu-icon-line-height: rem-calc(33);
526
+ // $tabbar-menu-icon-padding: 0;
527
+
528
+ // $tabbar-hamburger-icon-width: rem-calc(16);
529
+ // $tabbar-hamburger-icon-left: rem-calc(13);
530
+ // $tabbar-hamburger-icon-top: rem-calc(5);
531
+
532
+ // Off Canvas Back-Link Overlay
533
+ // $off-canvas-overlay-transition: background 300ms ease;
534
+ // $off-canvas-overlay-cursor: pointer;
535
+ // $off-canvas-overlay-box-shadow: -4px 0 4px rgba(#000, 0.5), 4px 0 4px rgba(#000, 0.5);
536
+ // $off-canvas-overlay-background: rgba(#FFF, 0.2);
537
+ // $off-canvas-overlay-background-hover: rgba(#FFF, 0.05);
538
+
539
+ // Transition Variabls
540
+ // $menu-slide: "transform 500ms ease";
541
+
542
+ // Orbit
543
+
544
+ // $include-html-orbit-classes: $include-html-classes;
545
+
546
+ // We use these to control the caption styles
547
+ // $orbit-container-bg: none;
548
+ // $orbit-caption-bg: rgba(51,51,51, 0.8);
549
+ // $orbit-caption-font-color: #fff;
550
+ // $orbit-caption-font-size: rem-calc(14);
551
+ // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
552
+ // $orbit-caption-padding: rem-calc(10,14);
553
+ // $orbit-caption-height: auto;
554
+
555
+ // We use these to control the left/right nav styles
556
+ // $orbit-nav-bg: none;
557
+ // $orbit-nav-bg-hover: rgba(0,0,0,0.3);
558
+ // $orbit-nav-arrow-color: #fff;
559
+ // $orbit-nav-arrow-color-hover: #fff;
560
+
561
+ // We use these to control the timer styles
562
+ // $orbit-timer-bg: rgba(255,255,255,0.3);
563
+ // $orbit-timer-show-progress-bar: true;
564
+
565
+ // We use these to control the bullet nav styles
566
+ // $orbit-bullet-nav-color: #ccc;
567
+ // $orbit-bullet-nav-color-active: #999;
568
+ // $orbit-bullet-radius: rem-calc(9);
569
+
570
+ // We use these to controls the style of slide numbers
571
+ // $orbit-slide-number-bg: rgba(0,0,0,0);
572
+ // $orbit-slide-number-font-color: #fff;
573
+ // $orbit-slide-number-padding: rem-calc(5);
574
+
575
+ // Graceful Loading Wrapper and preloader
576
+ // $wrapper-class: "slideshow-wrapper";
577
+ // $preloader-class: "preloader";
578
+
579
+ // Pagination
580
+
581
+ // $include-html-nav-classes: $include-html-classes;
582
+
583
+ // We use these to control the pagination container
584
+ // $pagination-height: rem-calc(24);
585
+ // $pagination-margin: rem-calc(-5);
586
+
587
+ // We use these to set the list-item properties
588
+ // $pagination-li-float: $default-float;
589
+ // $pagination-li-height: rem-calc(24);
590
+ // $pagination-li-font-color: #222;
591
+ // $pagination-li-font-size: rem-calc(14);
592
+ // $pagination-li-margin: rem-calc(5);
593
+
594
+ // We use these for the pagination anchor links
595
+ // $pagination-link-pad: rem-calc(1 10 1);
596
+ // $pagination-link-font-color: #999;
597
+ // $pagination-link-active-bg: darken(#fff, 10%);
598
+
599
+ // We use these for disabled anchor links
600
+ // $pagination-link-unavailable-cursor: default;
601
+ // $pagination-link-unavailable-font-color: #999;
602
+ // $pagination-link-unavailable-bg-active: transparent;
603
+
604
+ // We use these for currently selected anchor links
605
+ // $pagination-link-current-background: $primary-color;
606
+ // $pagination-link-current-font-color: #fff;
607
+ // $pagination-link-current-font-weight: bold;
608
+ // $pagination-link-current-cursor: default;
609
+ // $pagination-link-current-active-bg: $primary-color;
610
+
611
+ // Panels
612
+
613
+ // $include-html-panel-classes: $include-html-classes;
614
+
615
+ // We use these to control the background and border styles
616
+ // $panel-bg: darken(#fff, 5%);
617
+ // $panel-border-style: solid;
618
+ // $panel-border-size: 1px;
619
+
620
+ // We use this % to control how much we darken things on hover
621
+ // $panel-function-factor: 10%;
622
+ // $panel-border-color: darken($panel-bg, $panel-function-factor);
623
+
624
+ // We use these to set default inner padding and bottom margin
625
+ // $panel-margin-bottom: rem-calc(20);
626
+ // $panel-padding: rem-calc(20);
627
+
628
+ // We use these to set default font colors
629
+ // $panel-font-color: #333;
630
+ // $panel-font-color-alt: #fff;
631
+
632
+ // $panel-header-adjust: true;
633
+ // $callout-panel-link-color: $primary-color;
634
+
635
+ // Pricing Tables
636
+
637
+ // $include-html-pricing-classes: $include-html-classes;
638
+
639
+ // We use this to control the border color
640
+ // $price-table-border: solid 1px #ddd;
641
+
642
+ // We use this to control the bottom margin of the pricing table
643
+ // $price-table-margin-bottom: rem-calc(20);
644
+
645
+ // We use these to control the title styles
646
+ // $price-title-bg: #333;
647
+ // $price-title-padding: rem-calc(15 20);
648
+ // $price-title-align: center;
649
+ // $price-title-color: #eee;
650
+ // $price-title-weight: normal;
651
+ // $price-title-size: rem-calc(16);
652
+ // $price-title-font-family: $body-font-family;
653
+
654
+ // We use these to control the price styles
655
+ // $price-money-bg: #f6f6f6 ;
656
+ // $price-money-padding: rem-calc(15 20);
657
+ // $price-money-align: center;
658
+ // $price-money-color: #333;
659
+ // $price-money-weight: normal;
660
+ // $price-money-size: rem-calc(32);
661
+ // $price-money-font-family: $body-font-family;
662
+
663
+
664
+ // We use these to control the description styles
665
+ // $price-bg: #fff;
666
+ // $price-desc-color: #777;
667
+ // $price-desc-padding: rem-calc(15);
668
+ // $price-desc-align: center;
669
+ // $price-desc-font-size: rem-calc(12);
670
+ // $price-desc-weight: normal;
671
+ // $price-desc-line-height: 1.4;
672
+ // $price-desc-bottom-border: dotted 1px #ddd;
673
+
674
+ // We use these to control the list item styles
675
+ // $price-item-color: #333;
676
+ // $price-item-padding: rem-calc(15);
677
+ // $price-item-align: center;
678
+ // $price-item-font-size: rem-calc(14);
679
+ // $price-item-weight: normal;
680
+ // $price-item-bottom-border: dotted 1px #ddd;
681
+
682
+ // We use these to control the CTA area styles
683
+ // $price-cta-bg: #fff;
684
+ // $price-cta-align: center;
685
+ // $price-cta-padding: rem-calc(20 20 0);
686
+
687
+ // Progress Meters
688
+
689
+ // $include-html-media-classes: $include-html-classes;
690
+
691
+ // We use this to se the prog bar height
692
+ // $progress-bar-height: rem-calc(25);
693
+ // $progress-bar-color: #f6f6f6 ;
694
+
695
+ // We use these to control the border styles
696
+ // $progress-bar-border-color: darken(#fff, 20%);
697
+ // $progress-bar-border-size: 1px;
698
+ // $progress-bar-border-style: solid;
699
+ // $progress-bar-border-radius: $global-radius;
700
+
701
+ // We use these to control the margin & padding
702
+ // $progress-bar-pad: rem-calc(2);
703
+ // $progress-bar-margin-bottom: rem-calc(10);
704
+
705
+ // We use these to set the meter colors
706
+ // $progress-meter-color: $primary-color;
707
+ // $progress-meter-secondary-color: $secondary-color;
708
+ // $progress-meter-success-color: $success-color;
709
+ // $progress-meter-alert-color: $alert-color;
710
+
711
+ // Reveal
712
+
713
+ // $include-html-reveal-classes: $include-html-classes;
714
+
715
+ // We use these to control the style of the reveal overlay.
716
+ // $reveal-overlay-bg: rgba(#000, .45);
717
+ // $reveal-overlay-bg-old: #000;
718
+
719
+ // We use these to control the style of the modal itself.
720
+ // $reveal-modal-bg: #fff;
721
+ // $reveal-position-top: 50px;
722
+ // $reveal-default-width: 80%;
723
+ // $reveal-modal-padding: rem-calc(20);
724
+ // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
725
+
726
+ // We use these to style the reveal close button
727
+ // $reveal-close-font-size: rem-calc(22);
728
+ // $reveal-close-top: rem-calc(8);
729
+ // $reveal-close-side: rem-calc(11);
730
+ // $reveal-close-color: #aaa;
731
+ // $reveal-close-weight: bold;
732
+
733
+ // We use these to control the modal border
734
+ // $reveal-border-style: solid;
735
+ // $reveal-border-width: 1px;
736
+ // $reveal-border-color: #666;
737
+
738
+ // $reveal-modal-class: "reveal-modal";
739
+ // $close-reveal-modal-class: "close-reveal-modal";
740
+
741
+ // Side Nav
742
+
743
+ // $include-html-nav-classes: $include-html-classes;
744
+
745
+ // We use this to control padding.
746
+ // $side-nav-padding: rem-calc(14 0);
747
+
748
+ // We use these to control list styles.
749
+ // $side-nav-list-type: none;
750
+ // $side-nav-list-position: inside;
751
+ // $side-nav-list-margin: rem-calc(0 0 7 0);
752
+
753
+ // We use these to control link styles.
754
+ // $side-nav-link-color: $primary-color;
755
+ // $side-nav-link-color-active: lighten(#000, 30%);
756
+ // $side-nav-font-size: rem-calc(14);
757
+ // $side-nav-font-weight: normal;
758
+ // $side-nav-font-family: $body-font-family;
759
+ // $side-nav-active-font-family: $side-nav-font-family;
760
+
761
+
762
+
763
+ // We use these to control border styles
764
+ // $side-nav-divider-size: 1px;
765
+ // $side-nav-divider-style: solid;
766
+ // $side-nav-divider-color: darken(#fff, 10%);
767
+
768
+ // Split Buttons
769
+
770
+ // $include-html-button-classes: $include-html-classes;
771
+
772
+ // We use these to control different shared styles for Split Buttons
773
+ // $split-button-function-factor: 10%;
774
+ // $split-button-pip-color: #fff;
775
+ // $split-button-pip-color-alt: #333;
776
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
777
+
778
+ // We use these to control tiny split buttons
779
+ // $split-button-padding-tny: $button-pip-tny * 10;
780
+ // $split-button-span-width-tny: $button-pip-tny * 6;
781
+ // $split-button-pip-size-tny: $button-pip-tny;
782
+ // $split-button-pip-top-tny: $button-pip-tny * 2;
783
+ // $split-button-pip-default-float-tny: rem-calc(-6);
784
+
785
+ // We use these to control small split buttons
786
+ // $split-button-padding-sml: $button-pip-sml * 10;
787
+ // $split-button-span-width-sml: $button-pip-sml * 6;
788
+ // $split-button-pip-size-sml: $button-pip-sml;
789
+ // $split-button-pip-top-sml: $button-pip-sml * 1.5;
790
+ // $split-button-pip-default-float-sml: rem-calc(-6);
791
+
792
+ // We use these to control medium split buttons
793
+ // $split-button-padding-med: $button-pip-med * 9;
794
+ // $split-button-span-width-med: $button-pip-med * 5.5;
795
+ // $split-button-pip-size-med: $button-pip-med - rem-calc(3);
796
+ // $split-button-pip-top-med: $button-pip-med * 1.5;
797
+ // $split-button-pip-default-float-med: rem-calc(-6);
798
+
799
+ // We use these to control large split buttons
800
+ // $split-button-padding-lrg: $button-pip-lrg * 8;
801
+ // $split-button-span-width-lrg: $button-pip-lrg * 5;
802
+ // $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
803
+ // $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
804
+ // $split-button-pip-default-float-lrg: rem-calc(-6);
805
+
806
+ // Sub Nav
807
+
808
+ // $include-html-nav-classes: $include-html-classes;
809
+
810
+ // We use these to control margin and padding
811
+ // $sub-nav-list-margin: rem-calc(-4 0 18);
812
+ // $sub-nav-list-padding-top: rem-calc(4);
813
+
814
+ // We use this to control the definition
815
+ // $sub-nav-font-family: $body-font-family;
816
+ // $sub-nav-font-size: rem-calc(14);
817
+ // $sub-nav-font-color: #999;
818
+ // $sub-nav-font-weight: normal;
819
+ // $sub-nav-text-decoration: none;
820
+ // $sub-nav-border-radius: 3px;
821
+ // $sub-nav-font-color-hover: darken($sub-nav-font-color, 15%);
822
+
823
+
824
+ // We use these to control the active item styles
825
+
826
+ // $sub-nav-active-font-weight: normal;
827
+ // $sub-nav-active-bg: $primary-color;
828
+ // $sub-nav-active-bg-hover: darken($sub-nav-active-bg, 5%);
829
+ // $sub-nav-active-color: #fff;
830
+ // $sub-nav-active-padding: rem-calc(3 16);
831
+ // $sub-nav-active-cursor: default;
832
+
833
+ // $sub-nav-item-divider: "";
834
+ // $sub-nav-item-divider-margin: rem-calc(12);
835
+
836
+ // Tables
837
+
838
+ // $include-html-table-classes: $include-html-classes;
839
+
840
+ // These control the background color for the table and even rows
841
+ $table-bg: #ddd;
842
+ // $table-even-row-bg: #f9f9f9 ;
843
+ $table-even-row-bg: #eee;
844
+
845
+ // These control the table cell border style
846
+ // $table-border-style: solid;
847
+ // $table-border-size: 1px;
848
+ // $table-border-color: #ddd;
849
+
850
+ // These control the table head styles
851
+ // $table-head-bg: #f5f5f5;
852
+ $table-head-bg: $primary-color;
853
+ // $table-head-font-size: rem-calc(14);
854
+ //$table-head-font-color: #222;
855
+ $table-head-font-color: white;
856
+ $table-head-font-weight: 200;
857
+ // $table-head-padding: rem-calc(8 10 10);
858
+
859
+ // These control the row padding and font styles
860
+ // $table-row-padding: rem-calc(9 10);
861
+ // $table-row-font-size: rem-calc(14);
862
+ $table-row-font-color: #777;
863
+ // $table-line-height: rem-calc(18);
864
+ $table-line-height: 2.25rem;
865
+ // These are for controlling the display and margin of tables
866
+ // $table-display: table-cell;
867
+ // $table-margin-bottom: rem-calc(20);
868
+
869
+ //
870
+ // TABS
871
+ //
872
+
873
+ // $include-html-tabs-classes: $include-html-classes;
874
+
875
+ // $tabs-navigation-padding: rem-calc(16);
876
+ // $tabs-navigation-bg-color: #efefef ;
877
+ // $tabs-navigation-hover-bg-color: darken($tabs-navigation-bg-color, 5%);
878
+ // $tabs-navigation-font-color: #222;
879
+ // $tabs-navigation-font-size: rem-calc(16);
880
+ // $tabs-navigation-font-family: $body-font-family;
881
+
882
+ // $tabs-content-margin-bottom: rem-calc(24);
883
+ // $tabs-content-padding: $column-gutter/2;
884
+
885
+ // $tabs-vertical-navigation-margin-bottom: 1.25rem;
886
+
887
+ //
888
+ // THUMBNAILS
889
+ //
890
+
891
+ // $include-html-media-classes: $include-html-classes;
892
+
893
+ // We use these to control border styles
894
+ // $thumb-border-style: solid;
895
+ // $thumb-border-width: 4px;
896
+ // $thumb-border-color: #fff;
897
+ // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
898
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
899
+
900
+ // Radius and transition speed for thumbs
901
+ // $thumb-radius: $global-radius;
902
+ // $thumb-transition-speed: 200ms;
903
+
904
+ //
905
+ // TOOLTIPS
906
+ //
907
+
908
+ // $include-html-tooltip-classes: $include-html-classes;
909
+
910
+ // $has-tip-border-bottom: dotted 1px #ccc;
911
+ // $has-tip-font-weight: bold;
912
+ // $has-tip-font-color: #333;
913
+ // $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
914
+ // $has-tip-font-color-hover: $primary-color;
915
+ // $has-tip-cursor-type: help;
916
+
917
+ // $tooltip-padding: rem-calc(12);
918
+ // $tooltip-bg: #333;
919
+ // $tooltip-font-size: rem-calc(14);
920
+ // $tooltip-font-weight: normal;
921
+ // $tooltip-font-color: #fff;
922
+ // $tooltip-line-height: 1.3;
923
+ // $tooltip-close-font-size: rem-calc(10);
924
+ // $tooltip-close-font-weight: normal;
925
+ // $tooltip-close-font-color: #777;
926
+ // $tooltip-font-size-sml: rem-calc(14);
927
+ // $tooltip-radius: $global-radius;
928
+ // $tooltip-pip-size: 5px;
929
+
930
+ //
931
+ // TOP BAR
932
+ //
933
+
934
+ // $include-html-top-bar-classes: $include-html-classes;
935
+
936
+ // Background color for the top bar
937
+ $topbar-bg-color: #5f4c74;
938
+ // $topbar-bg: $topbar-bg-color;
939
+
940
+ // Height and margin
941
+ // $topbar-height: 45px;
942
+ $topbar-height: 50px;
943
+ // $topbar-margin-bottom: 0;
944
+
945
+ // Control Input height for top bar
946
+
947
+ // Controlling the styles for the title in the top bar
948
+ // $topbar-title-weight: normal;
949
+ $topbar-title-weight: 200;
950
+ // $topbar-title-font-size: rem-calc(17);
951
+
952
+ // Style the top bar dropdown elements
953
+ // $topbar-dropdown-bg: #333;
954
+ // $topbar-dropdown-link-color: #fff;
955
+ // $topbar-dropdown-link-bg: #333;
956
+ // $topbar-dropdown-toggle-size: 5px;
957
+ // $topbar-dropdown-toggle-color: #fff;
958
+ // $topbar-dropdown-toggle-alpha: 0.4;
959
+
960
+ // Set the link colors and styles for top-level nav
961
+ // $topbar-link-color: #fff;
962
+ // $topbar-link-color-hover: #fff;
963
+ // $topbar-link-color-active: #fff;
964
+ // $topbar-link-weight: normal;
965
+ $topbar-link-weight: 200;
966
+ // $topbar-link-font-size: rem-calc(13);
967
+ // $topbar-link-hover-lightness: -10%; // Darken by 10%
968
+ // $topbar-link-bg-hover: #272727 ;
969
+ // $topbar-link-bg-active: $primary-color;
970
+ // $topbar-link-bg-active-hover: darken($primary-color, 5%);
971
+ // $topbar-link-font-family: $body-font-family;
972
+
973
+ // $topbar-button-font-size: 0.75rem;
974
+
975
+ // $topbar-dropdown-label-color: #777;
976
+ // $topbar-dropdown-label-text-transform: uppercase;
977
+ // $topbar-dropdown-label-font-weight: bold;
978
+ // $topbar-dropdown-label-font-size: rem-calc(10);
979
+ // $topbar-dropdown-label-bg: #333;
980
+
981
+ // Top menu icon styles
982
+ // $topbar-menu-link-transform: uppercase;
983
+ // $topbar-menu-link-font-size: rem-calc(13);
984
+ // $topbar-menu-link-weight: bold;
985
+ // $topbar-menu-link-color: #fff;
986
+ // $topbar-menu-icon-color: #fff;
987
+ // $topbar-menu-link-color-toggled: #888;
988
+ // $topbar-menu-icon-color-toggled: #888;
989
+
990
+ // Transitions and breakpoint styles
991
+ // $topbar-transition-speed: 300ms;
992
+ // Using rem-calc for the below breakpoint causes issues with top bar
993
+ // $topbar-breakpoint: #{upper-bound($medium-range)}; // Change to 9999px for always mobile layout
994
+ // $topbar-media-query: "only screen and (min-width: #{upper-bound($medium-range)})";
995
+
996
+ // Divider Styles
997
+ // $topbar-divider-border-bottom: solid 1px lighten($topbar-bg-color, 10%);
998
+ // $topbar-divider-border-top: solid 1px darken($topbar-bg-color, 10%);
999
+
1000
+ // Sticky Class
1001
+ // $topbar-sticky-class: ".sticky";
1002
+ // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
1003
+ @import 'foundation';