-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (45 loc) · 906 Bytes
/
style.css
File metadata and controls
56 lines (45 loc) · 906 Bytes
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
body{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#legenda #legendaTitel {
font-weight: bold;
}
#diagram rect {
border-left: 1px solid black;
}
.axis text {
font-size: 13px;
}
.hidden {
display: none;
}
.block {
display: block;
}
#toolTip {
position: absolute;
width: auto;
height: auto;
padding: 10px;
font-weight: normal;
background-color: white;
-webkit-border-raadius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
pointer-events: none;
align-items: center;
text-align: center;
border: 1px solid black;
}
.stackedBar {
font: 10px sans-serif;
shape-rendering: crispEdges;
}
.stackedBar .axis path,
.stackedBar .axis line {
fill: none;
stroke: #000;
}