-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
73 lines (66 loc) · 2.03 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>PomoFocus clone</title>
<link href="./public/style.css" rel="stylesheet" />
</head>
<body>
<div id="user-interface">
<div id="header">
<p id="pomofocus"><span class="span-img" id="span-img-pomofocus"></span>Pomofocus</p>
<div id="btn-container">
<button class="btn"><span class="span-img" id="span-img-report"></span> Report</button>
<button class="btn"><span class="span-img" id="span-img-settings"></span>Settings</button>
<button class="btn"><span class="span-img" id="span-img-login"></span>Login</button>
</div>
</div>
<!-- ruler-ani -->
<div id="ruler">
<div id="pos">
</div>
</div>
<!-- main square -->
<div id="label-container">
<div id="label">
<div id="label-header">
<button class="label-btn" id="label-btn-pomodoro">Pomodoro</button>
<button class="label-btn" id="label-btn-short">Short Break</button>
<button class="label-btn" id="label-btn-long">Long Break</button>
</div>
<div id="hour">
25:00
</div>
<div id="btn-start-container">
<button id="start">START</button>
</div>
</div>
</div>
<!-- time to work -->
<div id="time-to-work">
<div id="time-to-work-text">
Time to Work!
</div>
</div>
<!-- tasks -->
<div id="tasks-container">
<div id="tasks-header">
<p>Tasks</p>
<div id="btn-task"></div>
</div>
<div id="add-task-container">
<div id="add-task-sub-container">
<div id="add-task">
<span class="span-img" id="span-img-add-task"></span>
<p>Add Task</p>
</div>
</div>
</div>
</div>
</div>
<!-- initialize your application -->
<script type="module" src="./src/init/index.js"></script>
<!-- load the review buttons for your live deployment -->
<script type="module" src="./lib/review-buttons.js"></script>
</body>
</html>