Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (31.8 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: #919194;
33
$third-color: #30c79e;
34
$overlay-color: #485057;
35
$overlay-color-top:#636a70;
36
$overlay-darker-color:#33383D;
37
$black:#333;
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: #75c046;
51
$vm-stopped-color: #FF3366;
52
$network-color: #79c79e;
53

    
54

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

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

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

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

    
74
// bar options
75
$bar-height:60px;
76

    
77
// button options
78
$btn-height:30px;
79

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

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

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

    
104
//
105
// Grid Variables
106
//
107

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

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

    
116
//
117
// Block Grid Variables
118
//
119

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

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

    
127
$small-mobile:emCalc(480px);
128

    
129
//
130
// Typography Variables
131
//
132

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

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

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

    
159
// A general <small> styling
160
// $small-font-size: 60%;
161
// $small-font-color: lighten($header-font-color, 30%);
162

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

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

    
178
// We use these to style anchors
179
// $anchor-text-decoration: none;
180
// $anchor-font-color: $primary-color;
181
// $anchor-font-color-hover: darken($primary-color, 5%);
182

    
183
// We use these to style the <hr> element
184
// $hr-border-width: 1px;
185
// $hr-border-style: solid;
186
// $hr-border-color: #ddd;
187
// $hr-margin: emCalc(20px);
188

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

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

    
204
// Acronym styles
205
// $acronym-underline: 1px dotted #ddd;
206

    
207
// We use these to control padding and margin
208
// $microformat-padding: emCalc(10px) emCalc(12px);
209
// $microformat-margin: 0 0 emCalc(20px) 0;
210

    
211
// We use these to control the border styles
212
// $microformat-border-width: 1px;
213
// $microformat-border-style: solid;
214
// $microformat-border-color: #ddd;
215

    
216
// We use these to control full name font styles
217
// $microformat-fullname-font-weight: bold;
218
// $microformat-fullname-font-size: emCalc(15px);
219

    
220
// We use this to control the summary font styles
221
// $microformat-summary-font-weight: bold;
222

    
223
// We use this to control abbr padding
224
// $microformat-abbr-padding: 0 emCalc(1px);
225

    
226
// We use this to control abbr font styles
227
// $microformat-abbr-font-weight: bold;
228
// $microformat-abbr-font-decoration: none;
229

    
230
//
231
// Form Variables
232
//
233

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

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

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

    
262
// We use these to style the legends when you use them
263
// $legend-bg: #fff;
264
// $legend-font-weight: bold;
265
// $legend-padding: 0 emCalc(3px);
266

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

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

    
284
// We use these to build padding for buttons.
285
// $button-med: emCalc(12px);
286
// $button-tny: emCalc(7px);
287
// $button-sml: emCalc(9px);
288
// $button-lrg: emCalc(16px);
289

    
290
// We use this to control the display property.
291
// $button-display: inline-block;
292
// $button-margin-bottom: emCalc(20px);
293

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

    
305
// We use these to control various hover effects.
306
// $button-function-factor: 10%;
307

    
308
// We use these to control button border styles.
309
// $button-border-width: 1px;
310
// $button-border-style: solid;
311
// $button-border-color: darken($primary-color, $button-function-factor);
312

    
313
// We use this to set the default radius used throughout the core.
314
// $button-radius: $global-radius;
315

    
316
// We use this to set default opacity for disabled buttons.
317
// $button-disabled-opacity: 0.6;
318

    
319
//
320
// Dropdown Button Variables
321
//
322

    
323
// We use these to set the color of the pip in dropdown buttons
324
// $dropdown-button-pip-color: #fff;
325
// $dropdown-button-pip-color-alt: #333;
326

    
327
// We use these to style tiny dropdown buttons
328
// $dropdown-button-padding-tny: $button-tny * 5;
329
// $dropdown-button-pip-size-tny: $button-tny;
330
// $dropdown-button-pip-right-tny: $button-tny * 2;
331
// $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
332

    
333
// We use these to style small dropdown buttons
334
// $dropdown-button-padding-sml: $button-sml * 5;
335
// $dropdown-button-pip-size-sml: $button-sml;
336
// $dropdown-button-pip-right-sml: $button-sml * 2;
337
// $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
338

    
339
// We use these to style medium dropdown buttons
340
// $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
341
// $dropdown-button-pip-size-med: $button-med - emCalc(3px);
342
// $dropdown-button-pip-right-med: $button-med * 2;
343
// $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
344

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

    
351
//
352
// Split Button Variables
353
//
354

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

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

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

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

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

    
389
//
390
// Alert Variables
391
//
392

    
393
// We use this to control alert padding.
394
// $alert-padding-top: emCalc(11px);
395
// $alert-padding-left: $alert-padding-top;
396
// $alert-padding-right: $alert-padding-top + emCalc(10px);
397
// $alert-padding-bottom: $alert-padding-top + emCalc(1px);
398

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

    
405
// We use this for close hover effect.
406
// $alert-function-factor: 10%;
407

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

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

    
422
// We use this to control border radius
423
// $alert-radius: $global-radius;
424

    
425
//
426
// Breadcrumb Variables
427
//
428

    
429
// We use this to set the background color for the breadcrumb container.
430
$crumb-bg: transparent;
431

    
432
// We use these to set the padding around the breadcrumbs.
433
$crumb-padding: 0 emCalc(14px) emCalc(9px);
434
// $crumb-side-padding: emCalc(12px);
435

    
436
// We use these to control border styles.
437
// $crumb-function-factor: 10%;
438
// $crumb-border-size: 1px;
439
// $crumb-border-style: solid;
440
$crumb-border-color: transparent;
441
// $crumb-radius: $global-radius;
442

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

    
451
// We use these to control the slash between breadcrumbs
452
// $crumb-slash-color: #aaa;
453
$crumb-slash: ">";
454

    
455
//
456
// Clearing Variables
457
//
458

    
459
// We use these to set the background colors for parts of Clearing.
460
// $clearing-bg: #111;
461
// $clearing-caption-bg: $clearing-bg;
462
// $clearing-carousel-bg: #111;
463
// $clearing-img-bg: $clearing-bg;
464

    
465
// We use these to style the close button
466
// $clearing-close-color: #fff;
467
// $clearing-close-size: 40px;
468

    
469
// We use these to style the arrows
470
// $clearing-arrow-size: 16px;
471
// $clearing-arrow-color: $clearing-close-color;
472

    
473
// We use these to style captions
474
// $clearing-caption-font-color: #fff;
475
// $clearing-caption-padding: 10px 30px;
476

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

    
483
//
484
// Custom Form Variables
485
//
486

    
487
// We use these to control the basic form styles input styles
488
// $custom-form-border-color: #ccc;
489
// $custom-form-bg: #fff;
490
// $custom-form-bg-disabled: #ddd;
491
// $custom-form-check-color: #222;
492

    
493
// We use these to style the custom select form element.
494
$custom-select-bg: $overlay-color;
495
$custom-select-fade-to-color: $overlay-color;
496
$custom-select-border-color: white;
497
$custom-select-triangle-color: white;
498
$custom-select-triangle-color-open: white;
499
// $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
500
// $custom-select-margin-bottom: emCalc(20px);
501
// $custom-select-font-color-selected: #141414;
502
// $custom-select-disabled-color: #888;
503

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

    
521
//
522
// Dropdown Variables
523
//
524

    
525
// We use these to controls height and width styles.
526
// $f-dropdown-max-width: 200px;
527
// $f-dropdown-height: auto;
528
// $f-dropdown-max-height: none;
529
// $f-dropdown-margin-top: 2px;
530

    
531
// We use this to control the background color
532
// $f-dropdown-bg: #fff;
533

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

    
539
// We use these to style the triangle pip.
540
// $f-dropdown-triangle-size: 6px;
541
// $f-dropdown-triangle-color: #fff;
542
// $f-dropdown-triangle-side-offset: 10px;
543

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

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

    
556
//
557
// Flex Video Variables
558
//
559

    
560
// We use these to control video container padding and margins
561
// $flex-video-padding-top: emCalc(25px);
562
// $flex-video-padding-bottom: 67.5%;
563
// $flex-video-margin-bottom: emCalc(16px);
564

    
565
// We use this to control widescreen bottom padding
566
// $flex-video-widescreen-padding-bottom: 57.25%;
567

    
568
//
569
// Inline List Variables
570
//
571

    
572
// We use this to control the margins and padding of the inline list.
573
// $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
574
// $inline-list-margin: 0 0;
575
// $inline-list-padding: 0;
576

    
577
// We use this to control the overflow of the inline list.
578
// $inline-list-overflow: hidden;
579

    
580
// We use this to control the list items
581
// $inline-list-display: block;
582

    
583
// We use this to control any elments within list items
584
// $inline-list-children-display: block;
585

    
586
//
587
// Joyride Variables
588
//
589

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

    
598
// Here, we're setting the tip dont styles
599
// $joyride-tip-font-color: #fff;
600
// $joyride-tip-font-size: emCalc(14px);
601
// $joyride-tip-header-weight: bold;
602

    
603
// This changes the nub size
604
// $joyride-tip-nub-size: 14px;
605

    
606
// This adjusts the styles for the timer when its enabled
607
// $joyride-tip-timer-width: 50px;
608
// $joyride-tip-timer-height: 3px;
609
// $joyride-tip-timer-color: #666;
610

    
611
// This changes up the styles for the close button
612
// $joyride-tip-close-color: #777;
613
// $joyride-tip-close-size: 30px;
614
// $joyride-tip-close-weight: normal;
615

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

    
619
//
620
// Keystroke Variables
621
//
622

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

    
630
// We use this to control keystroke padding.
631
// $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
632

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

    
640
//
641
// Label Variables
642
//
643

    
644
// We use these to style the labels
645
// $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
646
// $label-radius: $global-radius;
647

    
648
// We use these to style the label text
649
// $label-font-sizing: emCalc(14px);
650
// $label-font-weight: bold;
651

    
652
//
653
// Orbit Settings
654
//
655

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

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

    
667
// We use these to control the timer styles
668
// $orbit-timer-bg-old: rgb(0,0,0);
669
// $orbit-timer-bg: rgba(0,0,0,0.6);
670

    
671
// We use these to control the bullet nav styles
672
// $orbit-bullet-nav-color: #999;
673
// $orbit-bullet-nav-color-active: #222;
674

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

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

    
683
//
684
// Pagination Variables
685
//
686

    
687
// We use these to control the pagination container
688
// $pagination-height: emCalc(24px);
689
// $pagination-margin: emCalc(-5px);
690

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

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

    
703
// We use these for disabled anchor links
704
// $pagination-link-unavailable-cursor: default;
705
// $pagination-link-unavailable-font-color: #999;
706
// $pagination-link-unavailable-bg-active: transparent;
707

    
708
// We use these for currently selected anchor links
709
// $pagination-link-current-background: $primary-color;
710
// $pagination-link-current-font-color: #fff;
711
// $pagination-link-current-font-weight: bold;
712
// $pagination-link-current-cursor: default;
713
// $pagination-link-current-active-bg: $primary-color;
714

    
715
//
716
// Panel Variables
717
//
718

    
719
// We use these to control the background and border styles
720
// $panel-bg: darken(#fff, 5%);
721
// $panel-border-style: solid;
722
// $panel-border-size: 1px;
723

    
724
// We use this % to control how much we darken things on hover
725
// $panel-function-factor: 10%;
726
// $panel-border-color: darken($panel-bg, $panel-function-factor);
727

    
728
// We use these to set default inner padding and bottom margin
729
// $panel-margin-bottom: emCalc(20px);
730
// $panel-padding: emCalc(20px);
731

    
732
// We use these to set default font colors
733
// $panel-font-color: #333;
734
// $panel-font-color-alt: #fff;
735

    
736
//
737
// Pricing Table Variables
738
//
739

    
740
// We use this to control the border color
741
// $price-table-border: solid 1px #ddd;
742

    
743
// We use this to control the bottom margin of the pricing table
744
// $price-table-margin-bottom: emCalc(20px);
745

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

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

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

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

    
780
// We use these to control the CTA area styles
781
// $price-cta-bg: #f5f5f5;
782
// $price-cta-align: center;
783
// $price-cta-padding: emCalc(20px) emCalc(20px) 0;
784

    
785
//
786
// Progress Bar Variables
787
//
788

    
789
// We use this to se the prog bar height
790
$progress-bar-height: emCalc(15px);
791
// $progress-bar-color: transparent;
792

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

    
799
// We use these to control the margin & padding
800
// $progress-bar-pad: emCalc(2px);
801
// $progress-bar-margin-bottom: emCalc(10px);
802

    
803
// We use these to set the meter colors
804
// $progress-meter-color: $primary-color;
805
// $progress-meter-secondary-color: $secondary-color;
806
// $progress-meter-success-color: $success-color;
807
// $progress-meter-alert-color: $alert-color;
808

    
809
// NEED TO FINISH THE LOGIC HERE
810

    
811
//
812
// Reveal Variables
813
//
814

    
815
// We use these to control the style of the reveal overlay.
816
$reveal-overlay-bg: rgba(#000, .80);
817
// $reveal-overlay-bg-old: #000;
818

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

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

    
833
// We use these to control the modal border
834
// $reveal-border-style: solid;
835
// $reveal-border-width: 1px;
836
// $reveal-border-color: #666;
837

    
838
//
839
// Section Variables
840
//
841

    
842
// We use these to set padding and hover factor
843
// $section-padding: emCalc(15px);
844
// $section-function-factor: 10%;
845

    
846
// These style the titles
847
// $section-title-color: #333;
848
// $section-title-bg: #efefef;
849
// $section-title-bg-active: darken($section-title-bg, $section-function-factor);
850
// $section-title-bg-active-tabs: #fff;
851

    
852
// Want to control border size, here ya go!
853
// $section-border-size: 1px;
854
// $section-border-style: solid;
855
// $section-border-color: #ccc;
856

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

    
862
//
863
// Side Nav Variables
864
//
865

    
866
// We use this to control padding.
867
// $side-nav-padding: emCalc(14px) 0;
868

    
869
// We use these to control list styles.
870
// $side-nav-list-type: none;
871
// $side-nav-list-position: inside;
872
// $side-nav-list-margin: 0 0 emCalc(7px) 0;
873

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

    
880
// We use these to control border styles
881
// $side-nav-divider-size: 1px;
882
// $side-nav-divider-style: solid;
883
// $side-nav-divider-color: darken(#fff, 10%);
884

    
885
//
886
// Sub Nav Variables
887
//
888

    
889
// We use these to control margin and padding
890
// $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
891
// $sub-nav-list-padding-top: emCalc(4px);
892

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

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

    
907
//
908
// Switch Variables
909
//
910

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

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

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

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

    
942
// Outline Style for tabbing through switches
943
// $switch-label-outline: 1px dotted #888;
944

    
945
//
946
// Table Variables
947
//
948

    
949
// These control the background color for the table and even rows
950
// $table-bg: #fff;
951
// $table-even-row-bg: #f9f9f9;
952

    
953
// These control the table cell border style
954
// $table-border-style: solid;
955
// $table-border-size: 1px;
956
// $table-border-color: #ddd;
957

    
958
// These control the table head styles
959
// $table-head-bg: #f5f5f5;
960
// $table-head-font-size: emCalc(14px);
961
// $table-head-font-color: #222;
962
// $table-head-font-weight: bold;
963
// $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
964

    
965
// These control the row padding and font styles
966
// $table-row-padding: emCalc(9px) emCalc(10px);
967
// $table-row-font-size: emCalc(14px);
968
// $table-row-font-color: #222;
969
// $table-line-height: emCalc(18px);
970

    
971
// These are for controlling the display and margin of tables
972
// $table-display: table-cell;
973
// $table-margin-bottom: emCalc(20px);
974

    
975
//
976
// Image Thumbnail Variables
977
//
978

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

    
986
// Radius and transition speed for thumbs
987
// $thumb-radius: $global-radius;
988
// $thumb-transition-speed: 200ms;
989

    
990
//
991
// Tooltip Variables
992
//
993
$has-tip-border-bottom: 0 none;
994
// $has-tip-font-weight: bold;
995
// $has-tip-font-color: #333;
996
$has-tip-border-bottom-hover: none;
997
// $has-tip-font-color-hover: $primary-color;
998
$has-tip-cursor-type: inherit;
999

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

    
1013
//
1014
// Top Bar Variables
1015
//
1016

    
1017
// Background color for the top bar
1018
// $topbar-bg: #111;
1019

    
1020
// Height and margin
1021
// $topbar-height: 45px;
1022
// $topbar-margin-bottom: emCalc(30px);
1023

    
1024
// Control Input height for top bar
1025
// $topbar-input-height: 2.45em;
1026

    
1027
// Controlling the styles for the title in the top bar
1028
// $topbar-title-weight: bold;
1029
// $topbar-title-font-size: emCalc(17px);
1030

    
1031
// Set the link colors and styles for top-level nav
1032
// $topbar-link-color: #fff;
1033
// $topbar-link-weight: bold;
1034
// $topbar-link-font-size: emCalc(13px);
1035

    
1036
// Style the top bar dropdown elements
1037
// $topbar-dropdown-bg: #333;
1038
// $topbar-dropdown-link-color: #fff;
1039
// $topbar-dropdown-toggle-size: 5px;
1040
// $topbar-dropdown-toggle-color: #fff;
1041
// $topbar-dropdown-toggle-alpha: 0.5;
1042
// $dropdown-label-color: #555;
1043

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

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

    
1058

    
1059
// Custom breakpoints
1060

    
1061
$entities-list-large: emCalc(1100px);
1062

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