-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator.css
More file actions
49 lines (49 loc) · 956 Bytes
/
calculator.css
File metadata and controls
49 lines (49 loc) · 956 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
.display{
height: 70px;
background-color: bisque;
border-radius: 15px;
text-align: right;
padding-right: 15px;
margin-top: 50px;
/* overflow: hidden; */
}
.button{
height: 50px;
width: 50px;
border-radius: 10px;
font-weight: bold;
font-size: x-large;
padding-top: 5px;
}
.opperatorbtn{
background-color: lightgreen;
}
.numbtn{
background-color: skyblue;
}
.equaltobtn{
background-color: green;
}
.pembtn{
padding-left: 6px;
}
#display{
font-size:xx-large;
font-weight: bold;
}
#demoresult{
font-weight: bold;
mix-blend-mode: overlay;
}
.opperatorbtn:hover{
background-color: rgb(74, 223, 74) !important;
transform: scale(1.1);
}
.equaltobtn:hover{
background-color: darkgreen !important;
transform: scale(1.1);
}
.numbtn:hover{
background-color: rgb(34, 158, 207) !important;
transform: scale(1.1);
}