-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (73 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Expenses chart component</title>
<script src="./script.js" defer></script>
</head>
<body>
<main class="container">
<div class="loader flex center justify">
<div class="icon flex center justify">
<img id="logo" src="./images/logo.svg" alt="">
</div>
</div>
<section class="my_balance">
<details class="balance">
<summary>My balance</summary>
<h1 class="amount">$921.48</h1>
</details>
<img src="./images/logo.svg" alt="company_logo">
</section>
<section class="spending_chart">
<h2>Spending - Last 7 Days</h2>
<!-- spending details -->
<div class="spending_">
<span>
<span class="sunday" id="sun" data-amount="$25.48"></span>
<div class="days">sun</div>
</span>
<span>
<span class="monday" id="mon" data-amount="$17.45"></span>
<div class="days">mon</div>
</span>
<span>
<span class="tuesday" id="tue" data-amount="$34.91"></span>
<div class="days">tue</div>
</span>
<span>
<span class="wednesday" id="wed" data-amount="$52.36"></span>
<div class="days">wed</div>
</span>
<span>
<span class="thursday" id="thu" data-amount="$31.07"></span>
<div class="days">thu</div>
</span>
<span>
<span class="friday" id="fri" data-amount="$23.39"></span>
<div class="days">fri</div>
</span>
<span>
<span class="saturday" id="sat" data-amount="$43.28"></span>
<div class="days">sat</div>
</span>
</div>
<i></i>
<!-- total from last month and this month -->
<div class="total_">
<div class="total_left">
<p class="total_this_month">Total this month</p>
<b>$478.33</b>
</div>
<div class="total_right">
<b>+2.4%</b>
<p>from last month</p>
</div>
</div>
</section>
</main>
</body>
</html>