-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (44 loc) · 838 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
.container{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
input{
display: grid;
grid-column: span 4;
height: 100px;
width: 260px;
border-radius: 12px;
border: none;
background: black;
color: white;
font-size: xx-large;
text-align: end;
}
.calculator{
display: grid;
grid-template-columns: repeat((4,2fr));
border: 1px solid #565151;
border-radius: 2px;
padding: 12px;
height: 450px;
background: black;
box-shadow: 0px -1px 5px 0px #5a5a5a, 0px 2px 5px 2px black;
}
button{
border-radius: 27px;
border: none;
height: 59px;
width: 58px;
font-size: x-large;
}
.first{
background: rgb(167 177 223);
}
.symbol{
background: rgb(255 191 0);
}
button:active{
background: rgb(144 144 199);
}