-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (80 loc) · 2.51 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.css" id='jQMnDColor' />
<!-- FontAwesome - http://fortawesome.github.io/Font-Awesome/ -->
<link rel="stylesheet" href="css/font-awesome.min.css" />
<!-- nativeDroid core CSS -->
<link rel="stylesheet" href="css/jquerymobile.nativedroid.css" />
<!-- nativeDroid: Light/Dark -->
<link rel="stylesheet" href="css/jquerymobile.nativedroid.dark.css" id='jQMnDTheme' />
<!-- nativeDroid: Color Schemes -->
<link rel="stylesheet" href="css/jquerymobile.nativedroid.color.blue.css" id='jQMnDColor' />
<script src= "http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src= "http://code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.3.13/d3.min.js" charset="utf-8"></script>
<style>
/* style for packing circles*/
.node {
cursor: pointer;
}
.node {
stroke: #6A6868;
stroke-width: .5px;
}
.node:hover {
stroke: #000;
stroke-width: 1px;
}
/*.node--leaf {
fill: white;
}
*/
.label {
font: 16px "Helvetica Neue", Helvetica, Arial, sans-serif;
text-anchor: middle;
text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
}
.score {
font: 10px "Helvetica Neue", Helvetica, Arial, sans-serif;
text-anchor: middle;
fill: white;
}
.label,
.node--root
/*.node--leaf*/
{
pointer-events: none;
}
</style>
</head>
<body>
<div id='dialer' data-role='page'>
<div id='ham_title' data-role="header" data-position="fixed" data-theme="b" role="banner">
<h1 class="ui-title" >
<i class="icon-stethoscope"> healtharound.me</i>
</h1>
</div>
<div id ='category' data-role = 'content'>
<svg id='canvas'></svg>
</div>
</div>
<div id='locale' data-role='page'>
<div data-role="header" data-position="fixed" data-theme="b" role="banner">
<h1 class="ui-title" >
<i class="icon-angle-left home_button"></i>
</h1>
</div>
<div id ='category' data-role = 'content'>
</div>
</div>
</body>
<script src="js/ham.js"></script>
<script src="js/d3-contort.js"></script>
<script src="js/layouts.js"></script>
<script src="js/app.js"></script>
</html>