-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (86 loc) · 3.8 KB
/
index.html
File metadata and controls
100 lines (86 loc) · 3.8 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Pomodoro Timer</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<link rel="shortcut icon" href="icon.png" type="image/png">
<!-- Place favicon.ico in the root directory -->
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Nunito&family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- Add your site or application content here -->
<header class="green">
<img class="logo" src="icon.png">
<h1>Pomodoro Timer</h1>
</header>
<div class="wrapper">
<div id="timer-container" class="green" data-container="timer-container">
<div id="time-zone" data-container="time-zone"></div>
<div id="timer-buttons" data-container="buttons"></div>
</div>
<div id="done-tasks-counter" data-container="done-tasks-counter">
<p class="header">Done tasks counter</p>
<div id="counter">
<div class="text" data-container="quantity"></div>
<div class="counterButtons">
<button class="increase" data-container="increase"></button>
<button class="decrease" data-container="decrease"></button>
</div>
</div>
</div>
<div id="task-manager" data-container="task-manager">
<div id="categories-container">
<h2>Categories</h2>
<div id="lists" data-container="lists"></div>
<form class="form-inline" data-container="new-list-form">
<input class="text" type="text" class="form-control" name="name">
<input class="submit" type="submit" value="">
</form>
</div>
<div id="tasks-container">
<div id="tasks-list">
<h2>Tasks</h2>
<form class="form-inline" data-container="new-task-form">
<input class="text" type="text" class="form-control" name="name">
<input class="submit" type="submit" value="">
</form>
<div id="tasks" data-container="tasks">
<p class="prompt" data-container="tasks-prompt">Add your tasks here</p>
</div>
</div>
<div id="done-tasks-list">
<h2>Done</h2>
<div id="done-tasks" data-container="done-tasks">
<p class="prompt" data-container="done-tasks-prompt">Your completed tasks will be displayed here</p>
</div>
</div>
</div>
</div>
</div>
<footer>
<p class="copyrights">Pomodoro-Tracker is not related to the Pomodoro Technique™/Pomodoro™’s trademark holder Cirillo Company and respects its trademarks.<br>
Pomodoro Technique® and Pomodoro® are registered trademarks of Francesco Cirillo.
</p>
<a target="_blank" rel="noopener noreferrer" href="https://en.wikipedia.org/wiki/Pomodoro_Technique">More about Pomodoro Technique</a>
<p class="author">© github.com/Oustinger, 2020</p>
</footer>
<script src="plugins.js"></script>
<script type="module" src="jsDist/bundle.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set','transport','beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
</html>