This repository has been archived by the owner on May 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout_1.html
57 lines (51 loc) · 1.75 KB
/
layout_1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Jukebox</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
</head>
<body style="-webkit-app-region: drag">
<div class="player">
<div id="artwork_background"></div>
<div class="status">
<div class="left_container">
<div id="artwork-container">
<img draggable="false" id="artwork" alt="" />
<span id="rating_bubble" class="unrated"></span>
</div>
</div>
<div class="middle_container">
<span id="current_track">-</span>
<span id="current_artist">-</span>
<span id="current_album">-</span>
<span id="current_owner">-</span>
</div>
<div class="right_container">
<div id="rating">
<div id="voting_container">
<a href="#" id="vote_up"><i class="fa fa-thumbs-o-up"></i></a>
<a href="#" id="vote_down"><i class="fa fa-thumbs-o-down"></i></a>
<a href="#" id="playlist"><i class="fa fa-list"></i></a>
</div>
</div>
</div>
</div>
<div id="votes_container">
<span id="user_positive_votes"></span>
<span id="user_negative_votes"></span>
<span id="user_no_votes"></span>
</div>
<div id="time_container">
<div id="time_elapsed" data-time='0'>0:00</div>
<div id="time_details"><progress id="progressbar" value="0" max="100"></progress></div>
<div id="time_total" data-duration='0'>0:00</div>
</div>
</div>
</body>
<script>
require('./js/disable_actions.js')
require('./js/layout_1.js')
</script>
</html>