--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/toolkit/exemples/couple/javascript/d3/examples/spline/spline.css Thu Apr 10 14:20:23 2014 +0200
@@ -0,0 +1,30 @@
+body {
+ font: 13px sans-serif;
+}
+
+#chart svg {
+ width: 960px;
+ height: 500px;
+ border: solid 1px #ccc;
+}
+
+rect {
+ fill: #fff;
+}
+
+circle, .line {
+ fill: none;
+ stroke: steelblue;
+ stroke-width: 1.5px;
+}
+
+circle {
+ fill: #fff;
+ fill-opacity: .2;
+ cursor: move;
+}
+
+circle.selected {
+ fill: #ff7f0e;
+ stroke: #ff7f0e;
+}