-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
60 lines (53 loc) · 1.09 KB
/
styles.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
body {
background-color: white;
color: black;
text-align: center;
}
.container{
width: 100%;
height: 100vh;
background: white;
display: inline-flex;
align-items: center;
justify-content: center;
}
.calculator{
background: #B0CFDE;
padding: 25px;
border: 10px;
border-color: black;
box-shadow: 6px 6px 17px rgba(0, 0, 0, 0.8);
}
.calculator form input{
border: 0;
outline: 0;
width: 55px;
height: 55px;
border-radius: 60px;
border-color: black;
box-shadow: -8px -8px 18px rgba(255, 255, 255, 0.5), 6px 6px 17px rgba(0, 0, 0, 0.7);
background: transparent;
font-size: 22px;
color: black;
cursor: pointer;
margin: 12px;
}
form .display{
display: flex;
justify-content: flex-end;
margin: 24px 0;
border-color: black;
}
form .display input{
text-align: left;
flex: 1;
font-size: 40px;
box-shadow: none;
border-color: black;
}
form input.left-bracket{
width: 140px;
}
form input.right-bracket{
width: 140px;
}