-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathicicle.css
79 lines (70 loc) · 1.17 KB
/
icicle.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
/*
* icicle.css: styles for Icicle visualization
*/
body {
font-family: sans-serif;
font-size: small;
padding-left: 20px;
padding-right: 20px;
color: #333333;
}
a {
color: #CC2900;
}
div#chart {
width: 100%;
margin-top: 20px;
}
rect.svBox {
stroke: #fff;
}
rect.svBox:hover {
cursor: pointer;
}
.svBoxLabel {
cursor: pointer;
fill: #333333;
}
div.svTooltip {
opacity: 0;
z-index: 2;
position: absolute;
height: 3em;
white-space: nowrap;
padding-top: 8px;
padding-left: 12px;
padding-right: 12px;
padding-bottom: 18px;
font-size: small;
background: #ffffee;
border: 0px;
border-radius: 2px;
pointer-events: none;
}
div.svPopout {
position: absolute;
border-radius: 2px;
border: 2px #333333 solid;
padding: 6px;
background-color: #ffffff;
opacity: 0;
z-index: -1;
width: 50%;
}
.svXAxisLabel {
font-size: large;
font-weight: bold;
font-variant: small-caps;
text-align: center;
width: 100%;
letter-spacing: 0.3em;
margin-bottom: 20px;
}
.svYAxisLabel {
font-size: large;
font-weight: bold;
font-variant: small-caps;
text-align: center;
letter-spacing: 0.3em;
white-space: nowrap;
}