-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtoxicity.css
72 lines (59 loc) · 982 Bytes
/
toxicity.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
body {
font-family: sans-serif;
color: #333;
}
h1 {
margin: 0.3em 0;
}
#chart-wrapper {
width: 100%;
overflow-x: auto;
}
.axis path {
opacity: 0;
}
.axis line {
fill: none;
stroke: black;
shape-rendering: crispEdges;
}
.axis text {
font-family: sans-serif;
font-size: 11px;
}
rect {
shape-rendering: crispEdges;
}
div.tooltip {
position: absolute;
text-align: left;
padding: 4px;
font: 12px sans-serif;
background: #EEE;
border: 1px solid #333;
border-radius: 2px;
pointer-events: none;
}
.tooltip h2 {
font-family: sans-serif;
font-size: 130%;
margin: 0 0 0 0;
}
.tooltip p.filename {
font-size: 90%;
margin: 0 0 0.5em 0;
border-bottom: 1px solid #BBB;
}
.tooltip p {
line-height: 1.1em;
margin: 0 1px 3px 1px;
}
.tooltip-swatch {
padding-right: 5px;
margin: 0 2px 1px 0;
border: 1px solid;
color: #EEE;
}
.tooltip .total {
font-weight: bold;
}