Revision af86484e

b/snf-cyclades-app/synnefo/ui/new_ui/ui/javascripts/common.js
388 388
    $('.advanced-conf-options .has-more').click(function(e){
389 389
        $(this).next('.more').slideToggle();
390 390
    })
391

  
392
    $('.adv-main .expand-link').click( function(e){
393
        e.preventDefault();
394
        var link = $(this);
395
        link.toggleClass('current');
396
        var arrow = link.find('span.snf-arrow-up, span.snf-arrow-down');
397
        arrow.toggleClass('snf-arrow-up');
398
        arrow.toggleClass('snf-arrow-down');
399
        link.parents('div.advanced-conf-step').find('.advanced-conf-options').slideToggle();
400
    })
401

  
391 402
})
392 403

  
393 404

  
/dev/null
1
   $(document).ready(function(){
2

  
3

  
4

  
5
    $('.adv-main .expand-link').click( function(e){
6
        e.preventDefault();
7
        var link = $(this);
8
        link.toggleClass('current');
9
        var arrow = link.find('span.snf-arrow-up, span.snf-arrow-down');
10
        arrow.toggleClass('snf-arrow-up');
11
        arrow.toggleClass('snf-arrow-down');
12

  
13
        link.parents('div.advanced-conf-step').find('.advanced-conf-options').slideToggle();
14
    })
15

  
16
    $('.network-data a.select-network').click( function(e){
17
    e.preventDefault();
18
    $(this).toggleClass('current'); //edw mallon dn xreiazetai????
19
    $(this).parents('li.network-data').find('.ips-list').slideToggle();
20
    })
21

  
22
})
b/snf-cyclades-app/synnefo/ui/new_ui/ui/sass/_details.scss
94 94
		right:$header-padding-horizontal;
95 95
		top:$header-padding-horizontal+emCalc(43px);
96 96
		span {
97
			font-size:emCalc(32px);
97
			font-size:32px;
98 98
		}	
99
		&:hover {
100
			span {
101
				color:darken($primary-color,10%);
102
			}
103
		}
99 104
	}
100 105
	.graph_container {
101 106
		padding-bottom: 2em;
b/snf-cyclades-app/synnefo/ui/new_ui/ui/sass/_forms.scss
23 23
	input[type="text"] {
24 24
		display: none;
25 25
	}
26
}
26
}
27

  
28
.advanced-conf-step {
29
	.input {
30
		display: inline-block;
31
		background:url(../images/input-bg-lt.png) no-repeat left bottom;
32
		padding-left:6px;
33
		input[type="text"] {
34
			width: 145px;
35
			padding:0 12px 0 6px;
36
			border:0 none;
37
			background:url(../images/input-bg-rt.png) no-repeat right bottom;
38
			background-color: $overlay-color;
39
			outline: 0;
40
			margin:0;
41
			color: $wizard-base-font-color;
42
			//to be improved!!!!
43
			-webkit-box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
44
			-moz-box-shadow:    7px 7px 0px rgba(72, 80, 87, 0);
45
			box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
46
		}
47
	}
48
}
49
.wizard {
50
	form.custom .custom.dropdown.medium {
51
		background:$overlay-color;
52
		color:white;
53
	}
54
	form.custom .custom.dropdown .current {
55
		color:white;
56
	}
57
	form.custom .custom.dropdown .selector {
58
		border-left:1px solid white;
59
		height: 30px;
60
	}
61
	form.custom .custom.dropdown.open ul {
62
		background:$overlay-color;
63
		color:white;
64
	}
65
	form.custom .custom.dropdown ul li {
66
		color:white;
67
	}
68
	form.custom .custom.dropdown ul li.selected {
69
		color:white;
70
		background:lighten($overlay-color,10%);
71
	}
72
	form.custom .custom.dropdown ul li:hover {
73
		background:lighten($overlay-color,20%);
74
		color:white;
75
	}
76
}
b/snf-cyclades-app/synnefo/ui/new_ui/ui/sass/_overlays.scss
191 191
	.middle {
192 192
		padding-top:$bar-height;
193 193
		.step {
194
			padding:50px 0;
194
			padding:50px 0 (50px + $bar-height);
195 195
			float:left;
196 196
			position:relative;
197 197
			width:$row-width;
......
379 379
					}
380 380
				}
381 381
			}
382
			.advanced-conf-step {
383
				color: $wizard-base-font-color;
384
				h2 {
385
					color: $wizard-base-font-color;
386
					font-size: 1em;
387
					margin:0 auto 1em;
388
				}
389
				p {
390
					font-size: $wizard-paragraph-font-size;
391
				}
392
				.expand-btn {
393
					margin: 50px 0 30px;
394
					a {
395
						color:white;
396
					}
397
				}
398
				.adv-main {
399
					padding: 10px 0 30px;
400
					width:$row-small;
401
					.vm-name {
402
						h2 {
403
							color:white;
404
							font-size:1em;
405
							margin-bottom:0.5em;
406
						}
407
					}
408
					.btn5 {
409
						&:hover {
410
							color:white;
411
						}
412
						&.current, &.current:hover {
413
							color:$overlay-color;
414
						}
415
					}
416
				}
417
				.advanced-conf-options {
418
					display: none;
419
					.area {
420
						padding:30px 0;
421
						.row {
422
							width:$row-small;
423
						}
424
						.btn5{
425
							&:hover {
426
								color:white;
427
							}
428
						}
429
						ul {
430
							li {
431
								position: relative;
432
								list-style:none outside none;
433
								margin-bottom:7px;
434
								&.checkbox {
435
									&:hover {
436
										cursor: pointer;
437
									}
438
								}
439
								h3 {
440
									width: $conf-area-h-width;
441
									color:white;
442
									font-size:1em;
443
									font-weight: normal;
444
									margin:0 20px 0 0;
445
									display: inline-block;
446
								}
447
							}
448
						}
449
					}
450
					.ssh-keys-area {
451
						background-color: $ssh-opt-area-color;
452
					}
453
					.networks-area {
454
						background-color: $net-opt-area-color;
455
						li {
456
							.net-icons {
457
								padding-right:20px;
458
								position:absolute;
459
								left:-200px;
460
								top:-12px;
461
								width:200px;
462
								text-align: right;
463
								font-size:30px;
464
								span {
465
									margin-left:6px;
466
									&.snf-modem {
467
										position: relative;
468
										top:-6px;
469
									}
470
								}
471
							}
472
							&.more {
473
								display: none;
474
								background:white;
475
								margin-bottom:1em;
476
								padding:30px 0;
477
								color:$net-opt-area-color;
478
								h3 {
479
									color:$net-opt-area-color;
480
								}
481
								.btn5 {
482
									margin-top:1em;
483
									border-color:$net-opt-area-color;
484
									color:$net-opt-area-color;
485
								}
486
							}
487
						}
488

  
489
					}
490
					.tags-area {
491
						background-color: $tag-opt-area-color;
492
					}
493

  
494
				}
495
			}
382 496
		}
383 497
	}
384 498
	.bottom {
......
489 603
	width: 20000px;
490 604
	position:relative;
491 605
}
492

  
493
// step3 vm wizard
494
.advanced-conf-step {
495
	color: $wizard-base-font-color;
496
	h2 {
497
		color: $wizard-base-font-color;
498
		font-size: 1em;
499
		margin:0 auto 1em;
500
	}
501
	p {
502
		font-size: $wizard-paragraph-font-size;
503
	}
504
	.adv-main {
505
		padding: 10px 0 30px;
506
		width:$row-small;
507
		.vm-name {
508
			font-weight: bold;
509
		}
510
		.btn5 {
511
			&:hover {
512
				color:white;
513
			}
514
			&.current, &.current:hover {
515
				color:$overlay-color;
516
			}
517
		}
518
		input[type="text"] {
519
			width: 200px;
520
			border: 0;
521
			border-bottom: 1px solid $wizard-base-font-color;
522
			background-color: $overlay-color;
523
			outline: 0;
524
			color: $wizard-base-font-color;
525
			//to be improved!!!!
526
			-webkit-box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
527
			-moz-box-shadow:    7px 7px 0px rgba(72, 80, 87, 0);
528
			box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
529
		}
530
	}
531
}
532
.advanced-conf-options {
533
	display: none;
534
	.area {
535
		padding:30px 0;
536
		.row {
537
			width:$row-small;
538
		}
539
		.btn5{
540
			&:hover {
541
				color:white;
542
			}
543
		}
544
		ul {
545
			li {
546
				position: relative;
547
				list-style:none outside none;
548
				margin-bottom:7px;
549
				&.checkbox {
550
					&:hover {
551
						cursor: pointer;
552
					}
553
				}
554
				h3 {
555
					width: $conf-area-h-width;
556
					color:white;
557
					font-size:1em;
558
					font-weight: normal;
559
					margin:0 20px 0 0;
560
					display: inline-block;
561
				}
562
			}
563
		}
564
	}
565
	.ssh-keys-area {
566
		background-color: $ssh-opt-area-color;
567
	}
568
	.networks-area {
569
		background-color: $net-opt-area-color;
570
		li {
571
			.net-icons {
572
				padding-right:20px;
573
				position:absolute;
574
				left:-200px;
575
				top:-12px;
576
				width:200px;
577
				text-align: right;
578
				font-size:30px;
579
				span {
580
					margin-left:6px;
581
					&.snf-modem {
582
						position: relative;
583
						top:-6px;
584
					}
585
				}
586
			}
587
			&.more {
588
				display: none;
589
				background:white;
590
				margin-bottom:1em;
591
				padding:30px 0;
592
				color:$net-opt-area-color;
593
				h3 {
594
					color:$net-opt-area-color;
595
				}
596
				.btn5 {
597
					margin-top:1em;
598
					border-color:$net-opt-area-color;
599
					color:$net-opt-area-color;
600
				}
601
			}
602
		}
603

  
604
	}
605
	.tags-area {
606
		background-color: $tag-opt-area-color;
607
	}
608

  
609
}
b/snf-cyclades-app/synnefo/ui/new_ui/ui/sass/_settings.scss
487 487
// $custom-form-check-color: #222;
488 488

  
489 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;
490
$custom-select-bg: $overlay-color;
491
$custom-select-fade-to-color: $overlay-color;
492
$custom-select-border-color: white;
493
$custom-select-triangle-color: white;
494
$custom-select-triangle-color-open: white;
495 495
// $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
496 496
// $custom-select-margin-bottom: emCalc(20px);
497 497
// $custom-select-font-color-selected: #141414;
/dev/null
1
// Global Foundation Settings
2
@import "settings";
3
// Comment out this import if you are customizing you imports below
4
@import "foundation";
5

  
6

  
7
$ssh-opt-area-color: #ff7049;
8
$net-opt-area-color: #ff948c;
9
$tag-opt-area-color: #4c71ff;
10
$wizard-base-font-color: white;
11
$wizard-expand-link: rgb(233, 230, 230); //spasmeno aspro
12

  
13
$wizard-common-font-size: 16px;
14
@mixin adv-conf-padding {
15
	padding: 35px 200px 80px;
16
}
17

  
18

  
19
.advanced-conf-step {
20
	.checkbox-label {
21
		margin-right:15px;
22
		display: inline-block;
23
		color: $wizard-base-font-color;
24
		font-size: $wizard-common-font-size;
25

  
26
	}
27
	.icon {
28
		font-size: 24px;
29
		margin: 2px;
30
		color: $wizard-base-font-color;
31
	}
32

  
33
	// Upper area with the name of the vm and a button for configuration options			
34
	.adv-main {
35

  
36
		.vm-name {
37
			
38
			.label-vm-name {
39
				font-weight: bold;
40
				color: $wizard-base-font-color;
41
				font-size: 16px;
42
			}
43
			input[type="text"] {
44

  
45
				width: 200px;
46
				border: 0;
47
				border-bottom: 1px solid $wizard-base-font-color;
48
				background-color: $overlay-color;
49
				outline: 0;
50
				color: $wizard-base-font-color;
51
				//to be improved!!!!
52
				-webkit-box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
53
				-moz-box-shadow:    7px 7px 0px rgba(72, 80, 87, 0);
54
				box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
55
			}
56
		}
57

  
58
		.expand-btn {
59
			padding-top: 50px;
60
			padding-bottom: 20px;
61
			
62
			.expand-link {
63
				color: $wizard-expand-link;
64
				&:hover {
65
					color: $wizard-base-font-color;
66
				}
67
				&.current {
68
				color:$wizard-base-font-color;
69
				}
70
			}
71
		}
72
	}
73
}
74

  
b/snf-cyclades-app/synnefo/ui/new_ui/ui/stylesheets/app.css
5692 5692
  padding: 0px;
5693 5693
  width: 100%;
5694 5694
  background: white;
5695
  background: -moz-linear-gradient(top, white 0%, #f3f3f3 100%);
5696
  background: -webkit-linear-gradient(top, white 0%, #f3f3f3 100%);
5695
  background: -moz-linear-gradient(top, white 0%, #485057 100%);
5696
  background: -webkit-linear-gradient(top, white 0%, #485057 100%);
5697 5697
  -webkit-box-shadow: none;
5698
  background: linear-gradient(to bottom, #ffffff 0%, #f3f3f3 100%);
5698
  background: linear-gradient(to bottom, #ffffff 0%, #485057 100%);
5699 5699
  box-shadow: none;
5700 5700
  font-size: 0.875em;
5701 5701
  vertical-align: top;
......
5736 5736
  width: 0;
5737 5737
  height: 0;
5738 5738
  border: inset 5px;
5739
  border-color: #aaaaaa transparent transparent transparent;
5739
  border-color: white transparent transparent transparent;
5740 5740
  border-top-style: solid;
5741 5741
  position: absolute;
5742 5742
  left: 0.9375em;
......
5750 5750
  width: 0;
5751 5751
  height: 0;
5752 5752
  border: inset 5px;
5753
  border-color: #222222 transparent transparent transparent;
5753
  border-color: white transparent transparent transparent;
5754 5754
  border-top-style: solid;
5755 5755
}
5756 5756
/* line 185, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_custom-forms.scss */
......
7503 7503
}
7504 7504
/* line 96, ../sass/_details.scss */
7505 7505
.details .close span {
7506
  font-size: 2em;
7506
  font-size: 32px;
7507 7507
}
7508 7508
/* line 100, ../sass/_details.scss */
7509
.details .close:hover span {
7510
  color: #77777b;
7511
}
7512
/* line 105, ../sass/_details.scss */
7509 7513
.details .graph_container {
7510 7514
  padding-bottom: 2em;
7511 7515
}
7512 7516

  
7513
/* line 107, ../sass/_details.scss */
7517
/* line 112, ../sass/_details.scss */
7514 7518
.details dl .editable {
7515 7519
  position: relative;
7516 7520
}
7517
/* line 109, ../sass/_details.scss */
7521
/* line 114, ../sass/_details.scss */
7518 7522
.details dl .editable .input-txt {
7519 7523
  display: inline-block;
7520 7524
  margin-right: 6px;
7521 7525
}
7522
/* line 113, ../sass/_details.scss */
7526
/* line 118, ../sass/_details.scss */
7523 7527
.details dl .editable .editbuttons {
7524 7528
  display: inline-block;
7525 7529
}
7526
/* line 116, ../sass/_details.scss */
7530
/* line 121, ../sass/_details.scss */
7527 7531
.details dl .editable input[type="text"] {
7528 7532
  position: relative;
7529 7533
  height: 25px;
......
7612 7616
  display: none;
7613 7617
}
7614 7618

  
7619
/* line 29, ../sass/_forms.scss */
7620
.advanced-conf-step .input {
7621
  display: inline-block;
7622
  background: url(../images/input-bg-lt.png) no-repeat left bottom;
7623
  padding-left: 6px;
7624
}
7625
/* line 33, ../sass/_forms.scss */
7626
.advanced-conf-step .input input[type="text"] {
7627
  width: 145px;
7628
  padding: 0 12px 0 6px;
7629
  border: 0 none;
7630
  background: url(../images/input-bg-rt.png) no-repeat right bottom;
7631
  background-color: #485057;
7632
  outline: 0;
7633
  margin: 0;
7634
  color: white;
7635
  -webkit-box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
7636
  -moz-box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
7637
  box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
7638
}
7639

  
7640
/* line 50, ../sass/_forms.scss */
7641
.wizard form.custom .custom.dropdown.medium {
7642
  background: #485057;
7643
  color: white;
7644
}
7645
/* line 54, ../sass/_forms.scss */
7646
.wizard form.custom .custom.dropdown .current {
7647
  color: white;
7648
}
7649
/* line 57, ../sass/_forms.scss */
7650
.wizard form.custom .custom.dropdown .selector {
7651
  border-left: 1px solid white;
7652
  height: 30px;
7653
}
7654
/* line 61, ../sass/_forms.scss */
7655
.wizard form.custom .custom.dropdown.open ul {
7656
  background: #485057;
7657
  color: white;
7658
}
7659
/* line 65, ../sass/_forms.scss */
7660
.wizard form.custom .custom.dropdown ul li {
7661
  color: white;
7662
}
7663
/* line 68, ../sass/_forms.scss */
7664
.wizard form.custom .custom.dropdown ul li.selected {
7665
  color: white;
7666
  background: #5f6a73;
7667
}
7668
/* line 72, ../sass/_forms.scss */
7669
.wizard form.custom .custom.dropdown ul li:hover {
7670
  background: #77838e;
7671
  color: white;
7672
}
7673

  
7615 7674
/* Machines (VMs)  related styles  */
7616 7675
/* line 4, ../sass/_machines.scss */
7617 7676
.vms .items-list .img {
......
8264 8323
}
8265 8324
/* line 193, ../sass/_overlays.scss */
8266 8325
.wizard .middle .step {
8267
  padding: 50px 0;
8326
  padding: 50px 0 110px;
8268 8327
  float: left;
8269 8328
  position: relative;
8270 8329
  width: 75em;
......
8471 8530
  display: inline-block;
8472 8531
  width: 45%;
8473 8532
}
8533
/* line 382, ../sass/_overlays.scss */
8534
.wizard .middle .step .advanced-conf-step {
8535
  color: white;
8536
}
8474 8537
/* line 384, ../sass/_overlays.scss */
8538
.wizard .middle .step .advanced-conf-step h2 {
8539
  color: white;
8540
  font-size: 1em;
8541
  margin: 0 auto 1em;
8542
}
8543
/* line 389, ../sass/_overlays.scss */
8544
.wizard .middle .step .advanced-conf-step p {
8545
  font-size: 10px;
8546
}
8547
/* line 392, ../sass/_overlays.scss */
8548
.wizard .middle .step .advanced-conf-step .expand-btn {
8549
  margin: 50px 0 30px;
8550
}
8551
/* line 394, ../sass/_overlays.scss */
8552
.wizard .middle .step .advanced-conf-step .expand-btn a {
8553
  color: white;
8554
}
8555
/* line 398, ../sass/_overlays.scss */
8556
.wizard .middle .step .advanced-conf-step .adv-main {
8557
  padding: 10px 0 30px;
8558
  width: 37.5em;
8559
}
8560
/* line 402, ../sass/_overlays.scss */
8561
.wizard .middle .step .advanced-conf-step .adv-main .vm-name h2 {
8562
  color: white;
8563
  font-size: 1em;
8564
  margin-bottom: 0.5em;
8565
}
8566
/* line 409, ../sass/_overlays.scss */
8567
.wizard .middle .step .advanced-conf-step .adv-main .btn5:hover, .wizard .middle .step .advanced-conf-step .adv-main .os li .btn-col a:hover, .wizard .middle .step .os li .btn-col .advanced-conf-step .adv-main a:hover, .wizard .middle .step .advanced-conf-step .adv-main .flavor li .options-bar .options li a:hover, .wizard .middle .step .flavor li .options-bar .options li .advanced-conf-step .adv-main a:hover {
8568
  color: white;
8569
}
8570
/* line 412, ../sass/_overlays.scss */
8571
.wizard .middle .step .advanced-conf-step .adv-main .btn5.current, .wizard .middle .step .advanced-conf-step .adv-main .os li .btn-col a.current, .wizard .middle .step .os li .btn-col .advanced-conf-step .adv-main a.current, .wizard .middle .step .advanced-conf-step .adv-main .flavor li .options-bar .options li a.current, .wizard .middle .step .flavor li .options-bar .options li .advanced-conf-step .adv-main a.current, .wizard .middle .step .advanced-conf-step .adv-main .btn5.current:hover, .wizard .middle .step .advanced-conf-step .adv-main .os li .btn-col a.current:hover, .wizard .middle .step .os li .btn-col .advanced-conf-step .adv-main a.current:hover, .wizard .middle .step .advanced-conf-step .adv-main .flavor li .options-bar .options li a.current:hover, .wizard .middle .step .flavor li .options-bar .options li .advanced-conf-step .adv-main a.current:hover {
8572
  color: #485057;
8573
}
8574
/* line 417, ../sass/_overlays.scss */
8575
.wizard .middle .step .advanced-conf-step .advanced-conf-options {
8576
  display: none;
8577
}
8578
/* line 419, ../sass/_overlays.scss */
8579
.wizard .middle .step .advanced-conf-step .advanced-conf-options .area {
8580
  padding: 30px 0;
8581
}
8582
/* line 421, ../sass/_overlays.scss */
8583
.wizard .middle .step .advanced-conf-step .advanced-conf-options .area .row {
8584
  width: 37.5em;
8585
}
8586
/* line 425, ../sass/_overlays.scss */
8587
.wizard .middle .step .advanced-conf-step .advanced-conf-options .area .btn5:hover, .wizard .middle .step .advanced-conf-step .advanced-conf-options .area .os li .btn-col a:hover, .wizard .middle .step .os li .btn-col .advanced-conf-step .advanced-conf-options .area a:hover, .wizard .middle .step .advanced-conf-step .advanced-conf-options .area .flavor li .options-bar .options li a:hover, .wizard .middle .step .flavor li .options-bar .options li .advanced-conf-step .advanced-conf-options .area a:hover {
8588
  color: white;
8589
}
8590
/* line 430, ../sass/_overlays.scss */
8591
.wizard .middle .step .advanced-conf-step .advanced-conf-options .area ul li {
8592
  position: relative;
8593
  list-style: none outside none;
8594
  margin-bottom: 7px;
8595
}
8596
/* line 435, ../sass/_overlays.scss */
8597
.wizard .middle .step .advanced-conf-step .advanced-conf-options .area ul li.checkbox:hover {
8598
  cursor: pointer;
8599
}
8600
/* line 439, ../sass/_overlays.scss */
8601
.wizard .middle .step .advanced-conf-step .advanced-conf-options .area ul li h3 {
8602
  width: 18.75em;
8603
  color: white;
8604
  font-size: 1em;
8605
  font-weight: normal;
8606
  margin: 0 20px 0 0;
8607
  display: inline-block;
8608
}
8609
/* line 450, ../sass/_overlays.scss */
8610
.wizard .middle .step .advanced-conf-step .advanced-conf-options .ssh-keys-area {
8611
  background-color: #ff7049;
8612
}
8613
/* line 453, ../sass/_overlays.scss */
8614
.wizard .middle .step .advanced-conf-step .advanced-conf-options .networks-area {
8615
  background-color: #ff948c;
8616
}
8617
/* line 456, ../sass/_overlays.scss */
8618
.wizard .middle .step .advanced-conf-step .advanced-conf-options .networks-area li .net-icons {
8619
  padding-right: 20px;
8620
  position: absolute;
8621
  left: -200px;
8622
  top: -12px;
8623
  width: 200px;
8624
  text-align: right;
8625
  font-size: 30px;
8626
}
8627
/* line 464, ../sass/_overlays.scss */
8628
.wizard .middle .step .advanced-conf-step .advanced-conf-options .networks-area li .net-icons span {
8629
  margin-left: 6px;
8630
}
8631
/* line 466, ../sass/_overlays.scss */
8632
.wizard .middle .step .advanced-conf-step .advanced-conf-options .networks-area li .net-icons span.snf-modem {
8633
  position: relative;
8634
  top: -6px;
8635
}
8636
/* line 472, ../sass/_overlays.scss */
8637
.wizard .middle .step .advanced-conf-step .advanced-conf-options .networks-area li.more {
8638
  display: none;
8639
  background: white;
8640
  margin-bottom: 1em;
8641
  padding: 30px 0;
8642
  color: #ff948c;
8643
}
8644
/* line 478, ../sass/_overlays.scss */
8645
.wizard .middle .step .advanced-conf-step .advanced-conf-options .networks-area li.more h3 {
8646
  color: #ff948c;
8647
}
8648
/* line 481, ../sass/_overlays.scss */
8649
.wizard .middle .step .advanced-conf-step .advanced-conf-options .networks-area li.more .btn5, .wizard .middle .step .advanced-conf-step .advanced-conf-options .networks-area .os li.more .btn-col a, .wizard .middle .step .os .advanced-conf-step .advanced-conf-options .networks-area li.more .btn-col a, .wizard .middle .step .advanced-conf-step .advanced-conf-options .networks-area .flavor li.more .options-bar .options li a, .wizard .middle .step .flavor .advanced-conf-step .advanced-conf-options .networks-area li.more .options-bar .options li a {
8650
  margin-top: 1em;
8651
  border-color: #ff948c;
8652
  color: #ff948c;
8653
}
8654
/* line 490, ../sass/_overlays.scss */
8655
.wizard .middle .step .advanced-conf-step .advanced-conf-options .tags-area {
8656
  background-color: #4c71ff;
8657
}
8658
/* line 498, ../sass/_overlays.scss */
8475 8659
.wizard .bottom {
8476 8660
  position: fixed;
8477 8661
  left: 0;
......
8480 8664
  border-top: 1px solid #333333;
8481 8665
  background: #485057;
8482 8666
}
8483
/* line 391, ../sass/_overlays.scss */
8667
/* line 505, ../sass/_overlays.scss */
8484 8668
.wizard .bottom .row {
8485 8669
  height: 60px;
8486 8670
  line-height: 60px;
8487 8671
}
8488
/* line 395, ../sass/_overlays.scss */
8672
/* line 509, ../sass/_overlays.scss */
8489 8673
.wizard .bottom .nav {
8490 8674
  height: 60px;
8491 8675
  line-height: 60px;
......
8494 8678
  position: relative;
8495 8679
  top: 15px;
8496 8680
}
8497
/* line 402, ../sass/_overlays.scss */
8681
/* line 516, ../sass/_overlays.scss */
8498 8682
.wizard .bottom .nav span {
8499 8683
  display: inline-block;
8500 8684
  height: 30px;
8501 8685
  line-height: 30px;
8502 8686
  float: left;
8503 8687
}
8504
/* line 409, ../sass/_overlays.scss */
8688
/* line 523, ../sass/_overlays.scss */
8505 8689
.wizard .bottom .prev {
8506 8690
  float: left;
8507 8691
  height: 30px;
8508 8692
  padding-left: 19px;
8509 8693
  background: url("../images/nav-edge-lt.png") no-repeat left top;
8510 8694
}
8511
/* line 414, ../sass/_overlays.scss */
8695
/* line 528, ../sass/_overlays.scss */
8512 8696
.wizard .bottom .prev span {
8513 8697
  padding-right: 10px;
8514 8698
  background: url("../images/nav-lt.png") no-repeat right top;
8515 8699
}
8516
/* line 418, ../sass/_overlays.scss */
8700
/* line 532, ../sass/_overlays.scss */
8517 8701
.wizard .bottom .prev:hover {
8518 8702
  background-position: left bottom;
8519 8703
  -webkit-transition: background 0 ease-out;
......
8522 8706
  -o-transition: background 0 ease-out;
8523 8707
  transition: background 0 ease-out;
8524 8708
}
8525
/* line 421, ../sass/_overlays.scss */
8709
/* line 535, ../sass/_overlays.scss */
8526 8710
.wizard .bottom .prev:hover span {
8527 8711
  background-position: right bottom;
8528 8712
  -webkit-transition: background 0 ease-out;
......
8531 8715
  -o-transition: background 0 ease-out;
8532 8716
  transition: background 0 ease-out;
8533 8717
}
8534
/* line 427, ../sass/_overlays.scss */
8718
/* line 541, ../sass/_overlays.scss */
8535 8719
.wizard .bottom .next {
8536 8720
  float: right;
8537 8721
  height: 30px;
8538 8722
  padding-right: 19px;
8539 8723
  background: url("../images/nav-edge-rt.png") no-repeat right top;
8540 8724
}
8541
/* line 432, ../sass/_overlays.scss */
8725
/* line 546, ../sass/_overlays.scss */
8542 8726
.wizard .bottom .next span {
8543 8727
  padding-left: 10px;
8544 8728
  background: url("../images/nav-rt.png") no-repeat left top;
8545 8729
}
8546
/* line 436, ../sass/_overlays.scss */
8730
/* line 550, ../sass/_overlays.scss */
8547 8731
.wizard .bottom .next:hover {
8548 8732
  background-position: right bottom;
8549 8733
  -webkit-transition: background 0 ease-out;
......
8552 8736
  -o-transition: background 0 ease-out;
8553 8737
  transition: background 0 ease-out;
8554 8738
}
8555
/* line 439, ../sass/_overlays.scss */
8739
/* line 553, ../sass/_overlays.scss */
8556 8740
.wizard .bottom .next:hover span {
8557 8741
  background-position: left bottom;
8558 8742
  -webkit-transition: background 0 ease-out;
......
8561 8745
  -o-transition: background 0 ease-out;
8562 8746
  transition: background 0 ease-out;
8563 8747
}
8564
/* line 445, ../sass/_overlays.scss */
8748
/* line 559, ../sass/_overlays.scss */
8565 8749
.wizard .bottom .nums {
8566 8750
  text-align: center;
8567 8751
  list-style: none outside none;
......
8569 8753
  height: 60px;
8570 8754
  line-height: 60px;
8571 8755
}
8572
/* line 451, ../sass/_overlays.scss */
8756
/* line 565, ../sass/_overlays.scss */
8573 8757
.wizard .bottom .nums li {
8574 8758
  list-style: none outside none;
8575 8759
  display: inline-block;
......
8580 8764
  line-height: 25px;
8581 8765
  margin: 0 3px;
8582 8766
}
8583
/* line 460, ../sass/_overlays.scss */
8767
/* line 574, ../sass/_overlays.scss */
8584 8768
.wizard .bottom .nums li a {
8585 8769
  color: #919194;
8586 8770
  display: block;
8587 8771
}
8588
/* line 463, ../sass/_overlays.scss */
8772
/* line 577, ../sass/_overlays.scss */
8589 8773
.wizard .bottom .nums li a:hover {
8590 8774
  cursor: default;
8591 8775
}
8592
/* line 467, ../sass/_overlays.scss */
8776
/* line 581, ../sass/_overlays.scss */
8593 8777
.wizard .bottom .nums li.current {
8594 8778
  border-color: white;
8595 8779
}
8596
/* line 469, ../sass/_overlays.scss */
8780
/* line 583, ../sass/_overlays.scss */
8597 8781
.wizard .bottom .nums li.current a {
8598 8782
  color: white;
8599 8783
}
8600
/* line 474, ../sass/_overlays.scss */
8784
/* line 588, ../sass/_overlays.scss */
8601 8785
.wizard .bottom .nums li.current {
8602 8786
  font-size: 1.25em;
8603 8787
  width: 30px;
8604 8788
  height: 30px;
8605 8789
}
8606 8790

  
8607
/* line 484, ../sass/_overlays.scss */
8791
/* line 598, ../sass/_overlays.scss */
8608 8792
.wizard-content {
8609 8793
  overflow: hidden;
8610 8794
}
8611 8795

  
8612
/* line 488, ../sass/_overlays.scss */
8796
/* line 602, ../sass/_overlays.scss */
8613 8797
.vm-wizard-carousel {
8614 8798
  width: 20000px;
8615 8799
  position: relative;
8616 8800
}
8617

  
8618
/* line 494, ../sass/_overlays.scss */
8619
.advanced-conf-step {
8620
  color: white;
8621
}
8622
/* line 496, ../sass/_overlays.scss */
8623
.advanced-conf-step h2 {
8624
  color: white;
8625
  font-size: 1em;
8626
  margin: 0 auto 1em;
8627
}
8628
/* line 501, ../sass/_overlays.scss */
8629
.advanced-conf-step p {
8630
  font-size: 10px;
8631
}
8632
/* line 504, ../sass/_overlays.scss */
8633
.advanced-conf-step .adv-main {
8634
  padding: 10px 0 30px;
8635
  width: 37.5em;
8636
}
8637
/* line 507, ../sass/_overlays.scss */
8638
.advanced-conf-step .adv-main .vm-name {
8639
  font-weight: bold;
8640
}
8641
/* line 511, ../sass/_overlays.scss */
8642
.advanced-conf-step .adv-main .btn5:hover, .advanced-conf-step .adv-main .wizard .middle .step .os li .btn-col a:hover, .wizard .middle .step .os li .btn-col .advanced-conf-step .adv-main a:hover, .advanced-conf-step .adv-main .wizard .middle .step .flavor li .options-bar .options li a:hover, .wizard .middle .step .flavor li .options-bar .options li .advanced-conf-step .adv-main a:hover {
8643
  color: white;
8644
}
8645
/* line 514, ../sass/_overlays.scss */
8646
.advanced-conf-step .adv-main .btn5.current, .advanced-conf-step .adv-main .wizard .middle .step .os li .btn-col a.current, .wizard .middle .step .os li .btn-col .advanced-conf-step .adv-main a.current, .advanced-conf-step .adv-main .wizard .middle .step .flavor li .options-bar .options li a.current, .wizard .middle .step .flavor li .options-bar .options li .advanced-conf-step .adv-main a.current, .advanced-conf-step .adv-main .btn5.current:hover, .advanced-conf-step .adv-main .wizard .middle .step .os li .btn-col a.current:hover, .wizard .middle .step .os li .btn-col .advanced-conf-step .adv-main a.current:hover, .advanced-conf-step .adv-main .wizard .middle .step .flavor li .options-bar .options li a.current:hover, .wizard .middle .step .flavor li .options-bar .options li .advanced-conf-step .adv-main a.current:hover {
8647
  color: #485057;
8648
}
8649
/* line 518, ../sass/_overlays.scss */
8650
.advanced-conf-step .adv-main input[type="text"] {
8651
  width: 200px;
8652
  border: 0;
8653
  border-bottom: 1px solid white;
8654
  background-color: #485057;
8655
  outline: 0;
8656
  color: white;
8657
  -webkit-box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
8658
  -moz-box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
8659
  box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
8660
}
8661

  
8662
/* line 532, ../sass/_overlays.scss */
8663
.advanced-conf-options {
8664
  display: none;
8665
}
8666
/* line 534, ../sass/_overlays.scss */
8667
.advanced-conf-options .area {
8668
  padding: 30px 0;
8669
}
8670
/* line 536, ../sass/_overlays.scss */
8671
.advanced-conf-options .area .row {
8672
  width: 37.5em;
8673
}
8674
/* line 540, ../sass/_overlays.scss */
8675
.advanced-conf-options .area .btn5:hover, .advanced-conf-options .area .wizard .middle .step .os li .btn-col a:hover, .wizard .middle .step .os li .btn-col .advanced-conf-options .area a:hover, .advanced-conf-options .area .wizard .middle .step .flavor li .options-bar .options li a:hover, .wizard .middle .step .flavor li .options-bar .options li .advanced-conf-options .area a:hover {
8676
  color: white;
8677
}
8678
/* line 545, ../sass/_overlays.scss */
8679
.advanced-conf-options .area ul li {
8680
  position: relative;
8681
  list-style: none outside none;
8682
  margin-bottom: 7px;
8683
}
8684
/* line 550, ../sass/_overlays.scss */
8685
.advanced-conf-options .area ul li.checkbox:hover {
8686
  cursor: pointer;
8687
}
8688
/* line 554, ../sass/_overlays.scss */
8689
.advanced-conf-options .area ul li h3 {
8690
  width: 18.75em;
8691
  color: white;
8692
  font-size: 1em;
8693
  font-weight: normal;
8694
  margin: 0 20px 0 0;
8695
  display: inline-block;
8696
}
8697
/* line 565, ../sass/_overlays.scss */
8698
.advanced-conf-options .ssh-keys-area {
8699
  background-color: #ff7049;
8700
}
8701
/* line 568, ../sass/_overlays.scss */
8702
.advanced-conf-options .networks-area {
8703
  background-color: #ff948c;
8704
}
8705
/* line 571, ../sass/_overlays.scss */
8706
.advanced-conf-options .networks-area li .net-icons {
8707
  padding-right: 20px;
8708
  position: absolute;
8709
  left: -200px;
8710
  top: -12px;
8711
  width: 200px;
8712
  text-align: right;
8713
  font-size: 30px;
8714
}
8715
/* line 579, ../sass/_overlays.scss */
8716
.advanced-conf-options .networks-area li .net-icons span {
8717
  margin-left: 6px;
8718
}
8719
/* line 581, ../sass/_overlays.scss */
8720
.advanced-conf-options .networks-area li .net-icons span.snf-modem {
8721
  position: relative;
8722
  top: -6px;
8723
}
8724
/* line 587, ../sass/_overlays.scss */
8725
.advanced-conf-options .networks-area li.more {
8726
  display: none;
8727
  background: white;
8728
  margin-bottom: 1em;
8729
  padding: 30px 0;
8730
  color: #ff948c;
8731
}
8732
/* line 593, ../sass/_overlays.scss */
8733
.advanced-conf-options .networks-area li.more h3 {
8734
  color: #ff948c;
8735
}
8736
/* line 596, ../sass/_overlays.scss */
8737
.advanced-conf-options .networks-area li.more .btn5, .advanced-conf-options .networks-area .wizard .middle .step .os li.more .btn-col a, .wizard .middle .step .os .advanced-conf-options .networks-area li.more .btn-col a, .advanced-conf-options .networks-area .wizard .middle .step .flavor li.more .options-bar .options li a, .wizard .middle .step .flavor .advanced-conf-options .networks-area li.more .options-bar .options li a {
8738
  margin-top: 1em;
8739
  border-color: #ff948c;
8740
  color: #ff948c;
8741
}
8742
/* line 605, ../sass/_overlays.scss */
8743
.advanced-conf-options .tags-area {
8744
  background-color: #4c71ff;
8745
}
/dev/null
1
/* line 264, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
2
*,
3
*:before,
4
*:after {
5
  -moz-box-sizing: border-box;
6
  -webkit-box-sizing: border-box;
7
  box-sizing: border-box;
8
}
9

  
10
/* line 269, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
11
html,
12
body {
13
  font-size: 100%;
14
}
15

  
16
/* line 272, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
17
body {
18
  background: white;
19
  color: #222222;
20
  padding: 0;
21
  margin: 0;
22
  font-family: "Open Sans", "Helvetica", Helvetica, Arial, sans-serif;
23
  font-weight: normal;
24
  font-style: normal;
25
  line-height: 1;
26
  position: relative;
27
  cursor: default;
28
}
29

  
30
/* line 285, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
31
a:hover {
32
  cursor: pointer;
33
}
34

  
35
/* line 288, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
36
a:focus {
37
  outline: none;
38
}
39

  
40
/* line 293, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
41
img,
42
object,
43
embed {
44
  max-width: 100%;
45
  height: auto;
46
}
47

  
48
/* line 296, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
49
object,
50
embed {
51
  height: 100%;
52
}
53

  
54
/* line 297, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
55
img {
56
  -ms-interpolation-mode: bicubic;
57
}
58

  
59
/* line 303, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
60
#map_canvas img,
61
#map_canvas embed,
62
#map_canvas object,
63
.map_canvas img,
64
.map_canvas embed,
65
.map_canvas object {
66
  max-width: none !important;
67
}
68

  
69
/* line 308, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
70
.left {
71
  float: left !important;
72
}
73

  
74
/* line 309, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
75
.right {
76
  float: right !important;
77
}
78

  
79
/* line 310, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
80
.text-left {
81
  text-align: left !important;
82
}
83

  
84
/* line 311, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
85
.text-right {
86
  text-align: right !important;
87
}
88

  
89
/* line 312, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
90
.text-center {
91
  text-align: center !important;
92
}
93

  
94
/* line 313, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
95
.text-justify {
96
  text-align: justify !important;
97
}
98

  
99
/* line 314, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
100
.hide {
101
  display: none;
102
}
103

  
104
/* line 320, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
105
.antialiased {
106
  -webkit-font-smoothing: antialiased;
107
}
108

  
109
/* line 323, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
110
img {
111
  display: inline-block;
112
  vertical-align: middle;
113
}
114

  
115
/* line 333, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
116
textarea {
117
  height: auto;
118
  min-height: 50px;
119
}
120

  
121
/* line 336, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
122
select {
123
  width: 100%;
124
}
125

  
126
/* Grid HTML Classes */
127
/* line 116, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
128
.row {
129
  width: 100%;
130
  margin-left: auto;
131
  margin-right: auto;
132
  margin-top: 0;
133
  margin-bottom: 0;
134
  max-width: 75em;
135
  *zoom: 1;
136
}
137
/* line 121, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
138
.row:before, .row:after {
139
  content: " ";
140
  display: table;
141
}
142
/* line 122, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
143
.row:after {
144
  clear: both;
145
}
146
/* line 121, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
147
.row.collapse .column,
148
.row.collapse .columns {
149
  position: relative;
150
  padding-left: 0;
151
  padding-right: 0;
152
  float: left;
153
}
154
/* line 124, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
155
.row .row {
156
  width: auto;
157
  margin-left: -0.9375em;
158
  margin-right: -0.9375em;
159
  margin-top: 0;
160
  margin-bottom: 0;
161
  max-width: none;
162
  *zoom: 1;
163
}
164
/* line 121, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
165
.row .row:before, .row .row:after {
166
  content: " ";
167
  display: table;
168
}
169
/* line 122, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
170
.row .row:after {
171
  clear: both;
172
}
173
/* line 125, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
174
.row .row.collapse {
175
  width: auto;
176
  margin: 0;
177
  max-width: none;
178
  *zoom: 1;
179
}
180
/* line 121, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
181
.row .row.collapse:before, .row .row.collapse:after {
182
  content: " ";
183
  display: table;
184
}
185
/* line 122, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_global.scss */
186
.row .row.collapse:after {
187
  clear: both;
188
}
189

  
190
/* line 130, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
191
.column,
192
.columns {
193
  position: relative;
194
  padding-left: 0.9375em;
195
  padding-right: 0.9375em;
196
  width: 100%;
197
  float: left;
198
}
199

  
200
@media only screen {
201
  /* line 135, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
202
  .column,
203
  .columns {
204
    position: relative;
205
    padding-left: 0.9375em;
206
    padding-right: 0.9375em;
207
    float: left;
208
  }
209

  
210
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
211
  .small-1 {
212
    position: relative;
213
    width: 8.33333%;
214
  }
215

  
216
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
217
  .small-2 {
218
    position: relative;
219
    width: 16.66667%;
220
  }
221

  
222
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
223
  .small-3 {
224
    position: relative;
225
    width: 25%;
226
  }
227

  
228
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
229
  .small-4 {
230
    position: relative;
231
    width: 33.33333%;
232
  }
233

  
234
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
235
  .small-5 {
236
    position: relative;
237
    width: 41.66667%;
238
  }
239

  
240
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
241
  .small-6 {
242
    position: relative;
243
    width: 50%;
244
  }
245

  
246
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
247
  .small-7 {
248
    position: relative;
249
    width: 58.33333%;
250
  }
251

  
252
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
253
  .small-8 {
254
    position: relative;
255
    width: 66.66667%;
256
  }
257

  
258
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
259
  .small-9 {
260
    position: relative;
261
    width: 75%;
262
  }
263

  
264
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
265
  .small-10 {
266
    position: relative;
267
    width: 83.33333%;
268
  }
269

  
270
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
271
  .small-11 {
272
    position: relative;
273
    width: 91.66667%;
274
  }
275

  
276
  /* line 138, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
277
  .small-12 {
278
    position: relative;
279
    width: 100%;
280
  }
281

  
282
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
283
  .small-offset-0 {
284
    position: relative;
285
    margin-left: 0%;
286
  }
287

  
288
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
289
  .small-offset-1 {
290
    position: relative;
291
    margin-left: 8.33333%;
292
  }
293

  
294
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
295
  .small-offset-2 {
296
    position: relative;
297
    margin-left: 16.66667%;
298
  }
299

  
300
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
301
  .small-offset-3 {
302
    position: relative;
303
    margin-left: 25%;
304
  }
305

  
306
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
307
  .small-offset-4 {
308
    position: relative;
309
    margin-left: 33.33333%;
310
  }
311

  
312
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
313
  .small-offset-5 {
314
    position: relative;
315
    margin-left: 41.66667%;
316
  }
317

  
318
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
319
  .small-offset-6 {
320
    position: relative;
321
    margin-left: 50%;
322
  }
323

  
324
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
325
  .small-offset-7 {
326
    position: relative;
327
    margin-left: 58.33333%;
328
  }
329

  
330
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
331
  .small-offset-8 {
332
    position: relative;
333
    margin-left: 66.66667%;
334
  }
335

  
336
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
337
  .small-offset-9 {
338
    position: relative;
339
    margin-left: 75%;
340
  }
341

  
342
  /* line 142, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
343
  .small-offset-10 {
344
    position: relative;
345
    margin-left: 83.33333%;
346
  }
347

  
348
  /* line 145, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
349
  [class*="column"] + [class*="column"]:last-child {
350
    float: right;
351
  }
352

  
353
  /* line 146, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
354
  [class*="column"] + [class*="column"].end {
355
    float: left;
356
  }
357

  
358
  /* line 149, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
359
  .column.small-centered,
360
  .columns.small-centered {
361
    position: relative;
362
    margin-left: auto;
363
    margin-right: auto;
364
    float: none !important;
365
  }
366
}
367
/* Styles for screens that are atleast 768px; */
368
@media only screen and (min-width: 768px) {
369
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
370
  .large-1 {
371
    position: relative;
372
    width: 8.33333%;
373
  }
374

  
375
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
376
  .large-2 {
377
    position: relative;
378
    width: 16.66667%;
379
  }
380

  
381
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
382
  .large-3 {
383
    position: relative;
384
    width: 25%;
385
  }
386

  
387
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
388
  .large-4 {
389
    position: relative;
390
    width: 33.33333%;
391
  }
392

  
393
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
394
  .large-5 {
395
    position: relative;
396
    width: 41.66667%;
397
  }
398

  
399
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
400
  .large-6 {
401
    position: relative;
402
    width: 50%;
403
  }
404

  
405
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
406
  .large-7 {
407
    position: relative;
408
    width: 58.33333%;
409
  }
410

  
411
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
412
  .large-8 {
413
    position: relative;
414
    width: 66.66667%;
415
  }
416

  
417
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
418
  .large-9 {
419
    position: relative;
420
    width: 75%;
421
  }
422

  
423
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
424
  .large-10 {
425
    position: relative;
426
    width: 83.33333%;
427
  }
428

  
429
  /* line 156, ../../../../../../../../../.rvm/gems/ruby-2.0.0-p247/gems/zurb-foundation-4.3.0/scss/foundation/components/_grid.scss */
430
  .large-11 {
431
    position: relative;
432
    width: 91.66667%;
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff