source: Dev/branches/jQueryUI/client/d3/examples/spline/spline.css @ 254

Last change on this file since 254 was 249, checked in by hendrikvanantwerpen, 13 years ago

This one's for Subversion, because it's so close...

First widget (stripped down sequencer).
Seperated client and server code in two direcotry trees.

File size: 329 bytes
Line 
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.