Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / sass / _settings.scss @ b3c1328b

History | View | Annotate | Download (31 kB)

1
// Required global settings and mixins for Foundation
2
@import "foundation/variables";
3

    
4
// Settings file to override Foundation variables
5

    
6
// You can find the variables for each component at the bottom of their
7
// doc page. We tried to name them to where they'd make sense just by reading them.
8
// Go to http://foundation.zurb.com/docs/ to find what you need.
9

    
10
//
11
// Foundation Global Variables
12
//
13

    
14
// This is the default html and body font-size for the base em value.
15
// $em-base: 16px;
16

    
17
// We use these to control various global styles
18
// $body-bg: #fff;
19
// $body-font-color: #222;
20
// $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
21
// $body-font-weight: normal;
22
// $body-font-style: normal;
23

    
24
// We use this to control font-smoothing
25
// $font-smoothing: antialiased;
26

    
27
// We use these to control text direction settings
28
// $text-direction: ltr;
29

    
30
// We use these as default colors throughout
31
$primary-color: #919194;
32
$secondary-color: #ff7bac;
33
$black:#000;
34
$white:#fff;
35

    
36
$alert-color: $secondary-color;
37
$success-color: #5da423;
38
$warning-color: #49DDC5;
39

    
40
// We use these to make sure border radius matches unless we want it different.
41
$global-radius: 1px;
42
// $global-rounded: 1000px;
43

    
44
// header settings
45
$header-padding-vertical:emCalc(20px);
46
$header-padding-horizontal:emCalc(40px);
47

    
48
// We use these to control inset shadow shiny edges and depressions.
49
// $shiny-edge-size: 0 1px 0;
50
// $shiny-edge-color: rgba(#fff, .5);
51
// $shiny-edge-active-color: rgba(#000, .2);
52

    
53
// We use this to control whether or not CSS classes come through in the gem files.
54
// $include-html-classes: true;
55
// $include-print-styles: true;
56

    
57
// Modular html classes
58
// $include-html-grid-classes: $include-html-classes;
59
// $include-html-visibility-classes: $include-html-classes;
60
// $include-html-button-classes: $include-html-classes;
61
// $include-html-form-classes: $include-html-classes;
62
// $include-html-media-classes: $include-html-classes;
63
// $include-html-section-classes: $include-html-classes;
64
// $include-html-reveal-classes: $include-html-classes;
65
// $include-html-alert-classes: $include-html-classes;
66
// $include-html-nav-classes: $include-html-classes;
67
// $include-html-label-classes: $include-html-classes;
68
// $include-html-panel-classes: $include-html-classes;
69
// $include-html-pricing-classes: $include-html-classes;
70
// $include-html-progress-classes: $include-html-classes;
71

    
72
//
73
// Grid Variables
74
//
75

    
76
$row-top-width:100%;
77
// $row-width: 62.5em;
78
// $column-gutter: 1.875em;
79
// $total-columns: 12;
80

    
81
//
82
// Block Grid Variables
83
//
84

    
85
// We use this to control the maximum number of block grid elements per row
86
// $block-grid-elements: 12;
87
// $block-grid-default-spacing: 10px;
88

    
89
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
90
// $block-grid-media-queries: true;
91

    
92
//
93
// Typography Variables
94
//
95

    
96
// We use these to control header font styles
97
// $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
98
// $header-font-weight: bold;
99
// $header-font-style: normal;
100
// $header-font-color: #222;
101
// $header-line-height: 1.4;
102
// $header-top-margin: .2em;
103
// $header-bottom-margin: .5em;
104
// $header-text-rendering: optimizeLegibility;
105

    
106
// We use these to control header font sizes
107
// $h1-font-size: emCalc(44px);
108
// $h2-font-size: emCalc(37px);
109
// $h3-font-size: emCalc(27px);
110
// $h4-font-size: emCalc(23px);
111
// $h5-font-size: emCalc(18px);
112
// $h6-font-size: 1em;
113

    
114
// These control how subheaders are styled.
115
// $subheader-line-height: 1.4;
116
// $subheader-font-color: lighten($header-font-color, 30%);
117
// $subheader-font-weight: 300;
118
// $subheader-top-margin: .2em;
119
// $subheader-bottom-margin: .5em;
120

    
121
// A general <small> styling
122
// $small-font-size: 60%;
123
// $small-font-color: lighten($header-font-color, 30%);
124

    
125
// We use these to style paragraphs
126
// $paragraph-font-family: inherit;
127
// $paragraph-font-weight: normal;
128
// $paragraph-font-size: 1em;
129
// $paragraph-line-height: 1.6;
130
// $paragraph-margin-bottom: emCalc(20px);
131
// $paragraph-aside-font-size: emCalc(14px);
132
// $paragraph-aside-line-height: 1.35;
133
// $paragraph-aside-font-style: italic;
134

    
135
// We use these to style <code> tags
136
// $code-color: darken($alert-color, 15%);
137
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
138
// $code-font-weight: bold;
139

    
140
// We use these to style anchors
141
// $anchor-text-decoration: none;
142
// $anchor-font-color: $primary-color;
143
// $anchor-font-color-hover: darken($primary-color, 5%);
144

    
145
// We use these to style the <hr> element
146
// $hr-border-width: 1px;
147
// $hr-border-style: solid;
148
// $hr-border-color: #ddd;
149
// $hr-margin: emCalc(20px);
150

    
151
// We use these to style lists
152
// $list-style-position: outside;
153
// $list-side-margin: emCalc(18px);
154
// $definition-list-header-weight: bold;
155
// $definition-list-header-margin-bottom: .3em;
156
// $definition-list-margin-bottom: emCalc(12px);
157

    
158
// We use these to style blockquotes
159
// $blockquote-font-color: lighten($header-font-color, 30%);
160
// $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
161
// $blockquote-border: 1px solid #ddd;
162
// $blockquote-cite-font-size: emCalc(13px);
163
// $blockquote-cite-font-color: lighten($header-font-color, 20%);
164
// $blockquote-cite-link-color: $blockquote-cite-font-color;
165

    
166
// Acronym styles
167
// $acronym-underline: 1px dotted #ddd;
168

    
169
// We use these to control padding and margin
170
// $microformat-padding: emCalc(10px) emCalc(12px);
171
// $microformat-margin: 0 0 emCalc(20px) 0;
172

    
173
// We use these to control the border styles
174
// $microformat-border-width: 1px;
175
// $microformat-border-style: solid;
176
// $microformat-border-color: #ddd;
177

    
178
// We use these to control full name font styles
179
// $microformat-fullname-font-weight: bold;
180
// $microformat-fullname-font-size: emCalc(15px);
181

    
182
// We use this to control the summary font styles
183
// $microformat-summary-font-weight: bold;
184

    
185
// We use this to control abbr padding
186
// $microformat-abbr-padding: 0 emCalc(1px);
187

    
188
// We use this to control abbr font styles
189
// $microformat-abbr-font-weight: bold;
190
// $microformat-abbr-font-decoration: none;
191

    
192
//
193
// Form Variables
194
//
195

    
196
// We use this to set the base for lots of form spacing and positioning styles
197
// $form-spacing: emCalc(16px);
198

    
199
// We use these to style the labels in different ways
200
// $label-pointer: pointer;
201
// $label-font-size: emCalc(14px);
202
// $label-font-weight: 500;
203
// $label-font-color: lighten(#000, 30%);
204
// $label-bottom-margin: emCalc(3px);
205
// $input-font-family: inherit;
206
// $input-font-color: rgba(0,0,0,0.75);
207
// $input-font-size: emCalc(14px);
208
// $input-bg-color: #fff;
209
// $input-focus-bg-color: darken(#fff, 2%);
210
// $input-border-color: darken(#fff, 20%);
211
// $input-focus-border-color: darken(#fff, 40%);
212
// $input-border-style: solid;
213
// $input-border-width: 1px;
214
// $input-disabled-bg: #ddd;
215
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
216

    
217
// We use these to style the fieldset border and spacing.
218
// $fieldset-border-style: solid;
219
// $fieldset-border-width: 1px;
220
// $fieldset-border-color: #ddd;
221
// $fieldset-padding: emCalc(20px);
222
// $fieldset-margin: emCalc(18px) 0;
223

    
224
// We use these to style the legends when you use them
225
// $legend-bg: #fff;
226
// $legend-font-weight: bold;
227
// $legend-padding: 0 emCalc(3px);
228

    
229
// We use these to style the prefix and postfix input elements
230
// $input-prefix-bg: darken(#fff, 5%);
231
// $input-prefix-border-color: darken(#fff, 20%);
232
// $input-prefix-border-size: 1px;
233
// $input-prefix-border-type: solid;
234
// $input-prefix-overflow: hidden;
235
// $input-prefix-font-color: #333;
236
// $input-prefix-font-color-alt: #fff;
237

    
238
// We use these to style the error states for inputs and labels
239
// $input-error-message-padding: emCalc(6px) emCalc(4px);
240
// $input-error-message-top: -($form-spacing) - emCalc(5px);
241
// $input-error-message-font-size: emCalc(12px);
242
// $input-error-message-font-weight: bold;
243
// $input-error-message-font-color: #fff;
244
// $input-error-message-font-color-alt: #333;
245

    
246
// We use these to build padding for buttons.
247
// $button-med: emCalc(12px);
248
// $button-tny: emCalc(7px);
249
// $button-sml: emCalc(9px);
250
// $button-lrg: emCalc(16px);
251

    
252
// We use this to control the display property.
253
// $button-display: inline-block;
254
// $button-margin-bottom: emCalc(20px);
255

    
256
// We use these to control button text styles.
257
// $button-font-family: inherit;
258
// $button-font-color: #fff;
259
// $button-font-color-alt: #333;
260
// $button-font-med: emCalc(16px);
261
// $button-font-tny: emCalc(11px);
262
// $button-font-sml: emCalc(13px);
263
// $button-font-lrg: emCalc(20px);
264
// $button-font-weight: bold;
265
// $button-font-align: center;
266

    
267
// We use these to control various hover effects.
268
// $button-function-factor: 10%;
269

    
270
// We use these to control button border styles.
271
// $button-border-width: 1px;
272
// $button-border-style: solid;
273
// $button-border-color: darken($primary-color, $button-function-factor);
274

    
275
// We use this to set the default radius used throughout the core.
276
// $button-radius: $global-radius;
277

    
278
// We use this to set default opacity for disabled buttons.
279
// $button-disabled-opacity: 0.6;
280

    
281
//
282
// Dropdown Button Variables
283
//
284

    
285
// We use these to set the color of the pip in dropdown buttons
286
// $dropdown-button-pip-color: #fff;
287
// $dropdown-button-pip-color-alt: #333;
288

    
289
// We use these to style tiny dropdown buttons
290
// $dropdown-button-padding-tny: $button-tny * 5;
291
// $dropdown-button-pip-size-tny: $button-tny;
292
// $dropdown-button-pip-right-tny: $button-tny * 2;
293
// $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
294

    
295
// We use these to style small dropdown buttons
296
// $dropdown-button-padding-sml: $button-sml * 5;
297
// $dropdown-button-pip-size-sml: $button-sml;
298
// $dropdown-button-pip-right-sml: $button-sml * 2;
299
// $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
300

    
301
// We use these to style medium dropdown buttons
302
// $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
303
// $dropdown-button-pip-size-med: $button-med - emCalc(3px);
304
// $dropdown-button-pip-right-med: $button-med * 2;
305
// $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
306

    
307
// We use these to style large dropdown buttons
308
// $dropdown-button-padding-lrg: $button-lrg * 4;
309
// $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
310
// $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
311
// $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
312

    
313
//
314
// Split Button Variables
315
//
316

    
317
// We use these to control different shared styles for Split Buttons
318
// $split-button-function-factor: 15%;
319
// $split-button-pip-color: #fff;
320
// $split-button-pip-color-alt: #333;
321
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
322

    
323
// We use these to control tiny split buttons
324
// $split-button-padding-tny: $button-tny * 9;
325
// $split-button-span-width-tny: $button-tny * 6.5;
326
// $split-button-pip-size-tny: $button-tny;
327
// $split-button-pip-top-tny: $button-tny * 2;
328
// $split-button-pip-left-tny: emCalc(-5px);
329

    
330
// We use these to control small split buttons
331
// $split-button-padding-sml: $button-sml * 7;
332
// $split-button-span-width-sml: $button-sml * 5;
333
// $split-button-pip-size-sml: $button-sml;
334
// $split-button-pip-top-sml: $button-sml * 1.5;
335
// $split-button-pip-left-sml: emCalc(-9px);
336

    
337
// We use these to control medium split buttons
338
// $split-button-padding-med: $button-med * 6.4;
339
// $split-button-span-width-med: $button-med * 4;
340
// $split-button-pip-size-med: $button-med - emCalc(3px);
341
// $split-button-pip-top-med: $button-med * 1.5;
342
// $split-button-pip-left-med: emCalc(-9px);
343

    
344
// We use these to control large split buttons
345
// $split-button-padding-lrg: $button-lrg * 6;
346
// $split-button-span-width-lrg: $button-lrg * 3.75;
347
// $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
348
// $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
349
// $split-button-pip-left-lrg: emCalc(-9px);
350

    
351
//
352
// Alert Variables
353
//
354

    
355
// We use this to control alert padding.
356
// $alert-padding-top: emCalc(11px);
357
// $alert-padding-left: $alert-padding-top;
358
// $alert-padding-right: $alert-padding-top + emCalc(10px);
359
// $alert-padding-bottom: $alert-padding-top + emCalc(1px);
360

    
361
// We use these to control text style.
362
// $alert-font-weight: bold;
363
// $alert-font-size: emCalc(14px);
364
// $alert-font-color: #fff;
365
// $alert-font-color-alt: darken($secondary-color, 60%);
366

    
367
// We use this for close hover effect.
368
// $alert-function-factor: 10%;
369

    
370
// We use these to control border styles.
371
// $alert-border-style: solid;
372
// $alert-border-width: 1px;
373
// $alert-border-color: darken($primary-color, $alert-function-factor);
374
// $alert-bottom-margin: emCalc(20px);
375

    
376
// We use these to style the close buttons
377
// $alert-close-color: #333;
378
// $alert-close-position: emCalc(5px);
379
// $alert-close-font-size: emCalc(22px);
380
// $alert-close-opacity: 0.3;
381
// $alert-close-opacity-hover: 0.5;
382
// $alert-close-padding: 5px 4px 4px;
383

    
384
// We use this to control border radius
385
// $alert-radius: $global-radius;
386

    
387
//
388
// Breadcrumb Variables
389
//
390

    
391
// We use this to set the background color for the breadcrumb container.
392
// $crumb-bg: lighten($secondary-color, 5%);
393

    
394
// We use these to set the padding around the breadcrumbs.
395
// $crumb-padding: emCalc(6px) emCalc(14px) emCalc(9px);
396
// $crumb-side-padding: emCalc(12px);
397

    
398
// We use these to control border styles.
399
// $crumb-function-factor: 10%;
400
// $crumb-border-size: 1px;
401
// $crumb-border-style: solid;
402
// $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
403
// $crumb-radius: $global-radius;
404

    
405
// We use these to set various text styles for breadcrumbs.
406
// $crumb-font-size: emCalc(11px);
407
// $crumb-font-color: $primary-color;
408
// $crumb-font-color-current: #333;
409
// $crumb-font-color-unavailable: #999;
410
// $crumb-font-transform: uppercase;
411
// $crumb-link-decor: underline;
412

    
413
// We use these to control the slash between breadcrumbs
414
// $crumb-slash-color: #aaa;
415
// $crumb-slash: "/";
416

    
417
//
418
// Clearing Variables
419
//
420

    
421
// We use these to set the background colors for parts of Clearing.
422
// $clearing-bg: #111;
423
// $clearing-caption-bg: $clearing-bg;
424
// $clearing-carousel-bg: #111;
425
// $clearing-img-bg: $clearing-bg;
426

    
427
// We use these to style the close button
428
// $clearing-close-color: #fff;
429
// $clearing-close-size: 40px;
430

    
431
// We use these to style the arrows
432
// $clearing-arrow-size: 16px;
433
// $clearing-arrow-color: $clearing-close-color;
434

    
435
// We use these to style captions
436
// $clearing-caption-font-color: #fff;
437
// $clearing-caption-padding: 10px 30px;
438

    
439
// We use these to make the image and carousel height and style
440
// $clearing-active-img-height: 75%;
441
// $clearing-carousel-height: 150px;
442
// $clearing-carousel-thumb-width: 175px;
443
// $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
444

    
445
//
446
// Custom Form Variables
447
//
448

    
449
// We use these to control the basic form styles input styles
450
// $custom-form-border-color: #ccc;
451
// $custom-form-bg: #fff;
452
// $custom-form-bg-disabled: #ddd;
453
// $custom-form-check-color: #222;
454

    
455
// We use these to style the custom select form element.
456
// $custom-select-bg: #fff;
457
// $custom-select-fade-to-color: #f3f3f3;
458
// $custom-select-border-color: #ddd;
459
// $custom-select-triangle-color: #aaa;
460
// $custom-select-triangle-color-open: #222;
461
// $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
462
// $custom-select-margin-bottom: emCalc(20px);
463
// $custom-select-font-color-selected: #141414;
464
// $custom-select-disabled-color: #888;
465

    
466
// We use these to control the style of the custom select dropdown element.
467
// $custom-dropdown-height: 200px;
468
// $custom-dropdown-bg: #fff;
469
// $custom-dropdown-border-color: darken(#fff, 20%);
470
// $custom-dropdown-border-width: 1px;
471
// $custom-dropdown-border-style: solid;
472
// $custom-dropdown-font-color: #555;
473
// $custom-dropdown-font-size: emCalc(14px);
474
// $custom-dropdown-color-selected: #eeeeee;
475
// $custom-dropdown-font-color-selected: #000;
476
// $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
477
// $custom-dropdown-offset-top: none;
478
// $custom-dropdown-list-padding: emCalc(4px);
479
// $custom-dropdown-left-padding: emCalc(6px);
480
// $custom-dropdown-right-padding: emCalc(38px);
481
// $custom-dropdown-list-item-min-height: emCalc(24px);
482

    
483
//
484
// Dropdown Variables
485
//
486

    
487
// We use these to controls height and width styles.
488
// $f-dropdown-max-width: 200px;
489
// $f-dropdown-height: auto;
490
// $f-dropdown-max-height: none;
491
// $f-dropdown-margin-top: 2px;
492

    
493
// We use this to control the background color
494
// $f-dropdown-bg: #fff;
495

    
496
// We use this to set the border styles for dropdowns.
497
// $f-dropdown-border-style: solid;
498
// $f-dropdown-border-width: 1px;
499
// $f-dropdown-border-color: darken(#fff, 20%);
500

    
501
// We use these to style the triangle pip.
502
// $f-dropdown-triangle-size: 6px;
503
// $f-dropdown-triangle-color: #fff;
504
// $f-dropdown-triangle-side-offset: 10px;
505

    
506
// We use these to control styles for the list elements.
507
// $f-dropdown-list-style: none;
508
// $f-dropdown-font-color: #555;
509
// $f-dropdown-font-size: emCalc(14px);
510
// $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
511
// $f-dropdown-line-height: emCalc(18px);
512
// $f-dropdown-list-hover-bg: #eeeeee;
513
// $dropdown-mobile-left: 0;
514

    
515
// We use this to control the styles for when the dropdown has custom content.
516
// $f-dropdown-content-padding: emCalc(20px);
517

    
518
//
519
// Flex Video Variables
520
//
521

    
522
// We use these to control video container padding and margins
523
// $flex-video-padding-top: emCalc(25px);
524
// $flex-video-padding-bottom: 67.5%;
525
// $flex-video-margin-bottom: emCalc(16px);
526

    
527
// We use this to control widescreen bottom padding
528
// $flex-video-widescreen-padding-bottom: 57.25%;
529

    
530
//
531
// Inline List Variables
532
//
533

    
534
// We use this to control the margins and padding of the inline list.
535
// $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
536
// $inline-list-margin: 0 0;
537
// $inline-list-padding: 0;
538

    
539
// We use this to control the overflow of the inline list.
540
// $inline-list-overflow: hidden;
541

    
542
// We use this to control the list items
543
// $inline-list-display: block;
544

    
545
// We use this to control any elments within list items
546
// $inline-list-children-display: block;
547

    
548
//
549
// Joyride Variables
550
//
551

    
552
// Controlling default Joyride styles
553
// $joyride-tip-bg: rgb(0,0,0);
554
// $joyride-tip-default-width: 300px;
555
// $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
556
// $joyride-tip-border: solid 1px #555;
557
// $joyride-tip-radius: 4px;
558
// $joyride-tip-position-offset: 22px;
559

    
560
// Here, we're setting the tip dont styles
561
// $joyride-tip-font-color: #fff;
562
// $joyride-tip-font-size: emCalc(14px);
563
// $joyride-tip-header-weight: bold;
564

    
565
// This changes the nub size
566
// $joyride-tip-nub-size: 14px;
567

    
568
// This adjusts the styles for the timer when its enabled
569
// $joyride-tip-timer-width: 50px;
570
// $joyride-tip-timer-height: 3px;
571
// $joyride-tip-timer-color: #666;
572

    
573
// This changes up the styles for the close button
574
// $joyride-tip-close-color: #777;
575
// $joyride-tip-close-size: 30px;
576
// $joyride-tip-close-weight: normal;
577

    
578
// When Joyride is filling the screen, we use this style for the bg
579
// $joyride-screenfill: rgba(0,0,0,0.5);
580

    
581
//
582
// Keystroke Variables
583
//
584

    
585
// We use these to control text styles.
586
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
587
// $keystroke-font-size: emCalc(15px);
588
// $keystroke-font-color: #222;
589
// $keystroke-font-color-alt: #fff;
590
// $keystroke-function-factor: 7%;
591

    
592
// We use this to control keystroke padding.
593
// $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
594

    
595
// We use these to control background and border styles.
596
// $keystroke-bg: darken(#fff, $keystroke-function-factor);
597
// $keystroke-border-style: solid;
598
// $keystroke-border-width: 1px;
599
// $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
600
// $keystroke-radius: $global-radius;
601

    
602
//
603
// Label Variables
604
//
605

    
606
// We use these to style the labels
607
// $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
608
// $label-radius: $global-radius;
609

    
610
// We use these to style the label text
611
// $label-font-sizing: emCalc(14px);
612
// $label-font-weight: bold;
613

    
614
//
615
// Orbit Settings
616
//
617

    
618
// We use these to control the caption styles
619
// $orbit-container-bg: #f5f5f5;
620
// $orbit-caption-bg-old-browser: #000;
621
// $orbit-caption-bg-old: rgb(0,0,0);
622
// $orbit-caption-bg: rgba(0,0,0,0.6);
623
// $orbit-caption-font-color: #fff;
624

    
625
// We use these to control the left/right nav styles
626
// $orbit-nav-bg-old: rgb(0,0,0);
627
// $orbit-nav-bg: rgba(0,0,0,0.6);
628

    
629
// We use these to control the timer styles
630
// $orbit-timer-bg-old: rgb(0,0,0);
631
// $orbit-timer-bg: rgba(0,0,0,0.6);
632

    
633
// We use these to control the bullet nav styles
634
// $orbit-bullet-nav-color: #999;
635
// $orbit-bullet-nav-color-active: #222;
636

    
637
// We use thes to controls the style of slide numbers
638
// $orbit-slide-number-bg: rgb(0,0,0);
639
// $orbit-slide-number-font-color: #fff;
640
// $orbit-slide-number-padding: emCalc(5px);
641

    
642
// Margin for when Orbit is stacked on small screens
643
// $stack-on-small-margin-bottom: emCalc(20px); // Doesn't quite work yet
644

    
645
//
646
// Pagination Variables
647
//
648

    
649
// We use these to control the pagination container
650
// $pagination-height: emCalc(24px);
651
// $pagination-margin: emCalc(-5px);
652

    
653
// We use these to set the list-item properties
654
// $pagination-li-float: $default-float;
655
// $pagination-li-height: emCalc(24px);
656
// $pagination-li-font-color: #222;
657
// $pagination-li-font-size: emCalc(14px);
658
// $pagination-li-margin: emCalc(5px);
659

    
660
// We use these for the pagination anchor links
661
// $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
662
// $pagination-link-font-color: #999;
663
// $pagination-link-active-bg: darken(#fff, 10%);
664

    
665
// We use these for disabled anchor links
666
// $pagination-link-unavailable-cursor: default;
667
// $pagination-link-unavailable-font-color: #999;
668
// $pagination-link-unavailable-bg-active: transparent;
669

    
670
// We use these for currently selected anchor links
671
// $pagination-link-current-background: $primary-color;
672
// $pagination-link-current-font-color: #fff;
673
// $pagination-link-current-font-weight: bold;
674
// $pagination-link-current-cursor: default;
675
// $pagination-link-current-active-bg: $primary-color;
676

    
677
//
678
// Panel Variables
679
//
680

    
681
// We use these to control the background and border styles
682
// $panel-bg: darken(#fff, 5%);
683
// $panel-border-style: solid;
684
// $panel-border-size: 1px;
685

    
686
// We use this % to control how much we darken things on hover
687
// $panel-function-factor: 10%;
688
// $panel-border-color: darken($panel-bg, $panel-function-factor);
689

    
690
// We use these to set default inner padding and bottom margin
691
// $panel-margin-bottom: emCalc(20px);
692
// $panel-padding: emCalc(20px);
693

    
694
// We use these to set default font colors
695
// $panel-font-color: #333;
696
// $panel-font-color-alt: #fff;
697

    
698
//
699
// Pricing Table Variables
700
//
701

    
702
// We use this to control the border color
703
// $price-table-border: solid 1px #ddd;
704

    
705
// We use this to control the bottom margin of the pricing table
706
// $price-table-margin-bottom: emCalc(20px);
707

    
708
// We use these to control the title styles
709
// $price-title-bg: #ddd;
710
// $price-title-padding: emCalc(15px) emCalc(20px);
711
// $price-title-align: center;
712
// $price-title-color: #333;
713
// $price-title-weight: bold;
714
// $price-title-size: emCalc(16px);
715

    
716
// We use these to control the price styles
717
// $price-money-bg: #eee;
718
// $price-money-padding: emCalc(15px) emCalc(20px);
719
// $price-money-align: center;
720
// $price-money-color: #333;
721
// $price-money-weight: normal;
722
// $price-money-size: emCalc(20px);
723

    
724
// We use these to control the description styles
725
// $price-bg: #fff;
726
// $price-desc-color: #777;
727
// $price-desc-padding: emCalc(15px);
728
// $price-desc-align: center;
729
// $price-desc-font-size: emCalc(12px);
730
// $price-desc-weight: normal;
731
// $price-desc-line-height: 1.4;
732
// $price-desc-bottom-border: dotted 1px #ddd;
733

    
734
// We use these to control the list item styles
735
// $price-item-color: #333;
736
// $price-item-padding: emCalc(15px);
737
// $price-item-align: center;
738
// $price-item-font-size: emCalc(14px);
739
// $price-item-weight: normal;
740
// $price-item-bottom-border: dotted 1px #ddd;
741

    
742
// We use these to control the CTA area styles
743
// $price-cta-bg: #f5f5f5;
744
// $price-cta-align: center;
745
// $price-cta-padding: emCalc(20px) emCalc(20px) 0;
746

    
747
//
748
// Progress Bar Variables
749
//
750

    
751
// We use this to se the prog bar height
752
// $progress-bar-height: emCalc(25px);
753
// $progress-bar-color: transparent;
754

    
755
// We use these to control the border styles
756
// $progress-bar-border-color: darken(#fff, 20%);
757
// $progress-bar-border-size: 1px;
758
// $progress-bar-border-style: solid;
759
// $progress-bar-border-radius: $global-radius;
760

    
761
// We use these to control the margin & padding
762
// $progress-bar-pad: emCalc(2px);
763
// $progress-bar-margin-bottom: emCalc(10px);
764

    
765
// We use these to set the meter colors
766
// $progress-meter-color: $primary-color;
767
// $progress-meter-secondary-color: $secondary-color;
768
// $progress-meter-success-color: $success-color;
769
// $progress-meter-alert-color: $alert-color;
770

    
771
// NEED TO FINISH THE LOGIC HERE
772

    
773
//
774
// Reveal Variables
775
//
776

    
777
// We use these to control the style of the reveal overlay.
778
// $reveal-overlay-bg: rgba(#000, .45);
779
// $reveal-overlay-bg-old: #000;
780

    
781
// We use these to control the style of the modal itself.
782
// $reveal-modal-bg: #fff;
783
// $reveal-position-top: 50px;
784
// $reveal-default-width: 80%;
785
// $reveal-modal-padding: emCalc(20px);
786
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
787

    
788
// We use these to style the reveal close button
789
// $reveal-close-font-size: emCalc(22px);
790
// $reveal-close-top: emCalc(8px);
791
// $reveal-close-side: emCalc(11px);
792
// $reveal-close-color: #aaa;
793
// $reveal-close-weight: bold;
794

    
795
// We use these to control the modal border
796
// $reveal-border-style: solid;
797
// $reveal-border-width: 1px;
798
// $reveal-border-color: #666;
799

    
800
//
801
// Section Variables
802
//
803

    
804
// We use these to set padding and hover factor
805
// $section-padding: emCalc(15px);
806
// $section-function-factor: 10%;
807

    
808
// These style the titles
809
// $section-title-color: #333;
810
// $section-title-bg: #efefef;
811
// $section-title-bg-active: darken($section-title-bg, $section-function-factor);
812
// $section-title-bg-active-tabs: #fff;
813

    
814
// Want to control border size, here ya go!
815
// $section-border-size: 1px;
816
// $section-border-style: solid;
817
// $section-border-color: #ccc;
818

    
819
// Control the color of the background and some size options
820
// $section-content-bg: #fff;
821
// $section-vertical-nav-min-width: emCalc(200px);
822
// $section-bottom-margin: emCalc(20px);
823

    
824
//
825
// Side Nav Variables
826
//
827

    
828
// We use this to control padding.
829
// $side-nav-padding: emCalc(14px) 0;
830

    
831
// We use these to control list styles.
832
// $side-nav-list-type: none;
833
// $side-nav-list-position: inside;
834
// $side-nav-list-margin: 0 0 emCalc(7px) 0;
835

    
836
// We use these to control link styles.
837
// $side-nav-link-color: $primary-color;
838
// $side-nav-link-color-active: lighten(#000, 30%);
839
// $side-nav-font-size: emCalc(14px);
840
// $side-nav-font-weight: bold;
841

    
842
// We use these to control border styles
843
// $side-nav-divider-size: 1px;
844
// $side-nav-divider-style: solid;
845
// $side-nav-divider-color: darken(#fff, 10%);
846

    
847
//
848
// Sub Nav Variables
849
//
850

    
851
// We use these to control margin and padding
852
// $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
853
// $sub-nav-list-padding-top: emCalc(4px);
854

    
855
// We use this to control the definition
856
// $sub-nav-font-size: emCalc(14px);
857
// $sub-nav-font-color: #999;
858
// $sub-nav-font-weight: normal;
859
// $sub-nav-text-decoration: none;
860
// $sub-nav-border-radius: 1000px;
861

    
862
// We use these to control the active item styles
863
// $sub-nav-active-font-weight: bold;
864
// $sub-nav-active-bg: $primary-color;
865
// $sub-nav-active-color: #fff;
866
// $sub-nav-active-padding: emCalc(3px) emCalc(9px);
867
// $sub-nav-active-cursor: default;
868

    
869
//
870
// Switch Variables
871
//
872

    
873
// Controlling border styles and background colors for the switch container
874
// $switch-border-color: darken(#fff, 20%);
875
// $switch-border-style: solid;
876
// $switch-border-width: 1px;
877
// $switch-bg: #fff;
878

    
879
// We use these to control the switch heights for our default classes
880
// $switch-height-tny: 22px;
881
// $switch-height-sml: 28px;
882
// $switch-height-med: 36px;
883
// $switch-height-lrg: 44px;
884
// $switch-bottom-margin: emCalc(20px);
885

    
886
// We use these to control default font sizes for our classes.
887
// $switch-font-size-tny: 11px;
888
// $switch-font-size-sml: 12px;
889
// $switch-font-size-med: 14px;
890
// $switch-font-size-lrg: 17px;
891
// $switch-label-side-padding: 6px;
892

    
893
// We use these to style the switch-paddle
894
// $switch-paddle-bg: #fff;
895
// $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
896
// $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
897
// $switch-paddle-border-width: 1px;
898
// $switch-paddle-border-style: solid;
899
// $switch-paddle-transition-speed: .1s;
900
// $switch-paddle-transition-ease: ease-out;
901
// $switch-positive-color: lighten($success-color, 50%);
902
// $switch-negative-color: #f5f5f5;
903

    
904
// Outline Style for tabbing through switches
905
// $switch-label-outline: 1px dotted #888;
906

    
907
//
908
// Table Variables
909
//
910

    
911
// These control the background color for the table and even rows
912
// $table-bg: #fff;
913
// $table-even-row-bg: #f9f9f9;
914

    
915
// These control the table cell border style
916
// $table-border-style: solid;
917
// $table-border-size: 1px;
918
// $table-border-color: #ddd;
919

    
920
// These control the table head styles
921
// $table-head-bg: #f5f5f5;
922
// $table-head-font-size: emCalc(14px);
923
// $table-head-font-color: #222;
924
// $table-head-font-weight: bold;
925
// $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
926

    
927
// These control the row padding and font styles
928
// $table-row-padding: emCalc(9px) emCalc(10px);
929
// $table-row-font-size: emCalc(14px);
930
// $table-row-font-color: #222;
931
// $table-line-height: emCalc(18px);
932

    
933
// These are for controlling the display and margin of tables
934
// $table-display: table-cell;
935
// $table-margin-bottom: emCalc(20px);
936

    
937
//
938
// Image Thumbnail Variables
939
//
940

    
941
// We use these to control border styles
942
// $thumb-border-style: solid;
943
// $thumb-border-width: 4px;
944
// $thumb-border-color: #fff;
945
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
946
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
947

    
948
// Radius and transition speed for thumbs
949
// $thumb-radius: $global-radius;
950
// $thumb-transition-speed: 200ms;
951

    
952
//
953
// Tooltip Variables
954
//
955
$has-tip-border-bottom: 0 none;
956
// $has-tip-font-weight: bold;
957
// $has-tip-font-color: #333;
958
$has-tip-border-bottom-hover: none;
959
// $has-tip-font-color-hover: $primary-color;
960
// $has-tip-cursor-type: help;
961

    
962
$tooltip-padding: emCalc(4px) emCalc(10px);
963
$tooltip-bg: $primary-color;
964
// $tooltip-font-size: emCalc(15px);
965
$tooltip-font-weight: normal;
966
// $tooltip-font-color: #fff;
967
// $tooltip-line-height: 1.3;
968
// $tooltip-close-font-size: emCalc(10px);
969
// $tooltip-close-font-weight: normal;
970
// $tooltip-close-font-color: #888;
971
// $tooltip-font-size-sml: emCalc(14px);
972
// $tooltip-radius: $global-radius;
973
// $tooltip-pip-size: 5px;
974

    
975
//
976
// Top Bar Variables
977
//
978

    
979
// Background color for the top bar
980
// $topbar-bg: #111;
981

    
982
// Height and margin
983
// $topbar-height: 45px;
984
// $topbar-margin-bottom: emCalc(30px);
985

    
986
// Control Input height for top bar
987
// $topbar-input-height: 2.45em;
988

    
989
// Controlling the styles for the title in the top bar
990
// $topbar-title-weight: bold;
991
// $topbar-title-font-size: emCalc(17px);
992

    
993
// Set the link colors and styles for top-level nav
994
// $topbar-link-color: #fff;
995
// $topbar-link-weight: bold;
996
// $topbar-link-font-size: emCalc(13px);
997

    
998
// Style the top bar dropdown elements
999
// $topbar-dropdown-bg: #333;
1000
// $topbar-dropdown-link-color: #fff;
1001
// $topbar-dropdown-toggle-size: 5px;
1002
// $topbar-dropdown-toggle-color: #fff;
1003
// $topbar-dropdown-toggle-alpha: 0.5;
1004
// $dropdown-label-color: #555;
1005

    
1006
// Top menu icon styles
1007
// $topbar-menu-link-transform: uppercase;
1008
// $topbar-menu-link-font-size: emCalc(13px);
1009
// $topbar-menu-link-weight: bold;
1010
// $topbar-menu-link-color: #fff;
1011
// $topbar-menu-icon-color: #fff;
1012
// $topbar-menu-link-color-toggled: #888;
1013
// $topbar-menu-icon-color-toggled: #888;
1014

    
1015
// Transitions and breakpoint styles
1016
// $topbar-transition-speed: 300ms;
1017
// $topbar-breakpoint: emCalc(940px); // Change to 9999px for always mobile layout
1018
// $topbar-media-query: "only screen and (min-width "#{$topbar-breakpoint}")";
1019