-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (93 loc) · 1.9 KB
/
style.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
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
.loan-calculator {
font-family: "Roboto",sans-serif;
width: 800px;
height: 80vh;
margin: 40px auto;
padding: 2%;
background: #edeff1;
box-shadow: 0,12px,50px,-11px,rgba(0,0,0,0.2);
border-radius: 8px;
color: rgba(21, 22, 20, 0.768);
}
.loan-calculator,
.loan-calculator * {
box-sizing: border-box;
border-radius: 8px;
}
.loan-calculator .top{
padding: 20px;
background-color: rgb(182, 190, 191);
color: rgba(14, 15, 15, 0.916);
}
.loan-calculator .top h2{
margin-top: 0;
}
.loan-calculator form{
display: flex;
gap:8px;
justify-content: space-between;
}
.loan-calculator .title{
margin-bottom: 16px;
}
.loan-calculator form input{
font-size: 20px;
padding: 8px,24px;
width: 100%;
}
.loan-calculator .result{
display: flex;
justify-content: space-around;
align-items: center;
}
.loan-calculator .result .lelf{
width: 100%;
padding: 8px 32px;
}
.loan-calculator .left h3{
font-size: 16px;
font-weight: 400;
margin-bottom: 8px;
}
.loan-calculator .result .value{
font-size: 30px;
font-weight: 900;
padding-bottom: 10px;
border-bottom: 1px solid rgba(14, 15, 15, 0.916);
}
.loan-calculator .result .value::before{
content: "₹";
font-size: 24px;
font-weight: 400;
margin-right: 10px;
opacity: 0.8;
}
.loan-calculator .calculate-btn{
background-color: rgb(21, 208, 177);
border:none;
padding: 8px 32px;
border-radius: 8px;
font-size: 18px;
font-weight: 900;
cursor:progress;
margin: 24px 0;
}
@media(max-width:650px){
.loan-calculator{
width: 90%;
max-width: 500px;
}
.loan-calculator form{
flex-direction: column;
gap:20px;
}
.loan-calculator .result{
flex-direction: column;
text-align: center;
}
}
.footer{
text-align: center;
font-weight: bold;
font-size: large;
}