charges.css
1.51 KB
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
.total-line {
fill: none;
stroke: orangered;
stroke-width: 2px;
z-index: -1;
}
.total-circle {
fill: orangered;
}
.total-circle:hover {
-webkit-filter: brightness(2.0);
-moz-filter: brightness(2.0);
filter: brightness(2.0);
}
.total-tooltip {
border: orangered;
}
.horizontalY {
/*fill : none;*/
shape-rendering: crispEdges;
stroke: lightgrey;
stroke-width: 1px;
}
.horizontalY0 {
stroke-width: 0px;
}
#charge_table, .charge_chart{
width: 100%;
}
#charge_table,
#charge_table th,
#charge_table td {
margin-top: 5em;
margin-bottom: 5em;
border: solid 1px lightsteelblue;
}
#charge_table td,
#charge_table th {
padding: 0.8em;
}
.svg_chart {
background-color: #fAfAfA;
border: 1pt solid black;
display: inline-block;
width: 100%;
}
text.legend {
font-size: 12px;
font-family: sans-serif;
}
rect.legend {
stroke: grey;
stroke-width: 0.5pt;
}
rect.bar {
stroke: lightgrey;
stroke-width: 0.5pt;
}
rect.bar:hover {
-webkit-filter: brightness(0.5);
-moz-filter: brightness(0.5);
filter: brightness(0.8);
}
.tooltip {
position: absolute;
opacity: 1.0;
z-index: 1000;
text-align: left;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
padding: 10px;
border: 1px solid;
background-color: white;
color: black;
/*font: 12px sans-serif;*/
max-width: 300px;
pointer-events: none;
}
button.export {
float: right;
margin-right: 0;
}