-
Notifications
You must be signed in to change notification settings - Fork 0
/
tracker.css
87 lines (72 loc) · 1.44 KB
/
tracker.css
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
body {
font-family: Arial, sans-serif;
background: linear-gradient(90deg, rgba(29,25,94,1) 0%, rgba(13,85,99,0.9809173669467787) 100%);
color: white;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: auto;
padding: 20px;
}
header {
text-align: center;
padding: 20px;
}
.dashboard {
display: flex;
justify-content: space-around;
margin: 20px 0;
}
.card {
background-color: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 8px;
width: 30%;
text-align: center;
}
.transaction-form, .transaction-history, .charts {
margin: 20px 0;
}
form {
display: flex;
flex-direction: column;
gap: 10px;
}
input, select {
padding: 8px;
border: 1px solid #333;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.1);
color: white;
}
button {
padding: 10px;
background-color: rgba(2, 2, 74, 0.822);
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: rgba(2, 2, 74, 0.9);
}
table {
width: 100%;
border-collapse: collapse;
background-color: rgba(2, 2, 74, 0.822);
}
th, td {
padding: 10px;
border: 1px solid white;
text-align: center;
color: white;
}
thead {
background-color: rgba(2, 2, 74, 0.9);
}
canvas {
width: 100%;
height: 400px;
}