root / snf-cyclades-app / synnefo / ui / new_ui / ui / sass / _networks.scss @ 27a54f35
History | View | Annotate | Download (1.3 kB)
1 |
/* Networks related styles */ |
---|---|
2 |
|
3 |
.networks { |
4 |
.items-list { |
5 |
.img-wrap { |
6 |
.snf-network_full { |
7 |
font-size: 60px; |
8 |
} |
9 |
} |
10 |
[data-status="active"] { |
11 |
.img-wrap { |
12 |
.snf-network_full { |
13 |
color: $secondary-color; |
14 |
} |
15 |
} |
16 |
} |
17 |
} |
18 |
} |
19 |
|
20 |
// for network creation wizard |
21 |
#network-wizard { |
22 |
|
23 |
a { |
24 |
&.nav:focus { |
25 |
border: none; |
26 |
} |
27 |
&.radio_btn:focus, &.check:focus{ |
28 |
border: 1px solid #aee7cc; |
29 |
padding: 2px; |
30 |
} |
31 |
} |
32 |
|
33 |
li { |
34 |
list-style: none outside none; |
35 |
position: relative; |
36 |
} |
37 |
|
38 |
.snf-checkbox-checked, .snf-checkbox-unchecked { |
39 |
font-size: 1.3em; |
40 |
} |
41 |
.subnet_options { |
42 |
margin: 0; |
43 |
li { |
44 |
margin-top: 20px; |
45 |
} |
46 |
} |
47 |
.step { |
48 |
a { color: $wizard-base-font-color;} |
49 |
.network_options { |
50 |
position: relative; |
51 |
padding-bottom: 20px; |
52 |
.explanatory { |
53 |
font-size:emCalc(12px); |
54 |
margin-top:20px; |
55 |
margin-bottom:60px; |
56 |
} |
57 |
.check, .radio_btn { |
58 |
position: absolute; |
59 |
right: 0; |
60 |
&:focus { |
61 |
right: -3px; |
62 |
top: -3px; |
63 |
} |
64 |
} |
65 |
.network-name { |
66 |
margin: 40px 0; |
67 |
h2 { |
68 |
color:white; |
69 |
font-size: emCalc(16px); |
70 |
} |
71 |
} |
72 |
|
73 |
|
74 |
li{ |
75 |
display: block; |
76 |
width: 360px; |
77 |
&.manual{ |
78 |
position: relative; |
79 |
.input { |
80 |
position: absolute; |
81 |
right: -170px; |
82 |
width: 150px; |
83 |
bottom: 5px; |
84 |
display: none; |
85 |
} |
86 |
} |
87 |
&.project-selection li { |
88 |
width: 100%; |
89 |
} |
90 |
} |
91 |
} |
92 |
} |
93 |
} |