d3/examples/spline/spline.css

31 строка
329 B
CSS
Исходник Обычный вид История

2011-04-26 15:10:48 +04:00
body {
font: 13px sans-serif;
}
2011-05-01 03:47:38 +04:00
#chart svg {
width: 960px;
height: 500px;
border: solid 1px #ccc;
}
rect {
fill: #fff;
}
2011-04-26 15:10:48 +04:00
circle, .line {
fill: none;
stroke: steelblue;
stroke-width: 1.5px;
}
circle {
fill: #fff;
fill-opacity: .2;
2011-04-26 15:10:48 +04:00
cursor: move;
}
circle.selected {
fill: #ff7f0e;
2011-04-26 15:10:48 +04:00
stroke: #ff7f0e;
}