-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimer.html
50 lines (50 loc) · 1.55 KB
/
timer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="timer.css" />
<title>Sevdas Pomodoro Timer</title>
</head>
<body>
<main class="pomodoro">
<section class="timer">
<header class="spinner">
<svg viewBox="0 0 100 100">
<circle cx="50" cy="50" r="40" />
</svg>
<aside class="timer__time">
<p>
<span class="minutes">25</span>
<span class="colon">:</span>
<span class="seconds">00</span>
</p>
</aside>
</header>
<aside>
<p class="message"></p>
</aside>
<aside class="buttons">
<button class="button focus">FOCUS</button>
<button class="button break-short">SHORT BREAK</button>
<button class="button break-long">LONG BREAK</button>
<button class="button reset">RESET</button>
</aside>
</section>
<section class="counter">
<article class="round">
<h1>ROUND</h1>
<aside class="target" data-target="12">0</aside>
</article>
<aside class="vertical"></aside>
<article class="goal">
<h2>GOAL</h2>
<p class="target">12</p>
<!-- <aside class="target" data-target="12">12</aside> -->
</article>
</section>
</main>
<script src="timer.js"></script>
</body>
</html>