-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.89 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
<!DOCTYPE html>
<html>
<head>
<title>Pomodoro Timer</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="js/scripts.js" type="text/javascript"></script>
</head>
<body>
<div class="outerContainer">
<div class="spaceBetween">
<div>Work: <input type="text" id="sessionTime" value="25" class="narrow smallText centered"></div>
<div>Break: <input type="text" id="breakTime" value="5" class="narrow smallText centered"></div>
</div>
<div class="innerContainerTop">
<div class="timerContainer">
<img id="pause" src="img/timer_pause.png" />
<label id="timer" class="largeText">25:00</label>
</div>
<div class="buttonContainer spaceBetween">
<button id="btnWork" class="greenBackground">Work</button>
<button id="btnBreak">Break</button>
</div>
</div>
<div class="innerContainerBottom">
<div id="divTaskEntry" class="centered">
<input id="enterTask" type="text" placeholder="Enter a Task" class="wide mediumText centered" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Enter a Task'" />
</div>
<div id="divTaskIP" class="taskIPContainer hide">
<div id="checkbox" class="theLargerLeft">
<input type="checkbox" id="check" />
<label id="task" for="check" class="mediumText">Create Powerpoint</label>
</div>
<div class="theSmallerRight">
<label id="taskIP" class="mediumText">0</label>
<div id="arrows">
<a id="upArrow" href='#'><img class="tinyImg" src="img/up_arrow.gif"></a> <br />
<a id="downArrow" href='#'><img class="tinyImg" src="img/down_arrow.gif"></a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>