-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
114 lines (108 loc) · 4.63 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<title>PomoTimer</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/png" href="assets/img/tomato.png"/>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
</head>
<body>
<div class="background" data-ibg-bg="assets/img/school-bg.jpg">
<div id="main-tomato" class="tomato">
<p class="time" id="main-time"> 25:00 </p>
<div id="loader">
<div id="box"></div>
<div id="hill"></div>
</div>
<div class="slider">
<div class="meter-wrap">
<p class="meter-row">
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar-big">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar-big">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar-big">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar-big">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
<span class="meter-bar">|</span>
</p>
</div>
<p><i class="fa fa-caret-up" aria-hidden="true"></i></p>
<p class="buttons">
<i id="open-popup" class="fa fa-clock-o btn" aria-hidden="true"></i>
<i id="stop-btn" class="fa fa-stop-circle btn" aria-hidden="true"></i>
<i id="play-btn" class="fa fa-play-circle btn" aria-hidden="true"></i>
</p>
</div>
</div>
</div>
<div class="tomato popup time-info visuallyhidden hidden">
<div class="nav">
<span><i id="open-info" class="fa fa-question-circle btn btn-small" aria-hidden="true"></i></span>
<span><i id="close-popup" class="fa fa-times-circle btn btn-small" aria-hidden="true"></i></span>
</div>
<p class="pomodori"></p
<p class="work-sentence"> You have worked for:</p>
<p id="done-time" class="work-time"> 0 hours 0 minutes</p>
<p class="buttons">
<i id="reset" class="fa fa-refresh btn" aria-hidden="true"></i>
<i id="open-settings" class="fa fa-cog btn" aria-hidden="true"></i>
</p>
</div>
<div class="tomato popup settings visuallyhidden hidden">
<div class="nav">
<span><i id="close-settings" class="fa fa-arrow-circle-left btn btn-small" aria-hidden="true"></i></span>
<span><i id="close-popup-settings" class="fa fa-times-circle btn btn-small" aria-hidden="true"></i></span>
</div>
<p class="time">choose wisely!</p>
<form>
<span>Work time: <input id="workTime" type="text" maxlength="2" required title="2 characters max" pattern="^\d{1,2}$" name="work" placeholder="25">min </span>
<span>Short break: <input id="shortTime" type="text" maxlength="2" required title="2 characters max" pattern="^\d{1,2}$" name="rest" placeholder="5">min </span>
<span>Long break: <input id="longTime" type="text" maxlength="2" required title="2 characters max" pattern="^\d{1,2}$" name="rest" placeholder="15">min </span>
<p class="buttons">
<i id="save-settings" class="fa fa-check-circle btn" aria-hidden="true"></i>
</p>
</form>
</div>
<div class="tomato popup info visuallyhidden hidden">
<div class="nav">
<span><i id="close-info" class="fa fa-arrow-circle-left btn btn-small" aria-hidden="true"></i></span>
<span><i id="close-popup-info" class="fa fa-times-circle btn btn-small" aria-hidden="true"></i></span>
</div>
<div>
<p class="font-18">Not sure how to use this app?</p>
<p class="strong font-18">It' easy.</p>
<ol>
<li>Set how much time one pomodoro should take.</li>
<li>Set how much time should the regular brake take.</li>
<li>Then set how much time the long break should take.</li>
<li>Save it and you are good to go!.</li>
</ol>
<div>
<p class="font-18">What is pomodoro technique?</p>
<p class="strong font-18"><a href="http://lifehacker.com/productivity-101-a-primer-to-the-pomodoro-technique-1598992730">Read here</a></p>
</div>
<p class="footer">Made by <span class="strong">Domantas Pelaitis</span></p>
</div>
</div>
<script data-main="assets/js/common.js" src="assets/js/require.js"></script>
</body>
</html>