-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
45 lines (38 loc) · 888 Bytes
/
style.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
/* from http://bl.ocks.org/mbostock/3310560#index.html */
body {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.bar {
fill: steelblue;
}
.x.axis path {
display: none;
}
/* from http://bl.ocks.org/mbostock/2706022#index.html */
.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
.node circle {
fill: #ccc;
stroke: #fff;
stroke-width: 1.5px;
}
text {
font: 10px sans-serif;
pointer-events: none;
}
/* Stuff I'm adding */
body { font-size: 14px; font-family: "Helvetica Neue" }
header h1 { font-size: 64px; font-weight: normal; margin-right: 12px; display: inline; }
header h2 { font-size: 120%; font-weight: normal; display: inline; }
header { border-bottom: 1px solid #cccccc; }
section h1 { font-weight: normal; display: inline-block; margin-right: 12px; }
div > * { font-size: 10px; }