Skip to content

Commit

Permalink
Various library improvements
Browse files Browse the repository at this point in the history
Folder structure changes:
* Libraries are now contained in the /lib directory

Library changes:
* Improved rescaling support
* New multitouch gestures
* hGraph is now zoomable at any coordinate
* Styling in now done using HealthGraph.css
  • Loading branch information
iddl committed May 29, 2013
1 parent 2521c2d commit 6ba0fb8
Show file tree
Hide file tree
Showing 9 changed files with 11,204 additions and 75 deletions.
Binary file modified .DS_Store
Binary file not shown.
30 changes: 30 additions & 0 deletions HealthGraph.css
@@ -0,0 +1,30 @@
/*
* Health Graph CSS file
*/


/*Color of ring*/
.ring {
fill : #97be8c;
}

/*Color of web that connects datapoints*/
.web {
fill : rgba(0,0,0,0.1);
}

/*Color of circle + labels of healty datapoints*/
.healthy {
fill : #616363;
}

/*Color of circle + labels of unhealty datapoints*/
.unhealthy {
fill : #e1604f;
}

/*Enables pointer cursor for clickable labels and circles*/
text.clickable,
circle.clickable {
cursor : pointer;
}

0 comments on commit 6ba0fb8

Please sign in to comment.