-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (69 loc) · 1.26 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
body{
margin: 0;
padding: 0;
background: linear-gradient(86deg, #e8e3c7, #bda0cb) !important;
}
.container{
height: 695px;
width: 370px;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
margin: auto;
border-radius: 10px;
flex-direction: column;
}
.top
{
display: flex;
margin-top: 54px;
gap: 30px;
align-items: center;
}
img{
height: 80px;
width: 80px;
margin-bottom: 10px;
margin-top: 27px;
}
.calculator{
border-radius: 15px;
border: 2px solid crimson;
padding: 7px;
background-color: whitesmoke;
width: 351px;
}
input{
font-size: 40px;
height: 60px;
width: 72px;
margin: 9px;
margin-left: 30px;
border-radius: 15px;
background-color: darkkhaki;
border: none;
justify-items: center;
}
.btns:hover{
transform: scale(1.05);
border:1px solid black;
color:brown;
}
#display-ans,#clear-btn{
margin-bottom: 5px;
width: 303px;
margin-top: 10px;
}
#display-ans{
font-size: 22px;
}
#clear-btn{
background-color:brown;
}
#clear-btn:hover{
color: white;
}
#enter{
background-color: #bda0cb;
}