Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (1.1 kB)

1
.networks .items-list {
2
	.img {
3
			@include sprite('../images/network-green102x116.png', 51px, 58px);
4
			background-size:100%;
5
		}
6
}
7

    
8
.network {
9
	.top {
10
		.img {
11
			@include sprite('../images/network-green102x116.png', 102px, 116px);
12
		}
13
	}
14
}
15

    
16

    
17

    
18
.create-network {
19
	color: #fff;
20
	.check {
21
		color: #fff;
22
	}
23
	p {
24
		font-size: 0.8em;
25
		font-style: italic;
26
		margin: 5px 0 0;
27
		width: 545px;
28
	}
29

    
30
	li {
31
		list-style: none outside none;
32
	}
33
	.custom_checkbox {
34
		font-size: 1.3em;
35
	}
36
	.subnet_options {
37
		margin: 0;
38
		li {
39
			margin-bottom: 6px;
40
			padding-left: 155px;
41
		}
42
	}
43

    
44
	.network_options {
45
		position: relative;
46
		width: 350px;
47
		min-height: 285px;
48
		
49
		.check {
50
			position: absolute;
51
			right: 0;
52
		}
53
		
54
		li {
55
			display: block;
56
			margin-bottom: 13px;
57
		
58
			form {
59
				margin: 0;
60
				
61
				input {
62
					position: absolute;
63
					display: inline-block;
64
					right: 0;
65
					width: 200px;
66
					height: 20px;
67
					font-size: 0.9em;
68
					
69
					&.hidden {
70
						display: none;
71
					}
72
				}
73
			}
74
			&.manual form input {
75
				right: -160px;
76
				width: 150px;
77
			}
78
		}		
79
		span.sub_title {
80
			float:left;
81
		}
82
	}
83
}
84