blob: ce312cdec4103537062178e33b5f75749874dd63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
body {
background: #000000;
font-family: Sans-serif;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
cursor: default;
}
h1 {
margin-top: 5px;
margin-bottom: 5px;
}
label {
font-weight: bold;
}
label.error {
margin-left: 10px;
color: #ff0000;
}
#partitioning label.error {
margin-left: 0px;
}
select, input {
margin-top: 10px;
margin-bottom: 10px;
}
#container {
background: #ebeae8;
width: 800px;
height: 600px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -300px;
margin-left: -400px;
}
td {
text-align: center;
}
#header {
background-image: url('../img/header.png');
width: 800px;
height: 90px;
}
#content {
width: 800px;
height: 510px;
background: #cc0000;
}
#main {
width: 800px;
height: 460px;
background: #ebeae8;
}
#navigation {
width: 800px;
height: 50px;
background: #ebeae8;
}
#backbutton {
background-image: url('../img/icons/back.png');
}
#forwardbutton {
background-image: url('../img/icons/forward.png');
}
.ui-slider-handle {
margin-top: 25px;
}
.partitionrange {
background-color: red !important;
}
.step {
padding: 15px;
}
.navigationbutton {
text-align: right;
font-size: 14px;
width: 100px;
height: 34px;
border: 1px #bdbbbc solid;
background: #e5e1e0 14px center;
border-radius: 5px;
margin-top: 7px;
float: right;
margin-right: 8px;
background-repeat: no-repeat;
padding-right: 15px;
}
|