-
Notifications
You must be signed in to change notification settings - Fork 38
/
main.css
221 lines (185 loc) · 3.49 KB
/
main.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
body {
font-size: 10px;
font-family: Arial,sans-serif;
margin: 0px
}
#filebox {
position: absolute;
height: auto;
bottom: 0;
top: 0;
left: 0;
width: 173px;
}
#viewer {
position: absolute;
height: auto;
left: 180px;
bottom: 0;
top: 0;
right: 0px;
}
.box {
margin: 10px;
background: none repeat scroll 0 0 #F5F5F5;
border: 1px solid #AAAAAA;
border-radius: 5px 5px 5px 5px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
}
.box-content {
padding: 10px;
}
#right-sidebar {
float:left;
width: 180px;
}
#button-bar-horz > .tool-button:first-child {
border-radius: 4px 0px 0px 4px;
float: left;
margin-left: 10px;
}
#button-bar-horz > .tool-button:last-child {
border-radius: 0px 4px 4px 0px;
margin-left: 0px;
float: left;
}
#button-bar-horz > .tool-button {
margin-left: 0px;
}
#button-bar-vert {
margin: 20px;
}
#button-bar-vert > .tool-button:first-child {
border-radius: 4px 4px 0px 0px;
}
#button-bar-vert > .tool-button:last-child {
border-radius: 0px 0px 4px 4px;
}
#button-bar-vert > .tool-button {
margin-top: 0px;
border-radius: 0px 0px 0px 0px;
}
.tool-button {
float:left;
background: -moz-linear-gradient(top, #ccc 40%, #eee 60%);
border: 1px solid #aaa;
border-radius: 2px 2px 2px 2px;
width: 90px;
height: 20px;
font-size: 12px;
text-align: center;
padding-top: 2px;
font-weight: bold;
margin-left: 5px;
margin-top: 2px;
}
.tool-button:hover {
background: #fff;
cursor: pointer;
}
.butt-selected {
background: #fff;
}
.slider-holder {
margin-bottom: 10px;
padding-right: 24px;
padding-left: 10px;
}
td {
padding:0;
margin:0;
}
#viewer-bar {
height: 25px;
margin-bottom: 10px;
}
#viewer-bar >select {
float:left;
margin-left: 7px;
margin-top: 1px;
}
#axial-view {
float: right;
}
.ui-button-text {
font-size: 10px;
}
/* ui-slider overrides */
.ui-slider-horizontal {
height: 0.5em;
}
.ui-slider .ui-slider-handle {
width: 1em;
height: 1em;
}
#metadata-table {
font-size: 10px;
height: 500px;
width: 584px;
display: block;
overflow: auto;
}
#metadata-table thead {
font-weight: bold;
background: #aaa;
}
tr.even {
background: #eee;
}
#tool-box {
float: left;
width: 150px;
}
.tool-group {
border: 1px solid;
border-radius: 7px 7px 7px 7px;
margin-bottom: 5px;
}
.tool-group h2 {
margin: 0px;
}
#series-selection {
min-height: 200px;
border: 1px solid #aaa;
list-style:none;
padding: 0px;
margin-top: 38px;
}
#series-selection > li {
margin: 0px;
padding: 0px;
}
.series-link {
cursor: pointer;
}
.series-link > canvas{
margin: 10px;
}
.series-selected > canvas {
font-weight: bold;
border: 1px solid #fff;
box-shadow: 0 0 8px;
}
#view-area {
position: absolute;
bottom: 10px;
left: 10px;
right: 10px;
top: 70px;
}
.box h2 {
-moz-border-bottom-colors: none;
background: -moz-linear-gradient(center top , #829AA8, #405A6A) repeat scroll 0 0 transparent;
background: -webkit-linear-gradient(#829AA8, #405A6A) repeat scroll 0 0 transparent;
border-color: #677C89 #677C89 #6B808D;
border-radius: 5px 5px 0 0;
border-style: solid;
border-width: 1px;
color: #FFFFFF;
font-size: 12px;
font-weight: bold;
margin: 0;
padding: 3px 13px;
position: relative;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.7);
}