-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (42 loc) · 741 Bytes
/
style.css
File metadata and controls
51 lines (42 loc) · 741 Bytes
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
body{
font-family: sans-serif;
background:whitesmoke ;
}
#Calculator{
width: 400px;
height: 450px;
margin-top: 30px;
background-color: white;
padding: 20px;
border-radius: 16px;
}
#display{
width: 350px;
height: 60px;
margin-bottom: 40px;
font-size: 24px;
text-align: right;
padding: 10px;
border-radius: 12px;
background-color: #f9f9f9;
}
button{
width: 80px;
height: 70px;
font-size: 20px;
margin: 4px;
border-radius: 40px;
cursor: pointer;
}
.operator{
background-color: salmon;
}
button:hover{
background-color: bisque;
}
.operator:hover{
background-color:palevioletred;
}
.clear{
background-color: rgb(236, 88, 72);
}