forked from eigenhombre/i3d3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (42 loc) · 709 Bytes
/
style.css
File metadata and controls
45 lines (42 loc) · 709 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
body {
background-color: whitesmoke;
}
.axis path, .axis line {
fill: none;
stroke: lightgrey;
shape-rendering: black;
}
.axis text, .label, .note {
font-family: sans-serif;
fill: grey;
}
.axis text {
font-size: 11px;
}
.label {
font-size: 12px;
fill: #333;
}
.note {
font-size: 12px;
}
.plot {
float: left;
}
div.tooltip { // Adapted from http://bl.ocks.org/mbostock/1087001
position: absolute;
text-align: center;
width: 60px;
height: 12px;
padding: 5px;
font: 10px sans-serif;
background: #ddd;
border: solid 1px #aaa;
border-radius: 3px;
pointer-events: none;
}
.title {
text-anchor: middle;
font-family: sans-serif;
fill: grey;
}