faalis 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (286) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +339 -0
  3. data/README.md +45 -0
  4. data/Rakefile +42 -0
  5. data/app/assets/fonts/DroidNaskh-Bold.ttf +0 -0
  6. data/app/assets/fonts/DroidNaskh-Regular.ttf +0 -0
  7. data/app/assets/fonts/OpenSans-Bold.ttf +0 -0
  8. data/app/assets/fonts/OpenSans-BoldItalic.ttf +0 -0
  9. data/app/assets/fonts/OpenSans-ExtraBold.ttf +0 -0
  10. data/app/assets/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  11. data/app/assets/fonts/OpenSans-Italic.ttf +0 -0
  12. data/app/assets/fonts/OpenSans-Light.ttf +0 -0
  13. data/app/assets/fonts/OpenSans-LightItalic.ttf +0 -0
  14. data/app/assets/fonts/OpenSans-Regular.ttf +0 -0
  15. data/app/assets/fonts/OpenSans-Semibold.ttf +0 -0
  16. data/app/assets/fonts/OpenSans-SemiboldItalic.ttf +0 -0
  17. data/app/assets/images/faalis/select2-spinner.gif +0 -0
  18. data/app/assets/images/faalis/select2.png +0 -0
  19. data/app/assets/images/faalis/select2x2.png +0 -0
  20. data/app/assets/javascripts/faalis/application.js +20 -0
  21. data/app/assets/javascripts/faalis/dashboard/angular.js +9 -0
  22. data/app/assets/javascripts/faalis/dashboard/app.js +75 -0
  23. data/app/assets/javascripts/faalis/dashboard/application.js.erb +21 -0
  24. data/app/assets/javascripts/faalis/dashboard/functions.js.erb +91 -0
  25. data/app/assets/javascripts/faalis/dashboard/init.js +38 -0
  26. data/app/assets/javascripts/faalis/dashboard/lib/angular-animate.js +1226 -0
  27. data/app/assets/javascripts/faalis/dashboard/lib/angular-gettext.js +202 -0
  28. data/app/assets/javascripts/faalis/dashboard/lib/angular-resource.js +578 -0
  29. data/app/assets/javascripts/faalis/dashboard/lib/angular-route.js +880 -0
  30. data/app/assets/javascripts/faalis/dashboard/lib/angular.js +20031 -0
  31. data/app/assets/javascripts/faalis/dashboard/lib/lodash.underscore.js +4893 -0
  32. data/app/assets/javascripts/faalis/dashboard/lib/ng-grid.js +3260 -0
  33. data/app/assets/javascripts/faalis/dashboard/lib/ng-quick-date.js +297 -0
  34. data/app/assets/javascripts/faalis/dashboard/lib/restangular.js +1066 -0
  35. data/app/assets/javascripts/faalis/dashboard/lib/select2.js +3255 -0
  36. data/app/assets/javascripts/faalis/dashboard/lib/ui.select2.js +217 -0
  37. data/app/assets/javascripts/faalis/dashboard/locale/translations.js +5 -0
  38. data/app/assets/javascripts/faalis/dashboard/modules/anim.js +32 -0
  39. data/app/assets/javascripts/faalis/dashboard/modules/api.js +32 -0
  40. data/app/assets/javascripts/faalis/dashboard/modules/auth/auth.js +34 -0
  41. data/app/assets/javascripts/faalis/dashboard/modules/auth/group.js +174 -0
  42. data/app/assets/javascripts/faalis/dashboard/modules/auth/profile.js +59 -0
  43. data/app/assets/javascripts/faalis/dashboard/modules/auth/user.js +123 -0
  44. data/app/assets/javascripts/faalis/dashboard/modules/errors.js +47 -0
  45. data/app/assets/javascripts/faalis/dashboard/modules/filter.js +44 -0
  46. data/app/assets/javascripts/faalis/dashboard/modules/list-view.js +310 -0
  47. data/app/assets/javascripts/faalis/dashboard/modules/logs.js +41 -0
  48. data/app/assets/javascripts/faalis/dashboard/modules/modules.js +50 -0
  49. data/app/assets/javascripts/faalis/dashboard/modules/nav.js.erb +97 -0
  50. data/app/assets/javascripts/faalis/dashboard/templates/application.handlebars.erb +42 -0
  51. data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/details.handlebars.erb +15 -0
  52. data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/index.handlebars.erb +7 -0
  53. data/app/assets/javascripts/faalis/dashboard/templates/auth/groups/new.handlebars.erb +39 -0
  54. data/app/assets/javascripts/faalis/dashboard/templates/auth/index.handlebars.erb +31 -0
  55. data/app/assets/javascripts/faalis/dashboard/templates/auth/users/details.handlebars.erb +15 -0
  56. data/app/assets/javascripts/faalis/dashboard/templates/auth/users/index.handlebars.erb +11 -0
  57. data/app/assets/javascripts/faalis/dashboard/templates/auth/users/new.handlebars.erb +33 -0
  58. data/app/assets/javascripts/faalis/dashboard/templates/components/list-view.handlebars.erb +59 -0
  59. data/app/assets/javascripts/faalis/dashboard/templates/components/model-form.handlebars.erb +3 -0
  60. data/app/assets/javascripts/faalis/dashboard/templates/modules.handlebars.erb +15 -0
  61. data/app/assets/javascripts/faalis/dashboard/templates/navigation.handlebars.erb +43 -0
  62. data/app/assets/javascripts/faalis/dashboard/templates/widgets.handlebars +23 -0
  63. data/app/assets/javascripts/faalis/dashboard/variables.js.erb +17 -0
  64. data/app/assets/javascripts/faalis/groups.js +2 -0
  65. data/app/assets/javascripts/faalis/home.js +2 -0
  66. data/app/assets/javascripts/faalis/i18n.js +13 -0
  67. data/app/assets/javascripts/faalis/locale/en.json +27 -0
  68. data/app/assets/javascripts/faalis/locale/fa.json +27 -0
  69. data/app/assets/javascripts/faalis/users.js +2 -0
  70. data/app/assets/stylesheets/faalis/base.css.scss +264 -0
  71. data/app/assets/stylesheets/faalis/dashboard/dashboard.css.scss +226 -0
  72. data/app/assets/stylesheets/faalis/dashboard/list_view.css.scss +169 -0
  73. data/app/assets/stylesheets/faalis/dashboard/ltr/application.css +26 -0
  74. data/app/assets/stylesheets/faalis/dashboard/ltr/base.css.scss.erb +28 -0
  75. data/app/assets/stylesheets/faalis/dashboard/ltr/buttons.css.scss.erb +48 -0
  76. data/app/assets/stylesheets/faalis/dashboard/ltr/direction.css.scss +38 -0
  77. data/app/assets/stylesheets/faalis/dashboard/ltr/foundation_and_overrides.css.scss +1014 -0
  78. data/app/assets/stylesheets/faalis/dashboard/ng-grid.css.scss +442 -0
  79. data/app/assets/stylesheets/faalis/dashboard/ng-quick-date-default-theme.css.scss +20 -0
  80. data/app/assets/stylesheets/faalis/dashboard/ng-quick-date.css.scss +19 -0
  81. data/app/assets/stylesheets/faalis/dashboard/rtl/application.css +26 -0
  82. data/app/assets/stylesheets/faalis/dashboard/rtl/base.css.scss.erb +31 -0
  83. data/app/assets/stylesheets/faalis/dashboard/rtl/base.css_flymake.scss +25 -0
  84. data/app/assets/stylesheets/faalis/dashboard/rtl/buttons.css.scss.erb +45 -0
  85. data/app/assets/stylesheets/faalis/dashboard/rtl/direction.css.scss +37 -0
  86. data/app/assets/stylesheets/faalis/dashboard/rtl/foundation_and_overrides.css.scss +1014 -0
  87. data/app/assets/stylesheets/faalis/dashboard/select2.css.scss.erb +618 -0
  88. data/app/assets/stylesheets/faalis/dashboard/sidebar.css.scss +93 -0
  89. data/app/assets/stylesheets/faalis/devise.css.scss +34 -0
  90. data/app/assets/stylesheets/faalis/groups.css +4 -0
  91. data/app/assets/stylesheets/faalis/home.css.scss +14 -0
  92. data/app/assets/stylesheets/faalis/ltr/application.css +20 -0
  93. data/app/assets/stylesheets/faalis/ltr/buttons.css.scss.erb +48 -0
  94. data/app/assets/stylesheets/faalis/ltr/foundation_and_overrides.scss.erb +1012 -0
  95. data/app/assets/stylesheets/faalis/mixins.css.scss +15 -0
  96. data/app/assets/stylesheets/faalis/rtl/application.css +20 -0
  97. data/app/assets/stylesheets/faalis/rtl/buttons.css.scss.erb +48 -0
  98. data/app/assets/stylesheets/faalis/rtl/foundation_and_overrides.scss.erb +1012 -0
  99. data/app/assets/stylesheets/faalis/users.css +4 -0
  100. data/app/assets/stylesheets/faalis/variables.css.scss +102 -0
  101. data/app/controllers/faalis/api/v1/groups_controller.rb +75 -0
  102. data/app/controllers/faalis/api/v1/logs_controller.rb +12 -0
  103. data/app/controllers/faalis/api/v1/permissions_controller.rb +17 -0
  104. data/app/controllers/faalis/api/v1/profiles_controller.rb +42 -0
  105. data/app/controllers/faalis/api/v1/users_controller.rb +75 -0
  106. data/app/controllers/faalis/api_controller.rb +51 -0
  107. data/app/controllers/faalis/application_controller.rb +34 -0
  108. data/app/controllers/faalis/dashboard_controller.rb +44 -0
  109. data/app/controllers/faalis/home_controller.rb +19 -0
  110. data/app/controllers/faalis/omniauth/callbacks_controller.rb +43 -0
  111. data/app/helpers/faalis/application_helper.rb +4 -0
  112. data/app/helpers/faalis/dashboard_helper.rb +5 -0
  113. data/app/helpers/faalis/groups_helper.rb +4 -0
  114. data/app/helpers/faalis/home_helper.rb +4 -0
  115. data/app/helpers/faalis/users_helper.rb +4 -0
  116. data/app/models/ability.rb +42 -0
  117. data/app/models/faalis/group.rb +27 -0
  118. data/app/models/faalis/permission.rb +15 -0
  119. data/app/models/faalis/user.rb +81 -0
  120. data/app/views/angularjs_templates/#index.html# +8 -0
  121. data/app/views/angularjs_templates/auth/groups/details.html +21 -0
  122. data/app/views/angularjs_templates/auth/groups/index.html +5 -0
  123. data/app/views/angularjs_templates/auth/groups/new.html +41 -0
  124. data/app/views/angularjs_templates/auth/index.html +30 -0
  125. data/app/views/angularjs_templates/auth/profile/edit.html +54 -0
  126. data/app/views/angularjs_templates/auth/users/details.html +28 -0
  127. data/app/views/angularjs_templates/auth/users/index.html +6 -0
  128. data/app/views/angularjs_templates/auth/users/new.html +56 -0
  129. data/app/views/angularjs_templates/filter/index.html +15 -0
  130. data/app/views/angularjs_templates/index.html +8 -0
  131. data/app/views/angularjs_templates/list-view/index.html +81 -0
  132. data/app/views/angularjs_templates/locale/fa.po +25 -0
  133. data/app/views/angularjs_templates/locale/templates.pot +24 -0
  134. data/app/views/angularjs_templates/logs/index.html +6 -0
  135. data/app/views/angularjs_templates/modules.html +17 -0
  136. data/app/views/angularjs_templates/nav.html.erb +38 -0
  137. data/app/views/devise/confirmations/new.html.erb +34 -0
  138. data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  139. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  140. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  141. data/app/views/devise/passwords/edit.html.erb +44 -0
  142. data/app/views/devise/passwords/new.html.erb +32 -0
  143. data/app/views/devise/registrations/edit.html.erb +29 -0
  144. data/app/views/devise/registrations/new.html.erb +91 -0
  145. data/app/views/devise/sessions/new.html.erb +98 -0
  146. data/app/views/devise/shared/_links.erb +25 -0
  147. data/app/views/devise/unlocks/new.html.erb +30 -0
  148. data/app/views/faalis/api/v1/groups/create.json.jbuilder +4 -0
  149. data/app/views/faalis/api/v1/groups/destroy.html.erb +2 -0
  150. data/app/views/faalis/api/v1/groups/destroy.json.jbuilder +1 -0
  151. data/app/views/faalis/api/v1/groups/edit.html.erb +2 -0
  152. data/app/views/faalis/api/v1/groups/index.html.erb +2 -0
  153. data/app/views/faalis/api/v1/groups/index.json.jbuilder +6 -0
  154. data/app/views/faalis/api/v1/groups/new.html.erb +2 -0
  155. data/app/views/faalis/api/v1/groups/show.html.erb +2 -0
  156. data/app/views/faalis/api/v1/groups/show.json.jbuilder +5 -0
  157. data/app/views/faalis/api/v1/groups/update.json.jbuilder +4 -0
  158. data/app/views/faalis/api/v1/logs/index.json.jbuilder +1 -0
  159. data/app/views/faalis/api/v1/permissions/index.json.jbuilder +1 -0
  160. data/app/views/faalis/api/v1/users/create.html.erb +2 -0
  161. data/app/views/faalis/api/v1/users/create.json.jbuilder +1 -0
  162. data/app/views/faalis/api/v1/users/destroy.json.jbuilder +1 -0
  163. data/app/views/faalis/api/v1/users/distroy.html.erb +2 -0
  164. data/app/views/faalis/api/v1/users/edit.html.erb +2 -0
  165. data/app/views/faalis/api/v1/users/index.html.erb +2 -0
  166. data/app/views/faalis/api/v1/users/index.json.jbuilder +4 -0
  167. data/app/views/faalis/api/v1/users/show.html.erb +2 -0
  168. data/app/views/faalis/api/v1/users/show.json.jbuilder +2 -0
  169. data/app/views/faalis/api/v1/users/update.json.jbuilder +1 -0
  170. data/app/views/faalis/dashboard/index.html.erb +37 -0
  171. data/app/views/faalis/dashboard/login_required_page.html.erb +5 -0
  172. data/app/views/faalis/home/index.html.erb +119 -0
  173. data/app/views/layouts/faalis/application.html.erb +90 -0
  174. data/app/views/layouts/faalis/dashboard.html.erb +21 -0
  175. data/config/initializers/devise.rb +28 -0
  176. data/config/locales/devise.en.yml +59 -0
  177. data/config/locales/devise.fa.yml +56 -0
  178. data/config/locales/fa/LC_MESSAGES/faalis.mo +0 -0
  179. data/config/locales/fa/faalis.po +181 -0
  180. data/config/locales/fa/messages.mo +0 -0
  181. data/config/locales/faalis.pot +181 -0
  182. data/config/routes.rb +36 -0
  183. data/db/migrate/20131013091000_devise_create_red_base_users.rb +64 -0
  184. data/db/migrate/20131020124701_create_red_base_groups.rb +9 -0
  185. data/db/migrate/20131021170923_create_red_base_permissions.rb +10 -0
  186. data/db/migrate/20131123120422_add_permissions_groups_table.rb +8 -0
  187. data/db/seeds.rb +15 -0
  188. data/lib/faalis.rb +30 -0
  189. data/lib/faalis/active_record.rb +64 -0
  190. data/lib/faalis/api.rb +61 -0
  191. data/lib/faalis/api/groups_api.rb +41 -0
  192. data/lib/faalis/api/permissions_api.rb +24 -0
  193. data/lib/faalis/api/root.rb +15 -0
  194. data/lib/faalis/api/users_api.rb +20 -0
  195. data/lib/faalis/cucumber.rb +25 -0
  196. data/lib/faalis/cucumber/auth.rb +45 -0
  197. data/lib/faalis/cucumber/exceptions.rb +40 -0
  198. data/lib/faalis/cucumber/interaction.rb +43 -0
  199. data/lib/faalis/cucumber/query.rb +28 -0
  200. data/lib/faalis/cucumber/urls.rb +76 -0
  201. data/lib/faalis/dashboard.rb +60 -0
  202. data/lib/faalis/dashboard/controller.rb +42 -0
  203. data/lib/faalis/dashboard/module.rb +45 -0
  204. data/lib/faalis/engine.rb +128 -0
  205. data/lib/faalis/exceptions.rb +26 -0
  206. data/lib/faalis/i18n.rb +35 -0
  207. data/lib/faalis/initialize.rb +7 -0
  208. data/lib/faalis/omniauth.rb +24 -0
  209. data/lib/faalis/omniauth/callbacks.rb +58 -0
  210. data/lib/faalis/plugins.rb +44 -0
  211. data/lib/faalis/version.rb +22 -0
  212. data/lib/faalis_plugin.rb +476 -0
  213. data/lib/generators/faalis/USAGE +8 -0
  214. data/lib/generators/faalis/angularjs_resource_generator.rb +74 -0
  215. data/lib/generators/faalis/install_all_generator.rb +38 -0
  216. data/lib/generators/faalis/install_generator.rb +42 -0
  217. data/lib/generators/faalis/install_specs_generator.rb +48 -0
  218. data/lib/generators/faalis/js_scaffold_generator.rb +273 -0
  219. data/lib/generators/faalis/templates/README +41 -0
  220. data/lib/generators/faalis/templates/SPECS +13 -0
  221. data/lib/generators/faalis/templates/angularjs/details.html.erb +20 -0
  222. data/lib/generators/faalis/templates/angularjs/index.html.erb +62 -0
  223. data/lib/generators/faalis/templates/angularjs/module.js.erb +309 -0
  224. data/lib/generators/faalis/templates/angularjs/new.html.erb +105 -0
  225. data/lib/generators/faalis/templates/api/controller.rb.erb +56 -0
  226. data/lib/generators/faalis/templates/devise.rb +251 -0
  227. data/lib/generators/faalis/templates/faalis.rb +14 -0
  228. data/lib/generators/faalis/templates/fast_gettext.rb +4 -0
  229. data/lib/generators/faalis/templates/features/api.feature +92 -0
  230. data/lib/generators/faalis/templates/features/api.step.rb +7 -0
  231. data/lib/generators/faalis/templates/features/step_definitions/email_steps.rb +206 -0
  232. data/lib/generators/faalis/templates/features/support/email_spec.rb +1 -0
  233. data/lib/generators/faalis/templates/features/support/env.rb +79 -0
  234. data/lib/generators/faalis/templates/formtastic.rb +76 -0
  235. data/lib/generators/faalis/templates/js_scaffold.README +25 -0
  236. data/lib/generators/faalis/templates/seeds.rb +1 -0
  237. data/lib/generators/faalis/templates/spec/factories/groups.rb +5 -0
  238. data/lib/generators/faalis/templates/spec/factories/users.rb +10 -0
  239. data/lib/generators/faalis/templates/spec/spec_helper.rb +69 -0
  240. data/lib/generators/faalis/templates/spec/support/devise.rb +3 -0
  241. data/lib/generators/faalis/templates/views/create.json.jbuilder.erb +2 -0
  242. data/lib/generators/faalis/templates/views/destroy.json.jbuilder.erb +1 -0
  243. data/lib/generators/faalis/templates/views/index.json.jbuilder.erb +10 -0
  244. data/lib/generators/faalis/templates/views/show.json.jbuilder.erb +7 -0
  245. data/lib/generators/faalis/templates/views/update.json.jbuilder.erb +6 -0
  246. data/lib/generators/faalis/views_generator.rb +41 -0
  247. data/lib/tasks/faalis_tasks.rake +23 -0
  248. data/lib/tasks/grunt/Gruntfile.js +25 -0
  249. data/spec/dummy/README.rdoc +28 -0
  250. data/spec/dummy/Rakefile +6 -0
  251. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  252. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  253. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  254. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  255. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  256. data/spec/dummy/bin/bundle +3 -0
  257. data/spec/dummy/bin/rails +4 -0
  258. data/spec/dummy/bin/rake +4 -0
  259. data/spec/dummy/config.ru +4 -0
  260. data/spec/dummy/config/application.rb +23 -0
  261. data/spec/dummy/config/boot.rb +5 -0
  262. data/spec/dummy/config/database.yml +25 -0
  263. data/spec/dummy/config/environment.rb +5 -0
  264. data/spec/dummy/config/environments/development.rb +29 -0
  265. data/spec/dummy/config/environments/production.rb +80 -0
  266. data/spec/dummy/config/environments/test.rb +36 -0
  267. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  268. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  269. data/spec/dummy/config/initializers/inflections.rb +16 -0
  270. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  271. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  272. data/spec/dummy/config/initializers/session_store.rb +3 -0
  273. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  274. data/spec/dummy/config/locales/en.yml +23 -0
  275. data/spec/dummy/config/routes.rb +4 -0
  276. data/spec/dummy/db/test.sqlite3 +0 -0
  277. data/spec/dummy/log/development.log +0 -0
  278. data/spec/dummy/log/test.log +15 -0
  279. data/spec/dummy/public/404.html +58 -0
  280. data/spec/dummy/public/422.html +58 -0
  281. data/spec/dummy/public/500.html +57 -0
  282. data/spec/dummy/public/favicon.ico +0 -0
  283. data/spec/dummy/tmp/ember-rails/ember-data.js +10204 -0
  284. data/spec/dummy/tmp/ember-rails/ember.js +36991 -0
  285. data/spec/spec_helper.rb +52 -0
  286. metadata +678 -0
@@ -0,0 +1,48 @@
1
+ @import "faalis/variables";
2
+ //@import "foundation";
3
+ //@import "foundation/components/global";
4
+ //@import "foundation/components/buttons";
5
+ @import "faalis/dashboard/ltr/foundation_and_overrides";
6
+
7
+ .btn {
8
+ @include button-base;
9
+ @include single-transition;
10
+
11
+ &.green {
12
+ @include button-style($emerald, $border-radius, false);
13
+ color: white;
14
+ }
15
+
16
+ &.blue {
17
+ @include button-style($peter_river, $border-radius, false);
18
+ color: white;
19
+ }
20
+
21
+ &.red {
22
+ @include button-style($alizarin, $border-radius, false);
23
+ color: white;
24
+ }
25
+
26
+ &.yellow {
27
+ @include button-style($sun_flower, $border-radius, false);
28
+ }
29
+ &.lightgray {
30
+ @include button-style($lightgray, $border-radius, false);
31
+ }
32
+ &.lightergray {
33
+ @include button-style($lightergray, $border-radius, false);
34
+ }
35
+
36
+ }
37
+
38
+ .tiny {
39
+ @include button-size($button-tny, false, false);
40
+ }
41
+
42
+ .small {
43
+ @include button-size($button-sml, false, false);
44
+ }
45
+
46
+ .medium {
47
+ @include button-size($button-med, false, false);
48
+ }
@@ -0,0 +1,38 @@
1
+ @import "faalis/dashboard/ltr/foundation_and_overrides";
2
+ @import "faalis/variables";
3
+
4
+ .float-right {
5
+ float: right !important;
6
+ }
7
+ .float-left {
8
+ float: left !important;
9
+ }
10
+
11
+ .text-right {
12
+ text-align: right !important;
13
+ }
14
+ .text-left {
15
+ text-align: left !important;
16
+ }
17
+
18
+ .append {
19
+ @include prefix-postfix-base;
20
+ @include postfix;
21
+ @include grid-column($columns:3,$float:right);
22
+ border-radius: 0 $border-radius $border-radius 0 !important;
23
+
24
+ text-align: center;
25
+ i {
26
+ color: gray;
27
+ }
28
+ }
29
+
30
+ input[type="search"].append, input[type="text"].append {
31
+ text-align: left;
32
+ @include grid-column($columns:9);
33
+ border-radius: $border-radius 0 0 $border-radius !important;
34
+ border-color: lightgray;
35
+ &:focus {
36
+ border-color: lightgray;
37
+ }
38
+ }
@@ -0,0 +1,1014 @@
1
+ // Required global settings and mixins for Foundation
2
+ @import "foundation/foundation-global";
3
+ @import "faalis/variables";
4
+
5
+ // Settings file to override Foundation variables
6
+
7
+ // You can find the variables for each component at the bottom of their
8
+ // doc page. We tried to name them to where they'd make sense just by reading them.
9
+ // Go to http://foundation.zurb.com/docs/ to find what you need.
10
+
11
+ //
12
+ // Foundation Global Variables
13
+ //
14
+
15
+ // This is the default html and body font-size for the base em value.
16
+ // $em-base: 16px;
17
+
18
+ // We use these to control various global styles
19
+ // $body-bg: #fff;
20
+ // $body-font-color: #222;
21
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
22
+ // $body-font-weight: normal;
23
+ // $body-font-style: normal;
24
+
25
+ // We use this to control font-smoothing
26
+ // $font-smoothing: antialiased;
27
+
28
+ // We use these to control text direction settings
29
+
30
+ $text-direction: ltr;
31
+
32
+ // We use these as default colors throughout
33
+ // $primary-color: #2ba6cb;
34
+ // $secondary-color: #e9e9e9;
35
+ $alert-color: $alizarin;
36
+ $success-color: $emerald;
37
+
38
+ // We use these to make sure border radius matches unless we want it different.
39
+ // $global-radius: 3px;
40
+ // $global-rounded: 1000px;
41
+
42
+ // We use these to control inset shadow shiny edges and depressions.
43
+ // $shiny-edge-size: 0 1px 0;
44
+ // $shiny-edge-color: rgba(#fff, .5);
45
+ // $shiny-edge-active-color: rgba(#000, .2);
46
+
47
+ // We use this to control whether or not CSS classes come through in the gem files.
48
+ $include-html-classes: true;
49
+ // $include-print-styles: true;
50
+
51
+ // Modular html classes
52
+ // $include-html-grid-classes: $include-html-classes;
53
+ // $include-html-visibility-classes: $include-html-classes;
54
+ // $include-html-button-classes: $include-html-classes;
55
+ // $include-html-form-classes: $include-html-classes;
56
+ // $include-html-media-classes: $include-html-classes;
57
+ // $include-html-section-classes: $include-html-classes;
58
+ // $include-html-reveal-classes: $include-html-classes;
59
+ // $include-html-alert-classes: $include-html-classes;
60
+ // $include-html-nav-classes: $include-html-classes;
61
+ // $include-html-label-classes: $include-html-classes;
62
+ // $include-html-panel-classes: $include-html-classes;
63
+ // $include-html-pricing-classes: $include-html-classes;
64
+ // $include-html-progress-classes: $include-html-classes;
65
+
66
+ //
67
+ // Grid Variables
68
+ //
69
+
70
+ //$row-width: 100%;
71
+ // $column-gutter: 1.875em;
72
+ // $total-columns: 12;
73
+
74
+ //
75
+ // Block Grid Variables
76
+ //
77
+
78
+ // We use this to control the maximum number of block grid elements per row
79
+ // $block-grid-elements: 12;
80
+ // $block-grid-default-spacing: 10px;
81
+
82
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
83
+ // $block-grid-media-queries: true;
84
+
85
+ //
86
+ // Typography Variables
87
+ //
88
+
89
+ // We use these to control header font styles
90
+ // $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
91
+ // $header-font-weight: bold;
92
+ // $header-font-style: normal;
93
+ // $header-font-color: #222;
94
+ // $header-line-height: 1.4;
95
+ // $header-top-margin: .2em;
96
+ // $header-bottom-margin: .5em;
97
+ // $header-text-rendering: optimizeLegibility;
98
+
99
+ // We use these to control header font sizes
100
+ // $h1-font-size: emCalc(44px);
101
+ // $h2-font-size: emCalc(37px);
102
+ // $h3-font-size: emCalc(27px);
103
+ // $h4-font-size: emCalc(23px);
104
+ // $h5-font-size: emCalc(18px);
105
+ // $h6-font-size: 1em;
106
+
107
+ // These control how subheaders are styled.
108
+ // $subheader-line-height: 1.4;
109
+ // $subheader-font-color: lighten($header-font-color, 30%);
110
+ // $subheader-font-weight: 300;
111
+ // $subheader-top-margin: .2em;
112
+ // $subheader-bottom-margin: .5em;
113
+
114
+ // A general <small> styling
115
+ // $small-font-size: 60%;
116
+ // $small-font-color: lighten($header-font-color, 30%);
117
+
118
+ // We use these to style paragraphs
119
+ // $paragraph-font-family: inherit;
120
+ // $paragraph-font-weight: normal;
121
+ // $paragraph-font-size: 1em;
122
+ // $paragraph-line-height: 1.6;
123
+ // $paragraph-margin-bottom: emCalc(20px);
124
+ // $paragraph-aside-font-size: emCalc(14px);
125
+ // $paragraph-aside-line-height: 1.35;
126
+ // $paragraph-aside-font-style: italic;
127
+
128
+ // We use these to style <code> tags
129
+ // $code-color: darken($alert-color, 15%);
130
+ // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
131
+ // $code-font-weight: bold;
132
+
133
+ // We use these to style anchors
134
+ // $anchor-text-decoration: none;
135
+ // $anchor-font-color: $primary-color;
136
+ // $anchor-font-color-hover: darken($primary-color, 5%);
137
+
138
+ // We use these to style the <hr> element
139
+ // $hr-border-width: 1px;
140
+ // $hr-border-style: solid;
141
+ // $hr-border-color: #ddd;
142
+ // $hr-margin: emCalc(20px);
143
+
144
+ // We use these to style lists
145
+ // $list-style-position: outside;
146
+ // $list-side-margin: emCalc(18px);
147
+ // $definition-list-header-weight: bold;
148
+ // $definition-list-header-margin-bottom: .3em;
149
+ // $definition-list-margin-bottom: emCalc(12px);
150
+
151
+ // We use these to style blockquotes
152
+ // $blockquote-font-color: lighten($header-font-color, 30%);
153
+ // $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
154
+ // $blockquote-border: 1px solid #ddd;
155
+ // $blockquote-cite-font-size: emCalc(13px);
156
+ // $blockquote-cite-font-color: lighten($header-font-color, 20%);
157
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
158
+
159
+ // Acronym styles
160
+ // $acronym-underline: 1px dotted #ddd;
161
+
162
+ // We use these to control padding and margin
163
+ // $microformat-padding: emCalc(12px) emCalc(14px);
164
+ // $microformat-margin: 0 0 emCalc(20px) 0;
165
+
166
+ // We use these to control the border styles
167
+ // $microformat-border-width: 1px;
168
+ // $microformat-border-style: solid;
169
+ // $microformat-border-color: #ddd;
170
+
171
+ // We use these to control full name font styles
172
+ // $microformat-fullname-font-weight: bold;
173
+ // $microformat-fullname-font-size: emCalc(15px);
174
+
175
+ // We use this to control the summary font styles
176
+ // $microformat-summary-font-weight: bold;
177
+
178
+ // We use this to control abbr padding
179
+ // $microformat-abbr-padding: 0 emCalc(1px);
180
+
181
+ // We use this to control abbr font styles
182
+ // $microformat-abbr-font-weight: bold;
183
+ // $microformat-abbr-font-decoration: none;
184
+
185
+ //
186
+ // Form Variables
187
+ //
188
+
189
+ // We use this to set the base for lots of form spacing and positioning styles
190
+ // $form-spacing: emCalc(16px);
191
+
192
+ // We use these to style the labels in different ways
193
+ // $label-pointer: pointer;
194
+ // $label-font-size: emCalc(14px);
195
+ // $label-font-weight: 500;
196
+ // $label-font-color: lighten(#000, 30%);
197
+ // $label-bottom-margin: emCalc(3px);
198
+ // $input-font-family: inherit;
199
+ $input-font-color: $darkgray;
200
+ // $input-font-size: emCalc(14px);
201
+ // $input-bg-color: #fff;
202
+ // $input-focus-bg-color: darken(#fff, 2%);
203
+ // $input-border-color: darken(#fff, 20%);
204
+ // $input-focus-border-color: darken(#fff, 40%);
205
+ // $input-border-style: solid;
206
+ // $input-border-width: 1px;
207
+ // $input-disabled-bg: #ddd;
208
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
209
+
210
+ // We use these to style the fieldset border and spacing.
211
+ // $fieldset-border-style: solid;
212
+ // $fieldset-border-width: 1px;
213
+ $fieldset-border-color: #dedede;
214
+ $fieldset-padding: emCalc(20px) emCalc(30px) emCalc(20px);
215
+ $fieldset-margin: emCalc(18px) 0;
216
+
217
+ // We use these to style the legends when you use them
218
+ $legend-bg: none;
219
+ // $legend-font-weight: bold;
220
+ // $legend-padding: 0 emCalc(3px);
221
+
222
+ // We use these to style the prefix and postfix input elements
223
+ // $input-prefix-bg: darken(#fff, 5%);
224
+ // $input-prefix-border-color: darken(#fff, 20%);
225
+ // $input-prefix-border-size: 1px;
226
+ // $input-prefix-border-type: solid;
227
+ // $input-prefix-overflow: hidden;
228
+ // $input-prefix-font-color: #333;
229
+ // $input-prefix-font-color-alt: #fff;
230
+
231
+ // We use these to style the error states for inputs and labels
232
+ // $input-error-message-padding: emCalc(6px) emCalc(4px);
233
+ // $input-error-message-top: -($form-spacing) - emCalc(5px);
234
+ // $input-error-message-font-size: emCalc(12px);
235
+ // $input-error-message-font-weight: bold;
236
+ // $input-error-message-font-color: #fff;
237
+ // $input-error-message-font-color-alt: #333;
238
+
239
+ // We use these to build padding for buttons.
240
+ // $button-med: emCalc(12px);
241
+ // $button-tny: emCalc(7px);
242
+ // $button-sml: emCalc(9px);
243
+ // $button-lrg: emCalc(16px);
244
+
245
+ // We use this to control the display property.
246
+ // $button-display: inline-block;
247
+ // $button-margin-bottom: emCalc(20px);
248
+
249
+ // We use these to control button text styles.
250
+ // $button-font-family: inherit;
251
+ // $button-font-color: #fff;
252
+ // $button-font-color-alt: #333;
253
+ // $button-font-med: emCalc(16px);
254
+ // $button-font-tny: emCalc(11px);
255
+ // $button-font-sml: emCalc(13px);
256
+ // $button-font-lrg: emCalc(20px);
257
+ // $button-font-weight: bold;
258
+ // $button-font-align: center;
259
+
260
+ // We use these to control various hover effects.
261
+ // $button-function-factor: 10%;
262
+
263
+ // We use these to control button border styles.
264
+ // $button-border-width: 1px;
265
+ // $button-border-style: solid;
266
+ // $button-border-color: darken($primary-color, $button-function-factor);
267
+
268
+ // We use this to set the default radius used throughout the core.
269
+ // $button-radius: $global-radius;
270
+
271
+ // We use this to set default opacity for disabled buttons.
272
+ // $button-disabled-opacity: 0.6;
273
+
274
+ //
275
+ // Dropdown Button Variables
276
+ //
277
+
278
+ // We use these to set the color of the pip in dropdown buttons
279
+ // $dropdown-button-pip-color: #fff;
280
+ // $dropdown-button-pip-color-alt: #333;
281
+
282
+ // We use these to style tiny dropdown buttons
283
+ // $dropdown-button-padding-tny: $button-tny * 5;
284
+ // $dropdown-button-pip-size-tny: $button-tny;
285
+ // $dropdown-button-pip-right-tny: $button-tny * 2;
286
+ // $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
287
+
288
+ // We use these to style small dropdown buttons
289
+ // $dropdown-button-padding-sml: $button-sml * 5;
290
+ // $dropdown-button-pip-size-sml: $button-sml;
291
+ // $dropdown-button-pip-right-sml: $button-sml * 2;
292
+ // $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
293
+
294
+ // We use these to style medium dropdown buttons
295
+ // $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
296
+ // $dropdown-button-pip-size-med: $button-med - emCalc(3px);
297
+ // $dropdown-button-pip-right-med: $button-med * 2;
298
+ // $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
299
+
300
+ // We use these to style large dropdown buttons
301
+ // $dropdown-button-padding-lrg: $button-lrg * 4;
302
+ // $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
303
+ // $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
304
+ // $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
305
+
306
+ //
307
+ // Split Button Variables
308
+ //
309
+
310
+ // We use these to control different shared styles for Split Buttons
311
+ // $split-button-function-factor: 15%;
312
+ // $split-button-pip-color: #fff;
313
+ // $split-button-pip-color-alt: #333;
314
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
315
+
316
+ // We use these to control tiny split buttons
317
+ // $split-button-padding-tny: $button-tny * 9;
318
+ // $split-button-span-width-tny: $button-tny * 6.5;
319
+ // $split-button-pip-size-tny: $button-tny;
320
+ // $split-button-pip-top-tny: $button-tny * 2;
321
+ // $split-button-pip-left-tny: emCalc(-5px);
322
+
323
+ // We use these to control small split buttons
324
+ // $split-button-padding-sml: $button-sml * 7;
325
+ // $split-button-span-width-sml: $button-sml * 5;
326
+ // $split-button-pip-size-sml: $button-sml;
327
+ // $split-button-pip-top-sml: $button-sml * 1.5;
328
+ // $split-button-pip-left-sml: emCalc(-9px);
329
+
330
+ // We use these to control medium split buttons
331
+ // $split-button-padding-med: $button-med * 6.4;
332
+ // $split-button-span-width-med: $button-med * 4;
333
+ // $split-button-pip-size-med: $button-med - emCalc(3px);
334
+ // $split-button-pip-top-med: $button-med * 1.5;
335
+ // $split-button-pip-left-med: emCalc(-9px);
336
+
337
+ // We use these to control large split buttons
338
+ // $split-button-padding-lrg: $button-lrg * 6;
339
+ // $split-button-span-width-lrg: $button-lrg * 3.75;
340
+ // $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
341
+ // $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
342
+ // $split-button-pip-left-lrg: emCalc(-9px);
343
+
344
+ //
345
+ // Alert Variables
346
+ //
347
+
348
+ // We use this to control alert padding.
349
+ // $alert-padding-top: emCalc(11px);
350
+ // $alert-padding-left: $alert-padding-top;
351
+ // $alert-padding-right: $alert-padding-top + emCalc(10px);
352
+ // $alert-padding-bottom: $alert-padding-top + emCalc(1px);
353
+
354
+ // We use these to control text style.
355
+ // $alert-font-weight: bold;
356
+ // $alert-font-size: emCalc(14px);
357
+ // $alert-font-color: #fff;
358
+ // $alert-font-color-alt: darken($secondary-color, 60%);
359
+
360
+ // We use this for close hover effect.
361
+ // $alert-function-factor: 10%;
362
+
363
+ // We use these to control border styles.
364
+ // $alert-border-style: solid;
365
+ // $alert-border-width: 1px;
366
+ // $alert-border-color: darken($primary-color, $alert-function-factor);
367
+ // $alert-bottom-margin: emCalc(20px);
368
+
369
+ // We use these to style the close buttons
370
+ $alert-close-color: #fff;
371
+ $alert-close-position: emCalc(12px);
372
+ // $alert-close-font-size: emCalc(22px);
373
+ // $alert-close-opacity: 0.3;
374
+ // $alert-close-opacity-hover: 0.5;
375
+ // $alert-close-padding: 5px 4px 4px;
376
+
377
+ // We use this to control border radius
378
+ // $alert-radius: $global-radius;
379
+
380
+ //
381
+ // Breadcrumb Variables
382
+ //
383
+
384
+ // We use this to set the background color for the breadcrumb container.
385
+ // $crumb-bg: lighten($secondary-color, 5%);
386
+
387
+ // We use these to set the padding around the breadcrumbs.
388
+ // $crumb-padding: emCalc(6px) emCalc(14px) emCalc(9px);
389
+ // $crumb-side-padding: emCalc(12px);
390
+
391
+ // We use these to control border styles.
392
+ // $crumb-function-factor: 10%;
393
+ // $crumb-border-size: 1px;
394
+ // $crumb-border-style: solid;
395
+ // $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
396
+ // $crumb-radius: $global-radius;
397
+
398
+ // We use these to set various text styles for breadcrumbs.
399
+ // $crumb-font-size: emCalc(11px);
400
+ // $crumb-font-color: $primary-color;
401
+ // $crumb-font-color-current: #333;
402
+ // $crumb-font-color-unavailable: #999;
403
+ // $crumb-font-transform: uppercase;
404
+ // $crumb-link-decor: underline;
405
+
406
+ // We use these to control the slash between breadcrumbs
407
+ // $crumb-slash-color: #aaa;
408
+ // $crumb-slash: "/";
409
+
410
+ //
411
+ // Clearing Variables
412
+ //
413
+
414
+ // We use these to set the background colors for parts of Clearing.
415
+ // $clearing-bg: #111;
416
+ // $clearing-caption-bg: $clearing-bg;
417
+ // $clearing-carousel-bg: #111;
418
+ // $clearing-img-bg: $clearing-bg;
419
+
420
+ // We use these to style the close button
421
+ // $clearing-close-color: #fff;
422
+ // $clearing-close-size: 40px;
423
+
424
+ // We use these to style the arrows
425
+ // $clearing-arrow-size: 16px;
426
+ // $clearing-arrow-color: $clearing-close-color;
427
+
428
+ // We use these to style captions
429
+ // $clearing-caption-font-color: #fff;
430
+ // $clearing-caption-padding: 10px 30px;
431
+
432
+ // We use these to make the image and carousel height and style
433
+ // $clearing-active-img-height: 75%;
434
+ // $clearing-carousel-height: 150px;
435
+ // $clearing-carousel-thumb-width: 175px;
436
+ // $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
437
+
438
+ //
439
+ // Custom Form Variables
440
+ //
441
+
442
+ // We use these to control the basic form styles input styles
443
+ // $custom-form-border-color: #ccc;
444
+ // $custom-form-bg: #fff;
445
+ // $custom-form-bg-disabled: #ddd;
446
+ // $custom-form-check-color: #222;
447
+
448
+ // We use these to style the custom select form element.
449
+ // $custom-select-bg: #fff;
450
+ // $custom-select-fade-to-color: #f3f3f3;
451
+ // $custom-select-border-color: #ddd;
452
+ // $custom-select-triangle-color: #aaa;
453
+ // $custom-select-triangle-color-open: #222;
454
+ // $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
455
+ // $custom-select-margin-bottom: emCalc(20px);
456
+ // $custom-select-font-color-selected: #141414;
457
+ // $custom-select-disabled-color: #888;
458
+
459
+ // We use these to control the style of the custom select dropdown element.
460
+ // $custom-dropdown-height: 200px;
461
+ // $custom-dropdown-bg: #fff;
462
+ // $custom-dropdown-border-color: darken(#fff, 20%);
463
+ // $custom-dropdown-border-width: 1px;
464
+ // $custom-dropdown-border-style: solid;
465
+ // $custom-dropdown-font-color: #555;
466
+ // $custom-dropdown-font-size: emCalc(14px);
467
+ // $custom-dropdown-color-selected: #eeeeee;
468
+ // $custom-dropdown-font-color-selected: #000;
469
+ // $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
470
+ // $custom-dropdown-offset-top: none;
471
+ // $custom-dropdown-list-padding: emCalc(4px);
472
+ // $custom-dropdown-left-padding: emCalc(6px);
473
+ // $custom-dropdown-right-padding: emCalc(38px);
474
+ // $custom-dropdown-list-item-min-height: emCalc(24px);
475
+
476
+ //
477
+ // Dropdown Variables
478
+ //
479
+
480
+ // We use these to controls height and width styles.
481
+ // $f-dropdown-max-width: 200px;
482
+ // $f-dropdown-height: auto;
483
+ // $f-dropdown-max-height: none;
484
+ // $f-dropdown-margin-top: 2px;
485
+
486
+ // We use this to control the background color
487
+ // $f-dropdown-bg: #fff;
488
+
489
+ // We use this to set the border styles for dropdowns.
490
+ // $f-dropdown-border-style: solid;
491
+ // $f-dropdown-border-width: 1px;
492
+ // $f-dropdown-border-color: darken(#fff, 20%);
493
+
494
+ // We use these to style the triangle pip.
495
+ // $f-dropdown-triangle-size: 6px;
496
+ // $f-dropdown-triangle-color: #fff;
497
+ // $f-dropdown-triangle-side-offset: 10px;
498
+
499
+ // We use these to control styles for the list elements.
500
+ // $f-dropdown-list-style: none;
501
+ // $f-dropdown-font-color: #555;
502
+ // $f-dropdown-font-size: emCalc(14px);
503
+ // $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
504
+ // $f-dropdown-line-height: emCalc(18px);
505
+ // $f-dropdown-list-hover-bg: #eeeeee;
506
+ // $dropdown-mobile-left: 0;
507
+
508
+ // We use this to control the styles for when the dropdown has custom content.
509
+ // $f-dropdown-content-padding: emCalc(20px);
510
+
511
+ //
512
+ // Flex Video Variables
513
+ //
514
+
515
+ // We use these to control video container padding and margins
516
+ // $flex-video-padding-top: emCalc(25px);
517
+ // $flex-video-padding-bottom: 67.5%;
518
+ // $flex-video-margin-bottom: emCalc(16px);
519
+
520
+ // We use this to control widescreen bottom padding
521
+ // $flex-video-widescreen-padding-bottom: 57.25%;
522
+
523
+ //
524
+ // Inline List Variables
525
+ //
526
+
527
+ // We use this to control the margins and padding of the inline list.
528
+ // $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
529
+ // $inline-list-margin: 0 0;
530
+ // $inline-list-padding: 0;
531
+
532
+ // We use this to control the overflow of the inline list.
533
+ // $inline-list-overflow: hidden;
534
+
535
+ // We use this to control the list items
536
+ // $inline-list-display: block;
537
+
538
+ // We use this to control any elments within list items
539
+ // $inline-list-children-display: block;
540
+
541
+ //
542
+ // Joyride Variables
543
+ //
544
+
545
+ // Controlling default Joyride styles
546
+ // $joyride-tip-bg: rgb(0,0,0);
547
+ // $joyride-tip-default-width: 300px;
548
+ // $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
549
+ // $joyride-tip-border: solid 1px #555;
550
+ // $joyride-tip-radius: 4px;
551
+ // $joyride-tip-position-offset: 22px;
552
+
553
+ // Here, we're setting the tip dont styles
554
+ // $joyride-tip-font-color: #fff;
555
+ // $joyride-tip-font-size: emCalc(14px);
556
+ // $joyride-tip-header-weight: bold;
557
+
558
+ // This changes the nub size
559
+ // $joyride-tip-nub-size: 14px;
560
+
561
+ // This adjusts the styles for the timer when its enabled
562
+ // $joyride-tip-timer-width: 50px;
563
+ // $joyride-tip-timer-height: 3px;
564
+ // $joyride-tip-timer-color: #666;
565
+
566
+ // This changes up the styles for the close button
567
+ // $joyride-tip-close-color: #777;
568
+ // $joyride-tip-close-size: 30px;
569
+ // $joyride-tip-close-weight: normal;
570
+
571
+ // When Joyride is filling the screen, we use this style for the bg
572
+ // $joyride-screenfill: rgba(0,0,0,0.5);
573
+
574
+ //
575
+ // Keystroke Variables
576
+ //
577
+
578
+ // We use these to control text styles.
579
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
580
+ // $keystroke-font-size: emCalc(15px);
581
+ // $keystroke-font-color: #222;
582
+ // $keystroke-font-color-alt: #fff;
583
+ // $keystroke-function-factor: 7%;
584
+
585
+ // We use this to control keystroke padding.
586
+ // $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
587
+
588
+ // We use these to control background and border styles.
589
+ // $keystroke-bg: darken(#fff, $keystroke-function-factor);
590
+ // $keystroke-border-style: solid;
591
+ // $keystroke-border-width: 1px;
592
+ // $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
593
+ // $keystroke-radius: $global-radius;
594
+
595
+ //
596
+ // Label Variables
597
+ //
598
+
599
+ // We use these to style the labels
600
+ // $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
601
+ // $label-radius: $global-radius;
602
+
603
+ // We use these to style the label text
604
+ // $label-font-sizing: emCalc(14px);
605
+ // $label-font-weight: bold;
606
+
607
+ //
608
+ // Orbit Settings
609
+ //
610
+
611
+ // We use these to control the caption styles
612
+ // $orbit-container-bg: #f5f5f5;
613
+ // $orbit-caption-bg-old-browser: #000;
614
+ // $orbit-caption-bg-old: rgb(0,0,0);
615
+ // $orbit-caption-bg: rgba(0,0,0,0.6);
616
+ // $orbit-caption-font-color: #fff;
617
+
618
+ // We use these to control the left/right nav styles
619
+ // $orbit-nav-bg-old: rgb(0,0,0);
620
+ // $orbit-nav-bg: rgba(0,0,0,0.6);
621
+
622
+ // We use these to control the timer styles
623
+ // $orbit-timer-bg-old: rgb(0,0,0);
624
+ // $orbit-timer-bg: rgba(0,0,0,0.6);
625
+
626
+ // We use these to control the bullet nav styles
627
+ // $orbit-bullet-nav-color: #999;
628
+ // $orbit-bullet-nav-color-active: #222;
629
+
630
+ // We use thes to controls the style of slide numbers
631
+ // $orbit-slide-number-bg: rgb(0,0,0);
632
+ // $orbit-slide-number-font-color: #fff;
633
+ // $orbit-slide-number-padding: emCalc(5px);
634
+
635
+ // Margin for when Orbit is stacked on small screens
636
+ // $stack-on-small-margin-bottom: emCalc(20px); // Doesn't quite work yet
637
+
638
+ //
639
+ // Pagination Variables
640
+ //
641
+
642
+ // We use these to control the pagination container
643
+ // $pagination-height: emCalc(24px);
644
+ // $pagination-margin: emCalc(-5px);
645
+
646
+ // We use these to set the list-item properties
647
+ // $pagination-li-float: $default-float;
648
+ // $pagination-li-height: emCalc(24px);
649
+ // $pagination-li-font-color: #222;
650
+ // $pagination-li-font-size: emCalc(14px);
651
+ // $pagination-li-margin: emCalc(5px);
652
+
653
+ // We use these for the pagination anchor links
654
+ // $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
655
+ // $pagination-link-font-color: #999;
656
+ // $pagination-link-active-bg: darken(#fff, 10%);
657
+
658
+ // We use these for disabled anchor links
659
+ // $pagination-link-unavailable-cursor: default;
660
+ // $pagination-link-unavailable-font-color: #999;
661
+ // $pagination-link-unavailable-bg-active: transparent;
662
+
663
+ // We use these for currently selected anchor links
664
+ // $pagination-link-current-background: $primary-color;
665
+ // $pagination-link-current-font-color: #fff;
666
+ // $pagination-link-current-font-weight: bold;
667
+ // $pagination-link-current-cursor: default;
668
+ // $pagination-link-current-active-bg: $primary-color;
669
+
670
+ //
671
+ // Panel Variables
672
+ //
673
+
674
+ // We use these to control the background and border styles
675
+ // $panel-bg: darken(#fff, 5%);
676
+ // $panel-border-style: solid;
677
+ // $panel-border-size: 1px;
678
+
679
+ // We use this % to control how much we darken things on hover
680
+ // $panel-function-factor: 10%;
681
+ // $panel-border-color: darken($panel-bg, $panel-function-factor);
682
+
683
+ // We use these to set default inner padding and bottom margin
684
+ // $panel-margin-bottom: emCalc(20px);
685
+ // $panel-padding: emCalc(20px);
686
+
687
+ // We use these to set default font colors
688
+ // $panel-font-color: #333;
689
+ // $panel-font-color-alt: #fff;
690
+
691
+ //
692
+ // Pricing Table Variables
693
+ //
694
+
695
+ // We use this to control the border color
696
+ // $price-table-border: solid 1px #ddd;
697
+
698
+ // We use this to control the bottom margin of the pricing table
699
+ // $price-table-margin-bottom: emCalc(20px);
700
+
701
+ // We use these to control the title styles
702
+ // $price-title-bg: #ddd;
703
+ // $price-title-padding: emCalc(15px) emCalc(20px);
704
+ // $price-title-align: center;
705
+ // $price-title-color: #333;
706
+ // $price-title-weight: bold;
707
+ // $price-title-size: emCalc(16px);
708
+
709
+ // We use these to control the price styles
710
+ // $price-money-bg: #eee;
711
+ // $price-money-padding: emCalc(15px) emCalc(20px);
712
+ // $price-money-align: center;
713
+ // $price-money-color: #333;
714
+ // $price-money-weight: normal;
715
+ // $price-money-size: emCalc(20px);
716
+
717
+ // We use these to control the description styles
718
+ // $price-bg: #fff;
719
+ // $price-desc-color: #777;
720
+ // $price-desc-padding: emCalc(15px);
721
+ // $price-desc-align: center;
722
+ // $price-desc-font-size: emCalc(12px);
723
+ // $price-desc-weight: normal;
724
+ // $price-desc-line-height: 1.4;
725
+ // $price-desc-bottom-border: dotted 1px #ddd;
726
+
727
+ // We use these to control the list item styles
728
+ // $price-item-color: #333;
729
+ // $price-item-padding: emCalc(15px);
730
+ // $price-item-align: center;
731
+ // $price-item-font-size: emCalc(14px);
732
+ // $price-item-weight: normal;
733
+ // $price-item-bottom-border: dotted 1px #ddd;
734
+
735
+ // We use these to control the CTA area styles
736
+ // $price-cta-bg: #f5f5f5;
737
+ // $price-cta-align: center;
738
+ // $price-cta-padding: emCalc(20px) emCalc(20px) 0;
739
+
740
+ //
741
+ // Progress Bar Variables
742
+ //
743
+
744
+ // We use this to se the prog bar height
745
+ // $progress-bar-height: emCalc(25px);
746
+ // $progress-bar-color: transparent;
747
+
748
+ // We use these to control the border styles
749
+ // $progress-bar-border-color: darken(#fff, 20%);
750
+ // $progress-bar-border-size: 1px;
751
+ // $progress-bar-border-style: solid;
752
+ // $progress-bar-border-radius: $global-radius;
753
+
754
+ // We use these to control the margin & padding
755
+ // $progress-bar-pad: emCalc(2px);
756
+ // $progress-bar-margin-bottom: emCalc(10px);
757
+
758
+ // We use these to set the meter colors
759
+ // $progress-meter-color: $primary-color;
760
+ // $progress-meter-secondary-color: $secondary-color;
761
+ // $progress-meter-success-color: $success-color;
762
+ // $progress-meter-alert-color: $alert-color;
763
+
764
+ // NEED TO FINISH THE LOGIC HERE
765
+
766
+ //
767
+ // Reveal Variables
768
+ //
769
+
770
+ // We use these to control the style of the reveal overlay.
771
+ // $reveal-overlay-bg: rgba(#000, .45);
772
+ // $reveal-overlay-bg-old: #000;
773
+
774
+ // We use these to control the style of the modal itself.
775
+ // $reveal-modal-bg: #fff;
776
+ // $reveal-position-top: 50px;
777
+ // $reveal-default-width: 80%;
778
+ // $reveal-modal-padding: emCalc(20px);
779
+ // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
780
+
781
+ // We use these to style the reveal close button
782
+ // $reveal-close-font-size: emCalc(22px);
783
+ // $reveal-close-top: emCalc(8px);
784
+ // $reveal-close-side: emCalc(11px);
785
+ // $reveal-close-color: #aaa;
786
+ // $reveal-close-weight: bold;
787
+
788
+ // We use these to control the modal border
789
+ // $reveal-border-style: solid;
790
+ // $reveal-border-width: 1px;
791
+ // $reveal-border-color: #666;
792
+
793
+ //
794
+ // Section Variables
795
+ //
796
+
797
+ // We use these to set padding and hover factor
798
+ // $section-padding: emCalc(15px);
799
+ $section-function-factor: 5%;
800
+
801
+ // These style the titles
802
+ // $section-title-color: #333;
803
+ $section-title-bg: #f5f5f5;
804
+ // $section-title-bg-active: darken($section-title-bg, $section-function-factor);
805
+ // $section-title-bg-active-tabs: #fff;
806
+
807
+ // Want to control border size, here ya go!
808
+ // $section-border-size: 1px;
809
+ // $section-border-style: solid;
810
+ $section-border-color: #dfdfdf;
811
+
812
+ // Control the color of the background and some size options
813
+ // $section-content-bg: #fff;
814
+ // $section-vertical-nav-min-width: emCalc(200px);
815
+ // $section-bottom-margin: emCalc(20px);
816
+
817
+ //
818
+ // Side Nav Variables
819
+ //
820
+
821
+ // We use this to control padding.
822
+ // $side-nav-padding: emCalc(14px) 0;
823
+
824
+ // We use these to control list styles.
825
+ // $side-nav-list-type: none;
826
+ // $side-nav-list-position: inside;
827
+ // $side-nav-list-margin: 0 0 emCalc(7px) 0;
828
+
829
+ // We use these to control link styles.
830
+ // $side-nav-link-color: $primary-color;
831
+ // $side-nav-link-color-active: lighten(#000, 30%);
832
+ // $side-nav-font-size: emCalc(14px);
833
+ // $side-nav-font-weight: bold;
834
+
835
+ // We use these to control border styles
836
+ // $side-nav-divider-size: 1px;
837
+ // $side-nav-divider-style: solid;
838
+ // $side-nav-divider-color: darken(#fff, 10%);
839
+
840
+ //
841
+ // Sub Nav Variables
842
+ //
843
+
844
+ // We use these to control margin and padding
845
+ // $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
846
+ // $sub-nav-list-padding-top: emCalc(4px);
847
+
848
+ // We use this to control the definition
849
+ // $sub-nav-font-size: emCalc(14px);
850
+ // $sub-nav-font-color: #999;
851
+ // $sub-nav-font-weight: normal;
852
+ // $sub-nav-text-decoration: none;
853
+ // $sub-nav-border-radius: 1000px;
854
+
855
+ // We use these to control the active item styles
856
+ // $sub-nav-active-font-weight: bold;
857
+ // $sub-nav-active-bg: $primary-color;
858
+ // $sub-nav-active-color: #fff;
859
+ // $sub-nav-active-padding: emCalc(3px) emCalc(9px);
860
+ // $sub-nav-active-cursor: default;
861
+
862
+ //
863
+ // Switch Variables
864
+ //
865
+
866
+ // Controlling border styles and background colors for the switch container
867
+ // $switch-border-color: darken(#fff, 20%);
868
+ // $switch-border-style: solid;
869
+ // $switch-border-width: 1px;
870
+ // $switch-bg: #fff;
871
+
872
+ // We use these to control the switch heights for our default classes
873
+ // $switch-height-tny: 22px;
874
+ // $switch-height-sml: 28px;
875
+ // $switch-height-med: 36px;
876
+ // $switch-height-lrg: 44px;
877
+ // $switch-bottom-margin: emCalc(20px);
878
+
879
+ // We use these to control default font sizes for our classes.
880
+ // $switch-font-size-tny: 11px;
881
+ // $switch-font-size-sml: 12px;
882
+ // $switch-font-size-med: 14px;
883
+ // $switch-font-size-lrg: 17px;
884
+ // $switch-label-side-padding: 6px;
885
+
886
+ // We use these to style the switch-paddle
887
+ // $switch-paddle-bg: #fff;
888
+ // $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
889
+ // $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
890
+ // $switch-paddle-border-width: 1px;
891
+ // $switch-paddle-border-style: solid;
892
+ // $switch-paddle-transition-speed: .1s;
893
+ // $switch-paddle-transition-ease: ease-out;
894
+ // $switch-positive-color: lighten($success-color, 50%);
895
+ // $switch-negative-color: #f5f5f5;
896
+
897
+ // Outline Style for tabbing through switches
898
+ // $switch-label-outline: 1px dotted #888;
899
+
900
+ //
901
+ // Table Variables
902
+ //
903
+
904
+ // These control the background color for the table and even rows
905
+ // $table-bg: #fff;
906
+ // $table-even-row-bg: #f9f9f9;
907
+
908
+ // These control the table cell border style
909
+ // $table-border-style: solid;
910
+ // $table-border-size: 1px;
911
+ // $table-border-color: #ddd;
912
+
913
+ // These control the table head styles
914
+ // $table-head-bg: #f5f5f5;
915
+ // $table-head-font-size: emCalc(14px);
916
+ // $table-head-font-color: #222;
917
+ // $table-head-font-weight: bold;
918
+ // $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
919
+
920
+ // These control the row padding and font styles
921
+ // $table-row-padding: emCalc(9px) emCalc(10px);
922
+ // $table-row-font-size: emCalc(14px);
923
+ // $table-row-font-color: #222;
924
+ // $table-line-height: emCalc(18px);
925
+
926
+ // These are for controlling the display and margin of tables
927
+ // $table-display: table-cell;
928
+ // $table-margin-bottom: emCalc(20px);
929
+
930
+ //
931
+ // Image Thumbnail Variables
932
+ //
933
+
934
+ // We use these to control border styles
935
+ // $thumb-border-style: solid;
936
+ // $thumb-border-width: 4px;
937
+ // $thumb-border-color: #fff;
938
+ // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
939
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
940
+
941
+ // Radius and transition speed for thumbs
942
+ // $thumb-radius: $global-radius;
943
+ // $thumb-transition-speed: 200ms;
944
+
945
+ //
946
+ // Tooltip Variables
947
+ //
948
+ // $has-tip-border-bottom: dotted 1px #ccc;
949
+ // $has-tip-font-weight: bold;
950
+ // $has-tip-font-color: #333;
951
+ // $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
952
+ // $has-tip-font-color-hover: $primary-color;
953
+ // $has-tip-cursor-type: help;
954
+
955
+ // $tooltip-padding: emCalc(8px);
956
+ // $tooltip-bg: #000;
957
+ // $tooltip-font-size: emCalc(15px);
958
+ // $tooltip-font-weight: bold;
959
+ // $tooltip-font-color: #fff;
960
+ // $tooltip-line-height: 1.3;
961
+ // $tooltip-close-font-size: emCalc(10px);
962
+ // $tooltip-close-font-weight: normal;
963
+ // $tooltip-close-font-color: #888;
964
+ // $tooltip-font-size-sml: emCalc(14px);
965
+ // $tooltip-radius: $global-radius;
966
+ // $tooltip-pip-size: 5px;
967
+
968
+ //
969
+ // Top Bar Variables
970
+ //
971
+
972
+ // Background color for the top bar
973
+ $topbar-bg: $dashboard-nav-background;
974
+
975
+ // Height and margin
976
+ //$topbar-height: emCalc(60px);
977
+ //$topbar-margin-bottom: emCalc(20px);
978
+
979
+ // Control Input height for top bar
980
+ $topbar-input-height: emCalc(60px);
981
+
982
+ // Controlling the styles for the title in the top bar
983
+ // $topbar-title-weight: bold;
984
+ // $topbar-title-font-size: emCalc(17px);
985
+
986
+ // Set the link colors and styles for top-level nav
987
+ // $topbar-link-color: #fff;
988
+ // $topbar-link-weight: bold;
989
+ // $topbar-link-font-size: emCalc(13px);
990
+
991
+ // Style the top bar dropdown elements
992
+ // $topbar-dropdown-bg: #333;
993
+ // $topbar-dropdown-link-color: #fff;
994
+ // $topbar-dropdown-toggle-size: 5px;
995
+ // $topbar-dropdown-toggle-color: #fff;
996
+ // $topbar-dropdown-toggle-alpha: 0.5;
997
+ // $dropdown-label-color: #555;
998
+
999
+ // Top menu icon styles
1000
+ // $topbar-menu-link-transform: uppercase;
1001
+ // $topbar-menu-link-font-size: emCalc(13px);
1002
+ // $topbar-menu-link-weight: bold;
1003
+ // $topbar-menu-link-color: #fff;
1004
+ // $topbar-menu-icon-color: #fff;
1005
+ // $topbar-menu-link-color-toggled: #888;
1006
+ // $topbar-menu-icon-color-toggled: #888;
1007
+
1008
+ // Transitions and breakpoint styles
1009
+ $topbar-transition-speed: 300ms;
1010
+ $topbar-breakpoint: emCalc(768px); // Change to 9999px for always mobile layout
1011
+ //$topbar-media-query: "only screen and (min-width "#{$topbar-breakpoint}")";
1012
+
1013
+
1014
+ @import 'foundation';