-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (86 loc) · 3.57 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/images/favicon.png">
<title>Money Tracker</title>
<link rel="stylesheet" href="./style/style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossOrigin="anonymous" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossOrigin="anonymous" />
</head>
<body class="index">
<div class="overlay"></div>
<div class="container-xxl p-3">
<div class="row g-3">
<div class="col-md-2 mt-md-3 m-0">
<aside class="rounded shadow-sm bord">
<div class="sec shadow-sm">all</div>
<div class="sec shadow-sm">group1</div>
<div class="sec shadow-sm">group2</div>
<div class="sec shadow-sm">group3</div>
<div class="sec shadow-sm">group4</div>
<a href="#">
<div class="sec d-flex flex-column shadow-sm align-items-center"> <i class="fas fa-plus"></i> Add New Group</div>
</a>
<div class="sec mt-auto ourblur shadow-sm"> <i class="fas fa-door-open"></i> Log Out</div>
</aside>
</div>
<div class="col-md-10">
<div class="content row g-3">
<div class="col-12 m-md-0">
<nav class="navbar navbar-expand-lg ourblur text-white shadow-sm rounded-1 bord">
<div class="container-fluid">
<a class="navbar-brand" href="#" style="color: #fff;">Navbar</a>
<button class="navbar-toggler" type="button" style="color: #fff;"
data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav"
aria-expanded="false" aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
</div>
</nav>
</div>
<div class="col-12">
<div class="row g-3">
<div class="col-sm-6">
<div class="ourblur bord p-3 rounded-2 text-white shadow-sm">
<h4>I give</h4>
<span class="" style="color: red;">-120 EGP</span>
</div>
</div>
<div class="col-sm-6">
<div class="ourblur bord p-3 rounded-2 text-white shadow-sm">
<h4>I got</h4>
<span class="" style="color: green;">+120 EGP</span>
</div>
</div>
<div class="col-12">
<h4 class="ourblur bord p-3 rounded-2 text-white shadow-sm">total : <span
style="color: yellow;">0</span></h4>
</div>
<div class="col-12">
<div class="ourblur bord p-3 rounded-2 text-white shadow-sm d-flex flex-column gap-3">
<h3>transuctions</h3>
<div class="ourblur rounded-2 bord shadow-sm p-3">text</div>
<div class="ourblur rounded-2 bord shadow-sm p-3">text</div>
<div class="ourblur rounded-2 bord shadow-sm p-3">text</div>
<div class="ourblur rounded-2 bord shadow-sm p-3">text</div>
<div class="ourblur rounded-2 bord shadow-sm p-3">text</div>
<button type="button" class="btn btn-link">More...</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossOrigin="anonymous"></script>
<script src="scripts/toggel.js"></script>
</body>
</html>