-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (160 loc) · 5.9 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Setting Fires from The Chainsmokers | musicZone</title>
<link rel="stylesheet" href="scss/style.scss" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="typeScales.css" />
</head>
<body>
<nav class="navbar">
<div class="navbar__cols search-shown">
<button id="toggleSidebar" class="navbar__toggle-btn navbar__btn">
<img src="assets/icon-menu.svg" alt="" id="toggleSidebarIcon" />
</button>
<div class="navbar__music-details">
<p class="navbar__music-state">Now playing</p>
<h1 class="navbar__music-title">Setting fires</h1>
<h2 class="navbar__music-artist">The Chainsmokers</h2>
</div>
<input
type="search"
placeholder="Search for music, artists and more..."
id="searchForMusic"
class="navbar__search"
/>
<button id="searchButton" class="navbar__search-btn navbar__btn">
<img src="assets/icon-search.svg" alt="" />
</button>
</div>
</nav>
<!-- sidebar -->
<div class="sidebar">
<ul class="sidebar__links">
<li class="sidebar__links--item">
<a href="#" class="sidebar__links--link">Go Premium</a>
</li>
<li class="sidebar__links--item">
<a href="#" class="sidebar__links--link">Music Settings</a>
</li>
<li class="sidebar__links--item">
<a href="#" class="sidebar__links--link">Rate the app</a>
</li>
<li class="sidebar__links--item">
<a href="" class="sidebar__links--link">Support</a>
</li>
</ul>
</div>
<main>
<section class="player">
<div class="player__thumbnail-wrapper">
<img src="assets/track-thumb.jpg" alt="" class="player__thumbnail" />
</div>
<div class="player__progress"></div>
<div class="player__time-cols">
<span class="player__time">2:38</span>
<span class="player__time">4:07</span>
</div>
<div class="player__controls">
<button class="player__controls--control">
<img src="assets/icon-repeat.svg" alt="" />
</button>
<button class="player__controls--control">
<img src="assets/icon-previous.svg" alt="" />
</button>
<button
id="music-play-control"
class="player__controls--control control-play"
>
<img
class="music-play-control__icon"
src="assets/icon-play.svg"
alt=""
/>
</button>
<button class="player__controls--control">
<img src="assets/icon-next.svg" alt="" />
</button>
<button class="player__controls--control">
<img src="assets/icon-download.svg" alt="" />
</button>
</div>
</section>
<section class="others">
<nav class="others__nav">
<ul class="others__nav--links">
<li class="others__nav--item">
<a href="#" class="others__nav--link others__nav--active"
>Up next</a
>
</li>
<li class="others__nav--item">
<a href="#" class="others__nav--link">Lyrics</a>
</li>
<li class="others__nav--item">
<a href="#" class="others__nav--link">Related</a>
</li>
</ul>
</nav>
<section class="others__songs-list">
<ul class="others__songs">
<li class="others__songs--item">
<div class="others__song">
<div class="others__song--cols">
<article>
<a class="others__song--name" href="#">Closer</a>
<h4 class="others__song--artist">The Chainsmokers</h4>
</article>
<p class="others__song--duration">4:06</p>
</div>
</div>
</li>
<li class="others__songs--item">
<div class="others__song">
<div class="others__song--cols">
<article>
<a class="others__song--name" href="#">Roses</a>
<h4 class="others__song--artist">The Chainsmokers</h4>
</article>
<p class="others__song--duration">3:47</p>
</div>
</div>
</li>
<li class="others__songs--item">
<div class="others__song">
<div class="others__song--cols">
<article>
<a class="others__song--name" href="#">Don't let me down</a>
<h4 class="others__song--artist">The Chainsmokers</h4>
</article>
<p class="others__song--duration">3:38</p>
</div>
</div>
</li>
<li class="others__songs--item">
<div class="others__song">
<div class="others__song--cols">
<article>
<a class="others__song--name" href="#"
>Something just like this</a
>
<h4 class="others__song--artist">The Chainsmokers</h4>
</article>
<p class="others__song--duration">4:08</p>
</div>
</div>
</li>
</ul>
</section>
</section>
</main>
<script type="module" src="app.js"></script>
</body>
</html>