-
Notifications
You must be signed in to change notification settings - Fork 0
/
album.html
90 lines (83 loc) · 2.96 KB
/
album.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
<!DOCTYPE html>
<html>
<head>
<title>Lyra</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="https://downloadicons.net/sites/default/files/headphone-symbol-82537.png" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:400,800,600,700,300">
<link rel="stylesheet" type="text/css" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" type="text/css" href="normalize.css">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" type="text/css" href="album.css">
<link rel="stylesheet" type="text/css" href="player_bar.css">
</head>
<body class="album">
<!-- Navbar -->
<nav class="navbar">
<a href="index.html" class="logo">
<h1>Lyra</h1>
</a>
<div class="links-container">
<a href="collection.html" class="navbar-link">Collection</a>
</div>
</nav>
<!-- Main -->
<main class="album-view container narrow">
<section class="clearfix">
<div class="column half">
<img class="album-cover-art">
</div>
<div class="album-view-details column half">
<h2 class="album-view-title"></h2>
<h3 class="album-view-artist"></h3>
<h5 class="album-view-release-info"></h5>
</div>
</section>
<!-- Song list -->
<table class="album-view-song-list">
<!-- Song UI view -->
</table>
</main>
<!-- Music Player Controls -->
<section class="player-bar">
<div class="container">
<!-- Play, Next, & previous buttons -->
<div class="control-group main-controls">
<a class="previous">
<span class="ion-skip-backward"></span>
</a>
<a class="play-pause">
<span class="ion-play"></span>
</a>
<a class="next">
<span class="ion-skip-forward"></span>
</a>
</div>
<!-- Currently Playing + Seek Bar -->
<div class="control-group currently-playing">
<h2 class="song-name">Let Down</h2>
<!-- Seek Bar -->
<div class="seek-control">
<div class="seek-bar">
<div class="fill"></div>
<div class="thumb"></div>
</div>
<div class="current-time">0:00</div>
<div class="total-time">4:49</div>
</div>
<h2 class="artist-song-mobile">Let Down - Radiohead</h2>
<h3 class="artist-name">Radiohead</h3>
</div>
<!-- Volume Controls -->
<div class="control-group volume">
<span class="ion-volume-high icon"></span>
<div class="seek-bar">
<div class="fill"></div>
<div class="thumb"></div>
</div>
</div>
</div>
</section>
<script src="album.js"></script>
</body>
</html>