Skip to content

Commit

Permalink
submit fks-chart
Browse files Browse the repository at this point in the history
  • Loading branch information
hjzheng committed Jan 19, 2015
1 parent 68e81b8 commit ea7ddb7
Show file tree
Hide file tree
Showing 6 changed files with 734 additions and 0 deletions.
20 changes: 20 additions & 0 deletions fks-chart/bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "front-end-collect-",
"version": "0.0.0",
"authors": [
"hjzheng <[email protected]>"
],
"license": "MIT",
"ignore": [
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"angular": "~1.2.19",
"d3": "~3.4.9",
"angular-marked": "~0.0.12",
"jquery": "~2.1.3"
}
}
5 changes: 5 additions & 0 deletions fks-chart/css/bootstrap.min.css

Large diffs are not rendered by default.

70 changes: 70 additions & 0 deletions fks-chart/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*Dendrogram*/
.node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 1.5px;
}

.node {
font: 20px sans-serif;
cursor: pointer;
}

.node text:hover {
fill: steelblue;
}

.link {
fill: none;
stroke: #ccc;
stroke-width: 1.5px;
}

/*tooltip*/
#tooltip {
position: fixed;
min-width: 200px;
height: auto;
padding: 10px;
background-color: #444;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
color: #fff;
}

#tooltip.hidden {
display: none;
}

#tooltip p {
margin: 0;
font-family: sans-serif;
font-size: 16px;
line-height: 20px;
}

.title {
width: 460px;
position: fixed;
top: 10px;
right: -40px;
height: auto;
padding: 10px;
margin: 15px;
background-color: #444;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
color: #fff;
}

a:hover {
text-decoration: none;
}
Loading

0 comments on commit ea7ddb7

Please sign in to comment.