-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (63 loc) · 1.37 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
60
61
62
63
*{
margin: 0%;
outline: none;
font-family: sans-serif;
}
.container{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 45px;
}
input{
margin-top: 30px;
grid-column: span 4;
font-size: 60px;
padding: 10px;
border-radius: 20px;
box-shadow: inset 5px 5px 12px white,
5px 5px 12px rgb(0,0,0,0.20);
border: none;
margin-bottom: 20px;
text-align:end;
}
.calculator{
background-color: cornflowerblue;
border-radius: 20px;
padding: 20px;
box-shadow: inset 0px 0px 12px white,
5px 5px 12px rgb(0,0,0,0.60);
display: grid;
grid-template-columns: repeat(4,100px);
}
.empty{
border: none;
height: 0%;
width:0%;
background-color: cornflowerblue;
box-shadow: inset 0px 0px 12px cornflowerblue,
5px 5px 12px cornflowerblue;
}
.clear{
width: 80px;
border-radius: 20px;
grid-column: span 1;
}
.cal{
height: 40px;
width: 100px;
border-radius: 20px;
grid-column: span 1;
margin-left: 50px;
}
button{
height: 40px;
width: 70px;
border-radius: 50%;
margin: 10px;
font-size: 20px;
border:none;
box-shadow: inset 0px 0px 12px white,
5px 5px 12px rgb(0,0,0,0.60);
}