Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (32.3 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
// We use these as default colors throughout
31
$primary-color: #919194;
32
$secondary-color: #30c79e;
33
$third-color: #d7145a;
34
$overlay-color: #485057;
35
$overlay-color-top:#636a70;
36
$overlay-darker-color:#33383D;
37
$black:#1a1a1a;
38

    
39
$alert-color: $secondary-color;
40
$success-color: #00a551;
41
$warning-color: #49DDC5;
42
$error-color: #ff5c58;
43

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

    
49
//colors for main icons (icons of networks and vms)
50
$vm-active-color: $secondary-color;
51
$vm-error-color: #ff4040;
52
$vm-off-color: #4a5158;
53
$vm-shutting-color: #666c6b;
54
$vm-starting-color: #566db1;
55
$vm-rebooting-color: #ffc54a;
56
$network-color: #79c79e;
57

    
58
// wizard step2 colors
59
$disabled-resource-color: #3a4046;
60
$disabled-flavor-color: #495561;
61

    
62
// wizard step3 colors
63
$ssh-opt-area-color: #ff7049;
64
$net-opt-area-color: #ff948c;
65
$tag-opt-area-color: #4c71ff;
66
$wizard-base-font-color: white;
67
$net-more-opt-area-color:#fff4f3;
68

    
69
// We use these to make sure border radius matches unless we want it different.
70
$global-radius: 1px;
71
// $global-rounded: 1000px;
72

    
73
// header settings
74
$header-height: 80px;
75
$header-height-responsive: 120px;
76
$header-padding-vertical: 20px;
77
$header-padding-horizontal: 15px;
78

    
79
// icons nav settings
80
$icons-nav-margin-horizontal : 10px;
81

    
82
// bar options
83
$bar-height: 30px;
84
$bar-menu-height: 50px;
85
$bar-submenu-height: 40px;
86

    
87
// button options
88
$btn-height: 30px;
89

    
90
// list-view 
91
$lt-bar-width: 110px;
92
$list-vm-height: 34px;
93

    
94

    
95
// We use these to control inset shadow shiny edges and depressions.
96
// $shiny-edge-size: 0 1px 0;
97
// $shiny-edge-color: rgba(#fff, .5);
98
// $shiny-edge-active-color: rgba(#000, .2);
99

    
100
// We use this to control whether or not CSS classes come through in the gem files.
101
// $include-html-classes: true;
102
// $include-print-styles: true;
103

    
104
// Modular html classes
105
// $include-html-grid-classes: $include-html-classes;
106
// $include-html-visibility-classes: $include-html-classes;
107
// $include-html-button-classes: $include-html-classes;
108
// $include-html-form-classes: $include-html-classes;
109
// $include-html-media-classes: $include-html-classes;
110
// $include-html-section-classes: $include-html-classes;
111
// $include-html-reveal-classes: $include-html-classes;
112
// $include-html-alert-classes: $include-html-classes;
113
// $include-html-nav-classes: $include-html-classes;
114
// $include-html-label-classes: $include-html-classes;
115
// $include-html-panel-classes: $include-html-classes;
116
// $include-html-pricing-classes: $include-html-classes;
117
// $include-html-progress-classes: $include-html-classes;
118

    
119
//
120
// Grid Variables
121
//
122

    
123
$row-full-width:100%;
124
$row-width: emCalc(960px);
125
$row-small: emCalc(580px);
126
$main-padding-horizontal: emCalc(10px);
127

    
128
$conf-area-h-width: emCalc(300px);
129

    
130
$step-adv-padding:emCalc(40px);
131
// $column-gutter: 1.875em;
132
// $total-columns: 12;
133

    
134
//
135
// Block Grid Variables
136
//
137

    
138
// We use this to control the maximum number of block grid elements per row
139
// $block-grid-elements: 12;
140
// $block-grid-default-spacing: 10px;
141

    
142
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
143
// $block-grid-media-queries: true;
144

    
145
$small-mobile:emCalc(480px);
146

    
147
//
148
// Typography Variables
149
//
150

    
151
$wizard-paragraph-font-size: 10px;
152
// We use these to control header font styles
153
$header-font-family: "Open Sans", "Helvetica", Helvetica, Arial, sans-serif;
154
// $header-font-weight: bold;
155
// $header-font-style: normal;
156
$header-font-color: $body-font-color;
157
// $header-line-height: 1.4;
158
// $header-top-margin: .2em;
159
// $header-bottom-margin: .5em;
160
// $header-text-rendering: optimizeLegibility;
161

    
162
// We use these to control header font sizes
163
// $h1-font-size: emCalc(44px);
164
// $h2-font-size: emCalc(37px);
165
// $h3-font-size: emCalc(27px);
166
// $h4-font-size: emCalc(23px);
167
// $h5-font-size: emCalc(18px);
168
// $h6-font-size: 1em;
169

    
170
// These control how subheaders are styled.
171
// $subheader-line-height: 1.4;
172
// $subheader-font-color: lighten($header-font-color, 30%);
173
// $subheader-font-weight: 300;
174
// $subheader-top-margin: .2em;
175
// $subheader-bottom-margin: .5em;
176

    
177
// A general <small> styling
178
// $small-font-size: 60%;
179
// $small-font-color: lighten($header-font-color, 30%);
180

    
181
// We use these to style paragraphs
182
// $paragraph-font-family: inherit;
183
// $paragraph-font-weight: normal;
184
// $paragraph-font-size: 1em;
185
// $paragraph-line-height: 1.6;
186
// $paragraph-margin-bottom: emCalc(20px);
187
// $paragraph-aside-font-size: emCalc(14px);
188
// $paragraph-aside-line-height: 1.35;
189
// $paragraph-aside-font-style: italic;
190

    
191
// We use these to style <code> tags
192
// $code-color: darken($alert-color, 15%);
193
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
194
// $code-font-weight: bold;
195

    
196
// We use these to style anchors
197
// $anchor-text-decoration: none;
198
// $anchor-font-color: $primary-color;
199
// $anchor-font-color-hover: darken($primary-color, 5%);
200

    
201
// We use these to style the <hr> element
202
// $hr-border-width: 1px;
203
// $hr-border-style: solid;
204
// $hr-border-color: #ddd;
205
// $hr-margin: emCalc(20px);
206

    
207
// We use these to style lists
208
// $list-style-position: outside;
209
// $list-side-margin: emCalc(18px);
210
// $definition-list-header-weight: bold;
211
// $definition-list-header-margin-bottom: .3em;
212
// $definition-list-margin-bottom: emCalc(12px);
213

    
214
// We use these to style blockquotes
215
// $blockquote-font-color: lighten($header-font-color, 30%);
216
// $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
217
// $blockquote-border: 1px solid #ddd;
218
// $blockquote-cite-font-size: emCalc(13px);
219
// $blockquote-cite-font-color: lighten($header-font-color, 20%);
220
// $blockquote-cite-link-color: $blockquote-cite-font-color;
221

    
222
// Acronym styles
223
// $acronym-underline: 1px dotted #ddd;
224

    
225
// We use these to control padding and margin
226
// $microformat-padding: emCalc(10px) emCalc(12px);
227
// $microformat-margin: 0 0 emCalc(20px) 0;
228

    
229
// We use these to control the border styles
230
// $microformat-border-width: 1px;
231
// $microformat-border-style: solid;
232
// $microformat-border-color: #ddd;
233

    
234
// We use these to control full name font styles
235
// $microformat-fullname-font-weight: bold;
236
// $microformat-fullname-font-size: emCalc(15px);
237

    
238
// We use this to control the summary font styles
239
// $microformat-summary-font-weight: bold;
240

    
241
// We use this to control abbr padding
242
// $microformat-abbr-padding: 0 emCalc(1px);
243

    
244
// We use this to control abbr font styles
245
// $microformat-abbr-font-weight: bold;
246
// $microformat-abbr-font-decoration: none;
247

    
248
//
249
// Form Variables
250
//
251

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

    
255
// We use these to style the labels in different ways
256
// $label-pointer: pointer;
257
// $label-font-size: emCalc(14px);
258
// $label-font-weight: 500;
259
// $label-font-color: lighten(#000, 30%);
260
// $label-bottom-margin: emCalc(3px);
261
// $input-font-family: inherit;
262
// $input-font-color: rgba(0,0,0,0.75);
263
// $input-font-size: emCalc(14px);
264
// $input-bg-color: #fff;
265
// $input-focus-bg-color: darken(#fff, 2%);
266
$input-border-color: $primary-color;
267
// $input-focus-border-color: darken(#fff, 40%);
268
// $input-border-style: solid;
269
// $input-border-width: 1px;
270
// $input-disabled-bg: #ddd;
271
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
272

    
273
// We use these to style the fieldset border and spacing.
274
// $fieldset-border-style: solid;
275
// $fieldset-border-width: 1px;
276
// $fieldset-border-color: #ddd;
277
// $fieldset-padding: emCalc(20px);
278
// $fieldset-margin: emCalc(18px) 0;
279

    
280
// We use these to style the legends when you use them
281
// $legend-bg: #fff;
282
// $legend-font-weight: bold;
283
// $legend-padding: 0 emCalc(3px);
284

    
285
// We use these to style the prefix and postfix input elements
286
// $input-prefix-bg: darken(#fff, 5%);
287
// $input-prefix-border-color: darken(#fff, 20%);
288
// $input-prefix-border-size: 1px;
289
// $input-prefix-border-type: solid;
290
// $input-prefix-overflow: hidden;
291
// $input-prefix-font-color: #333;
292
// $input-prefix-font-color-alt: #fff;
293

    
294
// We use these to style the error states for inputs and labels
295
// $input-error-message-padding: emCalc(6px) emCalc(4px);
296
// $input-error-message-top: -($form-spacing) - emCalc(5px);
297
// $input-error-message-font-size: emCalc(12px);
298
// $input-error-message-font-weight: bold;
299
// $input-error-message-font-color: #fff;
300
// $input-error-message-font-color-alt: #333;
301

    
302
// We use these to build padding for buttons.
303
// $button-med: emCalc(12px);
304
// $button-tny: emCalc(7px);
305
// $button-sml: emCalc(9px);
306
// $button-lrg: emCalc(16px);
307

    
308
// We use this to control the display property.
309
// $button-display: inline-block;
310
// $button-margin-bottom: emCalc(20px);
311

    
312
// We use these to control button text styles.
313
// $button-font-family: inherit;
314
// $button-font-color: #fff;
315
// $button-font-color-alt: #333;
316
// $button-font-med: emCalc(16px);
317
// $button-font-tny: emCalc(11px);
318
// $button-font-sml: emCalc(13px);
319
// $button-font-lrg: emCalc(20px);
320
// $button-font-weight: bold;
321
// $button-font-align: center;
322

    
323
// We use these to control various hover effects.
324
// $button-function-factor: 10%;
325

    
326
// We use these to control button border styles.
327
// $button-border-width: 1px;
328
// $button-border-style: solid;
329
// $button-border-color: darken($primary-color, $button-function-factor);
330

    
331
// We use this to set the default radius used throughout the core.
332
// $button-radius: $global-radius;
333

    
334
// We use this to set default opacity for disabled buttons.
335
// $button-disabled-opacity: 0.6;
336

    
337
//
338
// Dropdown Button Variables
339
//
340

    
341
// We use these to set the color of the pip in dropdown buttons
342
// $dropdown-button-pip-color: #fff;
343
// $dropdown-button-pip-color-alt: #333;
344

    
345
// We use these to style tiny dropdown buttons
346
// $dropdown-button-padding-tny: $button-tny * 5;
347
// $dropdown-button-pip-size-tny: $button-tny;
348
// $dropdown-button-pip-right-tny: $button-tny * 2;
349
// $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
350

    
351
// We use these to style small dropdown buttons
352
// $dropdown-button-padding-sml: $button-sml * 5;
353
// $dropdown-button-pip-size-sml: $button-sml;
354
// $dropdown-button-pip-right-sml: $button-sml * 2;
355
// $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
356

    
357
// We use these to style medium dropdown buttons
358
// $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
359
// $dropdown-button-pip-size-med: $button-med - emCalc(3px);
360
// $dropdown-button-pip-right-med: $button-med * 2;
361
// $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
362

    
363
// We use these to style large dropdown buttons
364
// $dropdown-button-padding-lrg: $button-lrg * 4;
365
// $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
366
// $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
367
// $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
368

    
369
//
370
// Split Button Variables
371
//
372

    
373
// We use these to control different shared styles for Split Buttons
374
// $split-button-function-factor: 15%;
375
// $split-button-pip-color: #fff;
376
// $split-button-pip-color-alt: #333;
377
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
378

    
379
// We use these to control tiny split buttons
380
// $split-button-padding-tny: $button-tny * 9;
381
// $split-button-span-width-tny: $button-tny * 6.5;
382
// $split-button-pip-size-tny: $button-tny;
383
// $split-button-pip-top-tny: $button-tny * 2;
384
// $split-button-pip-left-tny: emCalc(-5px);
385

    
386
// We use these to control small split buttons
387
// $split-button-padding-sml: $button-sml * 7;
388
// $split-button-span-width-sml: $button-sml * 5;
389
// $split-button-pip-size-sml: $button-sml;
390
// $split-button-pip-top-sml: $button-sml * 1.5;
391
// $split-button-pip-left-sml: emCalc(-9px);
392

    
393
// We use these to control medium split buttons
394
// $split-button-padding-med: $button-med * 6.4;
395
// $split-button-span-width-med: $button-med * 4;
396
// $split-button-pip-size-med: $button-med - emCalc(3px);
397
// $split-button-pip-top-med: $button-med * 1.5;
398
// $split-button-pip-left-med: emCalc(-9px);
399

    
400
// We use these to control large split buttons
401
// $split-button-padding-lrg: $button-lrg * 6;
402
// $split-button-span-width-lrg: $button-lrg * 3.75;
403
// $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
404
// $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
405
// $split-button-pip-left-lrg: emCalc(-9px);
406

    
407
//
408
// Alert Variables
409
//
410

    
411
// We use this to control alert padding.
412
// $alert-padding-top: emCalc(11px);
413
// $alert-padding-left: $alert-padding-top;
414
// $alert-padding-right: $alert-padding-top + emCalc(10px);
415
// $alert-padding-bottom: $alert-padding-top + emCalc(1px);
416

    
417
// We use these to control text style.
418
// $alert-font-weight: bold;
419
// $alert-font-size: emCalc(14px);
420
// $alert-font-color: #fff;
421
// $alert-font-color-alt: darken($secondary-color, 60%);
422

    
423
// We use this for close hover effect.
424
// $alert-function-factor: 10%;
425

    
426
// We use these to control border styles.
427
// $alert-border-style: solid;
428
// $alert-border-width: 1px;
429
// $alert-border-color: darken($primary-color, $alert-function-factor);
430
// $alert-bottom-margin: emCalc(20px);
431

    
432
// We use these to style the close buttons
433
// $alert-close-color: #333;
434
// $alert-close-position: emCalc(5px);
435
// $alert-close-font-size: emCalc(22px);
436
// $alert-close-opacity: 0.3;
437
// $alert-close-opacity-hover: 0.5;
438
// $alert-close-padding: 5px 4px 4px;
439

    
440
// We use this to control border radius
441
// $alert-radius: $global-radius;
442

    
443
//
444
// Breadcrumb Variables
445
//
446

    
447
// We use this to set the background color for the breadcrumb container.
448
$crumb-bg: transparent;
449

    
450
// We use these to set the padding around the breadcrumbs.
451
$crumb-padding: 0 emCalc(14px) emCalc(9px);
452
// $crumb-side-padding: emCalc(12px);
453

    
454
// We use these to control border styles.
455
// $crumb-function-factor: 10%;
456
// $crumb-border-size: 1px;
457
// $crumb-border-style: solid;
458
$crumb-border-color: transparent;
459
// $crumb-radius: $global-radius;
460

    
461
// We use these to set various text styles for breadcrumbs.
462
$crumb-font-size: inherit;
463
// $crumb-font-color: $primary-color;
464
// $crumb-font-color-current: #333;
465
// $crumb-font-color-unavailable: #999;
466
$crumb-font-transform: none;
467
$crumb-link-decor: none;
468

    
469
// We use these to control the slash between breadcrumbs
470
// $crumb-slash-color: #aaa;
471
$crumb-slash: ">";
472

    
473
//
474
// Clearing Variables
475
//
476

    
477
// We use these to set the background colors for parts of Clearing.
478
// $clearing-bg: #111;
479
// $clearing-caption-bg: $clearing-bg;
480
// $clearing-carousel-bg: #111;
481
// $clearing-img-bg: $clearing-bg;
482

    
483
// We use these to style the close button
484
// $clearing-close-color: #fff;
485
// $clearing-close-size: 40px;
486

    
487
// We use these to style the arrows
488
// $clearing-arrow-size: 16px;
489
// $clearing-arrow-color: $clearing-close-color;
490

    
491
// We use these to style captions
492
// $clearing-caption-font-color: #fff;
493
// $clearing-caption-padding: 10px 30px;
494

    
495
// We use these to make the image and carousel height and style
496
// $clearing-active-img-height: 75%;
497
// $clearing-carousel-height: 150px;
498
// $clearing-carousel-thumb-width: 175px;
499
// $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
500

    
501
//
502
// Custom Form Variables
503
//
504

    
505
// We use these to control the basic form styles input styles
506
// $custom-form-border-color: #ccc;
507
// $custom-form-bg: #fff;
508
// $custom-form-bg-disabled: #ddd;
509
// $custom-form-check-color: #222;
510

    
511
// We use these to style the custom select form element.
512
$custom-select-bg: $overlay-color;
513
$custom-select-fade-to-color: $overlay-color;
514
$custom-select-border-color: white;
515
$custom-select-triangle-color: white;
516
$custom-select-triangle-color-open: white;
517
// $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
518
// $custom-select-margin-bottom: emCalc(20px);
519
// $custom-select-font-color-selected: #141414;
520
// $custom-select-disabled-color: #888;
521

    
522
// We use these to control the style of the custom select dropdown element.
523
// $custom-dropdown-height: 200px;
524
// $custom-dropdown-bg: #fff;
525
// $custom-dropdown-border-color: darken(#fff, 20%);
526
// $custom-dropdown-border-width: 1px;
527
// $custom-dropdown-border-style: solid;
528
// $custom-dropdown-font-color: #555;
529
// $custom-dropdown-font-size: emCalc(14px);
530
// $custom-dropdown-color-selected: #eeeeee;
531
// $custom-dropdown-font-color-selected: #000;
532
// $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
533
// $custom-dropdown-offset-top: none;
534
// $custom-dropdown-list-padding: emCalc(4px);
535
// $custom-dropdown-left-padding: emCalc(6px);
536
// $custom-dropdown-right-padding: emCalc(38px);
537
// $custom-dropdown-list-item-min-height: emCalc(24px);
538

    
539
//
540
// Dropdown Variables
541
//
542

    
543
// We use these to controls height and width styles.
544
// $f-dropdown-max-width: 200px;
545
// $f-dropdown-height: auto;
546
// $f-dropdown-max-height: none;
547
// $f-dropdown-margin-top: 2px;
548

    
549
// We use this to control the background color
550
// $f-dropdown-bg: #fff;
551

    
552
// We use this to set the border styles for dropdowns.
553
// $f-dropdown-border-style: solid;
554
// $f-dropdown-border-width: 1px;
555
// $f-dropdown-border-color: darken(#fff, 20%);
556

    
557
// We use these to style the triangle pip.
558
// $f-dropdown-triangle-size: 6px;
559
// $f-dropdown-triangle-color: #fff;
560
// $f-dropdown-triangle-side-offset: 10px;
561

    
562
// We use these to control styles for the list elements.
563
// $f-dropdown-list-style: none;
564
// $f-dropdown-font-color: #555;
565
// $f-dropdown-font-size: emCalc(14px);
566
// $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
567
// $f-dropdown-line-height: emCalc(18px);
568
// $f-dropdown-list-hover-bg: #eeeeee;
569
// $dropdown-mobile-left: 0;
570

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

    
574
//
575
// Flex Video Variables
576
//
577

    
578
// We use these to control video container padding and margins
579
// $flex-video-padding-top: emCalc(25px);
580
// $flex-video-padding-bottom: 67.5%;
581
// $flex-video-margin-bottom: emCalc(16px);
582

    
583
// We use this to control widescreen bottom padding
584
// $flex-video-widescreen-padding-bottom: 57.25%;
585

    
586
//
587
// Inline List Variables
588
//
589

    
590
// We use this to control the margins and padding of the inline list.
591
// $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
592
// $inline-list-margin: 0 0;
593
// $inline-list-padding: 0;
594

    
595
// We use this to control the overflow of the inline list.
596
// $inline-list-overflow: hidden;
597

    
598
// We use this to control the list items
599
// $inline-list-display: block;
600

    
601
// We use this to control any elments within list items
602
// $inline-list-children-display: block;
603

    
604
//
605
// Joyride Variables
606
//
607

    
608
// Controlling default Joyride styles
609
// $joyride-tip-bg: rgb(0,0,0);
610
// $joyride-tip-default-width: 300px;
611
// $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
612
// $joyride-tip-border: solid 1px #555;
613
// $joyride-tip-radius: 4px;
614
// $joyride-tip-position-offset: 22px;
615

    
616
// Here, we're setting the tip dont styles
617
// $joyride-tip-font-color: #fff;
618
// $joyride-tip-font-size: emCalc(14px);
619
// $joyride-tip-header-weight: bold;
620

    
621
// This changes the nub size
622
// $joyride-tip-nub-size: 14px;
623

    
624
// This adjusts the styles for the timer when its enabled
625
// $joyride-tip-timer-width: 50px;
626
// $joyride-tip-timer-height: 3px;
627
// $joyride-tip-timer-color: #666;
628

    
629
// This changes up the styles for the close button
630
// $joyride-tip-close-color: #777;
631
// $joyride-tip-close-size: 30px;
632
// $joyride-tip-close-weight: normal;
633

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

    
637
//
638
// Keystroke Variables
639
//
640

    
641
// We use these to control text styles.
642
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
643
// $keystroke-font-size: emCalc(15px);
644
// $keystroke-font-color: #222;
645
// $keystroke-font-color-alt: #fff;
646
// $keystroke-function-factor: 7%;
647

    
648
// We use this to control keystroke padding.
649
// $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
650

    
651
// We use these to control background and border styles.
652
// $keystroke-bg: darken(#fff, $keystroke-function-factor);
653
// $keystroke-border-style: solid;
654
// $keystroke-border-width: 1px;
655
// $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
656
// $keystroke-radius: $global-radius;
657

    
658
//
659
// Label Variables
660
//
661

    
662
// We use these to style the labels
663
// $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
664
// $label-radius: $global-radius;
665

    
666
// We use these to style the label text
667
// $label-font-sizing: emCalc(14px);
668
// $label-font-weight: bold;
669

    
670
//
671
// Orbit Settings
672
//
673

    
674
// We use these to control the caption styles
675
// $orbit-container-bg: #f5f5f5;
676
// $orbit-caption-bg-old-browser: #000;
677
// $orbit-caption-bg-old: rgb(0,0,0);
678
// $orbit-caption-bg: rgba(0,0,0,0.6);
679
// $orbit-caption-font-color: #fff;
680

    
681
// We use these to control the left/right nav styles
682
// $orbit-nav-bg-old: rgb(0,0,0);
683
// $orbit-nav-bg: rgba(0,0,0,0.6);
684

    
685
// We use these to control the timer styles
686
// $orbit-timer-bg-old: rgb(0,0,0);
687
// $orbit-timer-bg: rgba(0,0,0,0.6);
688

    
689
// We use these to control the bullet nav styles
690
// $orbit-bullet-nav-color: #999;
691
// $orbit-bullet-nav-color-active: #222;
692

    
693
// We use thes to controls the style of slide numbers
694
// $orbit-slide-number-bg: rgb(0,0,0);
695
// $orbit-slide-number-font-color: #fff;
696
// $orbit-slide-number-padding: emCalc(5px);
697

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

    
701
//
702
// Pagination Variables
703
//
704

    
705
// We use these to control the pagination container
706
// $pagination-height: emCalc(24px);
707
// $pagination-margin: emCalc(-5px);
708

    
709
// We use these to set the list-item properties
710
// $pagination-li-float: $default-float;
711
// $pagination-li-height: emCalc(24px);
712
// $pagination-li-font-color: #222;
713
// $pagination-li-font-size: emCalc(14px);
714
// $pagination-li-margin: emCalc(5px);
715

    
716
// We use these for the pagination anchor links
717
// $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
718
// $pagination-link-font-color: #999;
719
// $pagination-link-active-bg: darken(#fff, 10%);
720

    
721
// We use these for disabled anchor links
722
// $pagination-link-unavailable-cursor: default;
723
// $pagination-link-unavailable-font-color: #999;
724
// $pagination-link-unavailable-bg-active: transparent;
725

    
726
// We use these for currently selected anchor links
727
// $pagination-link-current-background: $primary-color;
728
// $pagination-link-current-font-color: #fff;
729
// $pagination-link-current-font-weight: bold;
730
// $pagination-link-current-cursor: default;
731
// $pagination-link-current-active-bg: $primary-color;
732

    
733
//
734
// Panel Variables
735
//
736

    
737
// We use these to control the background and border styles
738
// $panel-bg: darken(#fff, 5%);
739
// $panel-border-style: solid;
740
// $panel-border-size: 1px;
741

    
742
// We use this % to control how much we darken things on hover
743
// $panel-function-factor: 10%;
744
// $panel-border-color: darken($panel-bg, $panel-function-factor);
745

    
746
// We use these to set default inner padding and bottom margin
747
// $panel-margin-bottom: emCalc(20px);
748
// $panel-padding: emCalc(20px);
749

    
750
// We use these to set default font colors
751
// $panel-font-color: #333;
752
// $panel-font-color-alt: #fff;
753

    
754
//
755
// Pricing Table Variables
756
//
757

    
758
// We use this to control the border color
759
// $price-table-border: solid 1px #ddd;
760

    
761
// We use this to control the bottom margin of the pricing table
762
// $price-table-margin-bottom: emCalc(20px);
763

    
764
// We use these to control the title styles
765
// $price-title-bg: #ddd;
766
// $price-title-padding: emCalc(15px) emCalc(20px);
767
// $price-title-align: center;
768
// $price-title-color: #333;
769
// $price-title-weight: bold;
770
// $price-title-size: emCalc(16px);
771

    
772
// We use these to control the price styles
773
// $price-money-bg: #eee;
774
// $price-money-padding: emCalc(15px) emCalc(20px);
775
// $price-money-align: center;
776
// $price-money-color: #333;
777
// $price-money-weight: normal;
778
// $price-money-size: emCalc(20px);
779

    
780
// We use these to control the description styles
781
// $price-bg: #fff;
782
// $price-desc-color: #777;
783
// $price-desc-padding: emCalc(15px);
784
// $price-desc-align: center;
785
// $price-desc-font-size: emCalc(12px);
786
// $price-desc-weight: normal;
787
// $price-desc-line-height: 1.4;
788
// $price-desc-bottom-border: dotted 1px #ddd;
789

    
790
// We use these to control the list item styles
791
// $price-item-color: #333;
792
// $price-item-padding: emCalc(15px);
793
// $price-item-align: center;
794
// $price-item-font-size: emCalc(14px);
795
// $price-item-weight: normal;
796
// $price-item-bottom-border: dotted 1px #ddd;
797

    
798
// We use these to control the CTA area styles
799
// $price-cta-bg: #f5f5f5;
800
// $price-cta-align: center;
801
// $price-cta-padding: emCalc(20px) emCalc(20px) 0;
802

    
803
//
804
// Progress Bar Variables
805
//
806

    
807
// We use this to se the prog bar height
808
$progress-bar-height: emCalc(15px);
809
// $progress-bar-color: transparent;
810

    
811
// We use these to control the border styles
812
// $progress-bar-border-color: darken(#fff, 20%);
813
// $progress-bar-border-size: 1px;
814
// $progress-bar-border-style: solid;
815
// $progress-bar-border-radius: $global-radius;
816

    
817
// We use these to control the margin & padding
818
// $progress-bar-pad: emCalc(2px);
819
// $progress-bar-margin-bottom: emCalc(10px);
820

    
821
// We use these to set the meter colors
822
// $progress-meter-color: $primary-color;
823
// $progress-meter-secondary-color: $secondary-color;
824
// $progress-meter-success-color: $success-color;
825
// $progress-meter-alert-color: $alert-color;
826

    
827
// NEED TO FINISH THE LOGIC HERE
828

    
829
//
830
// Reveal Variables
831
//
832

    
833
// We use these to control the style of the reveal overlay.
834
$reveal-overlay-bg: rgba(#fff, .80);
835
// $reveal-overlay-bg-old: #000;
836

    
837
// We use these to control the style of the modal itself.
838
// $reveal-modal-bg: #fff;
839
// $reveal-position-top: 50px;
840
// $reveal-default-width: 80%;
841
$reveal-modal-padding: emCalc(50px) emCalc(100px) emCalc(20px);
842
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
843

    
844
// We use these to style the reveal close button
845
$reveal-close-font-size: emCalc(18px);
846
$reveal-close-top: emCalc(40px);
847
$reveal-close-side: emCalc(40px);
848
$reveal-close-color: #fff;
849
// $reveal-close-weight: bold;
850

    
851
// We use these to control the modal border
852
// $reveal-border-style: solid;
853
$reveal-border-width: 0px;
854
// $reveal-border-color: #666;
855

    
856
//
857
// Section Variables
858
//
859

    
860
// We use these to set padding and hover factor
861
// $section-padding: emCalc(15px);
862
// $section-function-factor: 10%;
863

    
864
// These style the titles
865
// $section-title-color: #333;
866
// $section-title-bg: #efefef;
867
// $section-title-bg-active: darken($section-title-bg, $section-function-factor);
868
// $section-title-bg-active-tabs: #fff;
869

    
870
// Want to control border size, here ya go!
871
// $section-border-size: 1px;
872
// $section-border-style: solid;
873
// $section-border-color: #ccc;
874

    
875
// Control the color of the background and some size options
876
// $section-content-bg: #fff;
877
// $section-vertical-nav-min-width: emCalc(200px);
878
// $section-bottom-margin: emCalc(20px);
879

    
880
//
881
// Side Nav Variables
882
//
883

    
884
// We use this to control padding.
885
// $side-nav-padding: emCalc(14px) 0;
886

    
887
// We use these to control list styles.
888
// $side-nav-list-type: none;
889
// $side-nav-list-position: inside;
890
// $side-nav-list-margin: 0 0 emCalc(7px) 0;
891

    
892
// We use these to control link styles.
893
// $side-nav-link-color: $primary-color;
894
// $side-nav-link-color-active: lighten(#000, 30%);
895
// $side-nav-font-size: emCalc(14px);
896
// $side-nav-font-weight: bold;
897

    
898
// We use these to control border styles
899
// $side-nav-divider-size: 1px;
900
// $side-nav-divider-style: solid;
901
// $side-nav-divider-color: darken(#fff, 10%);
902

    
903
//
904
// Sub Nav Variables
905
//
906

    
907
// We use these to control margin and padding
908
// $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
909
// $sub-nav-list-padding-top: emCalc(4px);
910

    
911
// We use this to control the definition
912
// $sub-nav-font-size: emCalc(14px);
913
// $sub-nav-font-color: #999;
914
// $sub-nav-font-weight: normal;
915
// $sub-nav-text-decoration: none;
916
// $sub-nav-border-radius: 1000px;
917

    
918
// We use these to control the active item styles
919
// $sub-nav-active-font-weight: bold;
920
// $sub-nav-active-bg: $primary-color;
921
// $sub-nav-active-color: #fff;
922
// $sub-nav-active-padding: emCalc(3px) emCalc(9px);
923
// $sub-nav-active-cursor: default;
924

    
925
//
926
// Switch Variables
927
//
928

    
929
// Controlling border styles and background colors for the switch container
930
// $switch-border-color: darken(#fff, 20%);
931
// $switch-border-style: solid;
932
// $switch-border-width: 1px;
933
// $switch-bg: #fff;
934

    
935
// We use these to control the switch heights for our default classes
936
// $switch-height-tny: 22px;
937
// $switch-height-sml: 28px;
938
// $switch-height-med: 36px;
939
// $switch-height-lrg: 44px;
940
// $switch-bottom-margin: emCalc(20px);
941

    
942
// We use these to control default font sizes for our classes.
943
// $switch-font-size-tny: 11px;
944
// $switch-font-size-sml: 12px;
945
// $switch-font-size-med: 14px;
946
// $switch-font-size-lrg: 17px;
947
// $switch-label-side-padding: 6px;
948

    
949
// We use these to style the switch-paddle
950
// $switch-paddle-bg: #fff;
951
// $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
952
// $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
953
// $switch-paddle-border-width: 1px;
954
// $switch-paddle-border-style: solid;
955
// $switch-paddle-transition-speed: .1s;
956
// $switch-paddle-transition-ease: ease-out;
957
// $switch-positive-color: lighten($success-color, 50%);
958
// $switch-negative-color: #f5f5f5;
959

    
960
// Outline Style for tabbing through switches
961
// $switch-label-outline: 1px dotted #888;
962

    
963
//
964
// Table Variables
965
//
966

    
967
// These control the background color for the table and even rows
968
// $table-bg: #fff;
969
// $table-even-row-bg: #f9f9f9;
970

    
971
// These control the table cell border style
972
// $table-border-style: solid;
973
// $table-border-size: 1px;
974
// $table-border-color: #ddd;
975

    
976
// These control the table head styles
977
// $table-head-bg: #f5f5f5;
978
// $table-head-font-size: emCalc(14px);
979
// $table-head-font-color: #222;
980
// $table-head-font-weight: bold;
981
// $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
982

    
983
// These control the row padding and font styles
984
// $table-row-padding: emCalc(9px) emCalc(10px);
985
// $table-row-font-size: emCalc(14px);
986
// $table-row-font-color: #222;
987
// $table-line-height: emCalc(18px);
988

    
989
// These are for controlling the display and margin of tables
990
// $table-display: table-cell;
991
// $table-margin-bottom: emCalc(20px);
992

    
993
//
994
// Image Thumbnail Variables
995
//
996

    
997
// We use these to control border styles
998
// $thumb-border-style: solid;
999
// $thumb-border-width: 4px;
1000
// $thumb-border-color: #fff;
1001
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
1002
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1003

    
1004
// Radius and transition speed for thumbs
1005
// $thumb-radius: $global-radius;
1006
// $thumb-transition-speed: 200ms;
1007

    
1008
//
1009
// Tooltip Variables
1010
//
1011
$has-tip-border-bottom: 0 none;
1012
// $has-tip-font-weight: bold;
1013
// $has-tip-font-color: #333;
1014
$has-tip-border-bottom-hover: none;
1015
// $has-tip-font-color-hover: $primary-color;
1016
$has-tip-cursor-type: inherit;
1017

    
1018
$tooltip-padding: emCalc(2px) emCalc(12px);
1019
$tooltip-bg: #cecece;
1020
$tooltip-font-size: emCalc(12px);
1021
$tooltip-font-weight: normal;
1022
$tooltip-font-color: $black;
1023
// $tooltip-line-height: 1.3;
1024
// $tooltip-close-font-size: emCalc(10px);
1025
// $tooltip-close-font-weight: normal;
1026
// $tooltip-close-font-color: #888;
1027
// $tooltip-font-size-sml: emCalc(14px);
1028
$tooltip-radius: 7px;
1029
$tooltip-pip-size: 0;
1030

    
1031
//
1032
// Top Bar Variables
1033
//
1034

    
1035
// Background color for the top bar
1036
// $topbar-bg: #111;
1037

    
1038
// Height and margin
1039
// $topbar-height: 45px;
1040
// $topbar-margin-bottom: emCalc(30px);
1041

    
1042
// Control Input height for top bar
1043
// $topbar-input-height: 2.45em;
1044

    
1045
// Controlling the styles for the title in the top bar
1046
// $topbar-title-weight: bold;
1047
// $topbar-title-font-size: emCalc(17px);
1048

    
1049
// Set the link colors and styles for top-level nav
1050
// $topbar-link-color: #fff;
1051
// $topbar-link-weight: bold;
1052
// $topbar-link-font-size: emCalc(13px);
1053

    
1054
// Style the top bar dropdown elements
1055
// $topbar-dropdown-bg: #333;
1056
// $topbar-dropdown-link-color: #fff;
1057
// $topbar-dropdown-toggle-size: 5px;
1058
// $topbar-dropdown-toggle-color: #fff;
1059
// $topbar-dropdown-toggle-alpha: 0.5;
1060
// $dropdown-label-color: #555;
1061

    
1062
// Top menu icon styles
1063
// $topbar-menu-link-transform: uppercase;
1064
// $topbar-menu-link-font-size: emCalc(13px);
1065
// $topbar-menu-link-weight: bold;
1066
// $topbar-menu-link-color: #fff;
1067
// $topbar-menu-icon-color: #fff;
1068
// $topbar-menu-link-color-toggled: #888;
1069
// $topbar-menu-icon-color-toggled: #888;
1070

    
1071
// Transitions and breakpoint styles
1072
// $topbar-transition-speed: 300ms;
1073
// $topbar-breakpoint: emCalc(940px); // Change to 9999px for always mobile layout
1074
// $topbar-media-query: "only screen and (min-width "#{$topbar-breakpoint}")";
1075

    
1076

    
1077
// Custom breakpoints
1078

    
1079
$entities-list-large: emCalc(1100px);
1080

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