-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 1.53 KB
/
index.html
File metadata and controls
38 lines (32 loc) · 1.53 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="./icon.png">
<title>Focus</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="actions">
<a class="remove-logs" href="#">
<svg width="30" height="40" viewBox="0 0 432.6 486.4">
<path d="M110.1,486.4a72.3,72.3,0,0,1-72.2-72.2V97H13.5a13.5,13.5,0,0,1,0-27H114.7V53.5A53.561,53.561,0,0,1,168.2,0h96.2a53.56,53.56,0,0,1,53.5,53.5V70H419.1a13.5,13.5,0,0,1,0,27H394.7V414.2a72.3,72.3,0,0,1-72.2,72.2ZM64.9,414.2a45.281,45.281,0,0,0,45.2,45.2H322.5a45.281,45.281,0,0,0,45.2-45.2h.1V97H64.9ZM141.7,53.5V70H290.9V53.5A26.545,26.545,0,0,0,264.4,27H168.2A26.546,26.546,0,0,0,141.7,53.5Zm61.1,343.9V158.9a13.5,13.5,0,0,1,27,0V397.5a13.5,13.5,0,1,1-27-.1Zm88.1-14.8V173.7a13.5,13.5,0,0,1,27,0V382.6a13.5,13.5,0,1,1-27,0Zm-176.2,0V173.7a13.5,13.5,0,0,1,27,0V382.6a13.5,13.5,0,0,1-27,0Z" />
</svg>
</a>
<label class="mode-wrapper">
<input class="mode-checkbox" type="checkbox" />
<div class="mode"></div>
</label>
</div>
<div class="wrapper">
<div class="clock-text">00:00:00</div>
<form class="add-task">
<input class="add-task-input" type="text" placeholder="Task Name" required>
<button class="add-task-button" type="submit">Add</button>
</form>
<div class="task-list"></div>
</div>
<script src="./assets/js/focus.js"></script>
</body>
</html>