-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (63 loc) · 2.59 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
<!DOCTYPE html>
<html lang="pt-BR" >
<head>
<meta charset="UTF-8">
<title>Pomodoro</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<link rel="icon" type="image/png" href="css/favicon.png">
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body class="white-text vertical-center">
<div class="container-fluid text-center">
<div class="row">
<div class="col-xs-12">
<h1>Pomodoro</h1>
<div class="svg radial-progress" id="clock-container">
<svg height="20em" width="20em">
<circle class="radial-progress-background white-stroke" r="9em" cx="10em" cy="10em" fill="transparent" stroke-dasharray="0em" stroke-dashoffset="0em"></circle>
<circle class="radial-progress-cover white-stroke" r="9em" cx="10em" cy="10em" fill="transparent" stroke-dasharray="0em" stroke-dashoffset="0"></circle>
<circle class="radial-progress-center" r="9em" cx="10em" cy="10em" fill="transparent" stroke-dasharray="0em" stroke-dashoffset="0em"></circle>
<text id="clock" class="white-fill" x="9em" y="10em" transform="rotate(-270 560 125)">00:00</text>
</svg>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-3">
<i id="controls" class="fa fa-play fa-fw fa-2x" title="Play/Pause" aria-hidden="true"></i>
</div>
<div class="col-xs-3">
<i id="volume" class="fa fa-volume-up fa-fw fa-2x" title="Mute/Unmute" aria-hidden="true"></i>
</div>
<div class="col-xs-3">
<i id="alert" class="fa fa-exclamation-triangle fa-fw fa-2x" title="Alerts on/off" aria-hidden="true"></i>
</div>
<div class="col-xs-3">
<i id="reset" class="fa fa-times fa-fw fa-2x" title="Reset" aria-hidden="true"></i>
</div>
</div>
<div class="row" id="linhaComandos">
<div class="col-xs-6">
<div id="breakLength">
<p>Descanso</p>
<i class="fa fa-minus fa-fw" aria-hidden="true"></i>
<span id="break">5</span>
<i class="fa fa-plus fa-fw" aria-hidden="true"></i>
</div>
</div>
<div class="col-xs-6">
<div id="sessionLength">
<p>Trabalho</p>
<i class="fa fa-minus fa-fw" aria-hidden="true"></i>
<span id="session">25</span>
<i class="fa fa-plus fa-fw" aria-hidden="true"></i>
</div>
</div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>