-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (73 loc) · 3.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/index.css"/>
<title></title>
</head>
<body>
<div class="wrapper">
<div class="content shadow">
<div class="row">
<div class="col-md-4">
<span class="glyphicon glyphicon-chevron-left limeColor"></span>List of workouts
</div>
<div class="col-md-6"></div>
<div class="col-md-2">
<button class="button">
<span class="glyphicon glyphicon-heart "></span> 192
</button>
</div>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-4">
<span id="title">
Push yourself.</span>
</div>
</div>
<div class="row">
<!-Серая панель-->
<div class="col-md-7 col-md-offset-5">
<div id="taskPanel" class="shadow">
<img src="images/grayTr.png" alt="Tr"/>
<div class="row">
<div class="col-md-3">
<span class="glyphicon glyphicon-time"></span>
</div>
<div class="col-md-3">
<button class="button">13 min</button>
</div>
<div class="col-md-3">
<button class="button">28 min</button>
</div>
<div class="col-md-3">
<button class="button">52 min</button>
</div>
</div>
<div class="row">
<div class="col-md-3"><span class="glyphicon glyphicon-fire"></span></div>
<div class="col-md-7">
<div id="calories">
<span style="color:#1CEBB7">~</span>
230 cal
</div>
</div>
</div>
</div>
</div>
</div>
<!--Конец строки row с серой панелью-->
<div class="row">
<div class="col-md-8">
<hr style="border: 2px solid #1CEBB7;
border-radius: 10px;"/>
</div>
<div class="col-md-4">
<button class="button">START TRAINING</button>
</div>
</div>
</div>
</div>
</body>
</html>