This repository has been archived by the owner on Apr 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (92 loc) · 2.67 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
<!-- SOURCE: https://github.com/lookitscook/music -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Music</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="js/lib/flot/jquery.min.js"></script>
<script src="js/lib/flot/jquery.flot.min.js"></script>
<script src="js/lib/flot/jquery.flot.time.min.js"></script>
<script src="js/lib/jquery-dateFormat.min.js"></script>
<script src="js/lib/cupcake.min.js"></script>
<script src="js/line-fitter.js"></script>
<script src="js/application.js"></script>
<style type="text/css">
body,html{
margin:0;
padding:0;
height:100%;
width:100%;
font-family:helvetica,sans-serif;
}
body.loading{
background-image:url(img/loading.gif);
background-position:center;
background-repeat:no-repeat;
}
.hidden, .loading #result, .loading #chart{
display:none;
visibility:hidden;
}
#chart{
height:90%;
width:100%;
display:block;
position:absolute;
left:0;
bottom:10%;
}
#chart canvas{
height:100% !important;
width:100% !important;
}
#result{
width:100%;
position:absolute;
top:2%;
left:0;
text-align:center;
}
a{
background:#000;
color:#fff;
padding:0.15em 0.35em;
text-decoration:none;
}
#status{
position:absolute;
bottom:0;
right:0;
text-align:right;
padding:1em;
color:#999;
}
#details{
position: absolute;
left: 0;
bottom: 0;
height: 10%;
width: 100%;
text-align:right;
background:#EBEBEB;
}
</style>
</head>
<body class="loading">
<div id="chart"> </div>
<div id="details"> </div>
<div id="result">
<h1>
<a href="#" class="name">John Doe</a>'s taste in music is <em class="verdict">…</em>
</h1>
<p class="hidden">
by <span class="percent">6</span>% per
<span class="timespan">year</span>
according to <a class="lastfm" href="http://www.last.fm">last.fm</a>
and <a href="http://www.pitchfork.com">pitchfork.com</a>
</p>
</div>
<div id="status">loading...</div>
</body>
</html>