Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / sass / temp.scss @ 9ac09101

History | View | Annotate | Download (2.4 kB)

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
$wizard-paragraph-font-size: 10px;
13
$wizard-common-font-size: 16px;
14
@mixin adv-conf-padding {
15
	padding: 35px 200px 80px;
16
}
17

    
18

    
19
.advanced-conf-step {
20
	color: $wizard-base-font-color;
21

    
22
	h2 {
23
		color: $wizard-base-font-color;
24
		font-size: $wizard-common-font-size;
25
		font-weight: bold;
26
	}
27

    
28
	p {
29
		font-size: $wizard-paragraph-font-size;
30
	}
31

    
32
	ul {
33
		list-style-type: none;
34
	}
35

    
36
	.checkbox-label {
37
		margin-right:15px;
38
		display: inline-block;
39
		color: $wizard-base-font-color;
40
		font-size: $wizard-common-font-size;
41

    
42
	}
43
	.icon {
44
		font-size: 24px;
45
		margin: 2px;
46
		color: $wizard-base-font-color;
47
	}
48

    
49
	// Upper area with the name of the vm and a button for configuration options			
50
	.adv-main {
51
		padding: 65px 200px 0;
52
		
53

    
54
		.vm-name {
55
			
56
			.label-vm-name {
57
				font-weight: bold;
58
				color: $wizard-base-font-color;
59
				font-size: 16px;
60
			}
61
			input[type="text"] {
62

    
63
				width: 200px;
64
				border: 0;
65
				border-bottom: 1px solid $wizard-base-font-color;
66
				background-color: $overlay-color;
67
				outline: 0;
68
				color: $wizard-base-font-color;
69
				//to be improved!!!!
70
				-webkit-box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
71
				-moz-box-shadow:    7px 7px 0px rgba(72, 80, 87, 0);
72
				box-shadow: 7px 7px 0px rgba(72, 80, 87, 0);
73
			}
74
		}
75

    
76

    
77

    
78
		.expand-btn {
79
			padding-top: 50px;
80
			padding-bottom: 20px;
81
			
82
			.expand-link {
83
				color: $wizard-expand-link;
84
				&:hover {
85
					color: $wizard-base-font-color;
86
				}
87
				&.current {
88
				color:$wizard-base-font-color;
89
				}
90
			}
91
		}
92
	}
93

    
94
	// all the the areas that have the advanced options
95
	.advanced-conf-options {
96
		display: none;
97
		.ssh-keys-area {
98
			background-color: $ssh-opt-area-color;
99
			@include adv-conf-padding();
100
		}
101

    
102
		.networks-area {
103
			background-color: $net-opt-area-color;
104
			@include adv-conf-padding();
105
			li.network-data {
106
				.net-icons {
107
				/*	position: absolute;
108
					left: -10px;
109
					text-align: right; */
110
				}
111
				ul.ips-list {
112
					display:none;
113
					background-color: $wizard-base-font-color;
114
					color: $net-opt-area-color;
115
					margin: 0;
116

    
117
				}
118
			}
119
		}
120

    
121
		.tags-area {
122
			@include adv-conf-padding();
123
			background-color: $tag-opt-area-color;
124
		}
125

    
126
	}
127
}
128