blob: 9166d343616714270505564c44bc6786fa6aca67 (
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
|
body {
font-family:sans;
}
#ebusgraph {
position: absolute;
height: calc(100% - 160px);
top: 2px;
left: 10px;
right: 45px;
}
#legend {
position: absolute;
height: 150px;
overflow-y: scroll;
left: 40px;
top: 10px;
background: rgba(240,240,240,0.55);
}
#legend select {
width: 160px;
}
#overview {
position: absolute;
top: calc(100% - 150px);
height: 150px;
left: 10px;
right: 10px;
}
|