-
Notifications
You must be signed in to change notification settings - Fork 12
/
style.css
128 lines (108 loc) · 1.97 KB
/
style.css
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
:copyright: 2011 by Florian Boesch <[email protected]>.
:license: GNU AGPL3, see LICENSE for more details.
*/
canvas, div{
padding: 0px;
margin: 0px;
}
html, body{
margin: 0px;
padding: 0px;
padding-top: 10px;
font-family: sans-serif;
color: #ddd;
font-size: 11px;
background-color: #111;
}
canvas{
background-color: #ddd;
}
div.error{
width: 480px;
height: 480px;
padding: 10px;
background-color: #ddd;
color: black;
}
td{
vertical-align: middle;
text-align: center;
}
/*
div.node{
border-width: 12px 12px 12px 12px;
border-image: url("node_bg.png") 12 12 12 12 stretch stretch;
-webkit-border-image: url("node_bg.png") 12 12 12 12 stretch stretch;
-moz-border-image: url("node_bg.png") 12 12 12 12 stretch stretch;
}
*/
table{
margin-left: auto;
margin-right: auto;
}
div.tree{
width: 1019px;
height: 280px;
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 5px;
font-weight: bold;
background-image: url("panel_bg.png");
background-repeat: repeat-x;
}
div.content{
width: 1374px;
margin-left: auto;
margin-right: auto;
}
div.left{
float: left;
width: 1024px;
}
div.right{
float: right;
width: 350px;
background-color: #333;
height: 964px;
}
#status{
text-align: center;
background-color: #555;
padding-top: 5px;
}
canvas.graph{
border: 1px solid black;
}
h1{
padding: 0px;
margin: 0px;
padding-bottom: 5px;
font-size: 16px;
text-align: center;
text-shadow: #111 1px 1px 4px;
}
#gauge{
display: inline-block;
width: 120px;
height: 120px;
text-align: center;
}
#properties{
padding: 10px;
}
div.hslider{
width: 150px;
font-size: 8px;
display: inline-block;
}
div.field{
padding-top: 5px;
}
div.field label.desc{
display: inline-block;
font-size: 14px;
width: 100px;
text-shadow: #111 1px 1px 4px;
}