chemistrykit 3.8.1 → 3.9.0.rc1

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