-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (86 loc) · 1.84 KB
/
Copy pathstyle.css
File metadata and controls
99 lines (86 loc) · 1.84 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background: linear-gradient(to right, #4b6cb7, #182848);
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
padding: 20px;
}
.container {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
padding: 20px;
border-radius: 12px;
width: 400px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
.balance-container {
background: rgba(255, 255, 255, 0.2);
padding: 10px;
border-radius: 10px;
margin-bottom: 10px;
}
.summary {
display: flex;
justify-content: space-between;
margin: 10px 0;
}
.income, .expenses {
background: rgba(255, 255, 255, 0.2);
padding: 10px;
border-radius: 8px;
width: 48%;
text-align: center;
}
.transaction-form {
margin-top: 10px;
}
.transaction-form input, .transaction-form select, .transaction-form button {
width: 100%;
margin: 5px 0;
padding: 8px;
border: none;
border-radius: 5px;
}
.transaction-form button {
background: #28a745;
color: white;
cursor: pointer;
transition: background 0.3s ease;
}
.transaction-form button:hover {
background: #218838;
}
#transaction-list {
list-style: none;
margin-top: 10px;
}
#transaction-list li {
background: rgba(255, 255, 255, 0.2);
padding: 10px;
margin: 5px 0;
border-radius: 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
.delete-btn {
background: red;
color: white;
border: none;
padding: 5px;
cursor: pointer;
border-radius: 3px;
}