-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (81 loc) · 3.2 KB
/
index.html
File metadata and controls
87 lines (81 loc) · 3.2 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Temporizador estilo pomodoro">
<title>Focus Timer | Pomodoro</title>
<link rel="shortcut icon"
href="https://img.icons8.com/external-flaticons-lineal-color-flat-icons/32/external-technique-productivity-flaticons-lineal-color-flat-icons.png"
type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
<script src="js/index.js" type="module" defer></script>
</head>
<body>
<header>
<div class="themes">
<button class="light-theme hide">
<img src="./assets/light-theme.svg" alt="sol" />
</button>
<button class="dark-theme">
<img src="./assets/dark-theme.svg" alt="lua" />
</button>
</div>
</header>
<main>
<div id="timer">
<div id="time">
<span class="minutes">25</span>
<span>:</span>
<span class="seconds">00</span>
</div>
<div id="controls">
<button class="play">
<img src="./assets/play.svg" alt="botão play" />
</button>
<button class="pause hide">
<img src="./assets/pause.svg" alt="botão pause" />
</button>
<button class="stop">
<img src="./assets/stop.svg" alt="botão parar" />
</button>
<button class="more">
<img src="./assets/more.svg" alt="botão sinal de mais" />
</button>
<button class="less">
<img src="./assets/less.svg" alt="botão sinal de menos" />
</button>
</div>
</div>
<div id="sounds">
<div class="card forest">
<button class="button-forest">
<img src="./assets/forest.svg" alt="floresta" />
</button>
<input class="volume" type="range" step="2" />
</div>
<div class="card rain">
<button class="button-rain">
<img src="./assets/rain.svg" alt="chuva" />
</button>
<input class="volume" type="range" step="2" />
</div>
<div class="card coffee-shop">
<button class="button-coffee-shop">
<img src="./assets/coffee-shop.svg" alt="cafeteria" />
</button>
<input class="volume" type="range" step="2" />
</div>
<div class="card fireplace">
<button class="button-fireplace">
<img src="./assets/fireplace.svg" alt="lareira" />
</button>
<input class="volume" type="range" step="2" />
</div>
</div>
</main>
</body>
</html>