-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixed-deposit-calculator.css
69 lines (60 loc) · 1.14 KB
/
fixed-deposit-calculator.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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
font-family: Arial, sans-serif;
background-image: linear-gradient(to right, #C39BD3 10%, #5B2C6F 90%);
}
.calculator {
border: 1px solid #ccc;
border-radius: 10px;
padding: 20px;
background-color: #154360;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
h2 {
margin-bottom: 20px;
color: #f0f0f0;
}
.input-group {
margin-bottom: 15px;
}
label {
display: block;
font-size: 1.2em;
margin-bottom: 5px;
color: #f0f0f0;
}
input {
width: calc(100% - 20px);
padding: 10px;
font-size: 1em;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
width: 100%;
padding: 10px;
font-size: 1.2em;
border: none;
border-radius: 5px;
background-color: #f9a825;
color: white;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #f57f17;
}
.result {
margin-top: 20px;
font-size: 1.2em;
color: #f0f0f0;
}
#maturityAmount {
font-weight: bold;
color: #f0f0f0;
}