Statistics
| Branch: | Tag: | Revision:

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

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 : 230px;
130
$tags-w : 90px;
131
$info-w: 200px;
132
$actions-w: 140px;
133

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

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

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

    
158
//
159
// Grid Variables
160
//
161

    
162
$row-full-width:100%;
163
//$row-width: emCalc(960px);
164
$row-small: emCalc(580px);
165
$main-padding-horizontal: emCalc(10px);
166

    
167
$conf-area-h-width: emCalc(300px);
168

    
169
$step-adv-padding:emCalc(40px);
170
// $column-gutter: 1.875em;
171
// $total-columns: 12;
172

    
173
//
174
// Block Grid Variables
175
//
176

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

    
181
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
182
// $block-grid-media-queries: true;
183

    
184
$small-mobile:emCalc(480px);
185

    
186
//
187
// Typography Variables
188
//
189

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

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

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

    
217
// A general <small> styling
218
// $small-font-size: 60%;
219
// $small-font-color: lighten($header-font-color, 30%);
220

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

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

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

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

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

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

    
262
// Acronym styles
263
// $acronym-underline: 1px dotted #ddd;
264

    
265
// We use these to control padding and margin
266
// $microformat-padding: emCalc(10px) emCalc(12px);
267
// $microformat-margin: 0 0 emCalc(20px) 0;
268

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

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

    
278
// We use this to control the summary font styles
279
// $microformat-summary-font-weight: bold;
280

    
281
// We use this to control abbr padding
282
// $microformat-abbr-padding: 0 emCalc(1px);
283

    
284
// We use this to control abbr font styles
285
// $microformat-abbr-font-weight: bold;
286
// $microformat-abbr-font-decoration: none;
287

    
288
//
289
// Form Variables
290
//
291

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

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

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

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

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

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

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

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

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

    
363
// We use these to control various hover effects.
364
// $button-function-factor: 10%;
365

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

    
371
// We use this to set the default radius used throughout the core.
372
// $button-radius: $global-radius;
373

    
374
// We use this to set default opacity for disabled buttons.
375
// $button-disabled-opacity: 0.6;
376

    
377
//
378
// Dropdown Button Variables
379
//
380

    
381
// We use these to set the color of the pip in dropdown buttons
382
// $dropdown-button-pip-color: #fff;
383
// $dropdown-button-pip-color-alt: #333;
384

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

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

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

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

    
409
//
410
// Split Button Variables
411
//
412

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

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

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

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

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

    
447
//
448
// Alert Variables
449
//
450

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

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

    
463
// We use this for close hover effect.
464
// $alert-function-factor: 10%;
465

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

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

    
480
// We use this to control border radius
481
// $alert-radius: $global-radius;
482

    
483
//
484
// Breadcrumb Variables
485
//
486

    
487
// We use this to set the background color for the breadcrumb container.
488
$crumb-bg: transparent;
489

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

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

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

    
509
// We use these to control the slash between breadcrumbs
510
// $crumb-slash-color: #aaa;
511
$crumb-slash: ">";
512

    
513
//
514
// Clearing Variables
515
//
516

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

    
523
// We use these to style the close button
524
// $clearing-close-color: #fff;
525
// $clearing-close-size: 40px;
526

    
527
// We use these to style the arrows
528
// $clearing-arrow-size: 16px;
529
// $clearing-arrow-color: $clearing-close-color;
530

    
531
// We use these to style captions
532
// $clearing-caption-font-color: #fff;
533
// $clearing-caption-padding: 10px 30px;
534

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

    
541
//
542
// Custom Form Variables
543
//
544

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

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

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

    
579
//
580
// Dropdown Variables
581
//
582

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

    
589
// We use this to control the background color
590
// $f-dropdown-bg: #fff;
591

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

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

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

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

    
614
//
615
// Flex Video Variables
616
//
617

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

    
623
// We use this to control widescreen bottom padding
624
// $flex-video-widescreen-padding-bottom: 57.25%;
625

    
626
//
627
// Inline List Variables
628
//
629

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

    
635
// We use this to control the overflow of the inline list.
636
// $inline-list-overflow: hidden;
637

    
638
// We use this to control the list items
639
// $inline-list-display: block;
640

    
641
// We use this to control any elments within list items
642
// $inline-list-children-display: block;
643

    
644
//
645
// Joyride Variables
646
//
647

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

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

    
661
// This changes the nub size
662
// $joyride-tip-nub-size: 14px;
663

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

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

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

    
677
//
678
// Keystroke Variables
679
//
680

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

    
688
// We use this to control keystroke padding.
689
// $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
690

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

    
698
//
699
// Label Variables
700
//
701

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

    
706
// We use these to style the label text
707
// $label-font-sizing: emCalc(14px);
708
// $label-font-weight: bold;
709

    
710
//
711
// Orbit Settings
712
//
713

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

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

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

    
729
// We use these to control the bullet nav styles
730
// $orbit-bullet-nav-color: #999;
731
// $orbit-bullet-nav-color-active: #222;
732

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

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

    
741
//
742
// Pagination Variables
743
//
744

    
745
// We use these to control the pagination container
746
// $pagination-height: emCalc(24px);
747
// $pagination-margin: emCalc(-5px);
748

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

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

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

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

    
773
//
774
// Panel Variables
775
//
776

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

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

    
786
// We use these to set default inner padding and bottom margin
787
// $panel-margin-bottom: emCalc(20px);
788
// $panel-padding: emCalc(20px);
789

    
790
// We use these to set default font colors
791
// $panel-font-color: #333;
792
// $panel-font-color-alt: #fff;
793

    
794
//
795
// Pricing Table Variables
796
//
797

    
798
// We use this to control the border color
799
// $price-table-border: solid 1px #ddd;
800

    
801
// We use this to control the bottom margin of the pricing table
802
// $price-table-margin-bottom: emCalc(20px);
803

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

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

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

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

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

    
843
//
844
// Progress Bar Variables
845
//
846

    
847
// We use this to se the prog bar height
848
$progress-bar-height: emCalc(15px);
849
// $progress-bar-color: transparent;
850

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

    
857
// We use these to control the margin & padding
858
// $progress-bar-pad: emCalc(2px);
859
// $progress-bar-margin-bottom: emCalc(10px);
860

    
861
// We use these to set the meter colors
862
// $progress-meter-color: $primary-color;
863
// $progress-meter-secondary-color: $secondary-color;
864
// $progress-meter-success-color: $success-color;
865
// $progress-meter-alert-color: $alert-color;
866

    
867
// NEED TO FINISH THE LOGIC HERE
868

    
869
//
870
// Reveal Variables
871
//
872

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

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

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

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

    
896
//
897
// Section Variables
898
//
899

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

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

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

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

    
920
//
921
// Side Nav Variables
922
//
923

    
924
// We use this to control padding.
925
// $side-nav-padding: emCalc(14px) 0;
926

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

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

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

    
943
//
944
// Sub Nav Variables
945
//
946

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

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

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

    
965
//
966
// Switch Variables
967
//
968

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

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

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

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

    
1000
// Outline Style for tabbing through switches
1001
// $switch-label-outline: 1px dotted #888;
1002

    
1003
//
1004
// Table Variables
1005
//
1006

    
1007
// These control the background color for the table and even rows
1008
// $table-bg: #fff;
1009
// $table-even-row-bg: #f9f9f9;
1010

    
1011
// These control the table cell border style
1012
// $table-border-style: solid;
1013
// $table-border-size: 1px;
1014
// $table-border-color: #ddd;
1015

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

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

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

    
1033
//
1034
// Image Thumbnail Variables
1035
//
1036

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

    
1044
// Radius and transition speed for thumbs
1045
// $thumb-radius: $global-radius;
1046
// $thumb-transition-speed: 200ms;
1047

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

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

    
1071
//
1072
// Top Bar Variables
1073
//
1074

    
1075
// Background color for the top bar
1076
// $topbar-bg: #111;
1077

    
1078
// Height and margin
1079
// $topbar-height: 45px;
1080
// $topbar-margin-bottom: emCalc(30px);
1081

    
1082
// Control Input height for top bar
1083
// $topbar-input-height: 2.45em;
1084

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

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

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

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

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

    
1116

    
1117
// Custom breakpoints
1118

    
1119
$entities-list-large: emCalc(1100px);
1120

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