-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc.css
54 lines (47 loc) · 806 Bytes
/
calc.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
body{
display: flex;
justify-content: center;
background-color: #08948f;
}
#calc button{
border: none;
margin: 10px;
font-size: 30px;
border-radius: 50%;
width: 60px;
height: 60px;
color:white;
padding: 8px;
cursor: pointer;
}
button{
background: #212020;
}
#calc button.clear{
width: 140px;
height: 60px;
border-radius: 40px;
background: #aba6a6;
color: black;
}
.operation{
background: #e49c18;
}
#wrap{
margin-top: 20px;
background-color: black;
padding: 10px;
border-radius: 8px;
box-shadow: 9px 7px 15px #131212;
}
#display{
text-align: right;
color: white;
padding-top: 20px;
background-color: black;
font-size: 40px;
padding-right: 20px;
}
button:focus{
outline:none;
}