forked from jaipeee/Budget-Buddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
54 lines (46 loc) · 987 Bytes
/
styles.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
/* Import common styles */
@import url('common-style.css');
/* Add any page-specific styles here */
.summary {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.summary div {
background-color: #007bff;
padding: 10px;
border-radius: 5px;
font-size: 18px;
color: rgba(255, 255, 255, 0.574);
}
.transaction {
display: flex;
justify-content: space-between;
background-color: #f8f9faa1;
padding: 10px;
margin: 10px 0;
border-radius: 5px;
}
.transaction-name, .transaction-amount, .transaction-type {
font-size: 16px;
}
.additional-info {
background-color: rgba(0, 0, 0, 0.7);
margin-top: 20px;
padding: 20px;
border-radius: 10px;
width: 80%;
margin: 100px auto;
color: #fff;
text-align: left;
}
.additional-info h2 {
color: #fff;
}
.additional-info p, .additional-info ul {
font-size: 16px;
line-height: 1.5;
}
.additional-info ul li {
margin-bottom: 10px;
}