-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
182 lines (182 loc) · 6.42 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>CUBE CSS - Banking dashboard</title>
<link rel="stylesheet" media="all" href="/css/global.css" />
<link
rel="stylesheet"
media="print"
href="/fonts/fonts.css"
onload="this.media='all'"
/>
</head>
<body class="bg-light color-primary font-base">
<header role="banner" class="[ site-head ] [ bg-tertiary-glare ]">
<div class="wrapper">
<div class="site-head__inner">
<h1 class="text-600">Account overview</h1>
<div class="user">
<a href="#">My profile</a>
<img
src="/images/profile-image.jpg"
width="50"
height="50"
alt="Profile image for Lorem Ipsum"
/>
</div>
</div>
</div>
</header>
<main>
<article class="wrapper">
<div class="[ key-header ] [ splitter ] [ gap-top-700 ]">
<h2 class="text-700" id="transaction-label">Latest transactions</h2>
<aside>
<a href="#" class="[ button ] [ radius ]" data-variant="ghost"
>Get statement</a
>
<a href="#" class="[ button ] [ radius ]">Make payment</a>
</aside>
</div>
<div class="[ splitter ] [ gap-top-600 ]">
<section
class="[ table-group ] [ flow radius ]"
aria-labelledby="transaction-label"
>
<h3 class="color-secondary-shade text-400 weight-medium">14th July 2020</h3>
<table>
<thead class="visually-hidden">
<tr>
<th>Description</th>
<th>Category</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td data-type="expense">Lorem ipsum dolor sit amet</td>
<td>
<span class="[ pill ] [ radius bg-tertiary color-light ]"
>Expenses</span
>
</td>
<td>-£123.40</td>
</tr>
<tr>
<td data-type="expense">Lorem ipsum dolor sit amet</td>
<td>
<span class="[ pill ] [ radius bg-quaternary color-light ]"
>Bills</span
>
</td>
<td>-£70.40</td>
</tr>
<tr>
<td data-type="bill">Lorem ipsum dolor sit amet</td>
<td>
<span class="[ pill ] [ radius bg-quaternary color-light ]"
>Bills</span
>
</td>
<td>-£333.33</td>
</tr>
</tbody>
</table>
<h3 class="color-secondary-shade text-400 weight-medium">13th July 2020</h3>
<table>
<thead class="visually-hidden">
<tr>
<th>Description</th>
<th>Category</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td data-type="expense">Lorem ipsum dolor sit amet</td>
<td>
<span class="[ pill ] [ radius bg-tertiary color-light ]"
>Expenses</span
>
</td>
<td>-£123.40</td>
</tr>
<tr>
<td data-type="expense">Lorem ipsum dolor sit amet</td>
<td>
<span class="[ pill ] [ radius bg-quaternary color-light ]"
>Bills</span
>
</td>
<td>-£70.40</td>
</tr>
<tr>
<td data-type="bill">Lorem ipsum dolor sit amet</td>
<td>
<span class="[ pill ] [ radius bg-quaternary color-light ]"
>Bills</span
>
</td>
<td>-£333.33</td>
</tr>
</tbody>
</table>
<h3 class="color-secondary-shade text-400 weight-medium">12th July 2020</h3>
<table>
<thead class="visually-hidden">
<tr>
<th>Description</th>
<th>Category</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td data-type="expense">Lorem ipsum dolor sit amet</td>
<td>
<span class="[ pill ] [ radius bg-tertiary color-light ]"
>Expenses</span
>
</td>
<td>-£123.40</td>
</tr>
<tr>
<td data-type="expense">Lorem ipsum dolor sit amet</td>
<td>
<span class="[ pill ] [ radius bg-quaternary color-light ]"
>Bills</span
>
</td>
<td>-£70.40</td>
</tr>
<tr>
<td data-type="bill">Lorem ipsum dolor sit amet</td>
<td>
<span class="[ pill ] [ radius bg-quaternary color-light ]"
>Bills</span
>
</td>
<td>-£333.33</td>
</tr>
</tbody>
</table>
</section>
<section class="[ summary ] [ flow radius ] [ bg-primary color-light ]">
<h3 class="color-tertiary-glare text-700">Summary</h3>
<dl class="flow">
<dt class="text-600 color-tertiary-glare">Balance</dt>
<dd class="text-700 font-mono weight-bold">£673.43</dd>
<dt class="text-600 color-tertiary-glare">Total outgoings</dt>
<dd class="text-700 font-mono weight-bold">-£874.88</dd>
<dt class="text-600 color-tertiary-glare">Total income</dt>
<dd class="text-700 font-mono weight-bold">+£1548.31</dd>
</dl>
</section>
</div>
</article>
</main>
</body>
</html>