-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (65 loc) · 2.82 KB
/
index.html
File metadata and controls
65 lines (65 loc) · 2.82 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
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Azeret+Mono&family=DM+Sans:wght@400;500;700&family=Roboto+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>Timerr</title>
</head>
<body>
<div class="container">
<div class="title">
<h1>Task List</h1>
</div>
<div id="timeNow">00.00.00</div>
<div class="input-task form__group field">
<input
id="taskname"
type="text"
class="form__field"
placeholder="Name"
name="name"
/>
<label id="taskname_label" for="taskname" class="form__label">Task name</label>
</div>
<div id="timer">
<div id="h" class="time-unit"><div class="time" id="hours"></div>h
</div>
<div id="m" class="time-unit"><div class="time" id="minutes"></div>m
</div>
<div id="s" class="time-unit"><div class="time" id="seconds"></div>s
</div>
</div>
<div class="buttons">
<button id="start" class="btn btn-gradient-border btn-glow">
Start
</button>
<button id="stop" class="btn btn-gradient-border" disabled>
Stop
</button>
</div>
<div id="items-list-header" class="grid hide">
<div class="item-header item-grid">
<div class="item-name">Task</div>
<div class="item-date">Start date</div>
<div class="item-duration">Duration</div>
<div class="item-options">Options</div>
</div>
</div>
<div id="items-list-container" class="grid"></div>
<div id="faq">
- Click the name of the task to edit the name -<br>
- Press twice on option buttons to confirm action -<br>
- <strong class="b">Continue</strong> / Continues the selected task timer -<br>
- <strong class="a">Delete</strong> / Deletes the selected task -<br>
</div>
<button id="clear" class="btn btn-gradient-border btn-small hide">
Clear storage
</button>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="timer.js" type="text/javascript"></script>
</body>
</html>