staple 0.1.0 → 0.1.1

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