forked from Frick/ttplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdjNotification.html
More file actions
38 lines (38 loc) · 807 Bytes
/
djNotification.html
File metadata and controls
38 lines (38 loc) · 807 Bytes
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
<html><head><title>Open DJ Spot</title>
<style type="text/css">
body {
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.3, rgb(220,220,220)),
color-stop(0.66, rgb(245,245,245))
);
text-align: left;
font-family: Helvetica,Arial,sans-serif;
cursor: pointer;
height: auto;
overflow: hidden;
}
#djspot {
float: left;
width: 63px;
height: 89px;
padding: 0 20px 10px 0;
}
.bold {
font-weight: bold;
}
#sound {
display: none;
}
</style>
<script type="text/javascript" src="scripts/djNotification.js"></script>
</head>
<body>
<img src="/images/openSpot.png" title="" id="djspot" />
<p class="bold">Grab the decks!</p>
<p><span id="dj" class="bold">User</span> <span id="action">has stepped out of the limelight.</span></p>
<div id="sound"></div>
</body>
</html>