17 lines
213 B
CSS
17 lines
213 B
CSS
|
|
||
|
body { font: 12px Arial;}
|
||
|
|
||
|
path {
|
||
|
stroke: steelblue;
|
||
|
stroke-width: 2;
|
||
|
fill: none;
|
||
|
}
|
||
|
|
||
|
.axis path,
|
||
|
.axis line {
|
||
|
fill: none;
|
||
|
stroke: grey;
|
||
|
stroke-width: 1;
|
||
|
shape-rendering: crispEdges;
|
||
|
}
|