-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (54 loc) · 1.14 KB
/
Copy pathstyle.css
File metadata and controls
62 lines (54 loc) · 1.14 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
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #e0e0e0; /* Background color */
}
.amount {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start; /* Aligns items to the top */
height: 100vh;
padding-top: 50px; /* Space from top */
}
.balance {
text-align: center;
margin-bottom: 30px;
background-color: lightblue;
width: 20rem;
height: 10rem;
border-radius: 20px;
/* Space below balance */
}
#amount {
font-size: 2.5em;
color: #4CAF50; /* Balance color */
}
.icon-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.icon {
margin: 10px;
text-align: center;
cursor: pointer;
}
.icon img {
width: 50px;
height: 50px;
}
.icon p {
margin-top: 5px;
}
button {
background-color: #4CAF50; /* Button color */
color: white; /* Text color */
border: none; /* No border */
padding: 10px 15px; /* Padding */
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Pointer cursor */
}
button:hover {
background-color: #45a049; /* Darker green on hover */
}