-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (53 loc) · 1.17 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
background-color: #ecf0f3;
font-size:15px;
/* border: none; */
}
.container{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.calculator{
padding: 25px;
background-color: #ecf0f3 ;
border-radius: 30px;
box-shadow: inset 5px 5px 5px 12px #ffff,
5px 5px 5px 12px rgba(0,0,0,0.16);
display: grid;
grid-template-columns: repeat(4, 70px);
}
input{
grid-column: span 4;
height: 70px;
background-color: #ecf0f3;
border-radius: 30px;
box-shadow: inset -5px -5px 12px #ffff,
inset 5px 5px 12px rgba(0,0,0,0.16);
font-size:50px;
text-align: end;
border: none;
color: rgb(70,70,70);
/* margin: auto; */
margin-top: 40px;
margin-bottom: 30px;
padding: 20px;
}
button{
height:50px;
width: 50px;
margin:5px 5px ;
border-radius: 50%;
border: none;
background-color: #ecf0f3;
box-shadow: inset -5px -5px 12px #ffff,
inset 5px 5px 12px rgba(0,0,0,0.16);
}
.equal{
width: 115px;
border-radius: 35%;
}