Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (33.1 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: #1e1e1e;
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
// PALETTE
31

    
32
$gray-1: #919194; // light
33
$gray-2: #485057; // charbon
34
$gray-3: #636a70; // medium
35
$gray-4: #33383D; // dark
36
$turquoise-1 : #30c79e;
37
$green-1: #00a551;
38
$red-1: #ff4040;
39
$cobalt-1: #566db1;
40
$cobalt-2: #4c71ff;
41
$yellow-1: #ffc54a;
42
$orange-1: #ff7049;
43
$salmon-1: #ff948c;
44
$salmon-2: #ffb5af;
45

    
46
// We use these as default colors throughout
47
$primary-color: $gray-1; // inactive gray
48
$secondary-color: $turquoise-1; // green
49
$third-color: $gray-2;
50

    
51
$overlay-bg-color: $third-color;
52
$overlay-color-top: $gray-3;
53
$overlay-darker-color: $gray-4;
54

    
55
$light-bg: lighten($primary-color,35%); // common light grey bg
56

    
57
// links color usage
58
$inactive-color: $primary-color;
59
$link-color: $third-color;
60
$link-color-hover : $secondary-color;
61

    
62
$border-color-1 : lighten($primary-color,10%);
63

    
64
$alert-color: $secondary-color;
65
$success-color: $green-1;
66
$error-color: $red-1;
67

    
68
// colors for main icons
69
$vm-active-color: $secondary-color;
70
$vm-error-color: $red-1;
71
$vm-off-color: $gray-2;
72
$vm-shutting-color: $gray-3;
73
$vm-starting-color: $cobalt-1;
74
$vm-rebooting-color: $yellow-1;
75
$vm-building-color: lighten($vm-active-color, 10%);
76

    
77
// wizard step2 colors
78
$disabled-resource-color: $primary-color;
79

    
80
// wizard step3 colors
81
$ssh-opt-area-color: $orange-1;
82
$net-opt-area-color: $salmon-1;
83
$tag-opt-area-color: $cobalt-2;
84
$wizard-base-font-color: white;
85
$net-more-opt-area-color: $salmon-2;
86

    
87
// icon-font sizes
88
$snf-font-size-medium: emCalc(60px);
89
$snf-font-size-small: emCalc(34px);
90

    
91

    
92
// We use these to make sure border radius matches unless we want it different.
93
$global-radius: 1px;
94
// $global-rounded: 1000px;
95

    
96
// header settings
97
$header-height: 80px;
98
$header-height-responsive: 120px;
99
$header-padding-vertical: 20px;
100
$header-padding-horizontal: 15px;
101

    
102
// icons nav settings
103
$icons-nav-margin-horizontal : 10px;
104

    
105
// bar options
106
$bar-height: 30px;
107
$bar-menu-height: 50px;
108
$bar-submenu-height: 40px;
109

    
110
// button options
111
$btn-height: 30px;
112

    
113
// list-view 
114
$lt-bar-width: 150px;
115
$list-icon-height: 34px;
116

    
117
// grid-view
118
$grid-icon-height: $snf-font-size-medium;
119

    
120
// details view
121
$details-top-height: 160px;
122
$details-lt-width: 290px;
123
$details-top-more-padding-lt : 20px;
124

    
125

    
126
// items-list list-view settings
127
$check-w : 60px;
128
$img-wrap-w : 70px;
129
$h4-w : 210px;
130
$tags-w : 90px;
131
$info-w: 200px;
132
$actions-w: 140px;
133
$three-col-w: 33%;
134
$storage-h4-w: $h4-w;
135

    
136

    
137
// We use these to control inset shadow shiny edges and depressions.
138
// $shiny-edge-size: 0 1px 0;
139
// $shiny-edge-color: rgba(#fff, .5);
140
// $shiny-edge-active-color: rgba(#000, .2);
141

    
142
// We use this to control whether or not CSS classes come through in the gem files.
143
// $include-html-classes: true;
144
// $include-print-styles: true;
145

    
146
// Modular html classes
147
// $include-html-grid-classes: $include-html-classes;
148
// $include-html-visibility-classes: $include-html-classes;
149
// $include-html-button-classes: $include-html-classes;
150
// $include-html-form-classes: $include-html-classes;
151
// $include-html-media-classes: $include-html-classes;
152
// $include-html-section-classes: $include-html-classes;
153
// $include-html-reveal-classes: $include-html-classes;
154
// $include-html-alert-classes: $include-html-classes;
155
// $include-html-nav-classes: $include-html-classes;
156
// $include-html-label-classes: $include-html-classes;
157
// $include-html-panel-classes: $include-html-classes;
158
// $include-html-pricing-classes: $include-html-classes;
159
// $include-html-progress-classes: $include-html-classes;
160

    
161
//
162
// Grid Variables
163
//
164

    
165
$row-full-width:100%;
166
//$row-width: emCalc(960px);
167
$row-small: emCalc(580px);
168
$main-padding-horizontal: emCalc(10px);
169

    
170
$conf-area-h-width: emCalc(300px);
171

    
172
$step-adv-padding:emCalc(40px);
173
// $column-gutter: 1.875em;
174
// $total-columns: 12;
175

    
176
//
177
// Block Grid Variables
178
//
179

    
180
// We use this to control the maximum number of block grid elements per row
181
// $block-grid-elements: 12;
182
// $block-grid-default-spacing: 10px;
183

    
184
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
185
// $block-grid-media-queries: true;
186

    
187
$small-mobile:emCalc(480px);
188

    
189
//
190
// Typography Variables
191
//
192

    
193
$wizard-paragraph-font-size: 10px;
194
$wizard-paragraph-font-size-custom: 14px;
195
// We use these to control header font styles
196
$header-font-family: "Open Sans", "Helvetica", Helvetica, Arial, sans-serif;
197
// $header-font-weight: bold;
198
// $header-font-style: normal;
199
$header-font-color: $body-font-color;
200
// $header-line-height: 1.4;
201
// $header-top-margin: .2em;
202
// $header-bottom-margin: .5em;
203
// $header-text-rendering: optimizeLegibility;
204

    
205
// We use these to control header font sizes
206
// $h1-font-size: emCalc(44px);
207
// $h2-font-size: emCalc(37px);
208
// $h3-font-size: emCalc(27px);
209
// $h4-font-size: emCalc(23px);
210
// $h5-font-size: emCalc(18px);
211
// $h6-font-size: 1em;
212

    
213
// These control how subheaders are styled.
214
// $subheader-line-height: 1.4;
215
// $subheader-font-color: lighten($header-font-color, 30%);
216
// $subheader-font-weight: 300;
217
// $subheader-top-margin: .2em;
218
// $subheader-bottom-margin: .5em;
219

    
220
// A general <small> styling
221
// $small-font-size: 60%;
222
// $small-font-color: lighten($header-font-color, 30%);
223

    
224
// We use these to style paragraphs
225
// $paragraph-font-family: inherit;
226
// $paragraph-font-weight: normal;
227
// $paragraph-font-size: 1em;
228
// $paragraph-line-height: 1.6;
229
// $paragraph-margin-bottom: emCalc(20px);
230
// $paragraph-aside-font-size: emCalc(14px);
231
// $paragraph-aside-line-height: 1.35;
232
// $paragraph-aside-font-style: italic;
233

    
234
// We use these to style <code> tags
235
// $code-color: darken($alert-color, 15%);
236
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
237
// $code-font-weight: bold;
238

    
239
// We use these to style anchors
240
// $anchor-text-decoration: none;
241
// $anchor-font-color: $primary-color;
242
// $anchor-font-color-hover: darken($primary-color, 5%);
243

    
244
// We use these to style the <hr> element
245
// $hr-border-width: 1px;
246
// $hr-border-style: solid;
247
// $hr-border-color: #ddd;
248
// $hr-margin: emCalc(20px);
249

    
250
// We use these to style lists
251
// $list-style-position: outside;
252
// $list-side-margin: emCalc(18px);
253
// $definition-list-header-weight: bold;
254
// $definition-list-header-margin-bottom: .3em;
255
// $definition-list-margin-bottom: emCalc(12px);
256

    
257
// We use these to style blockquotes
258
// $blockquote-font-color: lighten($header-font-color, 30%);
259
// $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
260
// $blockquote-border: 1px solid #ddd;
261
// $blockquote-cite-font-size: emCalc(13px);
262
// $blockquote-cite-font-color: lighten($header-font-color, 20%);
263
// $blockquote-cite-link-color: $blockquote-cite-font-color;
264

    
265
// Acronym styles
266
// $acronym-underline: 1px dotted #ddd;
267

    
268
// We use these to control padding and margin
269
// $microformat-padding: emCalc(10px) emCalc(12px);
270
// $microformat-margin: 0 0 emCalc(20px) 0;
271

    
272
// We use these to control the border styles
273
// $microformat-border-width: 1px;
274
// $microformat-border-style: solid;
275
// $microformat-border-color: #ddd;
276

    
277
// We use these to control full name font styles
278
// $microformat-fullname-font-weight: bold;
279
// $microformat-fullname-font-size: emCalc(15px);
280

    
281
// We use this to control the summary font styles
282
// $microformat-summary-font-weight: bold;
283

    
284
// We use this to control abbr padding
285
// $microformat-abbr-padding: 0 emCalc(1px);
286

    
287
// We use this to control abbr font styles
288
// $microformat-abbr-font-weight: bold;
289
// $microformat-abbr-font-decoration: none;
290

    
291
//
292
// Form Variables
293
//
294

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

    
298
// We use these to style the labels in different ways
299
// $label-pointer: pointer;
300
// $label-font-size: emCalc(14px);
301
// $label-font-weight: 500;
302
// $label-font-color: lighten(#000, 30%);
303
// $label-bottom-margin: emCalc(3px);
304
// $input-font-family: inherit;
305
// $input-font-color: rgba(0,0,0,0.75);
306
// $input-font-size: emCalc(14px);
307
// $input-bg-color: #fff;
308
// $input-focus-bg-color: darken(#fff, 2%);
309
$input-border-color: $primary-color;
310
// $input-focus-border-color: darken(#fff, 40%);
311
// $input-border-style: solid;
312
// $input-border-width: 1px;
313
// $input-disabled-bg: #ddd;
314
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
315

    
316
// We use these to style the fieldset border and spacing.
317
// $fieldset-border-style: solid;
318
// $fieldset-border-width: 1px;
319
// $fieldset-border-color: #ddd;
320
// $fieldset-padding: emCalc(20px);
321
// $fieldset-margin: emCalc(18px) 0;
322

    
323
// We use these to style the legends when you use them
324
// $legend-bg: #fff;
325
// $legend-font-weight: bold;
326
// $legend-padding: 0 emCalc(3px);
327

    
328
// We use these to style the prefix and postfix input elements
329
// $input-prefix-bg: darken(#fff, 5%);
330
// $input-prefix-border-color: darken(#fff, 20%);
331
// $input-prefix-border-size: 1px;
332
// $input-prefix-border-type: solid;
333
// $input-prefix-overflow: hidden;
334
// $input-prefix-font-color: #333;
335
// $input-prefix-font-color-alt: #fff;
336

    
337
// We use these to style the error states for inputs and labels
338
// $input-error-message-padding: emCalc(6px) emCalc(4px);
339
// $input-error-message-top: -($form-spacing) - emCalc(5px);
340
// $input-error-message-font-size: emCalc(12px);
341
// $input-error-message-font-weight: bold;
342
// $input-error-message-font-color: #fff;
343
// $input-error-message-font-color-alt: #333;
344

    
345
// We use these to build padding for buttons.
346
// $button-med: emCalc(12px);
347
// $button-tny: emCalc(7px);
348
// $button-sml: emCalc(9px);
349
// $button-lrg: emCalc(16px);
350

    
351
// We use this to control the display property.
352
// $button-display: inline-block;
353
// $button-margin-bottom: emCalc(20px);
354

    
355
// We use these to control button text styles.
356
// $button-font-family: inherit;
357
// $button-font-color: #fff;
358
// $button-font-color-alt: #333;
359
// $button-font-med: emCalc(16px);
360
// $button-font-tny: emCalc(11px);
361
// $button-font-sml: emCalc(13px);
362
// $button-font-lrg: emCalc(20px);
363
// $button-font-weight: bold;
364
// $button-font-align: center;
365

    
366
// We use these to control various hover effects.
367
// $button-function-factor: 10%;
368

    
369
// We use these to control button border styles.
370
// $button-border-width: 1px;
371
// $button-border-style: solid;
372
// $button-border-color: darken($primary-color, $button-function-factor);
373

    
374
// We use this to set the default radius used throughout the core.
375
// $button-radius: $global-radius;
376

    
377
// We use this to set default opacity for disabled buttons.
378
// $button-disabled-opacity: 0.6;
379

    
380
//
381
// Dropdown Button Variables
382
//
383

    
384
// We use these to set the color of the pip in dropdown buttons
385
// $dropdown-button-pip-color: #fff;
386
// $dropdown-button-pip-color-alt: #333;
387

    
388
// We use these to style tiny dropdown buttons
389
// $dropdown-button-padding-tny: $button-tny * 5;
390
// $dropdown-button-pip-size-tny: $button-tny;
391
// $dropdown-button-pip-right-tny: $button-tny * 2;
392
// $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
393

    
394
// We use these to style small dropdown buttons
395
// $dropdown-button-padding-sml: $button-sml * 5;
396
// $dropdown-button-pip-size-sml: $button-sml;
397
// $dropdown-button-pip-right-sml: $button-sml * 2;
398
// $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
399

    
400
// We use these to style medium dropdown buttons
401
// $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
402
// $dropdown-button-pip-size-med: $button-med - emCalc(3px);
403
// $dropdown-button-pip-right-med: $button-med * 2;
404
// $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
405

    
406
// We use these to style large dropdown buttons
407
// $dropdown-button-padding-lrg: $button-lrg * 4;
408
// $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
409
// $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
410
// $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
411

    
412
//
413
// Split Button Variables
414
//
415

    
416
// We use these to control different shared styles for Split Buttons
417
// $split-button-function-factor: 15%;
418
// $split-button-pip-color: #fff;
419
// $split-button-pip-color-alt: #333;
420
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
421

    
422
// We use these to control tiny split buttons
423
// $split-button-padding-tny: $button-tny * 9;
424
// $split-button-span-width-tny: $button-tny * 6.5;
425
// $split-button-pip-size-tny: $button-tny;
426
// $split-button-pip-top-tny: $button-tny * 2;
427
// $split-button-pip-left-tny: emCalc(-5px);
428

    
429
// We use these to control small split buttons
430
// $split-button-padding-sml: $button-sml * 7;
431
// $split-button-span-width-sml: $button-sml * 5;
432
// $split-button-pip-size-sml: $button-sml;
433
// $split-button-pip-top-sml: $button-sml * 1.5;
434
// $split-button-pip-left-sml: emCalc(-9px);
435

    
436
// We use these to control medium split buttons
437
// $split-button-padding-med: $button-med * 6.4;
438
// $split-button-span-width-med: $button-med * 4;
439
// $split-button-pip-size-med: $button-med - emCalc(3px);
440
// $split-button-pip-top-med: $button-med * 1.5;
441
// $split-button-pip-left-med: emCalc(-9px);
442

    
443
// We use these to control large split buttons
444
// $split-button-padding-lrg: $button-lrg * 6;
445
// $split-button-span-width-lrg: $button-lrg * 3.75;
446
// $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
447
// $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
448
// $split-button-pip-left-lrg: emCalc(-9px);
449

    
450
//
451
// Alert Variables
452
//
453

    
454
// We use this to control alert padding.
455
// $alert-padding-top: emCalc(11px);
456
// $alert-padding-left: $alert-padding-top;
457
// $alert-padding-right: $alert-padding-top + emCalc(10px);
458
// $alert-padding-bottom: $alert-padding-top + emCalc(1px);
459

    
460
// We use these to control text style.
461
// $alert-font-weight: bold;
462
// $alert-font-size: emCalc(14px);
463
// $alert-font-color: #fff;
464
// $alert-font-color-alt: darken($secondary-color, 60%);
465

    
466
// We use this for close hover effect.
467
// $alert-function-factor: 10%;
468

    
469
// We use these to control border styles.
470
// $alert-border-style: solid;
471
// $alert-border-width: 1px;
472
// $alert-border-color: darken($primary-color, $alert-function-factor);
473
// $alert-bottom-margin: emCalc(20px);
474

    
475
// We use these to style the close buttons
476
// $alert-close-color: #333;
477
// $alert-close-position: emCalc(5px);
478
// $alert-close-font-size: emCalc(22px);
479
// $alert-close-opacity: 0.3;
480
// $alert-close-opacity-hover: 0.5;
481
// $alert-close-padding: 5px 4px 4px;
482

    
483
// We use this to control border radius
484
// $alert-radius: $global-radius;
485

    
486
//
487
// Breadcrumb Variables
488
//
489

    
490
// We use this to set the background color for the breadcrumb container.
491
$crumb-bg: transparent;
492

    
493
// We use these to set the padding around the breadcrumbs.
494
$crumb-padding: 0 emCalc(14px) emCalc(9px);
495
// $crumb-side-padding: emCalc(12px);
496

    
497
// We use these to control border styles.
498
// $crumb-function-factor: 10%;
499
// $crumb-border-size: 1px;
500
// $crumb-border-style: solid;
501
$crumb-border-color: transparent;
502
// $crumb-radius: $global-radius;
503

    
504
// We use these to set various text styles for breadcrumbs.
505
$crumb-font-size: inherit;
506
// $crumb-font-color: $primary-color;
507
// $crumb-font-color-current: #333;
508
// $crumb-font-color-unavailable: #999;
509
$crumb-font-transform: none;
510
$crumb-link-decor: none;
511

    
512
// We use these to control the slash between breadcrumbs
513
// $crumb-slash-color: #aaa;
514
$crumb-slash: ">";
515

    
516
//
517
// Clearing Variables
518
//
519

    
520
// We use these to set the background colors for parts of Clearing.
521
// $clearing-bg: #111;
522
// $clearing-caption-bg: $clearing-bg;
523
// $clearing-carousel-bg: #111;
524
// $clearing-img-bg: $clearing-bg;
525

    
526
// We use these to style the close button
527
// $clearing-close-color: #fff;
528
// $clearing-close-size: 40px;
529

    
530
// We use these to style the arrows
531
// $clearing-arrow-size: 16px;
532
// $clearing-arrow-color: $clearing-close-color;
533

    
534
// We use these to style captions
535
// $clearing-caption-font-color: #fff;
536
// $clearing-caption-padding: 10px 30px;
537

    
538
// We use these to make the image and carousel height and style
539
// $clearing-active-img-height: 75%;
540
// $clearing-carousel-height: 150px;
541
// $clearing-carousel-thumb-width: 175px;
542
// $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
543

    
544
//
545
// Custom Form Variables
546
//
547

    
548
// We use these to control the basic form styles input styles
549
// $custom-form-border-color: #ccc;
550
// $custom-form-bg: #fff;
551
// $custom-form-bg-disabled: #ddd;
552
// $custom-form-check-color: #222;
553

    
554
// We use these to style the custom select form element.
555
$custom-select-bg: $overlay-bg-color;
556
$custom-select-fade-to-color: $overlay-bg-color;
557
$custom-select-border-color: white;
558
$custom-select-triangle-color: white;
559
$custom-select-triangle-color-open: white;
560
// $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
561
// $custom-select-margin-bottom: emCalc(20px);
562
// $custom-select-font-color-selected: #141414;
563
// $custom-select-disabled-color: #888;
564

    
565
// We use these to control the style of the custom select dropdown element.
566
// $custom-dropdown-height: 200px;
567
// $custom-dropdown-bg: #fff;
568
// $custom-dropdown-border-color: darken(#fff, 20%);
569
// $custom-dropdown-border-width: 1px;
570
// $custom-dropdown-border-style: solid;
571
// $custom-dropdown-font-color: #555;
572
// $custom-dropdown-font-size: emCalc(14px);
573
// $custom-dropdown-color-selected: #eeeeee;
574
// $custom-dropdown-font-color-selected: #000;
575
// $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
576
// $custom-dropdown-offset-top: none;
577
// $custom-dropdown-list-padding: emCalc(4px);
578
// $custom-dropdown-left-padding: emCalc(6px);
579
// $custom-dropdown-right-padding: emCalc(38px);
580
// $custom-dropdown-list-item-min-height: emCalc(24px);
581

    
582
//
583
// Dropdown Variables
584
//
585

    
586
// We use these to controls height and width styles.
587
// $f-dropdown-max-width: 200px;
588
// $f-dropdown-height: auto;
589
// $f-dropdown-max-height: none;
590
// $f-dropdown-margin-top: 2px;
591

    
592
// We use this to control the background color
593
// $f-dropdown-bg: #fff;
594

    
595
// We use this to set the border styles for dropdowns.
596
// $f-dropdown-border-style: solid;
597
// $f-dropdown-border-width: 1px;
598
// $f-dropdown-border-color: darken(#fff, 20%);
599

    
600
// We use these to style the triangle pip.
601
// $f-dropdown-triangle-size: 6px;
602
// $f-dropdown-triangle-color: #fff;
603
// $f-dropdown-triangle-side-offset: 10px;
604

    
605
// We use these to control styles for the list elements.
606
// $f-dropdown-list-style: none;
607
// $f-dropdown-font-color: #555;
608
// $f-dropdown-font-size: emCalc(14px);
609
// $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
610
// $f-dropdown-line-height: emCalc(18px);
611
// $f-dropdown-list-hover-bg: #eeeeee;
612
// $dropdown-mobile-left: 0;
613

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

    
617
//
618
// Flex Video Variables
619
//
620

    
621
// We use these to control video container padding and margins
622
// $flex-video-padding-top: emCalc(25px);
623
// $flex-video-padding-bottom: 67.5%;
624
// $flex-video-margin-bottom: emCalc(16px);
625

    
626
// We use this to control widescreen bottom padding
627
// $flex-video-widescreen-padding-bottom: 57.25%;
628

    
629
//
630
// Inline List Variables
631
//
632

    
633
// We use this to control the margins and padding of the inline list.
634
// $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
635
// $inline-list-margin: 0 0;
636
// $inline-list-padding: 0;
637

    
638
// We use this to control the overflow of the inline list.
639
// $inline-list-overflow: hidden;
640

    
641
// We use this to control the list items
642
// $inline-list-display: block;
643

    
644
// We use this to control any elments within list items
645
// $inline-list-children-display: block;
646

    
647
//
648
// Joyride Variables
649
//
650

    
651
// Controlling default Joyride styles
652
// $joyride-tip-bg: rgb(0,0,0);
653
// $joyride-tip-default-width: 300px;
654
// $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
655
// $joyride-tip-border: solid 1px #555;
656
// $joyride-tip-radius: 4px;
657
// $joyride-tip-position-offset: 22px;
658

    
659
// Here, we're setting the tip dont styles
660
// $joyride-tip-font-color: #fff;
661
// $joyride-tip-font-size: emCalc(14px);
662
// $joyride-tip-header-weight: bold;
663

    
664
// This changes the nub size
665
// $joyride-tip-nub-size: 14px;
666

    
667
// This adjusts the styles for the timer when its enabled
668
// $joyride-tip-timer-width: 50px;
669
// $joyride-tip-timer-height: 3px;
670
// $joyride-tip-timer-color: #666;
671

    
672
// This changes up the styles for the close button
673
// $joyride-tip-close-color: #777;
674
// $joyride-tip-close-size: 30px;
675
// $joyride-tip-close-weight: normal;
676

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

    
680
//
681
// Keystroke Variables
682
//
683

    
684
// We use these to control text styles.
685
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
686
// $keystroke-font-size: emCalc(15px);
687
// $keystroke-font-color: #222;
688
// $keystroke-font-color-alt: #fff;
689
// $keystroke-function-factor: 7%;
690

    
691
// We use this to control keystroke padding.
692
// $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
693

    
694
// We use these to control background and border styles.
695
// $keystroke-bg: darken(#fff, $keystroke-function-factor);
696
// $keystroke-border-style: solid;
697
// $keystroke-border-width: 1px;
698
// $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
699
// $keystroke-radius: $global-radius;
700

    
701
//
702
// Label Variables
703
//
704

    
705
// We use these to style the labels
706
// $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
707
// $label-radius: $global-radius;
708

    
709
// We use these to style the label text
710
// $label-font-sizing: emCalc(14px);
711
// $label-font-weight: bold;
712

    
713
//
714
// Orbit Settings
715
//
716

    
717
// We use these to control the caption styles
718
// $orbit-container-bg: #f5f5f5;
719
// $orbit-caption-bg-old-browser: #000;
720
// $orbit-caption-bg-old: rgb(0,0,0);
721
// $orbit-caption-bg: rgba(0,0,0,0.6);
722
// $orbit-caption-font-color: #fff;
723

    
724
// We use these to control the left/right nav styles
725
// $orbit-nav-bg-old: rgb(0,0,0);
726
// $orbit-nav-bg: rgba(0,0,0,0.6);
727

    
728
// We use these to control the timer styles
729
// $orbit-timer-bg-old: rgb(0,0,0);
730
// $orbit-timer-bg: rgba(0,0,0,0.6);
731

    
732
// We use these to control the bullet nav styles
733
// $orbit-bullet-nav-color: #999;
734
// $orbit-bullet-nav-color-active: #222;
735

    
736
// We use thes to controls the style of slide numbers
737
// $orbit-slide-number-bg: rgb(0,0,0);
738
// $orbit-slide-number-font-color: #fff;
739
// $orbit-slide-number-padding: emCalc(5px);
740

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

    
744
//
745
// Pagination Variables
746
//
747

    
748
// We use these to control the pagination container
749
// $pagination-height: emCalc(24px);
750
// $pagination-margin: emCalc(-5px);
751

    
752
// We use these to set the list-item properties
753
// $pagination-li-float: $default-float;
754
// $pagination-li-height: emCalc(24px);
755
// $pagination-li-font-color: #222;
756
// $pagination-li-font-size: emCalc(14px);
757
// $pagination-li-margin: emCalc(5px);
758

    
759
// We use these for the pagination anchor links
760
// $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
761
// $pagination-link-font-color: #999;
762
// $pagination-link-active-bg: darken(#fff, 10%);
763

    
764
// We use these for disabled anchor links
765
// $pagination-link-unavailable-cursor: default;
766
// $pagination-link-unavailable-font-color: #999;
767
// $pagination-link-unavailable-bg-active: transparent;
768

    
769
// We use these for currently selected anchor links
770
// $pagination-link-current-background: $primary-color;
771
// $pagination-link-current-font-color: #fff;
772
// $pagination-link-current-font-weight: bold;
773
// $pagination-link-current-cursor: default;
774
// $pagination-link-current-active-bg: $primary-color;
775

    
776
//
777
// Panel Variables
778
//
779

    
780
// We use these to control the background and border styles
781
// $panel-bg: darken(#fff, 5%);
782
// $panel-border-style: solid;
783
// $panel-border-size: 1px;
784

    
785
// We use this % to control how much we darken things on hover
786
// $panel-function-factor: 10%;
787
// $panel-border-color: darken($panel-bg, $panel-function-factor);
788

    
789
// We use these to set default inner padding and bottom margin
790
// $panel-margin-bottom: emCalc(20px);
791
// $panel-padding: emCalc(20px);
792

    
793
// We use these to set default font colors
794
// $panel-font-color: #333;
795
// $panel-font-color-alt: #fff;
796

    
797
//
798
// Pricing Table Variables
799
//
800

    
801
// We use this to control the border color
802
// $price-table-border: solid 1px #ddd;
803

    
804
// We use this to control the bottom margin of the pricing table
805
// $price-table-margin-bottom: emCalc(20px);
806

    
807
// We use these to control the title styles
808
// $price-title-bg: #ddd;
809
// $price-title-padding: emCalc(15px) emCalc(20px);
810
// $price-title-align: center;
811
// $price-title-color: #333;
812
// $price-title-weight: bold;
813
// $price-title-size: emCalc(16px);
814

    
815
// We use these to control the price styles
816
// $price-money-bg: #eee;
817
// $price-money-padding: emCalc(15px) emCalc(20px);
818
// $price-money-align: center;
819
// $price-money-color: #333;
820
// $price-money-weight: normal;
821
// $price-money-size: emCalc(20px);
822

    
823
// We use these to control the description styles
824
// $price-bg: #fff;
825
// $price-desc-color: #777;
826
// $price-desc-padding: emCalc(15px);
827
// $price-desc-align: center;
828
// $price-desc-font-size: emCalc(12px);
829
// $price-desc-weight: normal;
830
// $price-desc-line-height: 1.4;
831
// $price-desc-bottom-border: dotted 1px #ddd;
832

    
833
// We use these to control the list item styles
834
// $price-item-color: #333;
835
// $price-item-padding: emCalc(15px);
836
// $price-item-align: center;
837
// $price-item-font-size: emCalc(14px);
838
// $price-item-weight: normal;
839
// $price-item-bottom-border: dotted 1px #ddd;
840

    
841
// We use these to control the CTA area styles
842
// $price-cta-bg: #f5f5f5;
843
// $price-cta-align: center;
844
// $price-cta-padding: emCalc(20px) emCalc(20px) 0;
845

    
846
//
847
// Progress Bar Variables
848
//
849

    
850
// We use this to se the prog bar height
851
$progress-bar-height: emCalc(15px);
852
// $progress-bar-color: transparent;
853

    
854
// We use these to control the border styles
855
// $progress-bar-border-color: darken(#fff, 20%);
856
// $progress-bar-border-size: 1px;
857
// $progress-bar-border-style: solid;
858
// $progress-bar-border-radius: $global-radius;
859

    
860
// We use these to control the margin & padding
861
$progress-bar-pad: 1px;
862
// $progress-bar-margin-bottom: emCalc(10px);
863

    
864
// We use these to set the meter colors
865
// $progress-meter-color: $primary-color;
866
// $progress-meter-secondary-color: $secondary-color;
867
// $progress-meter-success-color: $success-color;
868
// $progress-meter-alert-color: $alert-color;
869

    
870
// NEED TO FINISH THE LOGIC HERE
871

    
872
//
873
// Reveal Variables
874
//
875

    
876
// We use these to control the style of the reveal overlay.
877
$reveal-overlay-bg: rgba(#fff, .80);
878
// $reveal-overlay-bg-old: #000;
879

    
880
// We use these to control the style of the modal itself.
881
// $reveal-modal-bg: #fff;
882
// $reveal-position-top: 50px;
883
// $reveal-default-width: 80%;
884
$reveal-modal-padding: emCalc(50px) emCalc(100px) emCalc(20px);
885
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
886

    
887
// We use these to style the reveal close button
888
$reveal-close-font-size: emCalc(18px);
889
$reveal-close-top: emCalc(50px);
890
$reveal-close-side: emCalc(50px);
891
$reveal-close-color: #fff;
892
// $reveal-close-weight: bold;
893

    
894
// We use these to control the modal border
895
// $reveal-border-style: solid;
896
$reveal-border-width: 0px;
897
// $reveal-border-color: #666;
898

    
899
//
900
// Section Variables
901
//
902

    
903
// We use these to set padding and hover factor
904
// $section-padding: emCalc(15px);
905
// $section-function-factor: 10%;
906

    
907
// These style the titles
908
// $section-title-color: #333;
909
// $section-title-bg: #efefef;
910
// $section-title-bg-active: darken($section-title-bg, $section-function-factor);
911
// $section-title-bg-active-tabs: #fff;
912

    
913
// Want to control border size, here ya go!
914
// $section-border-size: 1px;
915
// $section-border-style: solid;
916
// $section-border-color: #ccc;
917

    
918
// Control the color of the background and some size options
919
// $section-content-bg: #fff;
920
// $section-vertical-nav-min-width: emCalc(200px);
921
// $section-bottom-margin: emCalc(20px);
922

    
923
//
924
// Side Nav Variables
925
//
926

    
927
// We use this to control padding.
928
// $side-nav-padding: emCalc(14px) 0;
929

    
930
// We use these to control list styles.
931
// $side-nav-list-type: none;
932
// $side-nav-list-position: inside;
933
// $side-nav-list-margin: 0 0 emCalc(7px) 0;
934

    
935
// We use these to control link styles.
936
// $side-nav-link-color: $primary-color;
937
// $side-nav-link-color-active: lighten(#000, 30%);
938
// $side-nav-font-size: emCalc(14px);
939
// $side-nav-font-weight: bold;
940

    
941
// We use these to control border styles
942
// $side-nav-divider-size: 1px;
943
// $side-nav-divider-style: solid;
944
// $side-nav-divider-color: darken(#fff, 10%);
945

    
946
//
947
// Sub Nav Variables
948
//
949

    
950
// We use these to control margin and padding
951
// $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
952
// $sub-nav-list-padding-top: emCalc(4px);
953

    
954
// We use this to control the definition
955
// $sub-nav-font-size: emCalc(14px);
956
// $sub-nav-font-color: #999;
957
// $sub-nav-font-weight: normal;
958
// $sub-nav-text-decoration: none;
959
// $sub-nav-border-radius: 1000px;
960

    
961
// We use these to control the active item styles
962
// $sub-nav-active-font-weight: bold;
963
// $sub-nav-active-bg: $primary-color;
964
// $sub-nav-active-color: #fff;
965
// $sub-nav-active-padding: emCalc(3px) emCalc(9px);
966
// $sub-nav-active-cursor: default;
967

    
968
//
969
// Switch Variables
970
//
971

    
972
// Controlling border styles and background colors for the switch container
973
// $switch-border-color: darken(#fff, 20%);
974
// $switch-border-style: solid;
975
// $switch-border-width: 1px;
976
// $switch-bg: #fff;
977

    
978
// We use these to control the switch heights for our default classes
979
// $switch-height-tny: 22px;
980
// $switch-height-sml: 28px;
981
// $switch-height-med: 36px;
982
// $switch-height-lrg: 44px;
983
// $switch-bottom-margin: emCalc(20px);
984

    
985
// We use these to control default font sizes for our classes.
986
// $switch-font-size-tny: 11px;
987
// $switch-font-size-sml: 12px;
988
// $switch-font-size-med: 14px;
989
// $switch-font-size-lrg: 17px;
990
// $switch-label-side-padding: 6px;
991

    
992
// We use these to style the switch-paddle
993
// $switch-paddle-bg: #fff;
994
// $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
995
// $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
996
// $switch-paddle-border-width: 1px;
997
// $switch-paddle-border-style: solid;
998
// $switch-paddle-transition-speed: .1s;
999
// $switch-paddle-transition-ease: ease-out;
1000
// $switch-positive-color: lighten($success-color, 50%);
1001
// $switch-negative-color: #f5f5f5;
1002

    
1003
// Outline Style for tabbing through switches
1004
// $switch-label-outline: 1px dotted #888;
1005

    
1006
//
1007
// Table Variables
1008
//
1009

    
1010
// These control the background color for the table and even rows
1011
// $table-bg: #fff;
1012
// $table-even-row-bg: #f9f9f9;
1013

    
1014
// These control the table cell border style
1015
// $table-border-style: solid;
1016
// $table-border-size: 1px;
1017
// $table-border-color: #ddd;
1018

    
1019
// These control the table head styles
1020
// $table-head-bg: #f5f5f5;
1021
// $table-head-font-size: emCalc(14px);
1022
// $table-head-font-color: #222;
1023
// $table-head-font-weight: bold;
1024
// $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
1025

    
1026
// These control the row padding and font styles
1027
// $table-row-padding: emCalc(9px) emCalc(10px);
1028
// $table-row-font-size: emCalc(14px);
1029
// $table-row-font-color: #222;
1030
// $table-line-height: emCalc(18px);
1031

    
1032
// These are for controlling the display and margin of tables
1033
// $table-display: table-cell;
1034
// $table-margin-bottom: emCalc(20px);
1035

    
1036
//
1037
// Image Thumbnail Variables
1038
//
1039

    
1040
// We use these to control border styles
1041
// $thumb-border-style: solid;
1042
// $thumb-border-width: 4px;
1043
// $thumb-border-color: #fff;
1044
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
1045
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1046

    
1047
// Radius and transition speed for thumbs
1048
// $thumb-radius: $global-radius;
1049
// $thumb-transition-speed: 200ms;
1050

    
1051
//
1052
// Tooltip Variables
1053
//
1054
$has-tip-border-bottom: 0 none;
1055
// $has-tip-font-weight: bold;
1056
// $has-tip-font-color: #333;
1057
$has-tip-border-bottom-hover: none;
1058
$has-tip-font-color-hover: $link-color-hover;
1059
$has-tip-cursor-type: inherit;
1060

    
1061
$tooltip-padding: emCalc(2px) emCalc(12px);
1062
$tooltip-bg: #cecece;
1063
$tooltip-font-size: emCalc(12px);
1064
$tooltip-font-weight: normal;
1065
$tooltip-font-color: $body-font-color;
1066
// $tooltip-line-height: 1.3;
1067
// $tooltip-close-font-size: emCalc(10px);
1068
// $tooltip-close-font-weight: normal;
1069
// $tooltip-close-font-color: #888;
1070
// $tooltip-font-size-sml: emCalc(14px);
1071
$tooltip-radius: 7px;
1072
$tooltip-pip-size: 0;
1073

    
1074
//
1075
// Top Bar Variables
1076
//
1077

    
1078
// Background color for the top bar
1079
// $topbar-bg: #111;
1080

    
1081
// Height and margin
1082
// $topbar-height: 45px;
1083
// $topbar-margin-bottom: emCalc(30px);
1084

    
1085
// Control Input height for top bar
1086
// $topbar-input-height: 2.45em;
1087

    
1088
// Controlling the styles for the title in the top bar
1089
// $topbar-title-weight: bold;
1090
// $topbar-title-font-size: emCalc(17px);
1091

    
1092
// Set the link colors and styles for top-level nav
1093
// $topbar-link-color: #fff;
1094
// $topbar-link-weight: bold;
1095
// $topbar-link-font-size: emCalc(13px);
1096

    
1097
// Style the top bar dropdown elements
1098
// $topbar-dropdown-bg: #333;
1099
// $topbar-dropdown-link-color: #fff;
1100
// $topbar-dropdown-toggle-size: 5px;
1101
// $topbar-dropdown-toggle-color: #fff;
1102
// $topbar-dropdown-toggle-alpha: 0.5;
1103
// $dropdown-label-color: #555;
1104

    
1105
// Top menu icon styles
1106
// $topbar-menu-link-transform: uppercase;
1107
// $topbar-menu-link-font-size: emCalc(13px);
1108
// $topbar-menu-link-weight: bold;
1109
// $topbar-menu-link-color: #fff;
1110
// $topbar-menu-icon-color: #fff;
1111
// $topbar-menu-link-color-toggled: #888;
1112
// $topbar-menu-icon-color-toggled: #888;
1113

    
1114
// Transitions and breakpoint styles
1115
// $topbar-transition-speed: 300ms;
1116
// $topbar-breakpoint: emCalc(940px); // Change to 9999px for always mobile layout
1117
// $topbar-media-query: "only screen and (min-width "#{$topbar-breakpoint}")";
1118

    
1119

    
1120
// Custom breakpoints
1121

    
1122
$entities-list-large: emCalc(1100px);
1123

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