-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
93 lines (87 loc) · 2.56 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
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="date.js"></script>
<script type="text/javascript" src="overhere.js"></script>
<title>Overhere</title>
<style type="text/css">
body {
font-family: Helvetica, Bitstream Vera Sans, sans-serif;
color: #000000;
}
h1 small {
font-size: 0.5em;
font-weight: normal;
}
iframe {
border: 0px solid #ffffff;
}
.content {
text-align: left;
margin-left: 20%;
margin-top: 8%;
}
.heading {
font-size: 3em;
font-weight: bold;
}
.item {
margin-left: 3%;
}
.mainlink {
font-size: 2em;
}
.comment {
color: gray;
font-size: 1em;
margin-left: 5%;
}
A:link {
text-decoration: none;
color: #008000;
}
A:visited {
text-decoration: none;
color: #008000;
}
A:active {
text-decoration: none;
color: #008000;
}
A:hover {
text-decoration: underline;
color: #008000;
}
</style>
</head>
<body onload="load()">
<div>
<span> </span>
<a href="javascript:showUserInput()" id="switchUser" style="display: none;">
Switch User
<small>
(currently following <strong><span id="usertext"></span></strong>)
</small>
</a>
</div>
<div class="content">
<h1 style="color: grey;">Overhere <small>...listen along with any last.fm user in real time.</small></h1>
<div id="status" class="mainlink"></div>
<div id="playStatus" style="display: none;" class="mainlink">
<strong>Now Playing:</strong> <span id="nowPlaying"></span>
</div>
<br><br>
<div id="userInput">
<form onsubmit="return start()">
<strong>Last.fm user to follow:</strong> <input id="username" type="text">
<input type="submit" value="Start listening">
</form>
</div>
<div id="note">
<small style="line-height: 10em">
<a href="http://spotify.com">Spotify</a> required. Made by <a href="http://jonty.co.uk">jonty</a>. Code on <a href="http://github.com/jonty/overhere">github</a>.
</small>
</div>
</div>
</body>
</html>