-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (91 loc) · 4.19 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
<DOCTYPE!>
<html>
<head>
<title>Pomodoro!</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Orbitron' rel='stylesheet' type='text/css'>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="app.js"></script>
<script src="animation.js"></script>
</head>
<body>
<div class="container">
<div class="page-header">
<div class="row">
<div class="col-md-6">
<h1><img class="brand" src="images/Tomato10.png"/> Pomodoro!</h1>
</div>
<div class="col-md-6 cog">
<i class="fa fa-cog fa-3x" aria-hidden="true" onmouseover="addSpinClass(this)" onmouseout="removeSpinClass(this)" onclick="return showHideForm('hiddenForm');"></i>
</div>
</div>
</div>
<div class="jumbotron">
<h3>Apply now the Pomodoro technique.</h3>
<p>Choose the size (in minutes) for your working loops.
Choose the size of the short break and long break. After every working loop you
will have a short break, after 4 short breaks the next one will be long.
Then the cicles continues. Or use the default values just pressing start. Keep productive and ENJOY!
</p>
</div>
<div class="row">
<div class="col-md-6 center">
<form id="hiddenForm" style="display:none">
<div class="row">
<div class="form-group">
<div class="col-xs-12 pLabel">
<label>Working loops (minutes)?</label>
<input type="number" class="form-control" id="workLoop"></input>
</div>
</div>
<div class="form-group">
<div class="col-xs-12 pLabel">
<label>Short Break?</label>
<input type="number" class="form-control" id="smallRest"></input>
</div>
</div>
<div class="form-group">
<div class="col-xs-12 pLabel">
<label>Long Break?</label>
<input type="number" class="form-control" id="bigRest"></input>
</div>
</div>
</div>
</form>
<div class="button">
<button class="btn btn-success btn-lg show" onclick="start(), hideShow('start', 'stop')" id="start">Start</button>
<button class="btn btn-danger btn-lg hide" onclick="stop(), hideShow('stop', 'start')" id="stop">Stop</button>
<button class="btn btn-danger btn-lg show" onclick="pause(), hideShow('pause', 'resume')" id="pause">Pause</button>
<button class="btn btn-success btn-lg hide" onclick="resume(), hideShow('resume', 'pause')" id="resume">Resume</button>
</div>
</div>
<div class="col-md-6 center">
<div class="timer">
<span id="counter">00:00</span>
</div>
</div>
</div>
</div>
<footer class="text-center" id="footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3>Copyright © Carla Babadopulos</h3>
<ul class="list-inline">
<li>
<a href="mailto:[email protected]" class="icon" target="_blank" title="E-mail"><i class="fa fa-fw fa-envelope icon-social"></i></a>
</li>
<li>
<a href="http://linkedin.com/in/carlababa" class="icon" target="_blank" title="Linkedin"><i class="fa fa-fw fa-linkedin icon-social"></i></a>
</li>
<li>
<a href="http://github.com/carlababa/pomodoro" class="icon" target="_blank" title="Github"><i class="fa fa-fw fa-github icon-social"></i></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>