-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
42 lines (42 loc) · 1.44 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pomodoro Timer with extension</title>
<!-- Font Awesome Icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"
rel="stylesheet"
/>
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="section-container">
<button id="focus" class="btn btn-timer btn-focus">Focus</button>
<button id="shortbreak" class="btn btn-shortbreak">Short Break</button>
<button id="longbreak" class="btn btn-longbreak">Long Break</button>
</div>
<div class="time-btn-container">
<span id="time"></span>
<div class="btn-container">
<button id="btn-start" class="show">Start</button>
<button id="btn-pause" class="hide">Pause</button>
<button id="btn-reset" class="hide">
<i class="fa-solid fa-rotate-right"></i>
</button>
</div>
</div>
<img src="moon.png" alt="moon_img" id="icon" />
</div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>