bookshout-theme 1.0.0

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,1022 @@
1
+ //
2
+ // FOUNDATION SETTINGS
3
+ //
4
+
5
+ // Uncomment to use rem-calc() in your settings
6
+ $rem-base: 16px !default;
7
+ @import "foundation/functions";
8
+
9
+ // $experimental: true;
10
+
11
+ // The default font-size is set to 100% of the browser style sheet (usually 16px)
12
+ // for compatibility with brower-based text zoom or user-set defaults.
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 different and not have it affect the grid breakpoints,
16
+ // set $rem-base to $base-font-size and make sure $base-font-size is a px value.
17
+ // $base-font-size: 100%;
18
+
19
+ // The $base-line-height is 100% while $base-font-size is 150%
20
+ // $base-line-height: 150%;
21
+
22
+ // This is the default html and body font-size for the base rem value.
23
+ // $rem-base: 16px;
24
+
25
+ // We use this to control whether or not CSS classes come through in the gem files.
26
+ // $include-html-classes: true;
27
+ // $include-print-styles: true;
28
+ // $include-html-global-classes: $include-html-classes;
29
+
30
+ // Grid
31
+
32
+ // $include-html-grid-classes: $include-html-classes;
33
+
34
+ // $row-width: rem-calc(1000);
35
+ // $column-gutter: rem-calc(30);
36
+ // $total-columns: 12;
37
+
38
+ // We use these to control various global styles
39
+ // $body-bg: #fff;
40
+ // $body-font-color: #222;
41
+ // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
42
+ // $body-font-weight: normal;
43
+ // $body-font-style: normal;
44
+
45
+ // We use this to control font-smoothing
46
+ // $font-smoothing: antialiased;
47
+
48
+ // We use these to control text direction settings
49
+ // $text-direction: ltr;
50
+ // $opposite-direction: right;
51
+ // $default-float: left;
52
+
53
+ // We use these as default colors throughout
54
+ // $primary-color: #008CBA;
55
+ // $secondary-color: #e7e7e7;
56
+ // $alert-color: #f04124;
57
+ // $success-color: #43AC6A;
58
+
59
+ // We use these to make sure border radius matches unless we want it different.
60
+ // $global-radius: 3px;
61
+ // $global-rounded: 1000px;
62
+
63
+ // We use these to control inset shadow shiny edges and depressions.
64
+ // $shiny-edge-size: 0 1px 0;
65
+ // $shiny-edge-color: rgba(#fff, .5);
66
+ // $shiny-edge-active-color: rgba(#000, .2);
67
+
68
+ // Media Query Ranges
69
+ // $small-range: (0em, 40em);
70
+ // $medium-range: (40.063em, 64em);
71
+ // $large-range: (64.063em, 90em);
72
+ // $xlarge-range: (90.063em, 120em);
73
+ // $xxlarge-range: (120.063em);
74
+
75
+ // $screen: "only screen";
76
+
77
+ // $landscape: "#{$screen} and (orientation: landscape)";
78
+ // $portrait: "#{$screen} and (orientation: portrait)";
79
+
80
+ // $small-up: $screen;
81
+ // $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
82
+
83
+ // $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
84
+ // $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
85
+
86
+ // $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
87
+ // $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
88
+
89
+ // $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
90
+ // $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
91
+
92
+ // $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
93
+ // $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
94
+
95
+ // Legacy
96
+ // $small: $medium-up;
97
+ // $medium: $medium-up;
98
+ // $large: $large-up;
99
+
100
+ //We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
101
+ // $cursor-crosshair-value: crosshair;
102
+ // $cursor-default-value: default;
103
+ // $cursor-pointer-value: pointer;
104
+ // $cursor-help-value: help;
105
+ // $cursor-text-value: text;
106
+
107
+ // Accordion
108
+
109
+ // $include-html-accordion-classes: $include-html-classes;
110
+
111
+ // $accordion-navigation-padding: rem-calc(16);
112
+ // $accordion-navigation-bg-color: #efefef ;
113
+ // $accordion-navigation-hover-bg-color: darken($accordion-navigation-bg-color, 5%);
114
+ // $accordion-navigation-active-bg-color: darken($accordion-navigation-bg-color, 3%);
115
+ // $accordion-navigation-font-color: #222;
116
+ // $accordion-navigation-font-size: rem-calc(16);
117
+ // $accordion-navigation-font-family: $body-font-family;
118
+
119
+ // $accordion-content-padding: $column-gutter/2;
120
+ // $accordion-content-active-bg-color: #fff;
121
+
122
+ // Alert Boxes
123
+
124
+ // $include-html-alert-classes: $include-html-classes;
125
+
126
+ // We use this to control alert padding.
127
+ // $alert-padding-top: rem-calc(14);
128
+ // $alert-padding-default-float: $alert-padding-top;
129
+ // $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
130
+ // $alert-padding-bottom: $alert-padding-top;
131
+
132
+ // We use these to control text style.
133
+ // $alert-font-weight: normal;
134
+ // $alert-font-size: rem-calc(13);
135
+ // $alert-font-color: #fff;
136
+ // $alert-font-color-alt: darken($secondary-color, 60%);
137
+
138
+ // We use this for close hover effect.
139
+ // $alert-function-factor: 5%;
140
+
141
+ // We use these to control border styles.
142
+ // $alert-border-style: solid;
143
+ // $alert-border-width: 1px;
144
+ // $alert-border-color: darken($primary-color, $alert-function-factor);
145
+ // $alert-bottom-margin: rem-calc(20);
146
+
147
+ // We use these to style the close buttons
148
+ // $alert-close-color: #333;
149
+ // $alert-close-position: rem-calc(5);
150
+ // $alert-close-font-size: rem-calc(22);
151
+ // $alert-close-opacity: 0.3;
152
+ // $alert-close-opacity-hover: 0.5;
153
+ // $alert-close-padding: 9px 6px 4px;
154
+
155
+ // We use this to control border radius
156
+ // $alert-radius: $global-radius;
157
+
158
+ // Block Grid
159
+
160
+ // $include-html-grid-classes: $include-html-classes;
161
+
162
+ // We use this to control the maximum number of block grid elements per row
163
+ // $block-grid-elements: 12;
164
+ // $block-grid-default-spacing: rem-calc(20);
165
+
166
+ // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
167
+ // $block-grid-media-queries: true;
168
+
169
+ // Breadcrumbs
170
+
171
+ // $include-html-nav-classes: $include-html-classes;
172
+
173
+ // We use this to set the background color for the breadcrumb container.
174
+ // $crumb-bg: lighten($secondary-color, 5%);
175
+
176
+ // We use these to set the padding around the breadcrumbs.
177
+ // $crumb-padding: rem-calc(9 14 9);
178
+ // $crumb-side-padding: rem-calc(12);
179
+
180
+ // We use these to control border styles.
181
+ // $crumb-function-factor: 10%;
182
+ // $crumb-border-size: 1px;
183
+ // $crumb-border-style: solid;
184
+ // $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
185
+ // $crumb-radius: $global-radius;
186
+
187
+ // We use these to set various text styles for breadcrumbs.
188
+ // $crumb-font-size: rem-calc(11);
189
+ // $crumb-font-color: $primary-color;
190
+ // $crumb-font-color-current: #333;
191
+ // $crumb-font-color-unavailable: #999;
192
+ // $crumb-font-transform: uppercase;
193
+ // $crumb-link-decor: underline;
194
+
195
+ // We use these to control the slash between breadcrumbs
196
+ // $crumb-slash-color: #aaa;
197
+ // $crumb-slash: "/";
198
+
199
+ // Button Groups
200
+
201
+ // $include-html-button-classes: $include-html-classes;
202
+
203
+ // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
204
+ // $button-bar-margin-opposite: rem-calc(10);
205
+ // $button-group-border-width: 1px;
206
+
207
+ // Clearing
208
+
209
+ // $include-html-clearing-classes: $include-html-classes;
210
+
211
+ // We use these to set the background colors for parts of Clearing.
212
+ // $clearing-bg: #333;
213
+ // $clearing-caption-bg: $clearing-bg;
214
+ // $clearing-carousel-bg: rgba (51,51,51,0.8);
215
+ // $clearing-img-bg: $clearing-bg;
216
+
217
+ // We use these to style the close button
218
+ // $clearing-close-color: #ccc;
219
+ // $clearing-close-size: 30px;
220
+
221
+ // We use these to style the arrows
222
+ // $clearing-arrow-size: 12px;
223
+ // $clearing-arrow-color: $clearing-close-color;
224
+
225
+ // We use these to style captions
226
+ // $clearing-caption-font-color: #ccc;
227
+ // $clearing-caption-font-size: 0.875em;
228
+ // $clearing-caption-padding: 10px 30px 20px;
229
+
230
+ // We use these to make the image and carousel height and style
231
+ // $clearing-active-img-height: 85%;
232
+ // $clearing-carousel-height: 120px;
233
+ // $clearing-carousel-thumb-width: 120px;
234
+ // $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
235
+
236
+ // Dropdown
237
+
238
+ // $include-html-button-classes: $include-html-classes;
239
+
240
+ // We use these to controls height and width styles.
241
+ // $f-dropdown-max-width: 200px;
242
+ // $f-dropdown-height: auto;
243
+ // $f-dropdown-max-height: none;
244
+ // $f-dropdown-margin-top: 2px;
245
+
246
+ // We use this to control the background color
247
+ // $f-dropdown-bg: #fff;
248
+
249
+ // We use this to set the border styles for dropdowns.
250
+ // $f-dropdown-border-style: solid;
251
+ // $f-dropdown-border-width: 1px;
252
+ // $f-dropdown-border-color: darken(#fff, 20%);
253
+
254
+ // We use these to style the triangle pip.
255
+ // $f-dropdown-triangle-size: 6px;
256
+ // $f-dropdown-triangle-color: #fff;
257
+ // $f-dropdown-triangle-side-offset: 10px;
258
+
259
+ // We use these to control styles for the list elements.
260
+ // $f-dropdown-list-style: none;
261
+ // $f-dropdown-font-color: #555;
262
+ // $f-dropdown-font-size: rem-calc(14);
263
+ // $f-dropdown-list-padding: rem-calc(5, 10);
264
+ // $f-dropdown-line-height: rem-calc(18);
265
+ // $f-dropdown-list-hover-bg: #eeeeee ;
266
+ // $dropdown-mobile-default-float: 0;
267
+
268
+ // We use this to control the styles for when the dropdown has custom content.
269
+ // $f-dropdown-content-padding: rem-calc(20);
270
+
271
+ // Dropdown Buttons
272
+
273
+ // $include-html-button-classes: $include-html-classes;
274
+
275
+ // We use these to set the color of the pip in dropdown buttons
276
+ // $dropdown-button-pip-color: #fff;
277
+ // $dropdown-button-pip-color-alt: #333;
278
+
279
+ // $button-pip-tny: rem-calc(6);
280
+ // $button-pip-sml: rem-calc(7);
281
+ // $button-pip-med: rem-calc(9);
282
+ // $button-pip-lrg: rem-calc(11);
283
+
284
+ // We use these to style tiny dropdown buttons
285
+ // $dropdown-button-padding-tny: $button-pip-tny * 7;
286
+ // $dropdown-button-pip-size-tny: $button-pip-tny;
287
+ // $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
288
+ // $dropdown-button-pip-top-tny: -$button-pip-tny / 2 + rem-calc(1);
289
+
290
+ // We use these to style small dropdown buttons
291
+ // $dropdown-button-padding-sml: $button-pip-sml * 7;
292
+ // $dropdown-button-pip-size-sml: $button-pip-sml;
293
+ // $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
294
+ // $dropdown-button-pip-top-sml: -$button-pip-sml / 2 + rem-calc(1);
295
+
296
+ // We use these to style medium dropdown buttons
297
+ // $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
298
+ // $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
299
+ // $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
300
+ // $dropdown-button-pip-top-med: -$button-pip-med / 2 + rem-calc(2);
301
+
302
+ // We use these to style large dropdown buttons
303
+ // $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
304
+ // $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
305
+ // $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
306
+ // $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
307
+
308
+ // Flex Video
309
+
310
+ // $include-html-media-classes: $include-html-classes;
311
+
312
+ // We use these to control video container padding and margins
313
+ // $flex-video-padding-top: rem-calc(25);
314
+ // $flex-video-padding-bottom: 67.5%;
315
+ // $flex-video-margin-bottom: rem-calc(16);
316
+
317
+ // We use this to control widescreen bottom padding
318
+ // $flex-video-widescreen-padding-bottom: 57.25%;
319
+
320
+ // Forms
321
+
322
+ // $include-html-form-classes: $include-html-classes;
323
+
324
+ // We use this to set the base for lots of form spacing and positioning styles
325
+ // $form-spacing: rem-calc(16);
326
+
327
+ // We use these to style the labels in different ways
328
+ // $form-label-pointer: pointer;
329
+ // $form-label-font-size: rem-calc(14);
330
+ // $form-label-font-weight: normal;
331
+ // $form-label-font-color: lighten(#000, 30%);
332
+ // $form-label-bottom-margin: rem-calc(8);
333
+ // $input-font-family: inherit;
334
+ // $input-font-color: rgba(0,0,0,0.75);
335
+ // $input-font-size: rem-calc(14);
336
+ // $input-bg-color: #fff;
337
+ // $input-focus-bg-color: darken(#fff, 2%);
338
+ // $input-border-color: darken(#fff, 20%);
339
+ // $input-focus-border-color: darken(#fff, 40%);
340
+ // $input-border-style: solid;
341
+ // $input-border-width: 1px;
342
+ // $input-disabled-bg: #ddd;
343
+ // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
344
+ // $input-include-glowing-effect: true;
345
+
346
+ // We use these to style the fieldset border and spacing.
347
+ // $fieldset-border-style: solid;
348
+ // $fieldset-border-width: 1px;
349
+ // $fieldset-border-color: #ddd;
350
+ // $fieldset-padding: rem-calc(20);
351
+ // $fieldset-margin: rem-calc(18 0);
352
+
353
+ // We use these to style the legends when you use them
354
+ // $legend-bg: #fff;
355
+ // $legend-font-weight: bold;
356
+ // $legend-padding: rem-calc(0 3);
357
+
358
+ // We use these to style the prefix and postfix input elements
359
+ // $input-prefix-bg: darken(#fff, 5%);
360
+ // $input-prefix-border-color: darken(#fff, 20%);
361
+ // $input-prefix-border-size: 1px;
362
+ // $input-prefix-border-type: solid;
363
+ // $input-prefix-overflow: hidden;
364
+ // $input-prefix-font-color: #333;
365
+ // $input-prefix-font-color-alt: #fff;
366
+
367
+ // We use these to style the error states for inputs and labels
368
+ // $input-error-message-padding: rem-calc(6 9 9);
369
+ // $input-error-message-top: -1px;
370
+ // $input-error-message-font-size: rem-calc(12);
371
+ // $input-error-message-font-weight: normal;
372
+ // $input-error-message-font-style: italic;
373
+ // $input-error-message-font-color: #fff;
374
+ // $input-error-message-font-color-alt: #333;
375
+
376
+ // We use this to style the glowing effect of inputs when focused
377
+ // $glowing-effect-fade-time: 0.45s;
378
+ // $glowing-effect-color: $input-focus-border-color;
379
+
380
+ // Select variables
381
+ // $select-bg-color: #fafafa ;
382
+
383
+ // Inline Lists
384
+
385
+ // $include-html-inline-list-classes: $include-html-classes;
386
+
387
+ // We use this to control the margins and padding of the inline list.
388
+ // $inline-list-top-margin: 0;
389
+ // $inline-list-opposite-margin: 0;
390
+ // $inline-list-bottom-margin: rem-calc(17);
391
+ // $inline-list-default-float-margin: rem-calc(-22);
392
+
393
+ // $inline-list-padding: 0;
394
+
395
+ // We use this to control the overflow of the inline list.
396
+ // $inline-list-overflow: hidden;
397
+
398
+ // We use this to control the list items
399
+ // $inline-list-display: block;
400
+
401
+ // We use this to control any elments within list items
402
+ // $inline-list-children-display: block;
403
+
404
+ // Joyride
405
+
406
+ // $include-html-joyride-classes: $include-html-classes;
407
+
408
+ // Controlling default Joyride styles
409
+ // $joyride-tip-bg: #333;
410
+ // $joyride-tip-default-width: 300px;
411
+ // $joyride-tip-padding: rem-calc(18 20 24);
412
+ // $joyride-tip-border: solid 1px #555;
413
+ // $joyride-tip-radius: 4px;
414
+ // $joyride-tip-position-offset: 22px;
415
+
416
+ // Here, we're setting the tip dont styles
417
+ // $joyride-tip-font-color: #fff;
418
+ // $joyride-tip-font-size: rem-calc(14);
419
+ // $joyride-tip-header-weight: bold;
420
+
421
+ // This changes the nub size
422
+ // $joyride-tip-nub-size: 10px;
423
+
424
+ // This adjusts the styles for the timer when its enabled
425
+ // $joyride-tip-timer-width: 50px;
426
+ // $joyride-tip-timer-height: 3px;
427
+ // $joyride-tip-timer-color: #666;
428
+
429
+ // This changes up the styles for the close button
430
+ // $joyride-tip-close-color: #777;
431
+ // $joyride-tip-close-size: 24px;
432
+ // $joyride-tip-close-weight: normal;
433
+
434
+ // When Joyride is filling the screen, we use this style for the bg
435
+ // $joyride-screenfill: rgba(0,0,0,0.5);
436
+
437
+ // Keystrokes
438
+
439
+ // $include-html-type-classes: $include-html-classes;
440
+
441
+ // We use these to control text styles.
442
+ // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
443
+ // $keystroke-font-size: rem-calc(14);
444
+ // $keystroke-font-color: #222;
445
+ // $keystroke-font-color-alt: #fff;
446
+ // $keystroke-function-factor: 7%;
447
+
448
+ // We use this to control keystroke padding.
449
+ // $keystroke-padding: rem-calc(2 4 0);
450
+
451
+ // We use these to control background and border styles.
452
+ // $keystroke-bg: darken(#fff, $keystroke-function-factor);
453
+ // $keystroke-border-style: solid;
454
+ // $keystroke-border-width: 1px;
455
+ // $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
456
+ // $keystroke-radius: $global-radius;
457
+
458
+ // Labels
459
+
460
+ // $include-html-label-classes: $include-html-classes;
461
+
462
+ // We use these to style the labels
463
+ // $label-padding: rem-calc(4 8 6);
464
+ // $label-radius: $global-radius;
465
+
466
+ // We use these to style the label text
467
+ // $label-font-sizing: rem-calc(11);
468
+ // $label-font-weight: normal;
469
+ // $label-font-color: #333;
470
+ // $label-font-color-alt: #fff;
471
+ // $label-font-family: $body-font-family;
472
+
473
+ // Magellan
474
+
475
+ // $include-html-magellan-classes: $include-html-classes;
476
+
477
+ // $magellan-bg: #fff;
478
+ // $magellan-padding: 10px;
479
+
480
+ // Off-canvas
481
+
482
+ $tabbar-bg: #FFF;
483
+ $tabbar-height: rem-calc(75);
484
+ $tabbar-line-height: $tabbar-height;
485
+ $tabbar-color: #FFF;
486
+ $tabbar-middle-padding: 0 rem-calc(10);
487
+
488
+ // Off Canvas Divider Styles
489
+ $tabbar-right-section-border: solid 1px lighten($tabbar-bg, 10%);
490
+ $tabbar-left-section-border: solid 1px darken($tabbar-bg, 10%);
491
+
492
+ // Off Canvas Tab Bar Headers
493
+ $tabbar-header-color: #FFF;
494
+ $tabbar-header-weight: bold;
495
+ $tabbar-header-line-height: $tabbar-height;
496
+ $tabbar-header-margin: 0;
497
+
498
+ // Off Canvas Menu Variables
499
+ $off-canvas-width: 250px;
500
+ $off-canvas-bg: #FFF;
501
+
502
+ // Off Canvas Menu List Variables
503
+ $off-canvas-label-padding: 0.3rem rem-calc(15);
504
+ $off-canvas-label-color: #999;
505
+ $off-canvas-label-text-transform: uppercase;
506
+ $off-canvas-label-font-weight: bold;
507
+ $off-canvas-label-bg: #444;
508
+ $off-canvas-label-border-top: 1px solid lighten(#444, 10%);
509
+ $off-canvas-label-border-bottom: none;
510
+ $off-canvas-label-margin:0;
511
+ $off-canvas-link-padding: rem-calc(10, 15);
512
+ $off-canvas-link-color: rgba(#FFF, 0.7);
513
+ $off-canvas-link-border-bottom: 1px solid darken($off-canvas-bg, 5%);
514
+
515
+ // Off Canvas Menu Icon Variables
516
+ $tabbar-menu-icon-color: #000;;
517
+ $tabbar-menu-icon-hover: lighten($tabbar-menu-icon-color, 30%);
518
+
519
+ $tabbar-menu-icon-text-indent: rem-calc(35);
520
+ $tabbar-menu-icon-width: $tabbar-height;
521
+ $tabbar-menu-icon-height: $tabbar-height;
522
+ $tabbar-menu-icon-line-height: rem-calc(33);
523
+ // $tabbar-menu-icon-padding: 0;
524
+
525
+ // $tabbar-hamburger-icon-width: rem-calc(16);
526
+ // $tabbar-hamburger-icon-left: rem-calc(13);
527
+ //$tabbar-hamburger-icon-top: rem-calc(45);
528
+
529
+ // Off Canvas Back-Link Overlay
530
+ // $off-canvas-overlay-transition: background 300ms ease;
531
+ // $off-canvas-overlay-cursor: pointer;
532
+ // $off-canvas-overlay-box-shadow: -4px 0 4px rgba(#000, 0.5), 4px 0 4px rgba(#000, 0.5);
533
+ // $off-canvas-overlay-background: rgba(#FFF, 0.2);
534
+ // $off-canvas-overlay-background-hover: rgba(#FFF, 0.05);
535
+
536
+ // Transition Variabls
537
+ // $menu-slide: "transform 500ms ease";
538
+
539
+ // Orbit
540
+
541
+ // $include-html-orbit-classes: $include-html-classes;
542
+
543
+ // We use these to control the caption styles
544
+ // $orbit-container-bg: none;
545
+ // $orbit-caption-bg: rgba(51,51,51, 0.8);
546
+ // $orbit-caption-font-color: #fff;
547
+ // $orbit-caption-font-size: rem-calc(14);
548
+ // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
549
+ // $orbit-caption-padding: rem-calc(10,14);
550
+ // $orbit-caption-height: auto;
551
+
552
+ // We use these to control the left/right nav styles
553
+ // $orbit-nav-bg: none;
554
+ // $orbit-nav-bg-hover: rgba(0,0,0,0.3);
555
+ // $orbit-nav-arrow-color: #fff;
556
+ // $orbit-nav-arrow-color-hover: #fff;
557
+
558
+ // We use these to control the timer styles
559
+ // $orbit-timer-bg: rgba(255,255,255,0.3);
560
+ // $orbit-timer-show-progress-bar: true;
561
+
562
+ // We use these to control the bullet nav styles
563
+ // $orbit-bullet-nav-color: #ccc;
564
+ // $orbit-bullet-nav-color-active: #999;
565
+ // $orbit-bullet-radius: rem-calc(9);
566
+
567
+ // We use these to controls the style of slide numbers
568
+ // $orbit-slide-number-bg: rgba(0,0,0,0);
569
+ // $orbit-slide-number-font-color: #fff;
570
+ // $orbit-slide-number-padding: rem-calc(5);
571
+
572
+ // Graceful Loading Wrapper and preloader
573
+ // $wrapper-class: "slideshow-wrapper";
574
+ // $preloader-class: "preloader";
575
+
576
+ // Pagination
577
+
578
+ // $include-html-nav-classes: $include-html-classes;
579
+
580
+ // We use these to control the pagination container
581
+ // $pagination-height: rem-calc(24);
582
+ // $pagination-margin: rem-calc(-5);
583
+
584
+ // We use these to set the list-item properties
585
+ // $pagination-li-float: $default-float;
586
+ // $pagination-li-height: rem-calc(24);
587
+ // $pagination-li-font-color: #222;
588
+ // $pagination-li-font-size: rem-calc(14);
589
+ // $pagination-li-margin: rem-calc(5);
590
+
591
+ // We use these for the pagination anchor links
592
+ // $pagination-link-pad: rem-calc(1 10 1);
593
+ // $pagination-link-font-color: #999;
594
+ // $pagination-link-active-bg: darken(#fff, 10%);
595
+
596
+ // We use these for disabled anchor links
597
+ // $pagination-link-unavailable-cursor: default;
598
+ // $pagination-link-unavailable-font-color: #999;
599
+ // $pagination-link-unavailable-bg-active: transparent;
600
+
601
+ // We use these for currently selected anchor links
602
+ // $pagination-link-current-background: $primary-color;
603
+ // $pagination-link-current-font-color: #fff;
604
+ // $pagination-link-current-font-weight: bold;
605
+ // $pagination-link-current-cursor: default;
606
+ // $pagination-link-current-active-bg: $primary-color;
607
+
608
+ // Panels
609
+
610
+ // $include-html-panel-classes: $include-html-classes;
611
+
612
+ // We use these to control the background and border styles
613
+ // $panel-bg: darken(#fff, 5%);
614
+ // $panel-border-style: solid;
615
+ // $panel-border-size: 1px;
616
+
617
+ // We use this % to control how much we darken things on hover
618
+ // $panel-function-factor: 10%;
619
+ // $panel-border-color: darken($panel-bg, $panel-function-factor);
620
+
621
+ // We use these to set default inner padding and bottom margin
622
+ // $panel-margin-bottom: rem-calc(20);
623
+ // $panel-padding: rem-calc(20);
624
+
625
+ // We use these to set default font colors
626
+ // $panel-font-color: #333;
627
+ // $panel-font-color-alt: #fff;
628
+
629
+ // $panel-header-adjust: true;
630
+ // $callout-panel-link-color: $primary-color;
631
+
632
+ // Pricing Tables
633
+
634
+ // $include-html-pricing-classes: $include-html-classes;
635
+
636
+ // We use this to control the border color
637
+ // $price-table-border: solid 1px #ddd;
638
+
639
+ // We use this to control the bottom margin of the pricing table
640
+ // $price-table-margin-bottom: rem-calc(20);
641
+
642
+ // We use these to control the title styles
643
+ // $price-title-bg: #333;
644
+ // $price-title-padding: rem-calc(15 20);
645
+ // $price-title-align: center;
646
+ // $price-title-color: #eee;
647
+ // $price-title-weight: normal;
648
+ // $price-title-size: rem-calc(16);
649
+ // $price-title-font-family: $body-font-family;
650
+
651
+ // We use these to control the price styles
652
+ // $price-money-bg: #f6f6f6 ;
653
+ // $price-money-padding: rem-calc(15 20);
654
+ // $price-money-align: center;
655
+ // $price-money-color: #333;
656
+ // $price-money-weight: normal;
657
+ // $price-money-size: rem-calc(32);
658
+ // $price-money-font-family: $body-font-family;
659
+
660
+
661
+ // We use these to control the description styles
662
+ // $price-bg: #fff;
663
+ // $price-desc-color: #777;
664
+ // $price-desc-padding: rem-calc(15);
665
+ // $price-desc-align: center;
666
+ // $price-desc-font-size: rem-calc(12);
667
+ // $price-desc-weight: normal;
668
+ // $price-desc-line-height: 1.4;
669
+ // $price-desc-bottom-border: dotted 1px #ddd;
670
+
671
+ // We use these to control the list item styles
672
+ // $price-item-color: #333;
673
+ // $price-item-padding: rem-calc(15);
674
+ // $price-item-align: center;
675
+ // $price-item-font-size: rem-calc(14);
676
+ // $price-item-weight: normal;
677
+ // $price-item-bottom-border: dotted 1px #ddd;
678
+
679
+ // We use these to control the CTA area styles
680
+ // $price-cta-bg: #fff;
681
+ // $price-cta-align: center;
682
+ // $price-cta-padding: rem-calc(20 20 0);
683
+
684
+ // Progress Meters
685
+
686
+ // $include-html-media-classes: $include-html-classes;
687
+
688
+ // We use this to se the prog bar height
689
+ // $progress-bar-height: rem-calc(25);
690
+ // $progress-bar-color: #f6f6f6 ;
691
+
692
+ // We use these to control the border styles
693
+ // $progress-bar-border-color: darken(#fff, 20%);
694
+ // $progress-bar-border-size: 1px;
695
+ // $progress-bar-border-style: solid;
696
+ // $progress-bar-border-radius: $global-radius;
697
+
698
+ // We use these to control the margin & padding
699
+ // $progress-bar-pad: rem-calc(2);
700
+ // $progress-bar-margin-bottom: rem-calc(10);
701
+
702
+ // We use these to set the meter colors
703
+ // $progress-meter-color: $primary-color;
704
+ // $progress-meter-secondary-color: $secondary-color;
705
+ // $progress-meter-success-color: $success-color;
706
+ // $progress-meter-alert-color: $alert-color;
707
+
708
+ // Reveal
709
+
710
+ // $include-html-reveal-classes: $include-html-classes;
711
+
712
+ // We use these to control the style of the reveal overlay.
713
+ // $reveal-overlay-bg: rgba(#000, .45);
714
+ // $reveal-overlay-bg-old: #000;
715
+
716
+ // We use these to control the style of the modal itself.
717
+ // $reveal-modal-bg: #fff;
718
+ // $reveal-position-top: 50px;
719
+ // $reveal-default-width: 80%;
720
+ // $reveal-modal-padding: rem-calc(20);
721
+ // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
722
+
723
+ // We use these to style the reveal close button
724
+ // $reveal-close-font-size: rem-calc(22);
725
+ // $reveal-close-top: rem-calc(8);
726
+ // $reveal-close-side: rem-calc(11);
727
+ // $reveal-close-color: #aaa;
728
+ // $reveal-close-weight: bold;
729
+
730
+ // We use these to control the modal border
731
+ // $reveal-border-style: solid;
732
+ // $reveal-border-width: 1px;
733
+ // $reveal-border-color: #666;
734
+
735
+ // $reveal-modal-class: "reveal-modal";
736
+ // $close-reveal-modal-class: "close-reveal-modal";
737
+
738
+ // Side Nav
739
+
740
+ // $include-html-nav-classes: $include-html-classes;
741
+
742
+ // We use this to control padding.
743
+ // $side-nav-padding: rem-calc(14 0);
744
+
745
+ // We use these to control list styles.
746
+ // $side-nav-list-type: none;
747
+ // $side-nav-list-position: inside;
748
+ // $side-nav-list-margin: rem-calc(0 0 7 0);
749
+
750
+ // We use these to control link styles.
751
+ // $side-nav-link-color: $primary-color;
752
+ // $side-nav-link-color-active: lighten(#000, 30%);
753
+ // $side-nav-font-size: rem-calc(14);
754
+ // $side-nav-font-weight: normal;
755
+ // $side-nav-font-family: $body-font-family;
756
+ // $side-nav-active-font-family: $side-nav-font-family;
757
+
758
+
759
+
760
+ // We use these to control border styles
761
+ // $side-nav-divider-size: 1px;
762
+ // $side-nav-divider-style: solid;
763
+ // $side-nav-divider-color: darken(#fff, 10%);
764
+
765
+ // Split Buttons
766
+
767
+ // $include-html-button-classes: $include-html-classes;
768
+
769
+ // We use these to control different shared styles for Split Buttons
770
+ // $split-button-function-factor: 10%;
771
+ // $split-button-pip-color: #fff;
772
+ // $split-button-pip-color-alt: #333;
773
+ // $split-button-active-bg-tint: rgba(0,0,0,0.1);
774
+
775
+ // We use these to control tiny split buttons
776
+ // $split-button-padding-tny: $button-pip-tny * 10;
777
+ // $split-button-span-width-tny: $button-pip-tny * 6;
778
+ // $split-button-pip-size-tny: $button-pip-tny;
779
+ // $split-button-pip-top-tny: $button-pip-tny * 2;
780
+ // $split-button-pip-default-float-tny: rem-calc(-6);
781
+
782
+ // We use these to control small split buttons
783
+ // $split-button-padding-sml: $button-pip-sml * 10;
784
+ // $split-button-span-width-sml: $button-pip-sml * 6;
785
+ // $split-button-pip-size-sml: $button-pip-sml;
786
+ // $split-button-pip-top-sml: $button-pip-sml * 1.5;
787
+ // $split-button-pip-default-float-sml: rem-calc(-6);
788
+
789
+ // We use these to control medium split buttons
790
+ // $split-button-padding-med: $button-pip-med * 9;
791
+ // $split-button-span-width-med: $button-pip-med * 5.5;
792
+ // $split-button-pip-size-med: $button-pip-med - rem-calc(3);
793
+ // $split-button-pip-top-med: $button-pip-med * 1.5;
794
+ // $split-button-pip-default-float-med: rem-calc(-6);
795
+
796
+ // We use these to control large split buttons
797
+ // $split-button-padding-lrg: $button-pip-lrg * 8;
798
+ // $split-button-span-width-lrg: $button-pip-lrg * 5;
799
+ // $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
800
+ // $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
801
+ // $split-button-pip-default-float-lrg: rem-calc(-6);
802
+
803
+ // Sub Nav
804
+
805
+ // $include-html-nav-classes: $include-html-classes;
806
+
807
+ // We use these to control margin and padding
808
+ // $sub-nav-list-margin: rem-calc(-4 0 18);
809
+ // $sub-nav-list-padding-top: rem-calc(4);
810
+
811
+ // We use this to control the definition
812
+ // $sub-nav-font-family: $body-font-family;
813
+ // $sub-nav-font-size: rem-calc(14);
814
+ // $sub-nav-font-color: #999;
815
+ // $sub-nav-font-weight: normal;
816
+ // $sub-nav-text-decoration: none;
817
+ // $sub-nav-border-radius: 3px;
818
+ // $sub-nav-font-color-hover: darken($sub-nav-font-color, 15%);
819
+
820
+
821
+ // We use these to control the active item styles
822
+
823
+ // $sub-nav-active-font-weight: normal;
824
+ // $sub-nav-active-bg: $primary-color;
825
+ // $sub-nav-active-bg-hover: darken($sub-nav-active-bg, 5%);
826
+ // $sub-nav-active-color: #fff;
827
+ // $sub-nav-active-padding: rem-calc(3 16);
828
+ // $sub-nav-active-cursor: default;
829
+
830
+ // $sub-nav-item-divider: "";
831
+ // $sub-nav-item-divider-margin: rem-calc(12);
832
+
833
+ // Tables
834
+
835
+ // $include-html-table-classes: $include-html-classes;
836
+
837
+ // These control the background color for the table and even rows
838
+ // $table-bg: #fff;
839
+ // $table-even-row-bg: #f9f9f9 ;
840
+
841
+ // These control the table cell border style
842
+ // $table-border-style: solid;
843
+ // $table-border-size: 1px;
844
+ // $table-border-color: #ddd;
845
+
846
+ // These control the table head styles
847
+ // $table-head-bg: #f5f5f5 ;
848
+ // $table-head-font-size: rem-calc(14);
849
+ // $table-head-font-color: #222;
850
+ // $table-head-font-weight: bold;
851
+ // $table-head-padding: rem-calc(8 10 10);
852
+
853
+ // These control the row padding and font styles
854
+ // $table-row-padding: rem-calc(9 10);
855
+ // $table-row-font-size: rem-calc(14);
856
+ // $table-row-font-color: #222;
857
+ // $table-line-height: rem-calc(18);
858
+
859
+ // These are for controlling the display and margin of tables
860
+ // $table-display: table-cell;
861
+ // $table-margin-bottom: rem-calc(20);
862
+
863
+ //
864
+ // TABS
865
+ //
866
+
867
+ // $include-html-tabs-classes: $include-html-classes;
868
+
869
+ // $tabs-navigation-padding: rem-calc(16);
870
+ // $tabs-navigation-bg-color: #efefef ;
871
+ // $tabs-navigation-hover-bg-color: darken($tabs-navigation-bg-color, 5%);
872
+ // $tabs-navigation-font-color: #222;
873
+ // $tabs-navigation-font-size: rem-calc(16);
874
+ // $tabs-navigation-font-family: $body-font-family;
875
+
876
+ // $tabs-content-margin-bottom: rem-calc(24);
877
+ // $tabs-content-padding: $column-gutter/2;
878
+
879
+ // $tabs-vertical-navigation-margin-bottom: 1.25rem;
880
+
881
+ //
882
+ // THUMBNAILS
883
+ //
884
+
885
+ // $include-html-media-classes: $include-html-classes;
886
+
887
+ // We use these to control border styles
888
+ // $thumb-border-style: solid;
889
+ // $thumb-border-width: 4px;
890
+ // $thumb-border-color: #fff;
891
+ // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
892
+ // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
893
+
894
+ // Radius and transition speed for thumbs
895
+ // $thumb-radius: $global-radius;
896
+ // $thumb-transition-speed: 200ms;
897
+
898
+ //
899
+ // TOOLTIPS
900
+ //
901
+
902
+ // $include-html-tooltip-classes: $include-html-classes;
903
+
904
+ // $has-tip-border-bottom: dotted 1px #ccc;
905
+ // $has-tip-font-weight: bold;
906
+ // $has-tip-font-color: #333;
907
+ // $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
908
+ // $has-tip-font-color-hover: $primary-color;
909
+ // $has-tip-cursor-type: help;
910
+
911
+ // $tooltip-padding: rem-calc(12);
912
+ // $tooltip-bg: #333;
913
+ // $tooltip-font-size: rem-calc(14);
914
+ // $tooltip-font-weight: normal;
915
+ // $tooltip-font-color: #fff;
916
+ // $tooltip-line-height: 1.3;
917
+ // $tooltip-close-font-size: rem-calc(10);
918
+ // $tooltip-close-font-weight: normal;
919
+ // $tooltip-close-font-color: #777;
920
+ // $tooltip-font-size-sml: rem-calc(14);
921
+ // $tooltip-radius: $global-radius;
922
+ // $tooltip-pip-size: 5px;
923
+
924
+ //
925
+ // TOP BAR
926
+ //
927
+
928
+ // $include-html-top-bar-classes: $include-html-classes;
929
+
930
+ // Background color for the top bar
931
+ // $topbar-bg-color: #333;
932
+ // $topbar-bg: $topbar-bg-color;
933
+
934
+ // Height and margin
935
+ // $topbar-height: 45px;
936
+ // $topbar-margin-bottom: 0;
937
+
938
+ // Control Input height for top bar
939
+
940
+ // Controlling the styles for the title in the top bar
941
+ // $topbar-title-weight: normal;
942
+ // $topbar-title-font-size: rem-calc(17);
943
+
944
+ // Style the top bar dropdown elements
945
+ // $topbar-dropdown-bg: #333;
946
+ // $topbar-dropdown-link-color: #fff;
947
+ // $topbar-dropdown-link-bg: #333;
948
+ // $topbar-dropdown-toggle-size: 5px;
949
+ // $topbar-dropdown-toggle-color: #fff;
950
+ // $topbar-dropdown-toggle-alpha: 0.4;
951
+
952
+ // Set the link colors and styles for top-level nav
953
+ // $topbar-link-color: #fff;
954
+ // $topbar-link-color-hover: #fff;
955
+ // $topbar-link-color-active: #fff;
956
+ // $topbar-link-weight: normal;
957
+ // $topbar-link-font-size: rem-calc(13);
958
+ // $topbar-link-hover-lightness: -10%; // Darken by 10%
959
+ // $topbar-link-bg-hover: #272727 ;
960
+ // $topbar-link-bg-active: $primary-color;
961
+ // $topbar-link-bg-active-hover: darken($primary-color, 5%);
962
+ // $topbar-link-font-family: $body-font-family;
963
+
964
+ // $topbar-button-font-size: 0.75rem;
965
+
966
+ // $topbar-dropdown-label-color: #777;
967
+ // $topbar-dropdown-label-text-transform: uppercase;
968
+ // $topbar-dropdown-label-font-weight: bold;
969
+ // $topbar-dropdown-label-font-size: rem-calc(10);
970
+ // $topbar-dropdown-label-bg: #333;
971
+
972
+ // Top menu icon styles
973
+ // $topbar-menu-link-transform: uppercase;
974
+ // $topbar-menu-link-font-size: rem-calc(13);
975
+ // $topbar-menu-link-weight: bold;
976
+ // $topbar-menu-link-color: #fff;
977
+ // $topbar-menu-icon-color: #fff;
978
+ // $topbar-menu-link-color-toggled: #888;
979
+ // $topbar-menu-icon-color-toggled: #888;
980
+
981
+ // Transitions and breakpoint styles
982
+ // $topbar-transition-speed: 300ms;
983
+ // Using rem-calc for the below breakpoint causes issues with top bar
984
+ // $topbar-breakpoint: #{upper-bound($medium-range)}; // Change to 9999px for always mobile layout
985
+ // $topbar-media-query: "only screen and (min-width: #{upper-bound($medium-range)})";
986
+
987
+ // Divider Styles
988
+ // $topbar-divider-border-bottom: solid 1px lighten($topbar-bg-color, 10%);
989
+ // $topbar-divider-border-top: solid 1px darken($topbar-bg-color, 10%);
990
+
991
+ // Sticky Class
992
+ // $topbar-sticky-class: ".sticky";
993
+ // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
994
+ @import 'foundation';
995
+ .tab-bar{
996
+ -webkit-box-shadow: 1px 1px 0px 1px rgb(231, 231, 231);
997
+ -moz-box-shadow: 1px 1px 0px 1px rgb(231, 231, 231);
998
+ box-shadow: 1px 1px 0px 1px rgb(231, 231, 231);
999
+ .logo-text{
1000
+ text-align: left;;
1001
+ }
1002
+ section.left-small{
1003
+ a{
1004
+ span{
1005
+ margin-left:25%;
1006
+ margin-top:25%;
1007
+ }
1008
+ }
1009
+ }
1010
+ .reader-toolbar{
1011
+ color:rgba(0,0,0,.75);
1012
+ i{
1013
+ margin-right: 5px;
1014
+ }
1015
+ .fa-half{
1016
+ font-size: 1.5em;
1017
+ vertical-align:middle;
1018
+ }
1019
+ }
1020
+ }
1021
+
1022
+