recruiter 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/Rakefile +2 -0
  4. data/app/assets/images/ruby.png +0 -0
  5. data/app/assets/images/ruby_72x72.png +0 -0
  6. data/app/assets/images/ruby_rotated.png +0 -0
  7. data/app/assets/images/ruby_worker.png +0 -0
  8. data/app/assets/javascripts/recruiter/application.js +3 -0
  9. data/app/assets/javascripts/recruiter/filters.js +35 -0
  10. data/app/assets/javascripts/recruiter/site.js +3 -0
  11. data/app/assets/stylesheets/recruiter/application.css.scss +7 -0
  12. data/app/assets/stylesheets/recruiter/foundation_and_overrides.scss +1251 -0
  13. data/app/assets/stylesheets/recruiter/gh-fork-ribbon.css +140 -0
  14. data/app/assets/stylesheets/recruiter/site.css.sass +116 -0
  15. data/app/assets/stylesheets/recruiter/variables.css.sass +6 -0
  16. data/app/controllers/recruiter/filters_controller.rb +14 -0
  17. data/app/controllers/recruiter/jobs_controller.rb +18 -0
  18. data/app/controllers/recruiter/omniauth_callbacks_controller.rb +45 -0
  19. data/app/controllers/recruiter/users/jobs_controller.rb +59 -0
  20. data/app/controllers/recruiter/users/user_controller.rb +8 -0
  21. data/app/controllers/recruiter_controller.rb +13 -0
  22. data/app/decorators/recruiter/job_decorator.rb +49 -0
  23. data/app/decorators/recruiter/user_decorator.rb +22 -0
  24. data/app/helpers/recruiter/crud_flash_messager_helper.rb +21 -0
  25. data/app/helpers/recruiter/form_helper.rb +29 -0
  26. data/app/helpers/recruiter/header_helper.rb +13 -0
  27. data/app/helpers/recruiter/icons_helper.rb +29 -0
  28. data/app/helpers/recruiter/links_helper.rb +59 -0
  29. data/app/helpers/recruiter/markdown_helper.rb +12 -0
  30. data/app/helpers/recruiter/oauth_providers_helper.rb +23 -0
  31. data/app/helpers/recruiter/show_helper.rb +29 -0
  32. data/app/models/recruiter/city.rb +9 -0
  33. data/app/models/recruiter/custom_devise_failure.rb +7 -0
  34. data/app/models/recruiter/filters.rb +44 -0
  35. data/app/models/recruiter/filters/city_filter.rb +21 -0
  36. data/app/models/recruiter/filters/job_filter.rb +21 -0
  37. data/app/models/recruiter/filters/state_filter.rb +17 -0
  38. data/app/models/recruiter/job.rb +34 -0
  39. data/app/{helpers/recruiter/application_helper.rb → models/recruiter/oauth.rb} +1 -1
  40. data/app/models/recruiter/oauth/base.rb +24 -0
  41. data/app/models/recruiter/oauth/facebook.rb +6 -0
  42. data/app/models/recruiter/oauth/github.rb +6 -0
  43. data/app/models/recruiter/oauth/google.rb +9 -0
  44. data/app/models/recruiter/state.rb +9 -0
  45. data/app/models/recruiter/tag.rb +6 -0
  46. data/app/models/recruiter/user.rb +11 -0
  47. data/app/views/devise/sessions/new.html.erb +8 -0
  48. data/app/views/kaminari/_first_page.html.erb +11 -0
  49. data/app/views/kaminari/_gap.html.erb +8 -0
  50. data/app/views/kaminari/_last_page.html.erb +11 -0
  51. data/app/views/kaminari/_next_page.html.erb +11 -0
  52. data/app/views/kaminari/_page.html.erb +12 -0
  53. data/app/views/kaminari/_paginator.html.erb +23 -0
  54. data/app/views/kaminari/_prev_page.html.erb +11 -0
  55. data/app/views/layouts/recruiter/application.html.erb +28 -10
  56. data/app/views/recruiter/_analytics.html.erb +10 -0
  57. data/app/views/recruiter/_filters.html.erb +17 -0
  58. data/app/views/recruiter/_flashes.html.erb +14 -0
  59. data/app/views/recruiter/_footer.html.erb +7 -0
  60. data/app/views/recruiter/_form_actions.html.erb +4 -0
  61. data/app/views/recruiter/_javascript.html.erb +10 -0
  62. data/app/views/recruiter/_login_button.html.erb +15 -0
  63. data/app/views/recruiter/_login_links.html.erb +7 -0
  64. data/app/views/recruiter/_login_status.html.erb +8 -0
  65. data/app/views/recruiter/_show_actions.html.erb +6 -0
  66. data/app/views/recruiter/_show_item.html.erb +8 -0
  67. data/app/views/recruiter/_tags.html.erb +6 -0
  68. data/app/views/recruiter/_top_menu.html.erb +28 -0
  69. data/app/views/recruiter/jobs/_job.html.erb +14 -0
  70. data/app/views/recruiter/jobs/index.html.erb +14 -0
  71. data/app/views/recruiter/jobs/show.html.erb +1 -0
  72. data/app/views/recruiter/users/jobs/_form.html.erb +30 -0
  73. data/app/views/recruiter/users/jobs/_job.html.erb +35 -0
  74. data/app/views/recruiter/users/jobs/edit.html.erb +3 -0
  75. data/app/views/recruiter/users/jobs/index.html.erb +24 -0
  76. data/app/views/recruiter/users/jobs/new.html.erb +3 -0
  77. data/app/views/recruiter/users/jobs/show.html.erb +4 -0
  78. data/config/initializers/devise.rb +272 -0
  79. data/config/initializers/simple_form.rb +145 -0
  80. data/config/routes.rb +19 -0
  81. data/config/spring.rb +1 -0
  82. data/db/migrate/20140617180316_create_recruiter_states.rb +12 -0
  83. data/db/migrate/20140617180934_create_recruiter_cities.rb +14 -0
  84. data/db/migrate/20140618164609_create_recruiter_users.rb +51 -0
  85. data/db/migrate/20140618165301_add_name_to_users.rb +5 -0
  86. data/db/migrate/20140618165802_create_recruiter_jobs.rb +14 -0
  87. data/db/migrate/20140618170815_create_recruiter_tags.rb +13 -0
  88. data/db/migrate/20140618170904_create_recruiter_jobs_tags.rb +10 -0
  89. data/lib/generators/templates/locales/devise.en.yml +59 -0
  90. data/lib/generators/templates/locales/devise.pt-BR.yml +60 -0
  91. data/lib/generators/templates/locales/en.yml +11 -0
  92. data/lib/generators/templates/locales/pt-BR.yml +237 -0
  93. data/lib/generators/templates/locales/recruiter.pt-BR.yml +78 -0
  94. data/lib/generators/templates/locales/simple_form.en.yml +26 -0
  95. data/lib/recruiter.rb +12 -0
  96. data/lib/recruiter/engine.rb +31 -0
  97. data/lib/recruiter/version.rb +1 -1
  98. metadata +362 -11
  99. data/app/assets/stylesheets/recruiter/application.css +0 -15
  100. data/app/controllers/recruiter/application_controller.rb +0 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 86d8d510771c43d9e39ad934382f0edce3e7fdff
4
- data.tar.gz: 277c6e0651ca8cc71f514d302527c12929e1a723
3
+ metadata.gz: 35621a9ee9742d50e5ffdb098a073af59dee153f
4
+ data.tar.gz: 5b2de0da106e5de3f25150e364f68fd13177fc1b
5
5
  SHA512:
6
- metadata.gz: 667cc7c497c81c67cae1d7c7d6edba43d73ac774935e49b8c0b3b7a8621507bc1f32d2388c0f3c57786c49351c3f7a213ad356cb7ff575be87332687e2444770
7
- data.tar.gz: 1ce4a495d7759fcd2fb8f75dbfe339111d114a9e68f35e254e81da1080e5dc7e6140d9fa6070015f0515203cacd194630f2b199700979dfc428e962a917a0885
6
+ metadata.gz: d559f0323b33247e7656d065af33b53fedfd6fefcc8120e6380d808a89b8d0ee4afd4fe1f2a3f80c89557fc8def2785536391d15303d83c5df531e594a6682a6
7
+ data.tar.gz: 993411f1b42b914a9a6516604c070eb6c3b50faa21c50bd8fa3849d561a8db66d45868ac568ff3a5bddb8025b5181354dd6d0d5b964509d1dce54d661a2ae904
data/README.md CHANGED
@@ -2,7 +2,7 @@ Recruiter
2
2
  ----------
3
3
 
4
4
  Recruiter is a Rails Engine for adding job posting functionality to a Rails APP. It is intended to be reusable code for
5
- websites such as [Ruby Jobs Brazil](RubyJobsBrazil.com.br)
5
+ websites such as [Ruby Jobs Brazil](http://rubyjobsbrazil.com.br)
6
6
 
7
7
  [![Build Status](https://travis-ci.org/mjacobus/recruiter.png?branch=master)](https://travis-ci.org/mjacobus/recruiter)
8
8
  [![Coverage Status](https://coveralls.io/repos/mjacobus/recruiter/badge.png)](https://coveralls.io/r/mjacobus/recruiter)
data/Rakefile CHANGED
@@ -14,6 +14,8 @@ RDoc::Task.new(:rdoc) do |rdoc|
14
14
  rdoc.rdoc_files.include('lib/**/*.rb')
15
15
  end
16
16
 
17
+ APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
17
19
 
18
20
 
19
21
 
Binary file
Binary file
Binary file
Binary file
@@ -10,4 +10,7 @@
10
10
  // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
11
  // about supported directives.
12
12
  //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require foundation
13
16
  //= require_tree .
@@ -0,0 +1,35 @@
1
+ jQuery(document).ready(function () {
2
+ $('[data-filter-select]').change(function () {
3
+ var options = $(this).data('filter-select');
4
+ options = $.extend({ url: '/filters' }, options);
5
+ var data = options.data ? options.data : {};
6
+ data[options.filterParam] = $(this).val();
7
+ data['filter'] = options.filter;
8
+ var element = $(options.target);
9
+
10
+ $.ajax({
11
+ url: options.url,
12
+ data: data,
13
+ success: function (json) {
14
+ populateSelect(element, json, { id: "", name: "selecione" } );
15
+ }
16
+ });
17
+ });
18
+ });
19
+
20
+ function populateSelect(element, options, first) {
21
+ element.html('');
22
+
23
+ if (first) {
24
+ appendOptionToSelect(element, first.id, first.name);
25
+ }
26
+
27
+ for (var i = 0; i < options.length; ++i) {
28
+ appendOptionToSelect(element, options[i].id, options[i].name);
29
+ }
30
+ }
31
+
32
+ function appendOptionToSelect(element, value, label) {
33
+ var option = ['<option value="', value, '">', label, '</option>' ].join('');
34
+ element.append(option);
35
+ }
@@ -0,0 +1,3 @@
1
+ $(document).ready(function () {
2
+ $(document).foundation();
3
+ });
@@ -0,0 +1,7 @@
1
+ /**
2
+ *= require_self
3
+ *= require_tree .
4
+ *= require ./foundation_and_overrides
5
+ */
6
+
7
+ // @import 'foundation-icons';
@@ -0,0 +1,1251 @@
1
+ // @import 'variables';
2
+ // TODO: use import instead of the below
3
+ $soft-gray: #eeeeee;
4
+ $dark-gray: #333333;
5
+ $dark-red: #980905;
6
+ $red: #C52F24;
7
+ $soft-blue: #D5E9F6;
8
+ $soft-yellow: #FFF9D8;
9
+
10
+ // Foundation by ZURB
11
+ // foundation.zurb.com
12
+ // Licensed under MIT Open Source
13
+
14
+ //
15
+ // FOUNDATION SETTINGS
16
+ //
17
+
18
+ // This is the default html and body font-size for the base rem value.
19
+ // $rem-base: 16px;
20
+
21
+ // Allows the use of rem-calc() or lower-bound() in your settings
22
+ @import "foundation/functions";
23
+
24
+ // $experimental: true;
25
+
26
+ // The default font-size is set to 100% of the browser style sheet (usually 16px)
27
+ // for compatibility with browser-based text zoom or user-set defaults.
28
+
29
+ // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
30
+ // If you want your base font-size to be different and not have it affect the grid breakpoints,
31
+ // set $rem-base to $base-font-size and make sure $base-font-size is a px value.
32
+ // $base-font-size: 100%;
33
+
34
+ // The $base-line-height is 100% while $base-font-size is 150%
35
+ // $base-line-height: 150%;
36
+
37
+ // We use this to control whether or not CSS classes come through in the gem files.
38
+ // $include-html-classes: true;
39
+ // $include-print-styles: true;
40
+ // $include-html-global-classes: $include-html-classes;
41
+
42
+ // Grid
43
+
44
+ // $include-html-grid-classes: $include-html-classes;
45
+ // $include-xl-html-grid-classes: false;
46
+
47
+ // $row-width: rem-calc(1000);
48
+ // $column-gutter: rem-calc(30);
49
+ // $total-columns: 12;
50
+
51
+ // We use these to control various global styles
52
+ // $body-bg: #fff;
53
+ // $body-font-color: #333;
54
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
55
+ // $body-font-weight: normal;
56
+ // $body-font-style: normal;
57
+
58
+ // We use this to control font-smoothing
59
+ // $font-smoothing: antialiased;
60
+
61
+ // We use these to control text direction settings
62
+ // $text-direction: ltr;
63
+ // $opposite-direction: right;
64
+ // $default-float: left;
65
+
66
+ // We use these as default colors throughout
67
+ $primary-color: $dark-gray;
68
+ // $secondary-color: #e7e7e7;
69
+ // $alert-color: #f04124;
70
+ // $success-color: #43AC6A;
71
+ // $warning-color: #f08a24;
72
+ // $info-color: #a0d3e8;
73
+
74
+ // We use these to make sure border radius matches unless we want it different.
75
+ // $global-radius: 3px;
76
+ // $global-rounded: 1000px;
77
+
78
+ // We use these to control inset shadow shiny edges and depressions.
79
+ // $shiny-edge-size: 0 1px 0;
80
+ // $shiny-edge-color: rgba(#fff, .5);
81
+ // $shiny-edge-active-color: rgba(#000, .2);
82
+
83
+ // Media Query Ranges
84
+ // $small-range: (0em, 40em);
85
+ // $medium-range: (40.063em, 64em);
86
+ // $large-range: (64.063em, 90em);
87
+ // $xlarge-range: (90.063em, 120em);
88
+ // $xxlarge-range: (120.063em);
89
+
90
+ // $screen: "only screen";
91
+
92
+ // $landscape: "#{$screen} and (orientation: landscape)";
93
+ // $portrait: "#{$screen} and (orientation: portrait)";
94
+
95
+ // $small-up: $screen;
96
+ // $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
97
+
98
+ // $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
99
+ // $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
100
+
101
+ // $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
102
+ // $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
103
+
104
+ // $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
105
+ // $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
106
+
107
+ // $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
108
+ // $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
109
+
110
+ // Legacy
111
+ // $small: $medium-up;
112
+ // $medium: $medium-up;
113
+ // $large: $large-up;
114
+
115
+ //We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
116
+ // $cursor-crosshair-value: crosshair;
117
+ // $cursor-default-value: default;
118
+ // $cursor-pointer-value: pointer;
119
+ // $cursor-help-value: help;
120
+ // $cursor-text-value: text;
121
+
122
+ //
123
+ // TYPOGRAPHY
124
+ //
125
+
126
+ // $include-html-type-classes: $include-html-classes;
127
+
128
+ // We use these to control header font styles
129
+ // $header-font-family: $body-font-family;
130
+ $header-font-weight: bold;
131
+ // $header-font-style: normal;
132
+ $header-font-color: #333;
133
+ // $header-line-height: 1.4;
134
+ // $header-top-margin: .2rem;
135
+ // $header-bottom-margin: .5rem;
136
+ // $header-text-rendering: optimizeLegibility;
137
+
138
+ // We use these to control header font sizes
139
+ $h1-font-size: rem-calc(26);
140
+ $h2-font-size: rem-calc(24);
141
+ $h3-font-size: rem-calc(18);
142
+ $h4-font-size: rem-calc(13);
143
+ $h5-font-size: rem-calc(12);
144
+ // $h6-font-size: 1rem;
145
+
146
+ // These control how subheaders are styled.
147
+ // $subheader-line-height: 1.4;
148
+ // $subheader-font-color: scale-color($header-font-color, $lightness: 35%);
149
+ // $subheader-font-weight: 300;
150
+ // $subheader-top-margin: .2rem;
151
+ // $subheader-bottom-margin: .5rem;
152
+
153
+ // A general <small> styling
154
+ // $small-font-size: 60%;
155
+ // $small-font-color: scale-color($header-font-color, $lightness: 35%);
156
+
157
+ // We use these to style paragraphs
158
+ // $paragraph-font-family: inherit;
159
+ // $paragraph-font-weight: normal;
160
+ // $paragraph-font-size: 1rem;
161
+ // $paragraph-line-height: 1.6;
162
+ // $paragraph-margin-bottom: rem-calc(20);
163
+ // $paragraph-aside-font-size: rem-calc(14);
164
+ // $paragraph-aside-line-height: 1.35;
165
+ // $paragraph-aside-font-style: italic;
166
+ // $paragraph-text-rendering: optimizeLegibility;
167
+
168
+ // We use these to style <code> tags
169
+ // $code-color: scale-color($alert-color, $lightness: -27%);
170
+ // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
171
+ // $code-font-weight: bold;
172
+
173
+ // We use these to style anchors
174
+ // $anchor-text-decoration: none;
175
+ // $anchor-font-color: $primary-color;
176
+ // $anchor-font-color-hover: scale-color($primary-color, $lightness: -14%);
177
+
178
+ // We use these to style the <hr> element
179
+ // $hr-border-width: 1px;
180
+ // $hr-border-style: solid;
181
+ // $hr-border-color: #ddd;
182
+ // $hr-margin: rem-calc(20);
183
+
184
+ // We use these to style lists
185
+ // $list-style-position: outside;
186
+ // $list-side-margin: 1.1rem;
187
+ // $list-ordered-side-margin: 1.4rem;
188
+ // $list-side-margin-no-bullet: 0;
189
+ // $list-nested-margin: rem-calc(20);
190
+ // $definition-list-header-weight: bold;
191
+ // $definition-list-header-margin-bottom: .3rem;
192
+ // $definition-list-margin-bottom: rem-calc(12);
193
+
194
+ // We use these to style blockquotes
195
+ // $blockquote-font-color: scale-color($header-font-color, $lightness: 35%);
196
+ // $blockquote-padding: rem-calc(9 20 0 19);
197
+ // $blockquote-border: 1px solid #ddd;
198
+ // $blockquote-cite-font-size: rem-calc(13);
199
+ // $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%);
200
+ // $blockquote-cite-link-color: $blockquote-cite-font-color;
201
+
202
+ // Acronym styles
203
+ // $acronym-underline: 1px dotted #ddd;
204
+
205
+ // We use these to control padding and margin
206
+ // $microformat-padding: rem-calc(10 12);
207
+ // $microformat-margin: rem-calc(0 0 20 0);
208
+
209
+ // We use these to control the border styles
210
+ // $microformat-border-width: 1px;
211
+ // $microformat-border-style: solid;
212
+ // $microformat-border-color: #ddd;
213
+
214
+ // We use these to control full name font styles
215
+ // $microformat-fullname-font-weight: bold;
216
+ // $microformat-fullname-font-size: rem-calc(15);
217
+
218
+ // We use this to control the summary font styles
219
+ // $microformat-summary-font-weight: bold;
220
+
221
+ // We use this to control abbr padding
222
+ // $microformat-abbr-padding: rem-calc(0 1);
223
+
224
+ // We use this to control abbr font styles
225
+ // $microformat-abbr-font-weight: bold;
226
+ // $microformat-abbr-font-decoration: none;
227
+
228
+ // Accordion
229
+
230
+ // $include-html-accordion-classes: $include-html-classes;
231
+
232
+ // $accordion-navigation-padding: rem-calc(16);
233
+ // $accordion-navigation-bg-color: #efefef ;
234
+ // $accordion-navigation-hover-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -5%);
235
+ // $accordion-navigation-active-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -3%);
236
+ // $accordion-navigation-font-color: #222;
237
+ // $accordion-navigation-font-size: rem-calc(16);
238
+ // $accordion-navigation-font-family: $body-font-family;
239
+
240
+ // $accordion-content-padding: $column-gutter/2;
241
+ // $accordion-content-active-bg-color: #fff;
242
+
243
+ // Alert Boxes
244
+
245
+ // $include-html-alert-classes: $include-html-classes;
246
+
247
+ // We use this to control alert padding.
248
+ // $alert-padding-top: rem-calc(14);
249
+ // $alert-padding-default-float: $alert-padding-top;
250
+ // $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
251
+ // $alert-padding-bottom: $alert-padding-top;
252
+
253
+ // We use these to control text style.
254
+ // $alert-font-weight: normal;
255
+ // $alert-font-size: rem-calc(13);
256
+ // $alert-font-color: #fff;
257
+ // $alert-font-color-alt: scale-color($secondary-color, $lightness: -66%);
258
+
259
+ // We use this for close hover effect.
260
+ // $alert-function-factor: -14%;
261
+
262
+ // We use these to control border styles.
263
+ // $alert-border-style: solid;
264
+ // $alert-border-width: 1px;
265
+ // $alert-border-color: scale-color($primary-color, $lightness: $alert-function-factor);
266
+ // $alert-bottom-margin: rem-calc(20);
267
+
268
+ // We use these to style the close buttons
269
+ // $alert-close-color: #333;
270
+ // $alert-close-top: 50%;
271
+ // $alert-close-position: rem-calc(5);
272
+ // $alert-close-font-size: rem-calc(22);
273
+ // $alert-close-opacity: 0.3;
274
+ // $alert-close-opacity-hover: 0.5;
275
+ // $alert-close-padding: 9px 6px 4px;
276
+
277
+ // We use this to control border radius
278
+ // $alert-radius: $global-radius;
279
+
280
+ // Block Grid
281
+
282
+ // $include-html-grid-classes: $include-html-classes;
283
+
284
+ // We use this to control the maximum number of block grid elements per row
285
+ // $block-grid-elements: 12;
286
+ // $block-grid-default-spacing: rem-calc(20);
287
+ // $align-block-grid-to-grid: true;
288
+
289
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
290
+ // $block-grid-media-queries: true;
291
+
292
+ // Breadcrumbs
293
+
294
+ // $include-html-nav-classes: $include-html-classes;
295
+
296
+ // We use this to set the background color for the breadcrumb container.
297
+ // $crumb-bg: scale-color($secondary-color, $lightness: 55%);
298
+
299
+ // We use these to set the padding around the breadcrumbs.
300
+ // $crumb-padding: rem-calc(9 14 9);
301
+ // $crumb-side-padding: rem-calc(12);
302
+
303
+ // We use these to control border styles.
304
+ // $crumb-function-factor: -10%;
305
+ // $crumb-border-size: 1px;
306
+ // $crumb-border-style: solid;
307
+ // $crumb-border-color: scale-color($crumb-bg, $lightness: $crumb-function-factor);
308
+ // $crumb-radius: $global-radius;
309
+
310
+ // We use these to set various text styles for breadcrumbs.
311
+ // $crumb-font-size: rem-calc(11);
312
+ // $crumb-font-color: $primary-color;
313
+ // $crumb-font-color-current: #333;
314
+ // $crumb-font-color-unavailable: #999;
315
+ // $crumb-font-transform: uppercase;
316
+ // $crumb-link-decor: underline;
317
+
318
+ // We use these to control the slash between breadcrumbs
319
+ // $crumb-slash-color: #aaa;
320
+ // $crumb-slash: "/";
321
+
322
+ //
323
+ // BUTTONS
324
+ //
325
+
326
+ // $include-html-button-classes: $include-html-classes;
327
+
328
+ // We use these to build padding for buttons.
329
+ // $button-tny: rem-calc(10);
330
+ // $button-sml: rem-calc(14);
331
+ // $button-med: rem-calc(16);
332
+ // $button-lrg: rem-calc(18);
333
+
334
+ // We use this to control the display property.
335
+ // $button-display: inline-block;
336
+ // $button-margin-bottom: rem-calc(20);
337
+
338
+ // We use these to control button text styles.
339
+ // $button-font-family: $body-font-family;
340
+ // $button-font-color: #fff;
341
+ // $button-font-color-alt: #333;
342
+ // $button-font-tny: rem-calc(11);
343
+ // $button-font-sml: rem-calc(13);
344
+ // $button-font-med: rem-calc(16);
345
+ // $button-font-lrg: rem-calc(20);
346
+ // $button-font-weight: normal;
347
+ // $button-font-align: center;
348
+
349
+ // We use these to control various hover effects.
350
+ // $button-function-factor: 5%;
351
+
352
+ // We use these to control button border styles.
353
+ // $button-border-width: 1px;
354
+ // $button-border-style: solid;
355
+
356
+ // We use this to set the default radius used throughout the core.
357
+ // $button-radius: $global-radius;
358
+ // $button-round: $global-rounded;
359
+
360
+ // We use this to set default opacity for disabled buttons.
361
+ // $button-disabled-opacity: 0.7;
362
+
363
+ // Button Groups
364
+
365
+ // $include-html-button-classes: $include-html-classes;
366
+
367
+ // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
368
+ // $button-bar-margin-opposite: rem-calc(10);
369
+ // $button-group-border-width: 1px;
370
+
371
+ // Clearing
372
+
373
+ // $include-html-clearing-classes: $include-html-classes;
374
+
375
+ // We use these to set the background colors for parts of Clearing.
376
+ // $clearing-bg: #333;
377
+ // $clearing-caption-bg: $clearing-bg;
378
+ // $clearing-carousel-bg: rgba (51,51,51,0.8);
379
+ // $clearing-img-bg: $clearing-bg;
380
+
381
+ // We use these to style the close button
382
+ // $clearing-close-color: #ccc;
383
+ // $clearing-close-size: 30px;
384
+
385
+ // We use these to style the arrows
386
+ // $clearing-arrow-size: 12px;
387
+ // $clearing-arrow-color: $clearing-close-color;
388
+
389
+ // We use these to style captions
390
+ // $clearing-caption-font-color: #ccc;
391
+ // $clearing-caption-font-size: 0.875em;
392
+ // $clearing-caption-padding: 10px 30px 20px;
393
+
394
+ // We use these to make the image and carousel height and style
395
+ // $clearing-active-img-height: 85%;
396
+ // $clearing-carousel-height: 120px;
397
+ // $clearing-carousel-thumb-width: 120px;
398
+ // $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
399
+
400
+ // Dropdown
401
+
402
+ // $include-html-dropdown-classes: $include-html-classes;
403
+
404
+ // We use these to controls height and width styles.
405
+ // $f-dropdown-max-width: 200px;
406
+ // $f-dropdown-height: auto;
407
+ // $f-dropdown-max-height: none;
408
+ // $f-dropdown-margin-top: 2px;
409
+
410
+ // We use this to control the background color
411
+ // $f-dropdown-bg: #fff;
412
+
413
+ // We use this to set the border styles for dropdowns.
414
+ // $f-dropdown-border-style: solid;
415
+ // $f-dropdown-border-width: 1px;
416
+ // $f-dropdown-border-color: scale-color(#fff, $lightness: -20%);
417
+
418
+ // We use these to style the triangle pip.
419
+ // $f-dropdown-triangle-size: 6px;
420
+ // $f-dropdown-triangle-color: #fff;
421
+ // $f-dropdown-triangle-side-offset: 10px;
422
+
423
+ // We use these to control styles for the list elements.
424
+ // $f-dropdown-list-style: none;
425
+ // $f-dropdown-font-color: #555;
426
+ // $f-dropdown-font-size: rem-calc(14);
427
+ // $f-dropdown-list-padding: rem-calc(5, 10);
428
+ // $f-dropdown-line-height: rem-calc(18);
429
+ // $f-dropdown-list-hover-bg: #eeeeee ;
430
+ // $dropdown-mobile-default-float: 0;
431
+
432
+ // We use this to control the styles for when the dropdown has custom content.
433
+ // $f-dropdown-content-padding: rem-calc(20);
434
+
435
+ // Dropdown Buttons
436
+
437
+ // $include-html-button-classes: $include-html-classes;
438
+
439
+ // We use these to set the color of the pip in dropdown buttons
440
+ // $dropdown-button-pip-color: #fff;
441
+ // $dropdown-button-pip-color-alt: #333;
442
+
443
+ // $button-pip-tny: rem-calc(6);
444
+ // $button-pip-sml: rem-calc(7);
445
+ // $button-pip-med: rem-calc(9);
446
+ // $button-pip-lrg: rem-calc(11);
447
+
448
+ // We use these to style tiny dropdown buttons
449
+ // $dropdown-button-padding-tny: $button-pip-tny * 7;
450
+ // $dropdown-button-pip-size-tny: $button-pip-tny;
451
+ // $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
452
+ // $dropdown-button-pip-top-tny: -$button-pip-tny / 2 + rem-calc(1);
453
+
454
+ // We use these to style small dropdown buttons
455
+ // $dropdown-button-padding-sml: $button-pip-sml * 7;
456
+ // $dropdown-button-pip-size-sml: $button-pip-sml;
457
+ // $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
458
+ // $dropdown-button-pip-top-sml: -$button-pip-sml / 2 + rem-calc(1);
459
+
460
+ // We use these to style medium dropdown buttons
461
+ // $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
462
+ // $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
463
+ // $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
464
+ // $dropdown-button-pip-top-med: -$button-pip-med / 2 + rem-calc(2);
465
+
466
+ // We use these to style large dropdown buttons
467
+ // $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
468
+ // $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
469
+ // $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
470
+ // $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
471
+
472
+ // Flex Video
473
+
474
+ // $include-html-media-classes: $include-html-classes;
475
+
476
+ // We use these to control video container padding and margins
477
+ // $flex-video-padding-top: rem-calc(25);
478
+ // $flex-video-padding-bottom: 67.5%;
479
+ // $flex-video-margin-bottom: rem-calc(16);
480
+
481
+ // We use this to control widescreen bottom padding
482
+ // $flex-video-widescreen-padding-bottom: 57.25%;
483
+
484
+ // Forms
485
+
486
+ // $include-html-form-classes: $include-html-classes;
487
+
488
+ // We use this to set the base for lots of form spacing and positioning styles
489
+ // $form-spacing: rem-calc(16);
490
+
491
+ // We use these to style the labels in different ways
492
+ // $form-label-pointer: pointer;
493
+ // $form-label-font-size: rem-calc(14);
494
+ // $form-label-font-weight: normal;
495
+ // $form-label-line-height: 1.5;
496
+ // $form-label-font-color: scale-color(#000, $lightness: 30%);
497
+ // $form-label-bottom-margin: 0;
498
+ // $input-font-family: inherit;
499
+ // $input-font-color: rgba(0,0,0,0.75);
500
+ // $input-font-size: rem-calc(14);
501
+ // $input-bg-color: #fff;
502
+ // $input-focus-bg-color: scale-color(#fff, $lightness: -2%);
503
+ // $input-border-color: scale-color(#fff, $lightness: -20%);
504
+ // $input-focus-border-color: scale-color(#fff, $lightness: -40%);
505
+ // $input-border-style: solid;
506
+ // $input-border-width: 1px;
507
+ // $input-border-radius: $global-radius;
508
+ // $input-disabled-bg: #ddd;
509
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
510
+ // $input-include-glowing-effect: true;
511
+
512
+ // We use these to style the fieldset border and spacing.
513
+ // $fieldset-border-style: solid;
514
+ // $fieldset-border-width: 1px;
515
+ // $fieldset-border-color: #ddd;
516
+ // $fieldset-padding: rem-calc(20);
517
+ // $fieldset-margin: rem-calc(18 0);
518
+
519
+ // We use these to style the legends when you use them
520
+ // $legend-bg: #fff;
521
+ // $legend-font-weight: bold;
522
+ // $legend-padding: rem-calc(0 3);
523
+
524
+ // We use these to style the prefix and postfix input elements
525
+ // $input-prefix-bg: scale-color(#fff, $lightness: -5%);
526
+ // $input-prefix-border-color: scale-color(#fff, $lightness: -20%);
527
+ // $input-prefix-border-size: 1px;
528
+ // $input-prefix-border-type: solid;
529
+ // $input-prefix-overflow: hidden;
530
+ // $input-prefix-font-color: #333;
531
+ // $input-prefix-font-color-alt: #fff;
532
+
533
+ // We use these to style the error states for inputs and labels
534
+ // $input-error-message-padding: rem-calc(6 9 9);
535
+ // $input-error-message-top: -1px;
536
+ // $input-error-message-font-size: rem-calc(12);
537
+ // $input-error-message-font-weight: normal;
538
+ // $input-error-message-font-style: italic;
539
+ // $input-error-message-font-color: #fff;
540
+ // $input-error-message-font-color-alt: #333;
541
+
542
+ // We use this to style the glowing effect of inputs when focused
543
+ // $glowing-effect-fade-time: 0.45s;
544
+ // $glowing-effect-color: $input-focus-border-color;
545
+
546
+ // Select variables
547
+ // $select-bg-color: #fafafa;
548
+
549
+ // Inline Lists
550
+
551
+ // $include-html-inline-list-classes: $include-html-classes;
552
+
553
+ // We use this to control the margins and padding of the inline list.
554
+ // $inline-list-top-margin: 0;
555
+ // $inline-list-opposite-margin: 0;
556
+ // $inline-list-bottom-margin: rem-calc(17);
557
+ // $inline-list-default-float-margin: rem-calc(-22);
558
+
559
+ // $inline-list-padding: 0;
560
+
561
+ // We use this to control the overflow of the inline list.
562
+ // $inline-list-overflow: hidden;
563
+
564
+ // We use this to control the list items
565
+ // $inline-list-display: block;
566
+
567
+ // We use this to control any elments within list items
568
+ // $inline-list-children-display: block;
569
+
570
+ // Joyride
571
+
572
+ // $include-html-joyride-classes: $include-html-classes;
573
+
574
+ // Controlling default Joyride styles
575
+ // $joyride-tip-bg: #333;
576
+ // $joyride-tip-default-width: 300px;
577
+ // $joyride-tip-padding: rem-calc(18 20 24);
578
+ // $joyride-tip-border: solid 1px #555;
579
+ // $joyride-tip-radius: 4px;
580
+ // $joyride-tip-position-offset: 22px;
581
+
582
+ // Here, we're setting the tip dont styles
583
+ // $joyride-tip-font-color: #fff;
584
+ // $joyride-tip-font-size: rem-calc(14);
585
+ // $joyride-tip-header-weight: bold;
586
+
587
+ // This changes the nub size
588
+ // $joyride-tip-nub-size: 10px;
589
+
590
+ // This adjusts the styles for the timer when its enabled
591
+ // $joyride-tip-timer-width: 50px;
592
+ // $joyride-tip-timer-height: 3px;
593
+ // $joyride-tip-timer-color: #666;
594
+
595
+ // This changes up the styles for the close button
596
+ // $joyride-tip-close-color: #777;
597
+ // $joyride-tip-close-size: 24px;
598
+ // $joyride-tip-close-weight: normal;
599
+
600
+ // When Joyride is filling the screen, we use this style for the bg
601
+ // $joyride-screenfill: rgba(0,0,0,0.5);
602
+
603
+ // Keystrokes
604
+
605
+ // $include-html-keystroke-classes: $include-html-classes;
606
+
607
+ // We use these to control text styles.
608
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
609
+ // $keystroke-font-size: rem-calc(14);
610
+ // $keystroke-font-color: #222;
611
+ // $keystroke-font-color-alt: #fff;
612
+ // $keystroke-function-factor: -7%;
613
+
614
+ // We use this to control keystroke padding.
615
+ // $keystroke-padding: rem-calc(2 4 0);
616
+
617
+ // We use these to control background and border styles.
618
+ // $keystroke-bg: scale-color(#fff, $lightness: $keystroke-function-factor);
619
+ // $keystroke-border-style: solid;
620
+ // $keystroke-border-width: 1px;
621
+ // $keystroke-border-color: scale-color($keystroke-bg, $lightness: $keystroke-function-factor);
622
+ // $keystroke-radius: $global-radius;
623
+
624
+ // Labels
625
+
626
+ // $include-html-label-classes: $include-html-classes;
627
+
628
+ // We use these to style the labels
629
+ // $label-padding: rem-calc(4 8 6);
630
+ // $label-radius: $global-radius;
631
+
632
+ // We use these to style the label text
633
+ // $label-font-sizing: rem-calc(11);
634
+ // $label-font-weight: normal;
635
+ // $label-font-color: #333;
636
+ // $label-font-color-alt: #fff;
637
+ // $label-font-family: $body-font-family;
638
+
639
+ // Magellan
640
+
641
+ // $include-html-magellan-classes: $include-html-classes;
642
+
643
+ // $magellan-bg: #fff;
644
+ // $magellan-padding: 10px;
645
+
646
+ // Off-canvas
647
+
648
+ // $tabbar-bg: #333;
649
+ // $tabbar-height: rem-calc(45);
650
+ // $tabbar-line-height: $tabbar-height;
651
+ // $tabbar-color: #FFF;
652
+ // $tabbar-middle-padding: 0 rem-calc(10);
653
+
654
+ // Off Canvas Divider Styles
655
+ // $tabbar-right-section-border: solid 1px scale-color($tabbar-bg, $lightness: 13%);
656
+ // $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
657
+
658
+ // Off Canvas Tab Bar Headers
659
+ // $tabbar-header-color: #FFF;
660
+ // $tabbar-header-weight: bold;
661
+ // $tabbar-header-line-height: $tabbar-height;
662
+ // $tabbar-header-margin: 0;
663
+
664
+ // Off Canvas Menu Variables
665
+ // $off-canvas-width: 250px;
666
+ // $off-canvas-bg: #333;
667
+
668
+ // Off Canvas Menu List Variables
669
+ // $off-canvas-label-padding: 0.3rem rem-calc(15);
670
+ // $off-canvas-label-color: #999;
671
+ // $off-canvas-label-text-transform: uppercase;
672
+ // $off-canvas-label-font-weight: bold;
673
+ // $off-canvas-label-bg: #444;
674
+ // $off-canvas-label-border-top: 1px solid scale-color(#444, $lightness: 14%);
675
+ // $off-canvas-label-border-bottom: none;
676
+ // $off-canvas-label-margin:0;
677
+ // $off-canvas-link-padding: rem-calc(10, 15);
678
+ // $off-canvas-link-color: rgba(#FFF, 0.7);
679
+ // $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
680
+
681
+ // Off Canvas Menu Icon Variables
682
+ // $tabbar-menu-icon-color: #FFF;
683
+ // $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
684
+
685
+ // $tabbar-menu-icon-text-indent: rem-calc(35);
686
+ // $tabbar-menu-icon-width: $tabbar-height;
687
+ // $tabbar-menu-icon-height: $tabbar-height;
688
+ // $tabbar-menu-icon-line-height: rem-calc(33);
689
+ // $tabbar-menu-icon-padding: 0;
690
+
691
+ // $tabbar-hamburger-icon-width: rem-calc(16);
692
+ // $tabbar-hamburger-icon-left: false;
693
+ // $tabbar-hamburger-icon-top: false;
694
+ // $tapbar-hamburger-icon-thickness: 1px;
695
+ // $tapbar-hamburger-icon-gap: 6px;
696
+
697
+ // Off Canvas Back-Link Overlay
698
+ // $off-canvas-overlay-transition: background 300ms ease;
699
+ // $off-canvas-overlay-cursor: pointer;
700
+ // $off-canvas-overlay-box-shadow: -4px 0 4px rgba(#000, 0.5), 4px 0 4px rgba(#000, 0.5);
701
+ // $off-canvas-overlay-background: rgba(#FFF, 0.2);
702
+ // $off-canvas-overlay-background-hover: rgba(#FFF, 0.05);
703
+
704
+ // Transition Variables
705
+ // $menu-slide: "transform 500ms ease";
706
+
707
+ // Orbit
708
+
709
+ // $include-html-orbit-classes: $include-html-classes;
710
+
711
+ // We use these to control the caption styles
712
+ // $orbit-container-bg: none;
713
+ // $orbit-caption-bg: rgba(51,51,51, 0.8);
714
+ // $orbit-caption-font-color: #fff;
715
+ // $orbit-caption-font-size: rem-calc(14);
716
+ // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
717
+ // $orbit-caption-padding: rem-calc(10 14);
718
+ // $orbit-caption-height: auto;
719
+
720
+ // We use these to control the left/right nav styles
721
+ // $orbit-nav-bg: none;
722
+ // $orbit-nav-bg-hover: rgba(0,0,0,0.3);
723
+ // $orbit-nav-arrow-color: #fff;
724
+ // $orbit-nav-arrow-color-hover: #fff;
725
+
726
+ // We use these to control the timer styles
727
+ // $orbit-timer-bg: rgba(255,255,255,0.3);
728
+ // $orbit-timer-show-progress-bar: true;
729
+
730
+ // We use these to control the bullet nav styles
731
+ // $orbit-bullet-nav-color: #ccc;
732
+ // $orbit-bullet-nav-color-active: #999;
733
+ // $orbit-bullet-radius: rem-calc(9);
734
+
735
+ // We use these to controls the style of slide numbers
736
+ // $orbit-slide-number-bg: rgba(0,0,0,0);
737
+ // $orbit-slide-number-font-color: #fff;
738
+ // $orbit-slide-number-padding: rem-calc(5);
739
+
740
+ // Graceful Loading Wrapper and preloader
741
+ // $wrapper-class: "slideshow-wrapper";
742
+ // $preloader-class: "preloader";
743
+
744
+ // Pagination
745
+
746
+ // $include-html-nav-classes: $include-html-classes;
747
+
748
+ // We use these to control the pagination container
749
+ // $pagination-height: rem-calc(24);
750
+ // $pagination-margin: rem-calc(-5);
751
+
752
+ // We use these to set the list-item properties
753
+ // $pagination-li-float: $default-float;
754
+ // $pagination-li-height: rem-calc(24);
755
+ // $pagination-li-font-color: #222;
756
+ // $pagination-li-font-size: rem-calc(14);
757
+ // $pagination-li-margin: rem-calc(5);
758
+
759
+ // We use these for the pagination anchor links
760
+ // $pagination-link-pad: rem-calc(1 10 1);
761
+ // $pagination-link-font-color: #999;
762
+ // $pagination-link-active-bg: scale-color(#fff, $lightness: -10%);
763
+
764
+ // We use these for disabled anchor links
765
+ // $pagination-link-unavailable-cursor: default;
766
+ // $pagination-link-unavailable-font-color: #999;
767
+ // $pagination-link-unavailable-bg-active: transparent;
768
+
769
+ // We use these for currently selected anchor links
770
+ $pagination-link-current-background: $red;
771
+ // $pagination-link-current-font-color: #fff;
772
+ // $pagination-link-current-font-weight: bold;
773
+ // $pagination-link-current-cursor: default;
774
+ $pagination-link-current-active-bg: $dark-red;
775
+
776
+ // Panels
777
+
778
+ // $include-html-panel-classes: $include-html-classes;
779
+
780
+ // We use these to control the background and border styles
781
+ // $panel-bg: scale-color(#fff, $lightness: -5%);
782
+ // $panel-border-style: solid;
783
+ // $panel-border-size: 1px;
784
+
785
+ // We use this % to control how much we darken things on hover
786
+ // $panel-function-factor: -11%;
787
+ // $panel-border-color: scale-color($panel-bg, $lightness: $panel-function-factor);
788
+
789
+ // We use these to set default inner padding and bottom margin
790
+ // $panel-margin-bottom: rem-calc(20);
791
+ // $panel-padding: rem-calc(20);
792
+
793
+ // We use these to set default font colors
794
+ // $panel-font-color: #333;
795
+ // $panel-font-color-alt: #fff;
796
+
797
+ // $panel-header-adjust: true;
798
+ // $callout-panel-link-color: $primary-color;
799
+
800
+ // Pricing Tables
801
+
802
+ // $include-html-pricing-classes: $include-html-classes;
803
+
804
+ // We use this to control the border color
805
+ // $price-table-border: solid 1px #ddd;
806
+
807
+ // We use this to control the bottom margin of the pricing table
808
+ // $price-table-margin-bottom: rem-calc(20);
809
+
810
+ // We use these to control the title styles
811
+ // $price-title-bg: #333;
812
+ // $price-title-padding: rem-calc(15 20);
813
+ // $price-title-align: center;
814
+ // $price-title-color: #eee;
815
+ // $price-title-weight: normal;
816
+ // $price-title-size: rem-calc(16);
817
+ // $price-title-font-family: $body-font-family;
818
+
819
+ // We use these to control the price styles
820
+ // $price-money-bg: #f6f6f6 ;
821
+ // $price-money-padding: rem-calc(15 20);
822
+ // $price-money-align: center;
823
+ // $price-money-color: #333;
824
+ // $price-money-weight: normal;
825
+ // $price-money-size: rem-calc(32);
826
+ // $price-money-font-family: $body-font-family;
827
+
828
+
829
+ // We use these to control the description styles
830
+ // $price-bg: #fff;
831
+ // $price-desc-color: #777;
832
+ // $price-desc-padding: rem-calc(15);
833
+ // $price-desc-align: center;
834
+ // $price-desc-font-size: rem-calc(12);
835
+ // $price-desc-weight: normal;
836
+ // $price-desc-line-height: 1.4;
837
+ // $price-desc-bottom-border: dotted 1px #ddd;
838
+
839
+ // We use these to control the list item styles
840
+ // $price-item-color: #333;
841
+ // $price-item-padding: rem-calc(15);
842
+ // $price-item-align: center;
843
+ // $price-item-font-size: rem-calc(14);
844
+ // $price-item-weight: normal;
845
+ // $price-item-bottom-border: dotted 1px #ddd;
846
+
847
+ // We use these to control the CTA area styles
848
+ // $price-cta-bg: #fff;
849
+ // $price-cta-align: center;
850
+ // $price-cta-padding: rem-calc(20 20 0);
851
+
852
+ // Progress Meters
853
+
854
+ // $include-html-media-classes: $include-html-classes;
855
+
856
+ // We use this to se the prog bar height
857
+ // $progress-bar-height: rem-calc(25);
858
+ // $progress-bar-color: #f6f6f6 ;
859
+
860
+ // We use these to control the border styles
861
+ // $progress-bar-border-color: scale-color(#fff, $lightness: -20%);
862
+ // $progress-bar-border-size: 1px;
863
+ // $progress-bar-border-style: solid;
864
+ // $progress-bar-border-radius: $global-radius;
865
+
866
+ // We use these to control the margin & padding
867
+ // $progress-bar-pad: rem-calc(2);
868
+ // $progress-bar-margin-bottom: rem-calc(10);
869
+
870
+ // We use these to set the meter colors
871
+ // $progress-meter-color: $primary-color;
872
+ // $progress-meter-secondary-color: $secondary-color;
873
+ // $progress-meter-success-color: $success-color;
874
+ // $progress-meter-alert-color: $alert-color;
875
+
876
+ // Reveal
877
+
878
+ // $include-html-reveal-classes: $include-html-classes;
879
+
880
+ // We use these to control the style of the reveal overlay.
881
+ // $reveal-overlay-bg: rgba(#000, .45);
882
+ // $reveal-overlay-bg-old: #000;
883
+
884
+ // We use these to control the style of the modal itself.
885
+ // $reveal-modal-bg: #fff;
886
+ // $reveal-position-top: 50px;
887
+ // $reveal-default-width: 80%;
888
+ // $reveal-modal-padding: rem-calc(20);
889
+ // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
890
+
891
+ // We use these to style the reveal close button
892
+ // $reveal-close-font-size: rem-calc(22);
893
+ // $reveal-close-top: rem-calc(8);
894
+ // $reveal-close-side: rem-calc(11);
895
+ // $reveal-close-color: #aaa;
896
+ // $reveal-close-weight: bold;
897
+
898
+ // We use these to control the modal border
899
+ // $reveal-border-style: solid;
900
+ // $reveal-border-width: 1px;
901
+ // $reveal-border-color: #666;
902
+
903
+ // $reveal-modal-class: "reveal-modal";
904
+ // $close-reveal-modal-class: "close-reveal-modal";
905
+
906
+ // Side Nav
907
+
908
+ // $include-html-nav-classes: $include-html-classes;
909
+
910
+ // We use this to control padding.
911
+ // $side-nav-padding: rem-calc(14 0);
912
+
913
+ // We use these to control list styles.
914
+ // $side-nav-list-type: none;
915
+ // $side-nav-list-position: inside;
916
+ // $side-nav-list-margin: rem-calc(0 0 7 0);
917
+
918
+ // We use these to control link styles.
919
+ // $side-nav-link-color: $primary-color;
920
+ // $side-nav-link-color-active: scale-color($side-nav-link-color, $lightness: 30%);
921
+ // $side-nav-link-color-hover: scale-color($side-nav-link-color, $lightness: 30%);
922
+ // $side-nav-font-size: rem-calc(14);
923
+ // $side-nav-font-weight: normal;
924
+ // $side-nav-font-family: $body-font-family;
925
+ // $side-nav-active-font-family: $side-nav-font-family;
926
+
927
+
928
+
929
+ // We use these to control border styles
930
+ // $side-nav-divider-size: 1px;
931
+ // $side-nav-divider-style: solid;
932
+ // $side-nav-divider-color: scale-color(#fff, $lightness: -10%);
933
+
934
+ // Split Buttons
935
+
936
+ // $include-html-button-classes: $include-html-classes;
937
+
938
+ // We use these to control different shared styles for Split Buttons
939
+ // $split-button-function-factor: 10%;
940
+ // $split-button-pip-color: #fff;
941
+ // $split-button-pip-color-alt: #333;
942
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
943
+
944
+ // We use these to control tiny split buttons
945
+ // $split-button-padding-tny: $button-pip-tny * 10;
946
+ // $split-button-span-width-tny: $button-pip-tny * 6;
947
+ // $split-button-pip-size-tny: $button-pip-tny;
948
+ // $split-button-pip-top-tny: $button-pip-tny * 2;
949
+ // $split-button-pip-default-float-tny: rem-calc(-6);
950
+
951
+ // We use these to control small split buttons
952
+ // $split-button-padding-sml: $button-pip-sml * 10;
953
+ // $split-button-span-width-sml: $button-pip-sml * 6;
954
+ // $split-button-pip-size-sml: $button-pip-sml;
955
+ // $split-button-pip-top-sml: $button-pip-sml * 1.5;
956
+ // $split-button-pip-default-float-sml: rem-calc(-6);
957
+
958
+ // We use these to control medium split buttons
959
+ // $split-button-padding-med: $button-pip-med * 9;
960
+ // $split-button-span-width-med: $button-pip-med * 5.5;
961
+ // $split-button-pip-size-med: $button-pip-med - rem-calc(3);
962
+ // $split-button-pip-top-med: $button-pip-med * 1.5;
963
+ // $split-button-pip-default-float-med: rem-calc(-6);
964
+
965
+ // We use these to control large split buttons
966
+ // $split-button-padding-lrg: $button-pip-lrg * 8;
967
+ // $split-button-span-width-lrg: $button-pip-lrg * 5;
968
+ // $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
969
+ // $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
970
+ // $split-button-pip-default-float-lrg: rem-calc(-6);
971
+
972
+ // Sub Nav
973
+
974
+ // $include-html-nav-classes: $include-html-classes;
975
+
976
+ // We use these to control margin and padding
977
+ // $sub-nav-list-margin: rem-calc(-4 0 18);
978
+ // $sub-nav-list-padding-top: rem-calc(4);
979
+
980
+ // We use this to control the definition
981
+ // $sub-nav-font-family: $body-font-family;
982
+ // $sub-nav-font-size: rem-calc(14);
983
+ // $sub-nav-font-color: #999;
984
+ // $sub-nav-font-weight: normal;
985
+ // $sub-nav-text-decoration: none;
986
+ // $sub-nav-border-radius: 3px;
987
+ // $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
988
+
989
+
990
+ // We use these to control the active item styles
991
+
992
+ // $sub-nav-active-font-weight: normal;
993
+ // $sub-nav-active-bg: $primary-color;
994
+ // $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
995
+ // $sub-nav-active-color: #fff;
996
+ // $sub-nav-active-padding: rem-calc(3 16);
997
+ // $sub-nav-active-cursor: default;
998
+
999
+ // $sub-nav-item-divider: "";
1000
+ // $sub-nav-item-divider-margin: rem-calc(12);
1001
+
1002
+ //
1003
+ // SWITCH
1004
+ //
1005
+
1006
+ // $include-html-form-classes: $include-html-classes;
1007
+
1008
+ // Controlling border styles and background colors for the switch container
1009
+ // $switch-border-color: scale-color(#fff, $lightness: -20%);
1010
+ // $switch-border-style: solid;
1011
+ // $switch-border-width: 1px;
1012
+ // $switch-bg: #fff;
1013
+
1014
+ // We use these to control the switch heights for our default classes
1015
+ // $switch-height-tny: 22px;
1016
+ // $switch-height-sml: 28px;
1017
+ // $switch-height-med: 36px;
1018
+ // $switch-height-lrg: 44px;
1019
+ // $switch-bottom-margin: rem-calc(20);
1020
+
1021
+ // We use these to control default font sizes for our classes.
1022
+ // $switch-font-size-tny: 11px;
1023
+ // $switch-font-size-sml: 12px;
1024
+ // $switch-font-size-med: 14px;
1025
+ // $switch-font-size-lrg: 17px;
1026
+ // $switch-label-side-padding: 6px;
1027
+
1028
+ // We use these to style the switch-paddle
1029
+ // $switch-paddle-bg: #fff;
1030
+ // $switch-paddle-fade-to-color: scale-color($switch-paddle-bg, $lightness: -10%);
1031
+ // $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
1032
+ // $switch-paddle-border-width: 1px;
1033
+ // $switch-paddle-border-style: solid;
1034
+ // $switch-paddle-transition-speed: .1s;
1035
+ // $switch-paddle-transition-ease: ease-out;
1036
+ // $switch-positive-color: scale-color($success-color, $lightness: 94%);
1037
+ // $switch-negative-color: #f5f5f5;
1038
+
1039
+ // Outline Style for tabbing through switches
1040
+ // $switch-label-outline: 1px dotted #888;
1041
+
1042
+ // Tables
1043
+
1044
+ // $include-html-table-classes: $include-html-classes;
1045
+
1046
+ // These control the background color for the table and even rows
1047
+ // $table-bg: #fff;
1048
+ // $table-even-row-bg: #f9f9f9 ;
1049
+
1050
+ // These control the table cell border style
1051
+ // $table-border-style: solid;
1052
+ // $table-border-size: 1px;
1053
+ // $table-border-color: #ddd;
1054
+
1055
+ // These control the table head styles
1056
+ // $table-head-bg: #f5f5f5 ;
1057
+ // $table-head-font-size: rem-calc(14);
1058
+ // $table-head-font-color: #222;
1059
+ // $table-head-font-weight: bold;
1060
+ // $table-head-padding: rem-calc(8 10 10);
1061
+
1062
+ // These control the row padding and font styles
1063
+ // $table-row-padding: rem-calc(9 10);
1064
+ // $table-row-font-size: rem-calc(14);
1065
+ // $table-row-font-color: #222;
1066
+ // $table-line-height: rem-calc(18);
1067
+
1068
+ // These are for controlling the display and margin of tables
1069
+ // $table-display: table-cell;
1070
+ // $table-margin-bottom: rem-calc(20);
1071
+
1072
+ //
1073
+ // TABS
1074
+ //
1075
+
1076
+ // $include-html-tabs-classes: $include-html-classes;
1077
+
1078
+ // $tabs-navigation-padding: rem-calc(16);
1079
+ // $tabs-navigation-bg-color: #efefef ;
1080
+ // $tabs-navigation-active-bg-color: #fff;
1081
+ // $tabs-navigation-hover-bg-color: scale-color($tabs-navigation-bg-color, $lightness: -6%);
1082
+ // $tabs-navigation-font-color: #222;
1083
+ // $tabs-navigation-font-size: rem-calc(16);
1084
+ // $tabs-navigation-font-family: $body-font-family;
1085
+
1086
+ // $tabs-content-margin-bottom: rem-calc(24);
1087
+ // $tabs-content-padding: $column-gutter/2;
1088
+
1089
+ // $tabs-vertical-navigation-margin-bottom: 1.25rem;
1090
+
1091
+ //
1092
+ // THUMBNAILS
1093
+ //
1094
+
1095
+ // $include-html-media-classes: $include-html-classes;
1096
+
1097
+ // We use these to control border styles
1098
+ // $thumb-border-style: solid;
1099
+ // $thumb-border-width: 4px;
1100
+ // $thumb-border-color: #fff;
1101
+ // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
1102
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1103
+
1104
+ // Radius and transition speed for thumbs
1105
+ // $thumb-radius: $global-radius;
1106
+ // $thumb-transition-speed: 200ms;
1107
+
1108
+ //
1109
+ // TOOLTIPS
1110
+ //
1111
+
1112
+ // $include-html-tooltip-classes: $include-html-classes;
1113
+
1114
+ // $has-tip-border-bottom: dotted 1px #ccc;
1115
+ // $has-tip-font-weight: bold;
1116
+ // $has-tip-font-color: #333;
1117
+ // $has-tip-border-bottom-hover: dotted 1px scale-color($primary-color, $lightness: -55%);
1118
+ // $has-tip-font-color-hover: $primary-color;
1119
+ // $has-tip-cursor-type: help;
1120
+
1121
+ // $tooltip-padding: rem-calc(12);
1122
+ // $tooltip-bg: #333;
1123
+ // $tooltip-font-size: rem-calc(14);
1124
+ // $tooltip-font-weight: normal;
1125
+ // $tooltip-font-color: #fff;
1126
+ // $tooltip-line-height: 1.3;
1127
+ // $tooltip-close-font-size: rem-calc(10);
1128
+ // $tooltip-close-font-weight: normal;
1129
+ // $tooltip-close-font-color: #777;
1130
+ // $tooltip-font-size-sml: rem-calc(14);
1131
+ // $tooltip-radius: $global-radius;
1132
+ // $tooltip-rounded: $global-rounded;
1133
+ // $tooltip-pip-size: 5px;
1134
+
1135
+ //
1136
+ // TOP BAR
1137
+ //
1138
+
1139
+ // $include-html-top-bar-classes: $include-html-classes;
1140
+
1141
+ // Background color for the top bar
1142
+ // $topbar-bg-color: #C52F24;
1143
+ // $topbar-bg: $topbar-bg-color;
1144
+
1145
+ // Height and margin
1146
+ // $topbar-height: 45px;
1147
+ // $topbar-margin-bottom: 0;
1148
+
1149
+ // Controlling the styles for the title in the top bar
1150
+ // $topbar-title-weight: normal;
1151
+ // $topbar-title-font-size: rem-calc(17);
1152
+
1153
+ // Style the top bar dropdown elements
1154
+ // $topbar-dropdown-bg: #333;
1155
+ // $topbar-dropdown-link-color: #fff;
1156
+ // $topbar-dropdown-link-bg: #333;
1157
+ // $topbar-dropdown-link-weight: normal;
1158
+ // $topbar-dropdown-toggle-size: 5px;
1159
+ // $topbar-dropdown-toggle-color: #fff;
1160
+ // $topbar-dropdown-toggle-alpha: 0.4;
1161
+
1162
+ // Set the link colors and styles for top-level nav
1163
+ // $topbar-link-color: #fff;
1164
+ // $topbar-link-color-hover: #fff;
1165
+ // $topbar-link-color-active: #fff;
1166
+ // $topbar-link-color-active-hover: #fff;
1167
+ // $topbar-link-weight: normal;
1168
+ // $topbar-link-font-size: rem-calc(13);
1169
+ // $topbar-link-hover-lightness: -10%; // Darken by 10%
1170
+ // $topbar-link-bg-hover: #272727;
1171
+ // $topbar-link-bg-active: $primary-color;
1172
+ // $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
1173
+ // $topbar-link-font-family: $body-font-family;
1174
+ // $topbar-link-text-transform: none;
1175
+ // $topbar-link-padding: $topbar-height / 3;
1176
+
1177
+ // $topbar-button-font-size: 0.75rem;
1178
+ // $topbar-button-top: 7px;
1179
+
1180
+ // $topbar-dropdown-label-color: #777;
1181
+ // $topbar-dropdown-label-text-transform: uppercase;
1182
+ // $topbar-dropdown-label-font-weight: bold;
1183
+ // $topbar-dropdown-label-font-size: rem-calc(10);
1184
+ // $topbar-dropdown-label-bg: #333;
1185
+
1186
+ // Top menu icon styles
1187
+ // $topbar-menu-link-transform: uppercase;
1188
+ // $topbar-menu-link-font-size: rem-calc(13);
1189
+ // $topbar-menu-link-weight: bold;
1190
+ // $topbar-menu-link-color: #fff;
1191
+ // $topbar-menu-icon-color: #fff;
1192
+ // $topbar-menu-link-color-toggled: #888;
1193
+ // $topbar-menu-icon-color-toggled: #888;
1194
+
1195
+ // Transitions and breakpoint styles
1196
+ // $topbar-transition-speed: 300ms;
1197
+ // Using rem-calc for the below breakpoint causes issues with top bar
1198
+ // $topbar-breakpoint: #{upper-bound($medium-range)}; // Change to 9999px for always mobile layout
1199
+ // $topbar-media-query: "only screen and (min-width: #{upper-bound($medium-range)})";
1200
+
1201
+ // Divider Styles
1202
+ // $topbar-divider-border-bottom: solid 1px scale-color($topbar-bg-color, $lightness: 13%);
1203
+ // $topbar-divider-border-top: solid 1px scale-color($topbar-bg-color, $lightness: -50%);
1204
+
1205
+ // Sticky Class
1206
+ // $topbar-sticky-class: ".sticky";
1207
+ // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
1208
+
1209
+ //
1210
+ // VISIBILITY CLASSES
1211
+ //
1212
+
1213
+ // $include-html-visibility-classes: $include-html-classes;
1214
+ // $include-table-visibility-classes: true;
1215
+ // $include-legacy-visibility-classes: true;
1216
+
1217
+ //
1218
+ // RANGE SLIDER
1219
+ //
1220
+
1221
+ // $include-html-range-slider-classes: $include-html-classes;
1222
+
1223
+ // These variabels define the slider bar styles
1224
+ // $range-slider-bar-width: 100%;
1225
+ // $range-slider-bar-height: rem-calc(16);
1226
+
1227
+ // $range-slider-bar-border-width: 1px;
1228
+ // $range-slider-bar-border-style: solid;
1229
+ // $range-slider-bar-border-color: #ddd;
1230
+ // $range-slider-radius: $global-radius;
1231
+ // $range-slider-round: $global-rounded;
1232
+ // $range-slider-bar-bg-color: #fafafa;
1233
+
1234
+ // Vertical bar styles
1235
+ // $range-slider-vertical-bar-width: rem-calc(16);
1236
+ // $range-slider-vertical-bar-height: rem-calc(200);
1237
+
1238
+ // These variabels define the slider handle styles
1239
+ // $range-slider-handle-width: rem-calc(32);
1240
+ // $range-slider-handle-height: rem-calc(22);
1241
+ // $range-slider-handle-position-top: rem-calc(-5);
1242
+ // $range-slider-handle-bg-color: $primary-color;
1243
+ // $range-slider-handle-border-width: 1px;
1244
+ // $range-slider-handle-border-style: solid;
1245
+ // $range-slider-handle-border-color: none;
1246
+ // $range-slider-handle-radius: $global-radius;
1247
+ // $range-slider-handle-round: $global-rounded;
1248
+ // $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
1249
+ // $range-slider-handle-cursor: pointer;
1250
+
1251
+ @import 'foundation';