Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (31.2 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: "Open Sans", "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: #3582AC;
33
$third-color: #F24E53;
34
$black:#333;
35

    
36
$alert-color: $secondary-color;
37
$success-color: #00a551;
38
$warning-color: #49DDC5;
39
$error-color: #ff5c58;
40

    
41
//colors for main icons (icons of networks and vms)
42
$vm-active-color: #75c046;
43
$vm-stopped-color: #e00e63;
44
$network-color: #79c79e;
45

    
46
// We use these to make sure border radius matches unless we want it different.
47
$global-radius: 1px;
48
// $global-rounded: 1000px;
49

    
50
// header settings
51
$header-padding-vertical:emCalc(20px);
52
$header-padding-horizontal:emCalc(40px);
53

    
54

    
55
// We use these to control inset shadow shiny edges and depressions.
56
// $shiny-edge-size: 0 1px 0;
57
// $shiny-edge-color: rgba(#fff, .5);
58
// $shiny-edge-active-color: rgba(#000, .2);
59

    
60
// We use this to control whether or not CSS classes come through in the gem files.
61
// $include-html-classes: true;
62
// $include-print-styles: true;
63

    
64
// Modular html classes
65
// $include-html-grid-classes: $include-html-classes;
66
// $include-html-visibility-classes: $include-html-classes;
67
// $include-html-button-classes: $include-html-classes;
68
// $include-html-form-classes: $include-html-classes;
69
// $include-html-media-classes: $include-html-classes;
70
// $include-html-section-classes: $include-html-classes;
71
// $include-html-reveal-classes: $include-html-classes;
72
// $include-html-alert-classes: $include-html-classes;
73
// $include-html-nav-classes: $include-html-classes;
74
// $include-html-label-classes: $include-html-classes;
75
// $include-html-panel-classes: $include-html-classes;
76
// $include-html-pricing-classes: $include-html-classes;
77
// $include-html-progress-classes: $include-html-classes;
78

    
79
//
80
// Grid Variables
81
//
82

    
83
$row-full-width:100%;
84
$row-width: emCalc(1200px);
85
// $column-gutter: 1.875em;
86
// $total-columns: 12;
87

    
88
//
89
// Block Grid Variables
90
//
91

    
92
// We use this to control the maximum number of block grid elements per row
93
// $block-grid-elements: 12;
94
// $block-grid-default-spacing: 10px;
95

    
96
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
97
// $block-grid-media-queries: true;
98

    
99
//
100
// Typography Variables
101
//
102

    
103
// We use these to control header font styles
104
$header-font-family: "Open Sans", "Helvetica", Helvetica, Arial, sans-serif;
105
// $header-font-weight: bold;
106
// $header-font-style: normal;
107
$header-font-color: $body-font-color;
108
// $header-line-height: 1.4;
109
// $header-top-margin: .2em;
110
// $header-bottom-margin: .5em;
111
// $header-text-rendering: optimizeLegibility;
112

    
113
// We use these to control header font sizes
114
// $h1-font-size: emCalc(44px);
115
// $h2-font-size: emCalc(37px);
116
// $h3-font-size: emCalc(27px);
117
// $h4-font-size: emCalc(23px);
118
// $h5-font-size: emCalc(18px);
119
// $h6-font-size: 1em;
120

    
121
// These control how subheaders are styled.
122
// $subheader-line-height: 1.4;
123
// $subheader-font-color: lighten($header-font-color, 30%);
124
// $subheader-font-weight: 300;
125
// $subheader-top-margin: .2em;
126
// $subheader-bottom-margin: .5em;
127

    
128
// A general <small> styling
129
// $small-font-size: 60%;
130
// $small-font-color: lighten($header-font-color, 30%);
131

    
132
// We use these to style paragraphs
133
// $paragraph-font-family: inherit;
134
// $paragraph-font-weight: normal;
135
// $paragraph-font-size: 1em;
136
// $paragraph-line-height: 1.6;
137
// $paragraph-margin-bottom: emCalc(20px);
138
// $paragraph-aside-font-size: emCalc(14px);
139
// $paragraph-aside-line-height: 1.35;
140
// $paragraph-aside-font-style: italic;
141

    
142
// We use these to style <code> tags
143
// $code-color: darken($alert-color, 15%);
144
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
145
// $code-font-weight: bold;
146

    
147
// We use these to style anchors
148
// $anchor-text-decoration: none;
149
// $anchor-font-color: $primary-color;
150
// $anchor-font-color-hover: darken($primary-color, 5%);
151

    
152
// We use these to style the <hr> element
153
// $hr-border-width: 1px;
154
// $hr-border-style: solid;
155
// $hr-border-color: #ddd;
156
// $hr-margin: emCalc(20px);
157

    
158
// We use these to style lists
159
// $list-style-position: outside;
160
// $list-side-margin: emCalc(18px);
161
// $definition-list-header-weight: bold;
162
// $definition-list-header-margin-bottom: .3em;
163
// $definition-list-margin-bottom: emCalc(12px);
164

    
165
// We use these to style blockquotes
166
// $blockquote-font-color: lighten($header-font-color, 30%);
167
// $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
168
// $blockquote-border: 1px solid #ddd;
169
// $blockquote-cite-font-size: emCalc(13px);
170
// $blockquote-cite-font-color: lighten($header-font-color, 20%);
171
// $blockquote-cite-link-color: $blockquote-cite-font-color;
172

    
173
// Acronym styles
174
// $acronym-underline: 1px dotted #ddd;
175

    
176
// We use these to control padding and margin
177
// $microformat-padding: emCalc(10px) emCalc(12px);
178
// $microformat-margin: 0 0 emCalc(20px) 0;
179

    
180
// We use these to control the border styles
181
// $microformat-border-width: 1px;
182
// $microformat-border-style: solid;
183
// $microformat-border-color: #ddd;
184

    
185
// We use these to control full name font styles
186
// $microformat-fullname-font-weight: bold;
187
// $microformat-fullname-font-size: emCalc(15px);
188

    
189
// We use this to control the summary font styles
190
// $microformat-summary-font-weight: bold;
191

    
192
// We use this to control abbr padding
193
// $microformat-abbr-padding: 0 emCalc(1px);
194

    
195
// We use this to control abbr font styles
196
// $microformat-abbr-font-weight: bold;
197
// $microformat-abbr-font-decoration: none;
198

    
199
//
200
// Form Variables
201
//
202

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

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

    
224
// We use these to style the fieldset border and spacing.
225
// $fieldset-border-style: solid;
226
// $fieldset-border-width: 1px;
227
// $fieldset-border-color: #ddd;
228
// $fieldset-padding: emCalc(20px);
229
// $fieldset-margin: emCalc(18px) 0;
230

    
231
// We use these to style the legends when you use them
232
// $legend-bg: #fff;
233
// $legend-font-weight: bold;
234
// $legend-padding: 0 emCalc(3px);
235

    
236
// We use these to style the prefix and postfix input elements
237
// $input-prefix-bg: darken(#fff, 5%);
238
// $input-prefix-border-color: darken(#fff, 20%);
239
// $input-prefix-border-size: 1px;
240
// $input-prefix-border-type: solid;
241
// $input-prefix-overflow: hidden;
242
// $input-prefix-font-color: #333;
243
// $input-prefix-font-color-alt: #fff;
244

    
245
// We use these to style the error states for inputs and labels
246
// $input-error-message-padding: emCalc(6px) emCalc(4px);
247
// $input-error-message-top: -($form-spacing) - emCalc(5px);
248
// $input-error-message-font-size: emCalc(12px);
249
// $input-error-message-font-weight: bold;
250
// $input-error-message-font-color: #fff;
251
// $input-error-message-font-color-alt: #333;
252

    
253
// We use these to build padding for buttons.
254
// $button-med: emCalc(12px);
255
// $button-tny: emCalc(7px);
256
// $button-sml: emCalc(9px);
257
// $button-lrg: emCalc(16px);
258

    
259
// We use this to control the display property.
260
// $button-display: inline-block;
261
// $button-margin-bottom: emCalc(20px);
262

    
263
// We use these to control button text styles.
264
// $button-font-family: inherit;
265
// $button-font-color: #fff;
266
// $button-font-color-alt: #333;
267
// $button-font-med: emCalc(16px);
268
// $button-font-tny: emCalc(11px);
269
// $button-font-sml: emCalc(13px);
270
// $button-font-lrg: emCalc(20px);
271
// $button-font-weight: bold;
272
// $button-font-align: center;
273

    
274
// We use these to control various hover effects.
275
// $button-function-factor: 10%;
276

    
277
// We use these to control button border styles.
278
// $button-border-width: 1px;
279
// $button-border-style: solid;
280
// $button-border-color: darken($primary-color, $button-function-factor);
281

    
282
// We use this to set the default radius used throughout the core.
283
// $button-radius: $global-radius;
284

    
285
// We use this to set default opacity for disabled buttons.
286
// $button-disabled-opacity: 0.6;
287

    
288
//
289
// Dropdown Button Variables
290
//
291

    
292
// We use these to set the color of the pip in dropdown buttons
293
// $dropdown-button-pip-color: #fff;
294
// $dropdown-button-pip-color-alt: #333;
295

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

    
302
// We use these to style small dropdown buttons
303
// $dropdown-button-padding-sml: $button-sml * 5;
304
// $dropdown-button-pip-size-sml: $button-sml;
305
// $dropdown-button-pip-right-sml: $button-sml * 2;
306
// $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
307

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

    
314
// We use these to style large dropdown buttons
315
// $dropdown-button-padding-lrg: $button-lrg * 4;
316
// $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
317
// $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
318
// $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
319

    
320
//
321
// Split Button Variables
322
//
323

    
324
// We use these to control different shared styles for Split Buttons
325
// $split-button-function-factor: 15%;
326
// $split-button-pip-color: #fff;
327
// $split-button-pip-color-alt: #333;
328
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
329

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

    
337
// We use these to control small split buttons
338
// $split-button-padding-sml: $button-sml * 7;
339
// $split-button-span-width-sml: $button-sml * 5;
340
// $split-button-pip-size-sml: $button-sml;
341
// $split-button-pip-top-sml: $button-sml * 1.5;
342
// $split-button-pip-left-sml: emCalc(-9px);
343

    
344
// We use these to control medium split buttons
345
// $split-button-padding-med: $button-med * 6.4;
346
// $split-button-span-width-med: $button-med * 4;
347
// $split-button-pip-size-med: $button-med - emCalc(3px);
348
// $split-button-pip-top-med: $button-med * 1.5;
349
// $split-button-pip-left-med: emCalc(-9px);
350

    
351
// We use these to control large split buttons
352
// $split-button-padding-lrg: $button-lrg * 6;
353
// $split-button-span-width-lrg: $button-lrg * 3.75;
354
// $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
355
// $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
356
// $split-button-pip-left-lrg: emCalc(-9px);
357

    
358
//
359
// Alert Variables
360
//
361

    
362
// We use this to control alert padding.
363
// $alert-padding-top: emCalc(11px);
364
// $alert-padding-left: $alert-padding-top;
365
// $alert-padding-right: $alert-padding-top + emCalc(10px);
366
// $alert-padding-bottom: $alert-padding-top + emCalc(1px);
367

    
368
// We use these to control text style.
369
// $alert-font-weight: bold;
370
// $alert-font-size: emCalc(14px);
371
// $alert-font-color: #fff;
372
// $alert-font-color-alt: darken($secondary-color, 60%);
373

    
374
// We use this for close hover effect.
375
// $alert-function-factor: 10%;
376

    
377
// We use these to control border styles.
378
// $alert-border-style: solid;
379
// $alert-border-width: 1px;
380
// $alert-border-color: darken($primary-color, $alert-function-factor);
381
// $alert-bottom-margin: emCalc(20px);
382

    
383
// We use these to style the close buttons
384
// $alert-close-color: #333;
385
// $alert-close-position: emCalc(5px);
386
// $alert-close-font-size: emCalc(22px);
387
// $alert-close-opacity: 0.3;
388
// $alert-close-opacity-hover: 0.5;
389
// $alert-close-padding: 5px 4px 4px;
390

    
391
// We use this to control border radius
392
// $alert-radius: $global-radius;
393

    
394
//
395
// Breadcrumb Variables
396
//
397

    
398
// We use this to set the background color for the breadcrumb container.
399
$crumb-bg: transparent;
400

    
401
// We use these to set the padding around the breadcrumbs.
402
$crumb-padding: 0 emCalc(14px) emCalc(9px);
403
// $crumb-side-padding: emCalc(12px);
404

    
405
// We use these to control border styles.
406
// $crumb-function-factor: 10%;
407
// $crumb-border-size: 1px;
408
// $crumb-border-style: solid;
409
$crumb-border-color: transparent;
410
// $crumb-radius: $global-radius;
411

    
412
// We use these to set various text styles for breadcrumbs.
413
$crumb-font-size: inherit;
414
// $crumb-font-color: $primary-color;
415
// $crumb-font-color-current: #333;
416
// $crumb-font-color-unavailable: #999;
417
$crumb-font-transform: none;
418
$crumb-link-decor: none;
419

    
420
// We use these to control the slash between breadcrumbs
421
// $crumb-slash-color: #aaa;
422
$crumb-slash: ">";
423

    
424
//
425
// Clearing Variables
426
//
427

    
428
// We use these to set the background colors for parts of Clearing.
429
// $clearing-bg: #111;
430
// $clearing-caption-bg: $clearing-bg;
431
// $clearing-carousel-bg: #111;
432
// $clearing-img-bg: $clearing-bg;
433

    
434
// We use these to style the close button
435
// $clearing-close-color: #fff;
436
// $clearing-close-size: 40px;
437

    
438
// We use these to style the arrows
439
// $clearing-arrow-size: 16px;
440
// $clearing-arrow-color: $clearing-close-color;
441

    
442
// We use these to style captions
443
// $clearing-caption-font-color: #fff;
444
// $clearing-caption-padding: 10px 30px;
445

    
446
// We use these to make the image and carousel height and style
447
// $clearing-active-img-height: 75%;
448
// $clearing-carousel-height: 150px;
449
// $clearing-carousel-thumb-width: 175px;
450
// $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
451

    
452
//
453
// Custom Form Variables
454
//
455

    
456
// We use these to control the basic form styles input styles
457
// $custom-form-border-color: #ccc;
458
// $custom-form-bg: #fff;
459
// $custom-form-bg-disabled: #ddd;
460
// $custom-form-check-color: #222;
461

    
462
// We use these to style the custom select form element.
463
// $custom-select-bg: #fff;
464
// $custom-select-fade-to-color: #f3f3f3;
465
// $custom-select-border-color: #ddd;
466
// $custom-select-triangle-color: #aaa;
467
// $custom-select-triangle-color-open: #222;
468
// $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
469
// $custom-select-margin-bottom: emCalc(20px);
470
// $custom-select-font-color-selected: #141414;
471
// $custom-select-disabled-color: #888;
472

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

    
490
//
491
// Dropdown Variables
492
//
493

    
494
// We use these to controls height and width styles.
495
// $f-dropdown-max-width: 200px;
496
// $f-dropdown-height: auto;
497
// $f-dropdown-max-height: none;
498
// $f-dropdown-margin-top: 2px;
499

    
500
// We use this to control the background color
501
// $f-dropdown-bg: #fff;
502

    
503
// We use this to set the border styles for dropdowns.
504
// $f-dropdown-border-style: solid;
505
// $f-dropdown-border-width: 1px;
506
// $f-dropdown-border-color: darken(#fff, 20%);
507

    
508
// We use these to style the triangle pip.
509
// $f-dropdown-triangle-size: 6px;
510
// $f-dropdown-triangle-color: #fff;
511
// $f-dropdown-triangle-side-offset: 10px;
512

    
513
// We use these to control styles for the list elements.
514
// $f-dropdown-list-style: none;
515
// $f-dropdown-font-color: #555;
516
// $f-dropdown-font-size: emCalc(14px);
517
// $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
518
// $f-dropdown-line-height: emCalc(18px);
519
// $f-dropdown-list-hover-bg: #eeeeee;
520
// $dropdown-mobile-left: 0;
521

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

    
525
//
526
// Flex Video Variables
527
//
528

    
529
// We use these to control video container padding and margins
530
// $flex-video-padding-top: emCalc(25px);
531
// $flex-video-padding-bottom: 67.5%;
532
// $flex-video-margin-bottom: emCalc(16px);
533

    
534
// We use this to control widescreen bottom padding
535
// $flex-video-widescreen-padding-bottom: 57.25%;
536

    
537
//
538
// Inline List Variables
539
//
540

    
541
// We use this to control the margins and padding of the inline list.
542
// $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
543
// $inline-list-margin: 0 0;
544
// $inline-list-padding: 0;
545

    
546
// We use this to control the overflow of the inline list.
547
// $inline-list-overflow: hidden;
548

    
549
// We use this to control the list items
550
// $inline-list-display: block;
551

    
552
// We use this to control any elments within list items
553
// $inline-list-children-display: block;
554

    
555
//
556
// Joyride Variables
557
//
558

    
559
// Controlling default Joyride styles
560
// $joyride-tip-bg: rgb(0,0,0);
561
// $joyride-tip-default-width: 300px;
562
// $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
563
// $joyride-tip-border: solid 1px #555;
564
// $joyride-tip-radius: 4px;
565
// $joyride-tip-position-offset: 22px;
566

    
567
// Here, we're setting the tip dont styles
568
// $joyride-tip-font-color: #fff;
569
// $joyride-tip-font-size: emCalc(14px);
570
// $joyride-tip-header-weight: bold;
571

    
572
// This changes the nub size
573
// $joyride-tip-nub-size: 14px;
574

    
575
// This adjusts the styles for the timer when its enabled
576
// $joyride-tip-timer-width: 50px;
577
// $joyride-tip-timer-height: 3px;
578
// $joyride-tip-timer-color: #666;
579

    
580
// This changes up the styles for the close button
581
// $joyride-tip-close-color: #777;
582
// $joyride-tip-close-size: 30px;
583
// $joyride-tip-close-weight: normal;
584

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

    
588
//
589
// Keystroke Variables
590
//
591

    
592
// We use these to control text styles.
593
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
594
// $keystroke-font-size: emCalc(15px);
595
// $keystroke-font-color: #222;
596
// $keystroke-font-color-alt: #fff;
597
// $keystroke-function-factor: 7%;
598

    
599
// We use this to control keystroke padding.
600
// $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
601

    
602
// We use these to control background and border styles.
603
// $keystroke-bg: darken(#fff, $keystroke-function-factor);
604
// $keystroke-border-style: solid;
605
// $keystroke-border-width: 1px;
606
// $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
607
// $keystroke-radius: $global-radius;
608

    
609
//
610
// Label Variables
611
//
612

    
613
// We use these to style the labels
614
// $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
615
// $label-radius: $global-radius;
616

    
617
// We use these to style the label text
618
// $label-font-sizing: emCalc(14px);
619
// $label-font-weight: bold;
620

    
621
//
622
// Orbit Settings
623
//
624

    
625
// We use these to control the caption styles
626
// $orbit-container-bg: #f5f5f5;
627
// $orbit-caption-bg-old-browser: #000;
628
// $orbit-caption-bg-old: rgb(0,0,0);
629
// $orbit-caption-bg: rgba(0,0,0,0.6);
630
// $orbit-caption-font-color: #fff;
631

    
632
// We use these to control the left/right nav styles
633
// $orbit-nav-bg-old: rgb(0,0,0);
634
// $orbit-nav-bg: rgba(0,0,0,0.6);
635

    
636
// We use these to control the timer styles
637
// $orbit-timer-bg-old: rgb(0,0,0);
638
// $orbit-timer-bg: rgba(0,0,0,0.6);
639

    
640
// We use these to control the bullet nav styles
641
// $orbit-bullet-nav-color: #999;
642
// $orbit-bullet-nav-color-active: #222;
643

    
644
// We use thes to controls the style of slide numbers
645
// $orbit-slide-number-bg: rgb(0,0,0);
646
// $orbit-slide-number-font-color: #fff;
647
// $orbit-slide-number-padding: emCalc(5px);
648

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

    
652
//
653
// Pagination Variables
654
//
655

    
656
// We use these to control the pagination container
657
// $pagination-height: emCalc(24px);
658
// $pagination-margin: emCalc(-5px);
659

    
660
// We use these to set the list-item properties
661
// $pagination-li-float: $default-float;
662
// $pagination-li-height: emCalc(24px);
663
// $pagination-li-font-color: #222;
664
// $pagination-li-font-size: emCalc(14px);
665
// $pagination-li-margin: emCalc(5px);
666

    
667
// We use these for the pagination anchor links
668
// $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
669
// $pagination-link-font-color: #999;
670
// $pagination-link-active-bg: darken(#fff, 10%);
671

    
672
// We use these for disabled anchor links
673
// $pagination-link-unavailable-cursor: default;
674
// $pagination-link-unavailable-font-color: #999;
675
// $pagination-link-unavailable-bg-active: transparent;
676

    
677
// We use these for currently selected anchor links
678
// $pagination-link-current-background: $primary-color;
679
// $pagination-link-current-font-color: #fff;
680
// $pagination-link-current-font-weight: bold;
681
// $pagination-link-current-cursor: default;
682
// $pagination-link-current-active-bg: $primary-color;
683

    
684
//
685
// Panel Variables
686
//
687

    
688
// We use these to control the background and border styles
689
// $panel-bg: darken(#fff, 5%);
690
// $panel-border-style: solid;
691
// $panel-border-size: 1px;
692

    
693
// We use this % to control how much we darken things on hover
694
// $panel-function-factor: 10%;
695
// $panel-border-color: darken($panel-bg, $panel-function-factor);
696

    
697
// We use these to set default inner padding and bottom margin
698
// $panel-margin-bottom: emCalc(20px);
699
// $panel-padding: emCalc(20px);
700

    
701
// We use these to set default font colors
702
// $panel-font-color: #333;
703
// $panel-font-color-alt: #fff;
704

    
705
//
706
// Pricing Table Variables
707
//
708

    
709
// We use this to control the border color
710
// $price-table-border: solid 1px #ddd;
711

    
712
// We use this to control the bottom margin of the pricing table
713
// $price-table-margin-bottom: emCalc(20px);
714

    
715
// We use these to control the title styles
716
// $price-title-bg: #ddd;
717
// $price-title-padding: emCalc(15px) emCalc(20px);
718
// $price-title-align: center;
719
// $price-title-color: #333;
720
// $price-title-weight: bold;
721
// $price-title-size: emCalc(16px);
722

    
723
// We use these to control the price styles
724
// $price-money-bg: #eee;
725
// $price-money-padding: emCalc(15px) emCalc(20px);
726
// $price-money-align: center;
727
// $price-money-color: #333;
728
// $price-money-weight: normal;
729
// $price-money-size: emCalc(20px);
730

    
731
// We use these to control the description styles
732
// $price-bg: #fff;
733
// $price-desc-color: #777;
734
// $price-desc-padding: emCalc(15px);
735
// $price-desc-align: center;
736
// $price-desc-font-size: emCalc(12px);
737
// $price-desc-weight: normal;
738
// $price-desc-line-height: 1.4;
739
// $price-desc-bottom-border: dotted 1px #ddd;
740

    
741
// We use these to control the list item styles
742
// $price-item-color: #333;
743
// $price-item-padding: emCalc(15px);
744
// $price-item-align: center;
745
// $price-item-font-size: emCalc(14px);
746
// $price-item-weight: normal;
747
// $price-item-bottom-border: dotted 1px #ddd;
748

    
749
// We use these to control the CTA area styles
750
// $price-cta-bg: #f5f5f5;
751
// $price-cta-align: center;
752
// $price-cta-padding: emCalc(20px) emCalc(20px) 0;
753

    
754
//
755
// Progress Bar Variables
756
//
757

    
758
// We use this to se the prog bar height
759
$progress-bar-height: emCalc(15px);
760
// $progress-bar-color: transparent;
761

    
762
// We use these to control the border styles
763
// $progress-bar-border-color: darken(#fff, 20%);
764
// $progress-bar-border-size: 1px;
765
// $progress-bar-border-style: solid;
766
// $progress-bar-border-radius: $global-radius;
767

    
768
// We use these to control the margin & padding
769
// $progress-bar-pad: emCalc(2px);
770
// $progress-bar-margin-bottom: emCalc(10px);
771

    
772
// We use these to set the meter colors
773
// $progress-meter-color: $primary-color;
774
// $progress-meter-secondary-color: $secondary-color;
775
// $progress-meter-success-color: $success-color;
776
// $progress-meter-alert-color: $alert-color;
777

    
778
// NEED TO FINISH THE LOGIC HERE
779

    
780
//
781
// Reveal Variables
782
//
783

    
784
// We use these to control the style of the reveal overlay.
785
$reveal-overlay-bg: rgba(#000, .80);
786
// $reveal-overlay-bg-old: #000;
787

    
788
// We use these to control the style of the modal itself.
789
// $reveal-modal-bg: #fff;
790
// $reveal-position-top: 50px;
791
// $reveal-default-width: 80%;
792
// $reveal-modal-padding: emCalc(20px);
793
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
794

    
795
// We use these to style the reveal close button
796
// $reveal-close-font-size: emCalc(22px);
797
// $reveal-close-top: emCalc(8px);
798
// $reveal-close-side: emCalc(11px);
799
// $reveal-close-color: #aaa;
800
// $reveal-close-weight: bold;
801

    
802
// We use these to control the modal border
803
// $reveal-border-style: solid;
804
// $reveal-border-width: 1px;
805
// $reveal-border-color: #666;
806

    
807
//
808
// Section Variables
809
//
810

    
811
// We use these to set padding and hover factor
812
// $section-padding: emCalc(15px);
813
// $section-function-factor: 10%;
814

    
815
// These style the titles
816
// $section-title-color: #333;
817
// $section-title-bg: #efefef;
818
// $section-title-bg-active: darken($section-title-bg, $section-function-factor);
819
// $section-title-bg-active-tabs: #fff;
820

    
821
// Want to control border size, here ya go!
822
// $section-border-size: 1px;
823
// $section-border-style: solid;
824
// $section-border-color: #ccc;
825

    
826
// Control the color of the background and some size options
827
// $section-content-bg: #fff;
828
// $section-vertical-nav-min-width: emCalc(200px);
829
// $section-bottom-margin: emCalc(20px);
830

    
831
//
832
// Side Nav Variables
833
//
834

    
835
// We use this to control padding.
836
// $side-nav-padding: emCalc(14px) 0;
837

    
838
// We use these to control list styles.
839
// $side-nav-list-type: none;
840
// $side-nav-list-position: inside;
841
// $side-nav-list-margin: 0 0 emCalc(7px) 0;
842

    
843
// We use these to control link styles.
844
// $side-nav-link-color: $primary-color;
845
// $side-nav-link-color-active: lighten(#000, 30%);
846
// $side-nav-font-size: emCalc(14px);
847
// $side-nav-font-weight: bold;
848

    
849
// We use these to control border styles
850
// $side-nav-divider-size: 1px;
851
// $side-nav-divider-style: solid;
852
// $side-nav-divider-color: darken(#fff, 10%);
853

    
854
//
855
// Sub Nav Variables
856
//
857

    
858
// We use these to control margin and padding
859
// $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
860
// $sub-nav-list-padding-top: emCalc(4px);
861

    
862
// We use this to control the definition
863
// $sub-nav-font-size: emCalc(14px);
864
// $sub-nav-font-color: #999;
865
// $sub-nav-font-weight: normal;
866
// $sub-nav-text-decoration: none;
867
// $sub-nav-border-radius: 1000px;
868

    
869
// We use these to control the active item styles
870
// $sub-nav-active-font-weight: bold;
871
// $sub-nav-active-bg: $primary-color;
872
// $sub-nav-active-color: #fff;
873
// $sub-nav-active-padding: emCalc(3px) emCalc(9px);
874
// $sub-nav-active-cursor: default;
875

    
876
//
877
// Switch Variables
878
//
879

    
880
// Controlling border styles and background colors for the switch container
881
// $switch-border-color: darken(#fff, 20%);
882
// $switch-border-style: solid;
883
// $switch-border-width: 1px;
884
// $switch-bg: #fff;
885

    
886
// We use these to control the switch heights for our default classes
887
// $switch-height-tny: 22px;
888
// $switch-height-sml: 28px;
889
// $switch-height-med: 36px;
890
// $switch-height-lrg: 44px;
891
// $switch-bottom-margin: emCalc(20px);
892

    
893
// We use these to control default font sizes for our classes.
894
// $switch-font-size-tny: 11px;
895
// $switch-font-size-sml: 12px;
896
// $switch-font-size-med: 14px;
897
// $switch-font-size-lrg: 17px;
898
// $switch-label-side-padding: 6px;
899

    
900
// We use these to style the switch-paddle
901
// $switch-paddle-bg: #fff;
902
// $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
903
// $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
904
// $switch-paddle-border-width: 1px;
905
// $switch-paddle-border-style: solid;
906
// $switch-paddle-transition-speed: .1s;
907
// $switch-paddle-transition-ease: ease-out;
908
// $switch-positive-color: lighten($success-color, 50%);
909
// $switch-negative-color: #f5f5f5;
910

    
911
// Outline Style for tabbing through switches
912
// $switch-label-outline: 1px dotted #888;
913

    
914
//
915
// Table Variables
916
//
917

    
918
// These control the background color for the table and even rows
919
// $table-bg: #fff;
920
// $table-even-row-bg: #f9f9f9;
921

    
922
// These control the table cell border style
923
// $table-border-style: solid;
924
// $table-border-size: 1px;
925
// $table-border-color: #ddd;
926

    
927
// These control the table head styles
928
// $table-head-bg: #f5f5f5;
929
// $table-head-font-size: emCalc(14px);
930
// $table-head-font-color: #222;
931
// $table-head-font-weight: bold;
932
// $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
933

    
934
// These control the row padding and font styles
935
// $table-row-padding: emCalc(9px) emCalc(10px);
936
// $table-row-font-size: emCalc(14px);
937
// $table-row-font-color: #222;
938
// $table-line-height: emCalc(18px);
939

    
940
// These are for controlling the display and margin of tables
941
// $table-display: table-cell;
942
// $table-margin-bottom: emCalc(20px);
943

    
944
//
945
// Image Thumbnail Variables
946
//
947

    
948
// We use these to control border styles
949
// $thumb-border-style: solid;
950
// $thumb-border-width: 4px;
951
// $thumb-border-color: #fff;
952
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
953
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
954

    
955
// Radius and transition speed for thumbs
956
// $thumb-radius: $global-radius;
957
// $thumb-transition-speed: 200ms;
958

    
959
//
960
// Tooltip Variables
961
//
962
$has-tip-border-bottom: 0 none;
963
// $has-tip-font-weight: bold;
964
// $has-tip-font-color: #333;
965
$has-tip-border-bottom-hover: none;
966
// $has-tip-font-color-hover: $primary-color;
967
$has-tip-cursor-type: inherit;
968

    
969
$tooltip-padding: emCalc(4px) emCalc(10px);
970
$tooltip-bg: $black;
971
// $tooltip-font-size: emCalc(15px);
972
$tooltip-font-weight: normal;
973
// $tooltip-font-color: #fff;
974
// $tooltip-line-height: 1.3;
975
// $tooltip-close-font-size: emCalc(10px);
976
// $tooltip-close-font-weight: normal;
977
// $tooltip-close-font-color: #888;
978
// $tooltip-font-size-sml: emCalc(14px);
979
// $tooltip-radius: $global-radius;
980
// $tooltip-pip-size: 5px;
981

    
982
//
983
// Top Bar Variables
984
//
985

    
986
// Background color for the top bar
987
// $topbar-bg: #111;
988

    
989
// Height and margin
990
// $topbar-height: 45px;
991
// $topbar-margin-bottom: emCalc(30px);
992

    
993
// Control Input height for top bar
994
// $topbar-input-height: 2.45em;
995

    
996
// Controlling the styles for the title in the top bar
997
// $topbar-title-weight: bold;
998
// $topbar-title-font-size: emCalc(17px);
999

    
1000
// Set the link colors and styles for top-level nav
1001
// $topbar-link-color: #fff;
1002
// $topbar-link-weight: bold;
1003
// $topbar-link-font-size: emCalc(13px);
1004

    
1005
// Style the top bar dropdown elements
1006
// $topbar-dropdown-bg: #333;
1007
// $topbar-dropdown-link-color: #fff;
1008
// $topbar-dropdown-toggle-size: 5px;
1009
// $topbar-dropdown-toggle-color: #fff;
1010
// $topbar-dropdown-toggle-alpha: 0.5;
1011
// $dropdown-label-color: #555;
1012

    
1013
// Top menu icon styles
1014
// $topbar-menu-link-transform: uppercase;
1015
// $topbar-menu-link-font-size: emCalc(13px);
1016
// $topbar-menu-link-weight: bold;
1017
// $topbar-menu-link-color: #fff;
1018
// $topbar-menu-icon-color: #fff;
1019
// $topbar-menu-link-color-toggled: #888;
1020
// $topbar-menu-icon-color-toggled: #888;
1021

    
1022
// Transitions and breakpoint styles
1023
// $topbar-transition-speed: 300ms;
1024
// $topbar-breakpoint: emCalc(940px); // Change to 9999px for always mobile layout
1025
// $topbar-media-query: "only screen and (min-width "#{$topbar-breakpoint}")";
1026

    
1027

    
1028
// Custom breakpoints
1029

    
1030
$entities-list-large: emCalc(1100px);
1031

    
1032
$entities-large: "only screen and (min-width:"#{$entities-list-large}")";