-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (103 loc) · 3.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="./public/favicon.svg" />
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
/>
<link rel="icon" type="image/x-icon" href="./assets/public/favicon.ico" />
<script src="./assets/js/script.js" defer></script>
<title>Focus Timer</title>
</head>
<body id="theme" class="light__theme">
<main class="container">
<div class="theme__switcher">
<button class="theme__switcher__btn">
<img
class="theme__switcher__btn__img"
src="./assets/img/light/light.svg"
alt="A sun icon, click to change theme color"
/>
</button>
</div>
<div class="timer">
<div class="timer__display">
<span class="timer__display--minute">00</span>
<span class="timer__display--separator">:</span>
<span class="timer__display--second">00</span>
</div>
<div class="timer__cotroller">
<button class="timer__cotroller__btn--start">
<img
class="timer__cotroller__btn__start__img"
src="./assets/img/light/play.svg"
alt="Start counting down"
/>
</button>
<button class="timer__cotroller__btn--stop">
<img
class="timer__cotroller__btn__stop__img"
src="./assets/img/light/stop.svg"
alt="Stop counting down"
/>
</button>
<button class="timer__cotroller__btn--plus">
<img
class="timer__cotroller__btn__plus__img"
src="./assets/img/light/plus.svg"
alt="Increse timer"
/>
</button>
<button class="timer__cotroller__btn--minus">
<img
class="timer__cotroller__btn__minus__img"
src="./assets/img/light/minus.svg"
alt="Decrease timer"
/>
</button>
</div>
</div>
<div class="sound">
<div class="sound__header">
<h2>Ambient sound</h2>
</div>
<div class="sound__controller">
<button class="sound__controller__btn--nature">
<img
class="sound__controller__btn__nature__img"
src="./assets/img/light/nature.svg"
alt="Play nature sound"
/>
</button>
<button class="sound__controller__btn--rain">
<img
class="sound__controller__btn__rain__img"
src="./assets/img/light/rain.svg"
alt="Play rain sound"
/>
</button>
<button class="sound__controller__btn--store">
<img
class="sound__controller__btn__store__img"
src="./assets/img/light/store.svg"
alt="Play store sound"
/>
</button>
<button class="sound__controller__btn--fire">
<img
class="sound__controller__btn__fire__img"
src="./assets/img/light/fire.svg"
alt="Play fire sound"
/>
</button>
</div>
</div>
</main>
</body>
</html>