Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / sass / _machines.scss @ c9d873e8

History | View | Annotate | Download (2.4 kB)

1
.vms .items-list {
2
	.img {
3
			@include sprite('../images/vm-on.png', 56px, 58px);
4
			 
5
			&.stopped {
6
				background-image:url('../images/vm-stopped.png');
7
			}
8
			.os {
9
				@include sprite('../images/os-unknown.png', 22px, 22px);
10
				position: absolute;
11
				top:8px;
12
				left:18px;
13
				&.windows { background-image:url('../images/os-windows.png'); }
14
				&.kubuntu { background-image:url('../images/os-kubuntu.png'); }
15
				&.fedora { background-image:url('../images/os-fedora.png'); }
16
			}
17
		
18
		}
19
}
20

    
21
.vm {
22
	.top {
23
		.img {
24
			@include sprite('../images/vm-on.png', 112px, 116px);
25
		}
26
		&.stopped {
27
			background-image:url('../images/vm-stopped.png');
28
		}
29
		.os {
30
			@include sprite('../images/os-unknown.png', 22px, 22px);
31
			position: absolute;
32
			background-size:100%;
33
			width:44px;
34
			height:44px;
35
			left:36px;
36
			top:16px;
37
			&.windows { background-image:url('../images/os-windows.png'); }
38
			&.kubuntu { background-image:url('../images/os-kubuntu.png'); }
39
			&.fedora { background-image:url('../images/os-fedora.png'); }
40
		}
41
	}
42
}
43

    
44

    
45
.create-vm {
46
	.select-os {
47
		li {
48
			width:23%;
49
			padding:20px;
50
			list-style:none outside none;
51
			display: inline-block;
52
			float: left;
53
			height: 200px;
54
			margin:0 10px 10px 0;
55
			&:hover,
56
			&.selected {
57
				background:#fff;
58
				h2, p, a {
59
					color:$secondary-color;
60
				}
61
			}
62
			a {
63
				color:#fff;
64
			}
65
			.os {
66
				@include sprite('../images/os-unknown.png', 30px, 30px);
67
				background-size:100%;
68
				margin-bottom:2em;
69
				&.windows { background-image:url('../images/os-windows.png'); }
70
				&.kubuntu { background-image:url('../images/os-kubuntu.png'); }
71
				&.fedora { background-image:url('../images/os-fedora.png'); }
72
			}
73
			h2 {
74
				font-size:emCalc(16px);
75
				font-weight:normal;
76
				color:#fff;
77
			}
78
			.details {
79
				font-weight:bold;
80
				font-size:emCalc(14px);
81
			}
82
		}
83
	}
84
	.select-flavor {
85
		dl {
86
			color:#fff;
87
			font-size:emCalc(20px);
88
			margin-bottom:10px;
89
			dd {
90
				width:23%;
91
				display: inline-block;
92
			}
93
			dt {
94
				width:70%;
95
				display: inline-block;
96
				font-weight: normal;
97
				span {
98
					@extend .btn3;
99
					min-width: 90px;
100
					margin:0 10px;
101
					&:first-child {
102
						margin-left:0;
103
					}
104
				}
105
			}
106
		}
107
	}
108
}
109

    
110
#vm-connect {
111
	.info {
112
		font-style:italic;
113
		font-size:emCalc(13px);
114
		color: lighten($primary-color,5%);
115
	}
116
	.ssh {
117
		text-align: center;
118
		span {
119
			padding: 10px 30px;
120
			background:$secondary-color;
121
			color:#fff;
122
		}
123
	}
124
}
125

    
126

    
127

    
128