Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (31.7 kB)

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

    
4
// Settings file to override Foundation variables
5

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

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

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

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

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

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

    
30
// We use these as default colors throughout
31
$primary-color: #919194;
32
$secondary-color: #3582AC;
33
$third-color: #30c79e;
34
$overlay-color: #485057;
35
$overlay-color-top:#636a70;
36
$black:#333;
37

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

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

    
48
//colors for main icons (icons of networks and vms)
49
$vm-active-color: #75c046;
50
$vm-stopped-color: #FF3366;
51
$network-color: #79c79e;
52

    
53

    
54
// wizard step3 colors
55
$ssh-opt-area-color: #ff7049;
56
$net-opt-area-color: #ff948c;
57
$tag-opt-area-color: #4c71ff;
58
$wizard-base-font-color: white;
59

    
60
// We use these to make sure border radius matches unless we want it different.
61
$global-radius: 1px;
62
// $global-rounded: 1000px;
63

    
64
// header settings
65
$header-height:70px;
66
$header-padding-vertical:emCalc(20px);
67
$header-padding-horizontal:emCalc(40px);
68

    
69
// icons nav settings
70
$icons-nav-margin-horizontal : emCalc(5px);
71

    
72
// bar options
73
$bar-height:60px;
74

    
75
// button options
76
$btn-height:30px;
77

    
78
// We use these to control inset shadow shiny edges and depressions.
79
// $shiny-edge-size: 0 1px 0;
80
// $shiny-edge-color: rgba(#fff, .5);
81
// $shiny-edge-active-color: rgba(#000, .2);
82

    
83
// We use this to control whether or not CSS classes come through in the gem files.
84
// $include-html-classes: true;
85
// $include-print-styles: true;
86

    
87
// Modular html classes
88
// $include-html-grid-classes: $include-html-classes;
89
// $include-html-visibility-classes: $include-html-classes;
90
// $include-html-button-classes: $include-html-classes;
91
// $include-html-form-classes: $include-html-classes;
92
// $include-html-media-classes: $include-html-classes;
93
// $include-html-section-classes: $include-html-classes;
94
// $include-html-reveal-classes: $include-html-classes;
95
// $include-html-alert-classes: $include-html-classes;
96
// $include-html-nav-classes: $include-html-classes;
97
// $include-html-label-classes: $include-html-classes;
98
// $include-html-panel-classes: $include-html-classes;
99
// $include-html-pricing-classes: $include-html-classes;
100
// $include-html-progress-classes: $include-html-classes;
101

    
102
//
103
// Grid Variables
104
//
105

    
106
$row-full-width:100%;
107
$row-width: emCalc(1200px);
108
$row-small: emCalc(600px);
109

    
110
$conf-area-h-width: emCalc(300px);
111
// $column-gutter: 1.875em;
112
// $total-columns: 12;
113

    
114
//
115
// Block Grid Variables
116
//
117

    
118
// We use this to control the maximum number of block grid elements per row
119
// $block-grid-elements: 12;
120
// $block-grid-default-spacing: 10px;
121

    
122
// Enables media queries for block-grid classes. Set to false if writing semantic HTML.
123
// $block-grid-media-queries: true;
124

    
125
//
126
// Typography Variables
127
//
128

    
129
$wizard-paragraph-font-size: 10px;
130
// We use these to control header font styles
131
$header-font-family: "Open Sans", "Helvetica", Helvetica, Arial, sans-serif;
132
// $header-font-weight: bold;
133
// $header-font-style: normal;
134
$header-font-color: $body-font-color;
135
// $header-line-height: 1.4;
136
// $header-top-margin: .2em;
137
// $header-bottom-margin: .5em;
138
// $header-text-rendering: optimizeLegibility;
139

    
140
// We use these to control header font sizes
141
// $h1-font-size: emCalc(44px);
142
// $h2-font-size: emCalc(37px);
143
// $h3-font-size: emCalc(27px);
144
// $h4-font-size: emCalc(23px);
145
// $h5-font-size: emCalc(18px);
146
// $h6-font-size: 1em;
147

    
148
// These control how subheaders are styled.
149
// $subheader-line-height: 1.4;
150
// $subheader-font-color: lighten($header-font-color, 30%);
151
// $subheader-font-weight: 300;
152
// $subheader-top-margin: .2em;
153
// $subheader-bottom-margin: .5em;
154

    
155
// A general <small> styling
156
// $small-font-size: 60%;
157
// $small-font-color: lighten($header-font-color, 30%);
158

    
159
// We use these to style paragraphs
160
// $paragraph-font-family: inherit;
161
// $paragraph-font-weight: normal;
162
// $paragraph-font-size: 1em;
163
// $paragraph-line-height: 1.6;
164
// $paragraph-margin-bottom: emCalc(20px);
165
// $paragraph-aside-font-size: emCalc(14px);
166
// $paragraph-aside-line-height: 1.35;
167
// $paragraph-aside-font-style: italic;
168

    
169
// We use these to style <code> tags
170
// $code-color: darken($alert-color, 15%);
171
// $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
172
// $code-font-weight: bold;
173

    
174
// We use these to style anchors
175
// $anchor-text-decoration: none;
176
// $anchor-font-color: $primary-color;
177
// $anchor-font-color-hover: darken($primary-color, 5%);
178

    
179
// We use these to style the <hr> element
180
// $hr-border-width: 1px;
181
// $hr-border-style: solid;
182
// $hr-border-color: #ddd;
183
// $hr-margin: emCalc(20px);
184

    
185
// We use these to style lists
186
// $list-style-position: outside;
187
// $list-side-margin: emCalc(18px);
188
// $definition-list-header-weight: bold;
189
// $definition-list-header-margin-bottom: .3em;
190
// $definition-list-margin-bottom: emCalc(12px);
191

    
192
// We use these to style blockquotes
193
// $blockquote-font-color: lighten($header-font-color, 30%);
194
// $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
195
// $blockquote-border: 1px solid #ddd;
196
// $blockquote-cite-font-size: emCalc(13px);
197
// $blockquote-cite-font-color: lighten($header-font-color, 20%);
198
// $blockquote-cite-link-color: $blockquote-cite-font-color;
199

    
200
// Acronym styles
201
// $acronym-underline: 1px dotted #ddd;
202

    
203
// We use these to control padding and margin
204
// $microformat-padding: emCalc(10px) emCalc(12px);
205
// $microformat-margin: 0 0 emCalc(20px) 0;
206

    
207
// We use these to control the border styles
208
// $microformat-border-width: 1px;
209
// $microformat-border-style: solid;
210
// $microformat-border-color: #ddd;
211

    
212
// We use these to control full name font styles
213
// $microformat-fullname-font-weight: bold;
214
// $microformat-fullname-font-size: emCalc(15px);
215

    
216
// We use this to control the summary font styles
217
// $microformat-summary-font-weight: bold;
218

    
219
// We use this to control abbr padding
220
// $microformat-abbr-padding: 0 emCalc(1px);
221

    
222
// We use this to control abbr font styles
223
// $microformat-abbr-font-weight: bold;
224
// $microformat-abbr-font-decoration: none;
225

    
226
//
227
// Form Variables
228
//
229

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

    
233
// We use these to style the labels in different ways
234
// $label-pointer: pointer;
235
// $label-font-size: emCalc(14px);
236
// $label-font-weight: 500;
237
// $label-font-color: lighten(#000, 30%);
238
// $label-bottom-margin: emCalc(3px);
239
// $input-font-family: inherit;
240
// $input-font-color: rgba(0,0,0,0.75);
241
// $input-font-size: emCalc(14px);
242
// $input-bg-color: #fff;
243
// $input-focus-bg-color: darken(#fff, 2%);
244
$input-border-color: $primary-color;
245
// $input-focus-border-color: darken(#fff, 40%);
246
// $input-border-style: solid;
247
// $input-border-width: 1px;
248
// $input-disabled-bg: #ddd;
249
// $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
250

    
251
// We use these to style the fieldset border and spacing.
252
// $fieldset-border-style: solid;
253
// $fieldset-border-width: 1px;
254
// $fieldset-border-color: #ddd;
255
// $fieldset-padding: emCalc(20px);
256
// $fieldset-margin: emCalc(18px) 0;
257

    
258
// We use these to style the legends when you use them
259
// $legend-bg: #fff;
260
// $legend-font-weight: bold;
261
// $legend-padding: 0 emCalc(3px);
262

    
263
// We use these to style the prefix and postfix input elements
264
// $input-prefix-bg: darken(#fff, 5%);
265
// $input-prefix-border-color: darken(#fff, 20%);
266
// $input-prefix-border-size: 1px;
267
// $input-prefix-border-type: solid;
268
// $input-prefix-overflow: hidden;
269
// $input-prefix-font-color: #333;
270
// $input-prefix-font-color-alt: #fff;
271

    
272
// We use these to style the error states for inputs and labels
273
// $input-error-message-padding: emCalc(6px) emCalc(4px);
274
// $input-error-message-top: -($form-spacing) - emCalc(5px);
275
// $input-error-message-font-size: emCalc(12px);
276
// $input-error-message-font-weight: bold;
277
// $input-error-message-font-color: #fff;
278
// $input-error-message-font-color-alt: #333;
279

    
280
// We use these to build padding for buttons.
281
// $button-med: emCalc(12px);
282
// $button-tny: emCalc(7px);
283
// $button-sml: emCalc(9px);
284
// $button-lrg: emCalc(16px);
285

    
286
// We use this to control the display property.
287
// $button-display: inline-block;
288
// $button-margin-bottom: emCalc(20px);
289

    
290
// We use these to control button text styles.
291
// $button-font-family: inherit;
292
// $button-font-color: #fff;
293
// $button-font-color-alt: #333;
294
// $button-font-med: emCalc(16px);
295
// $button-font-tny: emCalc(11px);
296
// $button-font-sml: emCalc(13px);
297
// $button-font-lrg: emCalc(20px);
298
// $button-font-weight: bold;
299
// $button-font-align: center;
300

    
301
// We use these to control various hover effects.
302
// $button-function-factor: 10%;
303

    
304
// We use these to control button border styles.
305
// $button-border-width: 1px;
306
// $button-border-style: solid;
307
// $button-border-color: darken($primary-color, $button-function-factor);
308

    
309
// We use this to set the default radius used throughout the core.
310
// $button-radius: $global-radius;
311

    
312
// We use this to set default opacity for disabled buttons.
313
// $button-disabled-opacity: 0.6;
314

    
315
//
316
// Dropdown Button Variables
317
//
318

    
319
// We use these to set the color of the pip in dropdown buttons
320
// $dropdown-button-pip-color: #fff;
321
// $dropdown-button-pip-color-alt: #333;
322

    
323
// We use these to style tiny dropdown buttons
324
// $dropdown-button-padding-tny: $button-tny * 5;
325
// $dropdown-button-pip-size-tny: $button-tny;
326
// $dropdown-button-pip-right-tny: $button-tny * 2;
327
// $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
328

    
329
// We use these to style small dropdown buttons
330
// $dropdown-button-padding-sml: $button-sml * 5;
331
// $dropdown-button-pip-size-sml: $button-sml;
332
// $dropdown-button-pip-right-sml: $button-sml * 2;
333
// $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
334

    
335
// We use these to style medium dropdown buttons
336
// $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
337
// $dropdown-button-pip-size-med: $button-med - emCalc(3px);
338
// $dropdown-button-pip-right-med: $button-med * 2;
339
// $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
340

    
341
// We use these to style large dropdown buttons
342
// $dropdown-button-padding-lrg: $button-lrg * 4;
343
// $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
344
// $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
345
// $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
346

    
347
//
348
// Split Button Variables
349
//
350

    
351
// We use these to control different shared styles for Split Buttons
352
// $split-button-function-factor: 15%;
353
// $split-button-pip-color: #fff;
354
// $split-button-pip-color-alt: #333;
355
// $split-button-active-bg-tint: rgba(0,0,0,0.1);
356

    
357
// We use these to control tiny split buttons
358
// $split-button-padding-tny: $button-tny * 9;
359
// $split-button-span-width-tny: $button-tny * 6.5;
360
// $split-button-pip-size-tny: $button-tny;
361
// $split-button-pip-top-tny: $button-tny * 2;
362
// $split-button-pip-left-tny: emCalc(-5px);
363

    
364
// We use these to control small split buttons
365
// $split-button-padding-sml: $button-sml * 7;
366
// $split-button-span-width-sml: $button-sml * 5;
367
// $split-button-pip-size-sml: $button-sml;
368
// $split-button-pip-top-sml: $button-sml * 1.5;
369
// $split-button-pip-left-sml: emCalc(-9px);
370

    
371
// We use these to control medium split buttons
372
// $split-button-padding-med: $button-med * 6.4;
373
// $split-button-span-width-med: $button-med * 4;
374
// $split-button-pip-size-med: $button-med - emCalc(3px);
375
// $split-button-pip-top-med: $button-med * 1.5;
376
// $split-button-pip-left-med: emCalc(-9px);
377

    
378
// We use these to control large split buttons
379
// $split-button-padding-lrg: $button-lrg * 6;
380
// $split-button-span-width-lrg: $button-lrg * 3.75;
381
// $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
382
// $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
383
// $split-button-pip-left-lrg: emCalc(-9px);
384

    
385
//
386
// Alert Variables
387
//
388

    
389
// We use this to control alert padding.
390
// $alert-padding-top: emCalc(11px);
391
// $alert-padding-left: $alert-padding-top;
392
// $alert-padding-right: $alert-padding-top + emCalc(10px);
393
// $alert-padding-bottom: $alert-padding-top + emCalc(1px);
394

    
395
// We use these to control text style.
396
// $alert-font-weight: bold;
397
// $alert-font-size: emCalc(14px);
398
// $alert-font-color: #fff;
399
// $alert-font-color-alt: darken($secondary-color, 60%);
400

    
401
// We use this for close hover effect.
402
// $alert-function-factor: 10%;
403

    
404
// We use these to control border styles.
405
// $alert-border-style: solid;
406
// $alert-border-width: 1px;
407
// $alert-border-color: darken($primary-color, $alert-function-factor);
408
// $alert-bottom-margin: emCalc(20px);
409

    
410
// We use these to style the close buttons
411
// $alert-close-color: #333;
412
// $alert-close-position: emCalc(5px);
413
// $alert-close-font-size: emCalc(22px);
414
// $alert-close-opacity: 0.3;
415
// $alert-close-opacity-hover: 0.5;
416
// $alert-close-padding: 5px 4px 4px;
417

    
418
// We use this to control border radius
419
// $alert-radius: $global-radius;
420

    
421
//
422
// Breadcrumb Variables
423
//
424

    
425
// We use this to set the background color for the breadcrumb container.
426
$crumb-bg: transparent;
427

    
428
// We use these to set the padding around the breadcrumbs.
429
$crumb-padding: 0 emCalc(14px) emCalc(9px);
430
// $crumb-side-padding: emCalc(12px);
431

    
432
// We use these to control border styles.
433
// $crumb-function-factor: 10%;
434
// $crumb-border-size: 1px;
435
// $crumb-border-style: solid;
436
$crumb-border-color: transparent;
437
// $crumb-radius: $global-radius;
438

    
439
// We use these to set various text styles for breadcrumbs.
440
$crumb-font-size: inherit;
441
// $crumb-font-color: $primary-color;
442
// $crumb-font-color-current: #333;
443
// $crumb-font-color-unavailable: #999;
444
$crumb-font-transform: none;
445
$crumb-link-decor: none;
446

    
447
// We use these to control the slash between breadcrumbs
448
// $crumb-slash-color: #aaa;
449
$crumb-slash: ">";
450

    
451
//
452
// Clearing Variables
453
//
454

    
455
// We use these to set the background colors for parts of Clearing.
456
// $clearing-bg: #111;
457
// $clearing-caption-bg: $clearing-bg;
458
// $clearing-carousel-bg: #111;
459
// $clearing-img-bg: $clearing-bg;
460

    
461
// We use these to style the close button
462
// $clearing-close-color: #fff;
463
// $clearing-close-size: 40px;
464

    
465
// We use these to style the arrows
466
// $clearing-arrow-size: 16px;
467
// $clearing-arrow-color: $clearing-close-color;
468

    
469
// We use these to style captions
470
// $clearing-caption-font-color: #fff;
471
// $clearing-caption-padding: 10px 30px;
472

    
473
// We use these to make the image and carousel height and style
474
// $clearing-active-img-height: 75%;
475
// $clearing-carousel-height: 150px;
476
// $clearing-carousel-thumb-width: 175px;
477
// $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
478

    
479
//
480
// Custom Form Variables
481
//
482

    
483
// We use these to control the basic form styles input styles
484
// $custom-form-border-color: #ccc;
485
// $custom-form-bg: #fff;
486
// $custom-form-bg-disabled: #ddd;
487
// $custom-form-check-color: #222;
488

    
489
// We use these to style the custom select form element.
490
// $custom-select-bg: #fff;
491
// $custom-select-fade-to-color: #f3f3f3;
492
// $custom-select-border-color: #ddd;
493
// $custom-select-triangle-color: #aaa;
494
// $custom-select-triangle-color-open: #222;
495
// $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
496
// $custom-select-margin-bottom: emCalc(20px);
497
// $custom-select-font-color-selected: #141414;
498
// $custom-select-disabled-color: #888;
499

    
500
// We use these to control the style of the custom select dropdown element.
501
// $custom-dropdown-height: 200px;
502
// $custom-dropdown-bg: #fff;
503
// $custom-dropdown-border-color: darken(#fff, 20%);
504
// $custom-dropdown-border-width: 1px;
505
// $custom-dropdown-border-style: solid;
506
// $custom-dropdown-font-color: #555;
507
// $custom-dropdown-font-size: emCalc(14px);
508
// $custom-dropdown-color-selected: #eeeeee;
509
// $custom-dropdown-font-color-selected: #000;
510
// $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
511
// $custom-dropdown-offset-top: none;
512
// $custom-dropdown-list-padding: emCalc(4px);
513
// $custom-dropdown-left-padding: emCalc(6px);
514
// $custom-dropdown-right-padding: emCalc(38px);
515
// $custom-dropdown-list-item-min-height: emCalc(24px);
516

    
517
//
518
// Dropdown Variables
519
//
520

    
521
// We use these to controls height and width styles.
522
// $f-dropdown-max-width: 200px;
523
// $f-dropdown-height: auto;
524
// $f-dropdown-max-height: none;
525
// $f-dropdown-margin-top: 2px;
526

    
527
// We use this to control the background color
528
// $f-dropdown-bg: #fff;
529

    
530
// We use this to set the border styles for dropdowns.
531
// $f-dropdown-border-style: solid;
532
// $f-dropdown-border-width: 1px;
533
// $f-dropdown-border-color: darken(#fff, 20%);
534

    
535
// We use these to style the triangle pip.
536
// $f-dropdown-triangle-size: 6px;
537
// $f-dropdown-triangle-color: #fff;
538
// $f-dropdown-triangle-side-offset: 10px;
539

    
540
// We use these to control styles for the list elements.
541
// $f-dropdown-list-style: none;
542
// $f-dropdown-font-color: #555;
543
// $f-dropdown-font-size: emCalc(14px);
544
// $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
545
// $f-dropdown-line-height: emCalc(18px);
546
// $f-dropdown-list-hover-bg: #eeeeee;
547
// $dropdown-mobile-left: 0;
548

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

    
552
//
553
// Flex Video Variables
554
//
555

    
556
// We use these to control video container padding and margins
557
// $flex-video-padding-top: emCalc(25px);
558
// $flex-video-padding-bottom: 67.5%;
559
// $flex-video-margin-bottom: emCalc(16px);
560

    
561
// We use this to control widescreen bottom padding
562
// $flex-video-widescreen-padding-bottom: 57.25%;
563

    
564
//
565
// Inline List Variables
566
//
567

    
568
// We use this to control the margins and padding of the inline list.
569
// $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
570
// $inline-list-margin: 0 0;
571
// $inline-list-padding: 0;
572

    
573
// We use this to control the overflow of the inline list.
574
// $inline-list-overflow: hidden;
575

    
576
// We use this to control the list items
577
// $inline-list-display: block;
578

    
579
// We use this to control any elments within list items
580
// $inline-list-children-display: block;
581

    
582
//
583
// Joyride Variables
584
//
585

    
586
// Controlling default Joyride styles
587
// $joyride-tip-bg: rgb(0,0,0);
588
// $joyride-tip-default-width: 300px;
589
// $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
590
// $joyride-tip-border: solid 1px #555;
591
// $joyride-tip-radius: 4px;
592
// $joyride-tip-position-offset: 22px;
593

    
594
// Here, we're setting the tip dont styles
595
// $joyride-tip-font-color: #fff;
596
// $joyride-tip-font-size: emCalc(14px);
597
// $joyride-tip-header-weight: bold;
598

    
599
// This changes the nub size
600
// $joyride-tip-nub-size: 14px;
601

    
602
// This adjusts the styles for the timer when its enabled
603
// $joyride-tip-timer-width: 50px;
604
// $joyride-tip-timer-height: 3px;
605
// $joyride-tip-timer-color: #666;
606

    
607
// This changes up the styles for the close button
608
// $joyride-tip-close-color: #777;
609
// $joyride-tip-close-size: 30px;
610
// $joyride-tip-close-weight: normal;
611

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

    
615
//
616
// Keystroke Variables
617
//
618

    
619
// We use these to control text styles.
620
// $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
621
// $keystroke-font-size: emCalc(15px);
622
// $keystroke-font-color: #222;
623
// $keystroke-font-color-alt: #fff;
624
// $keystroke-function-factor: 7%;
625

    
626
// We use this to control keystroke padding.
627
// $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
628

    
629
// We use these to control background and border styles.
630
// $keystroke-bg: darken(#fff, $keystroke-function-factor);
631
// $keystroke-border-style: solid;
632
// $keystroke-border-width: 1px;
633
// $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
634
// $keystroke-radius: $global-radius;
635

    
636
//
637
// Label Variables
638
//
639

    
640
// We use these to style the labels
641
// $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
642
// $label-radius: $global-radius;
643

    
644
// We use these to style the label text
645
// $label-font-sizing: emCalc(14px);
646
// $label-font-weight: bold;
647

    
648
//
649
// Orbit Settings
650
//
651

    
652
// We use these to control the caption styles
653
// $orbit-container-bg: #f5f5f5;
654
// $orbit-caption-bg-old-browser: #000;
655
// $orbit-caption-bg-old: rgb(0,0,0);
656
// $orbit-caption-bg: rgba(0,0,0,0.6);
657
// $orbit-caption-font-color: #fff;
658

    
659
// We use these to control the left/right nav styles
660
// $orbit-nav-bg-old: rgb(0,0,0);
661
// $orbit-nav-bg: rgba(0,0,0,0.6);
662

    
663
// We use these to control the timer styles
664
// $orbit-timer-bg-old: rgb(0,0,0);
665
// $orbit-timer-bg: rgba(0,0,0,0.6);
666

    
667
// We use these to control the bullet nav styles
668
// $orbit-bullet-nav-color: #999;
669
// $orbit-bullet-nav-color-active: #222;
670

    
671
// We use thes to controls the style of slide numbers
672
// $orbit-slide-number-bg: rgb(0,0,0);
673
// $orbit-slide-number-font-color: #fff;
674
// $orbit-slide-number-padding: emCalc(5px);
675

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

    
679
//
680
// Pagination Variables
681
//
682

    
683
// We use these to control the pagination container
684
// $pagination-height: emCalc(24px);
685
// $pagination-margin: emCalc(-5px);
686

    
687
// We use these to set the list-item properties
688
// $pagination-li-float: $default-float;
689
// $pagination-li-height: emCalc(24px);
690
// $pagination-li-font-color: #222;
691
// $pagination-li-font-size: emCalc(14px);
692
// $pagination-li-margin: emCalc(5px);
693

    
694
// We use these for the pagination anchor links
695
// $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
696
// $pagination-link-font-color: #999;
697
// $pagination-link-active-bg: darken(#fff, 10%);
698

    
699
// We use these for disabled anchor links
700
// $pagination-link-unavailable-cursor: default;
701
// $pagination-link-unavailable-font-color: #999;
702
// $pagination-link-unavailable-bg-active: transparent;
703

    
704
// We use these for currently selected anchor links
705
// $pagination-link-current-background: $primary-color;
706
// $pagination-link-current-font-color: #fff;
707
// $pagination-link-current-font-weight: bold;
708
// $pagination-link-current-cursor: default;
709
// $pagination-link-current-active-bg: $primary-color;
710

    
711
//
712
// Panel Variables
713
//
714

    
715
// We use these to control the background and border styles
716
// $panel-bg: darken(#fff, 5%);
717
// $panel-border-style: solid;
718
// $panel-border-size: 1px;
719

    
720
// We use this % to control how much we darken things on hover
721
// $panel-function-factor: 10%;
722
// $panel-border-color: darken($panel-bg, $panel-function-factor);
723

    
724
// We use these to set default inner padding and bottom margin
725
// $panel-margin-bottom: emCalc(20px);
726
// $panel-padding: emCalc(20px);
727

    
728
// We use these to set default font colors
729
// $panel-font-color: #333;
730
// $panel-font-color-alt: #fff;
731

    
732
//
733
// Pricing Table Variables
734
//
735

    
736
// We use this to control the border color
737
// $price-table-border: solid 1px #ddd;
738

    
739
// We use this to control the bottom margin of the pricing table
740
// $price-table-margin-bottom: emCalc(20px);
741

    
742
// We use these to control the title styles
743
// $price-title-bg: #ddd;
744
// $price-title-padding: emCalc(15px) emCalc(20px);
745
// $price-title-align: center;
746
// $price-title-color: #333;
747
// $price-title-weight: bold;
748
// $price-title-size: emCalc(16px);
749

    
750
// We use these to control the price styles
751
// $price-money-bg: #eee;
752
// $price-money-padding: emCalc(15px) emCalc(20px);
753
// $price-money-align: center;
754
// $price-money-color: #333;
755
// $price-money-weight: normal;
756
// $price-money-size: emCalc(20px);
757

    
758
// We use these to control the description styles
759
// $price-bg: #fff;
760
// $price-desc-color: #777;
761
// $price-desc-padding: emCalc(15px);
762
// $price-desc-align: center;
763
// $price-desc-font-size: emCalc(12px);
764
// $price-desc-weight: normal;
765
// $price-desc-line-height: 1.4;
766
// $price-desc-bottom-border: dotted 1px #ddd;
767

    
768
// We use these to control the list item styles
769
// $price-item-color: #333;
770
// $price-item-padding: emCalc(15px);
771
// $price-item-align: center;
772
// $price-item-font-size: emCalc(14px);
773
// $price-item-weight: normal;
774
// $price-item-bottom-border: dotted 1px #ddd;
775

    
776
// We use these to control the CTA area styles
777
// $price-cta-bg: #f5f5f5;
778
// $price-cta-align: center;
779
// $price-cta-padding: emCalc(20px) emCalc(20px) 0;
780

    
781
//
782
// Progress Bar Variables
783
//
784

    
785
// We use this to se the prog bar height
786
$progress-bar-height: emCalc(15px);
787
// $progress-bar-color: transparent;
788

    
789
// We use these to control the border styles
790
// $progress-bar-border-color: darken(#fff, 20%);
791
// $progress-bar-border-size: 1px;
792
// $progress-bar-border-style: solid;
793
// $progress-bar-border-radius: $global-radius;
794

    
795
// We use these to control the margin & padding
796
// $progress-bar-pad: emCalc(2px);
797
// $progress-bar-margin-bottom: emCalc(10px);
798

    
799
// We use these to set the meter colors
800
// $progress-meter-color: $primary-color;
801
// $progress-meter-secondary-color: $secondary-color;
802
// $progress-meter-success-color: $success-color;
803
// $progress-meter-alert-color: $alert-color;
804

    
805
// NEED TO FINISH THE LOGIC HERE
806

    
807
//
808
// Reveal Variables
809
//
810

    
811
// We use these to control the style of the reveal overlay.
812
$reveal-overlay-bg: rgba(#000, .80);
813
// $reveal-overlay-bg-old: #000;
814

    
815
// We use these to control the style of the modal itself.
816
// $reveal-modal-bg: #fff;
817
// $reveal-position-top: 50px;
818
// $reveal-default-width: 80%;
819
// $reveal-modal-padding: emCalc(20px);
820
// $reveal-box-shadow: 0 0 10px rgba(#000,.4);
821

    
822
// We use these to style the reveal close button
823
// $reveal-close-font-size: emCalc(22px);
824
// $reveal-close-top: emCalc(8px);
825
// $reveal-close-side: emCalc(11px);
826
// $reveal-close-color: #aaa;
827
// $reveal-close-weight: bold;
828

    
829
// We use these to control the modal border
830
// $reveal-border-style: solid;
831
// $reveal-border-width: 1px;
832
// $reveal-border-color: #666;
833

    
834
//
835
// Section Variables
836
//
837

    
838
// We use these to set padding and hover factor
839
// $section-padding: emCalc(15px);
840
// $section-function-factor: 10%;
841

    
842
// These style the titles
843
// $section-title-color: #333;
844
// $section-title-bg: #efefef;
845
// $section-title-bg-active: darken($section-title-bg, $section-function-factor);
846
// $section-title-bg-active-tabs: #fff;
847

    
848
// Want to control border size, here ya go!
849
// $section-border-size: 1px;
850
// $section-border-style: solid;
851
// $section-border-color: #ccc;
852

    
853
// Control the color of the background and some size options
854
// $section-content-bg: #fff;
855
// $section-vertical-nav-min-width: emCalc(200px);
856
// $section-bottom-margin: emCalc(20px);
857

    
858
//
859
// Side Nav Variables
860
//
861

    
862
// We use this to control padding.
863
// $side-nav-padding: emCalc(14px) 0;
864

    
865
// We use these to control list styles.
866
// $side-nav-list-type: none;
867
// $side-nav-list-position: inside;
868
// $side-nav-list-margin: 0 0 emCalc(7px) 0;
869

    
870
// We use these to control link styles.
871
// $side-nav-link-color: $primary-color;
872
// $side-nav-link-color-active: lighten(#000, 30%);
873
// $side-nav-font-size: emCalc(14px);
874
// $side-nav-font-weight: bold;
875

    
876
// We use these to control border styles
877
// $side-nav-divider-size: 1px;
878
// $side-nav-divider-style: solid;
879
// $side-nav-divider-color: darken(#fff, 10%);
880

    
881
//
882
// Sub Nav Variables
883
//
884

    
885
// We use these to control margin and padding
886
// $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
887
// $sub-nav-list-padding-top: emCalc(4px);
888

    
889
// We use this to control the definition
890
// $sub-nav-font-size: emCalc(14px);
891
// $sub-nav-font-color: #999;
892
// $sub-nav-font-weight: normal;
893
// $sub-nav-text-decoration: none;
894
// $sub-nav-border-radius: 1000px;
895

    
896
// We use these to control the active item styles
897
// $sub-nav-active-font-weight: bold;
898
// $sub-nav-active-bg: $primary-color;
899
// $sub-nav-active-color: #fff;
900
// $sub-nav-active-padding: emCalc(3px) emCalc(9px);
901
// $sub-nav-active-cursor: default;
902

    
903
//
904
// Switch Variables
905
//
906

    
907
// Controlling border styles and background colors for the switch container
908
// $switch-border-color: darken(#fff, 20%);
909
// $switch-border-style: solid;
910
// $switch-border-width: 1px;
911
// $switch-bg: #fff;
912

    
913
// We use these to control the switch heights for our default classes
914
// $switch-height-tny: 22px;
915
// $switch-height-sml: 28px;
916
// $switch-height-med: 36px;
917
// $switch-height-lrg: 44px;
918
// $switch-bottom-margin: emCalc(20px);
919

    
920
// We use these to control default font sizes for our classes.
921
// $switch-font-size-tny: 11px;
922
// $switch-font-size-sml: 12px;
923
// $switch-font-size-med: 14px;
924
// $switch-font-size-lrg: 17px;
925
// $switch-label-side-padding: 6px;
926

    
927
// We use these to style the switch-paddle
928
// $switch-paddle-bg: #fff;
929
// $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
930
// $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
931
// $switch-paddle-border-width: 1px;
932
// $switch-paddle-border-style: solid;
933
// $switch-paddle-transition-speed: .1s;
934
// $switch-paddle-transition-ease: ease-out;
935
// $switch-positive-color: lighten($success-color, 50%);
936
// $switch-negative-color: #f5f5f5;
937

    
938
// Outline Style for tabbing through switches
939
// $switch-label-outline: 1px dotted #888;
940

    
941
//
942
// Table Variables
943
//
944

    
945
// These control the background color for the table and even rows
946
// $table-bg: #fff;
947
// $table-even-row-bg: #f9f9f9;
948

    
949
// These control the table cell border style
950
// $table-border-style: solid;
951
// $table-border-size: 1px;
952
// $table-border-color: #ddd;
953

    
954
// These control the table head styles
955
// $table-head-bg: #f5f5f5;
956
// $table-head-font-size: emCalc(14px);
957
// $table-head-font-color: #222;
958
// $table-head-font-weight: bold;
959
// $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
960

    
961
// These control the row padding and font styles
962
// $table-row-padding: emCalc(9px) emCalc(10px);
963
// $table-row-font-size: emCalc(14px);
964
// $table-row-font-color: #222;
965
// $table-line-height: emCalc(18px);
966

    
967
// These are for controlling the display and margin of tables
968
// $table-display: table-cell;
969
// $table-margin-bottom: emCalc(20px);
970

    
971
//
972
// Image Thumbnail Variables
973
//
974

    
975
// We use these to control border styles
976
// $thumb-border-style: solid;
977
// $thumb-border-width: 4px;
978
// $thumb-border-color: #fff;
979
// $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
980
// $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
981

    
982
// Radius and transition speed for thumbs
983
// $thumb-radius: $global-radius;
984
// $thumb-transition-speed: 200ms;
985

    
986
//
987
// Tooltip Variables
988
//
989
$has-tip-border-bottom: 0 none;
990
// $has-tip-font-weight: bold;
991
// $has-tip-font-color: #333;
992
$has-tip-border-bottom-hover: none;
993
// $has-tip-font-color-hover: $primary-color;
994
$has-tip-cursor-type: inherit;
995

    
996
$tooltip-padding: emCalc(4px) emCalc(10px);
997
$tooltip-bg: $black;
998
// $tooltip-font-size: emCalc(15px);
999
$tooltip-font-weight: normal;
1000
// $tooltip-font-color: #fff;
1001
// $tooltip-line-height: 1.3;
1002
// $tooltip-close-font-size: emCalc(10px);
1003
// $tooltip-close-font-weight: normal;
1004
// $tooltip-close-font-color: #888;
1005
// $tooltip-font-size-sml: emCalc(14px);
1006
// $tooltip-radius: $global-radius;
1007
// $tooltip-pip-size: 5px;
1008

    
1009
//
1010
// Top Bar Variables
1011
//
1012

    
1013
// Background color for the top bar
1014
// $topbar-bg: #111;
1015

    
1016
// Height and margin
1017
// $topbar-height: 45px;
1018
// $topbar-margin-bottom: emCalc(30px);
1019

    
1020
// Control Input height for top bar
1021
// $topbar-input-height: 2.45em;
1022

    
1023
// Controlling the styles for the title in the top bar
1024
// $topbar-title-weight: bold;
1025
// $topbar-title-font-size: emCalc(17px);
1026

    
1027
// Set the link colors and styles for top-level nav
1028
// $topbar-link-color: #fff;
1029
// $topbar-link-weight: bold;
1030
// $topbar-link-font-size: emCalc(13px);
1031

    
1032
// Style the top bar dropdown elements
1033
// $topbar-dropdown-bg: #333;
1034
// $topbar-dropdown-link-color: #fff;
1035
// $topbar-dropdown-toggle-size: 5px;
1036
// $topbar-dropdown-toggle-color: #fff;
1037
// $topbar-dropdown-toggle-alpha: 0.5;
1038
// $dropdown-label-color: #555;
1039

    
1040
// Top menu icon styles
1041
// $topbar-menu-link-transform: uppercase;
1042
// $topbar-menu-link-font-size: emCalc(13px);
1043
// $topbar-menu-link-weight: bold;
1044
// $topbar-menu-link-color: #fff;
1045
// $topbar-menu-icon-color: #fff;
1046
// $topbar-menu-link-color-toggled: #888;
1047
// $topbar-menu-icon-color-toggled: #888;
1048

    
1049
// Transitions and breakpoint styles
1050
// $topbar-transition-speed: 300ms;
1051
// $topbar-breakpoint: emCalc(940px); // Change to 9999px for always mobile layout
1052
// $topbar-media-query: "only screen and (min-width "#{$topbar-breakpoint}")";
1053

    
1054

    
1055
// Custom breakpoints
1056

    
1057
$entities-list-large: emCalc(1100px);
1058

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