-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (88 loc) · 1.65 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
*{
margin: 0;
padding: 0;
background-color: blanchedalmond;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
#heading{
margin-top: 50px;
color: cadetblue;
text-align: center;
}
.calculator{
border: 2px solid brown;
border-radius: 10px;
margin: 12px;
padding: 15px;
width: 380px;
height: 170px;
align-items:start;
margin-top: 30px;
margin-left: 560px;
}
.calculator label{
color: chocolate;
font-size: 20px;
font-weight: 500;
}
input{
color: black;
background-color:rgb(138, 165, 181);
font-size: 13px;
padding: 3px;
border: 2px solid rgb(43, 56, 27);
border-radius: 4px;
}
.calculator button{
font-size: 18px;
font-weight: 300;
text-align: center;
margin: 7px;
padding: 7px;
color: rgb(40, 69, 124);
background-color: darkgray;
border: 1px solid darkgray;
border-radius: 10px;
margin-left: 85px;
}
#output{
margin-top: 50px;
color: cadetblue;
text-align: center;
}
.outputBox{
border: 2px solid brown;
border-radius: 10px;
margin: 12px;
padding: 15px;
width: 380px;
height: 170px;
align-items:start;
margin-top: 30px;
margin-left: 560px;
}
#finalAmount0{
font-size: 18px;
font-weight: 400;
margin-top: 30px;
margin-left: 15px;
color: rgb(86, 13, 27);
}
#finalAmount1{
font-size: 18px;
font-weight: 400;
margin-top: 20px;
margin-left: 15px;
color: rgb(86, 13, 27);
}
#finalAmount2{
font-size: 18px;
font-weight: 400;
margin-top: 20px;
margin-left: 15px;
color: rgb(86, 13, 27);
}