-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (96 loc) · 1.91 KB
/
styles.css
File metadata and controls
116 lines (96 loc) · 1.91 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@import url('https://fonts.googleapis.com/css2?family=Gilroy:wght@400;700&display=swap');
body {
font-family: 'Gilroy', Arial, sans-serif;
background-color: #ff0051;
margin: 0;
padding: 0;
}
#heading{
text-align: center;
font-size: 36px;
color: #ff0051;
margin-bottom: 20px;
}
img{
width: 10vw;
height: 10vw;
margin-top: -5vh;
margin-bottom: -2vh;
margin-left: 1vw;
}
.container {
max-width: 80%;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}
form {
display: flex;
flex-direction: column;
}
input, select, button {
margin-bottom: 10px;
padding: 10px;
font-size: 16px;
border-radius: 8px; /* Curved buttons */
}
button {
background-color: #ff0051;
color: #fff;
border: none;
cursor: pointer;
}
button:hover {
transition: 0.5s;
background-color: #c90342;
}
#filters {
margin-top: 20px;
}
#filters input {
margin-right: 10px;
}
#apply-filters {
margin-top: 10px; /* Added spacing */
}
#sort-container {
margin-top: 10px; /* Moves dropdown to next line */
}
#expense-list {
margin-top: 20px;
}
.expense-item {
display: flex;
justify-content: space-between;
padding: 10px;
border-bottom: 1px solid #ddd;
}
.expense-item button {
background-color: #dc3545;
color: #fff;
border: none;
cursor: pointer;
border-radius: 8px; /* Curved buttons */
}
.expense-item button:hover {
background-color: #c82333;
}
#budget-summary {
margin-top: 20px;
}
#expense-chart-container {
margin-top: 20px;
margin-bottom: 20px;
padding: 10px;
background-color: #fff0f0;
box-shadow: 0 0 10px rgba(172, 149, 149, 0.379);
border-radius: 30px;
text-align: center;
width: 40%;
align-items: center;
justify-content: center;
}
#expense-chart {
max-width: 70%; /* Responsive resizing */
}