-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
121 lines (104 loc) · 4.11 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
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="author" content="Angel Kittiyachavalit">
<meta name="description" content="Think you know what the wealth distribution is in the US? Let's find out!">
<title>Wealth Distribution</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script src="js/raphael-min.js"></script>
<script src="js/wealth.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-responsive.css">
<link rel="stylesheet/less" href="css/base.less">
<script src="js/less-1.3.0.min.js"></script>
</head>
<body>
<div class="content" id="page-0">
<h1>What is the<br /><span class="title-highlight">current wealth distribution</span><br />in the US?</h1>
<div class="form-fields">
<div class="container">
<div class="row">
<div class="span3 offset1">
<p>Enter the percent distribution for each group below:</p>
<form>
<div>
<label class="top-label">Top 20%</label>
<input id="top" type="text" />
</div>
<div>
<label class="second-label">2nd 20%</label>
<input id="second" type="text" />
</div>
<div>
<label class="middle-label">Middle 20%</label>
<input id="middle" type="text" />
</div>
<div>
<label class="fourth-label">4th 20%</label>
<input id="fourth" type="text" />
</div>
<div>
<label class="bottom-label">Bottom 20%</label>
<input id="bottom" type="text" />
</div>
</form>
</div>
<div class="span8" id="pie-chart-0">
</div>
</div>
</div>
</div>
</div>
<div class="content hide" id="page-1">
<h1>What is the<br /><span class="title-highlight">ideal wealth distribution</span><br />in the US?</h1>
<div class="form-fields">
<div class="container">
<div class="row">
<div class="span3 offset1">
<p>Enter the percent distribution for each group below:</p>
<form>
<div>
<label class="top-label">Top 20%</label>
<input id="top" type="text" />
</div>
<div>
<label class="second-label">2nd 20%</label>
<input id="second" type="text" />
</div>
<div>
<label class="middle-label">Middle 20%</label>
<input id="middle" type="text" />
</div>
<div>
<label class="fourth-label">4th 20%</label>
<input id="fourth" type="text" />
</div>
<div>
<label class="bottom-label">Bottom 20%</label>
<input id="bottom" type="text" />
</div>
</form>
</div>
<div class="span8" id="pie-chart-1">
</div>
</div>
</div>
</div>
</div>
<div class="back-submit">
<div class="container">
<div class="row">
<div class="span12">
<a href="/" class="goback">< Back</a>
<button class="submit-cont" value="submit">
<span>Submit & Continue</span>
</div>
</div>
</div>
</div>
</body>
</html>