-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
74 lines (72 loc) · 3.25 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
<!DOCTYPE html>
<html>
<head>
<title>Budget App</title>
<meta charset="UTF-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="cleartype" content="on">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container container-main">
<div class="page-header">
<h1>2,174.50 <small>RON</small></h1>
</div>
<div class="align-center">
<div class="btn-group" role="group">
<a href="" class="btn btn-primary">Balance</a>
<a href="" class="btn btn-default">Income</a>
<a href="" class="btn btn-default">Spendings</a>
</div>
</div>
<div class="table-container">
<table class="table table-hover">
<tbody>
<tr class="red">
<td>4th @13:31</td>
<td>Pizza</td>
<td>-20.00</td>
<td width="40"><button type="button" class="btn btn-xs btn-danger"><i class="glyphicon glyphicon-remove"></i></button></td>
</tr>
<tr class="red">
<td>2nd @21:18</td>
<td>Iesire in oras</td>
<td>-40.00</td>
<td width="40"><button type="button" class="btn btn-xs btn-danger"><i class="glyphicon glyphicon-remove"></i></button></td>
</tr>
<tr class="red">
<td>1st @14:34</td>
<td>Cumparaturi</td>
<td>-132.54</td>
<td width="40"><button type="button" class="btn btn-xs btn-danger"><i class="glyphicon glyphicon-remove"></i></button></td>
</tr>
<tr class="green">
<td>1st @10:00</td>
<td>Salariu</td>
<td>+2,500.00</td>
<td width="40"><button type="button" class="btn btn-xs btn-danger"><i class="glyphicon glyphicon-remove"></i></button></td>
</tr>
</tbody>
</table>
</div>
<div class="buttons">
<a href="add.html" class="btn btn-default"><i class="glyphicon glyphicon-plus"></i> Receive</a>
<a href="add.html" class="btn btn-default right">Spend <i class="glyphicon glyphicon-minus"></i></a>
</div>
<nav>
<ul class="pagination">
<li class="disabled"><a href="#" aria-label="Previous"><span aria-hidden="true">«</span></a></li>
<li class="active"><a href="#">Feb 2016</a></li>
<li><a href="#">Jan 2016</a></li>
<li><a href="#">Dec 2015</a></li>
<li><a href="#">Nov 2015</a></li>
<li><a href="#">Oct 2015</a></li>
<li><a href="#">Sep 2015</a></li>
<li><a href="#" aria-label="Next"><span aria-hidden="true">»</span></a></li>
</ul>
</nav>
</div>
</body>
</html>