-
Notifications
You must be signed in to change notification settings - Fork 0
/
Style.css
66 lines (66 loc) · 993 Bytes
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.Calculator{
background-color: aquamarine;
border: 1px solid black;
padding: 20px;
border-radius: 15px;
}
.input{
width: 320px;
border: none;
padding: 25px;
margin: 15px;
background: transparent;
box-shadow: 0px 3px 15px aquamarine;
font-size: 35px;
text-align: right;
}
.input::placeholder{
color: black;
}
button{
border: none;
width: 60px;
height: 60px;
border-radius: 50%;
margin: 10px;
background: transparent;
box-shadow: 0px 3px 15px rgb(121, 209, 180);
font-size: 25px;
cursor: pointer;
}
.equal{
background-color: orange;
}
.div{
color: orange;
}
.add{
color: orange;
}
.sub{
color: orange;
}
.mult{
color: orange;
}
.perc{
color: orange;
}
.AC{
color: orange;
}
.C{
color: orange;
}