-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
220 lines (220 loc) · 6.04 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="css/owfont-regular.css" />
<link rel="stylesheet" href="css/style.css" />
<title>Momentum</title>
</head>
<body>
<header class="header">
<div class="player delay">
<div class="player-controls-container">
<div class="player-controls">
<button class="play-prev player-icon"></button>
<button class="play player-icon"></button>
<button class="play-next player-icon"></button>
</div>
<div class="player-advanced-controls">
<div class="player-progress">
<div class="player-track-info"></div>
<div class="player-progress-info">
<input
type="range"
class="progress-bar input-range"
name="progress-bar"
id="progress-bar"
value="0"
min="0"
max="100"
step="0.01"
/>
<span class="player-time-info">.</span>
</div>
</div>
<div class="player-volume">
<button class="mute"></button>
<input
type="range"
class="volume input-range"
name="volume"
id="volume"
value="50"
min="0"
max="100"
step="0.5"
/>
</div>
</div>
</div>
<ul class="play-list"></ul>
</div>
<div class="weather delay">
<input type="text" class="city" placeholder="Kyiv" />
<i class="weather-icon owf"></i>
<div class="weather-error"></div>
<div class="description-container">
<span class="temperature"></span>
<span class="weather-description"></span>
</div>
<div class="wind"></div>
<div class="humidity"></div>
</div>
</header>
<main class="main">
<div class="slider-icons">
<button class="slide-prev slider-icon"></button>
<button class="slide-next slider-icon"></button>
</div>
<time class="time delay"></time>
<date class="date delay"></date>
<div class="greeting-container delay">
<span class="greeting"></span>
<input type="text" class="name" placeholder="[Enter name]" />
</div>
</main>
<footer class="footer">
<div class="settings">
<button class="settings-btn"></button>
<div class="overlay hidden"></div>
<fieldset class="settings-container hidden delay">
<ul>
<li>
<label class="input-label label-language" for="language"
>Language:</label
>
<select name="language" id="language" class="language">
<option value="en">English</option>
<option value="ru">Українська</option>
</select>
</li>
<li>
<label class="input-label label-image" for="image-source"
>Image source:</label
>
<select
name="image-source"
id="image-source"
class="image-source"
>
<option value="unsplash">Unsplash API</option>
<option value="flickr">Flickr API</option>
</select>
</li>
<li class="tags-container hidden">
<label class="input-label label-tags" for="tags"
>Tags for background:</label
>
<input type="text" name="tags" class="tags" id="tags" />
</li>
<li>
<label class="checkbox-label label-time" id="time-checkbox-label">
<span class="switch-span time-span">Show time</span>
<input
type="checkbox"
class="checkbox-input"
id="time-checkbox-input"
checked
/>
<span class="checkbox-switch"></span>
</label>
</li>
<li>
<label class="checkbox-label label-date" id="date-checkbox-label">
<span class="switch-span date-span">Show date</span>
<input
type="checkbox"
class="checkbox-input"
id="date-checkbox-input"
checked
/>
<span class="checkbox-switch"></span>
</label>
</li>
<li>
<label
class="checkbox-label label-greeting"
id="greeting-checkbox-label"
>
<span class="switch-span greeting-span">Show greeting</span>
<input
type="checkbox"
class="checkbox-input"
id="greeting-checkbox-input"
checked
/>
<span class="checkbox-switch"></span>
</label>
</li>
<li>
<label
class="checkbox-label label-quote"
id="quote-checkbox-label"
>
<span class="switch-span quote-span"
>Show quote of the day</span
>
<input
type="checkbox"
class="checkbox-input"
id="quote-checkbox-input"
checked
/>
<span class="checkbox-switch"></span>
</label>
</li>
<li>
<label
class="checkbox-label label-weather"
id="weather-checkbox-label"
>
<span class="switch-span weather-span"
>Show weather forecast</span
>
<input
type="checkbox"
class="checkbox-input"
id="weather-checkbox-input"
checked
/>
<span class="checkbox-switch"></span>
</label>
</li>
<li class="player-li">
<label
class="checkbox-label label-player"
id="player-checkbox-label"
>
<span class="switch-span player-span">Show audio player</span>
<input
type="checkbox"
class="checkbox-input"
id="player-checkbox-input"
checked
/>
<span class="checkbox-switch"></span>
</label>
</li>
</ul>
</fieldset>
</div>
<div class="quote-container delay">
<button class="change-quote"></button>
<div>
<div class="quote"></div>
<div class="author"></div>
</div>
</div>
<div class="copyright">
<div class="github">
<a href="https://github.com/VolodymyrMamaevsky" target="_blank"
><img src="./assets/svg/github.svg" alt="GitHub logo"
/></a>
</div>
</div>
</footer>
<script type="module" src="js/script.js"></script>
</body>
</html>