Skip to content

Commit 467b210

Browse files
committed
Added chapter 8
1 parent d69f88a commit 467b210

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8">
55
<title>D3 Page Template</title>
6-
<link rel="stylesheet" type="text/css" href="src/css/gobal.css">
6+
<link rel="stylesheet" type="text/css" href="src/css/global.css">
77
<script type="text/javascript" src="src/js/d3.js"></script>
88

99

src/css/global.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
div.bar {
3+
display: inline-block;
4+
width: 20px;
5+
height: 75px;
6+
background-color: teal;
7+
margin-right: 2px;
8+
}
9+
10+
.axis path,
11+
.axis line {
12+
fill: none;
13+
stroke: black;
14+
shape-rendering: crispEdges;
15+
}
16+
17+
.axis text {
18+
font-family: sans-serif;
19+
font-size: 11px;
20+
}

0 commit comments

Comments
 (0)