source: Dev/trunk/d3/examples/spline/spline.css @ 76

Last change on this file since 76 was 76, checked in by fpvanagthoven, 14 years ago

d3

File size: 329 bytes
RevLine 
[76]1body {
2  font: 13px sans-serif;
3}
4
5#chart svg {
6  width: 960px;
7  height: 500px;
8  border: solid 1px #ccc;
9}
10
11rect {
12  fill: #fff;
13}
14
15circle, .line {
16  fill: none;
17  stroke: steelblue;
18  stroke-width: 1.5px;
19}
20
21circle {
22  fill: #fff;
23  fill-opacity: .2;
24  cursor: move;
25}
26
27circle.selected {
28  fill: #ff7f0e;
29  stroke: #ff7f0e;
30}
Note: See TracBrowser for help on using the repository browser.