-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (85 loc) · 1.85 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
*{
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
background-color: #ecf0f3;
font-family: coolvetica, sans-serif
}
.container {
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #ecf0f3;
}
.calc{
box-shadow: 6px 6px 13px rgb(186, 186, 186),
6px 6px 13px rgba(0,0,0,.16);
border-radius: 28px;
padding: 16px;
display: grid;
grid-template-columns: repeat(4,66px)
}
input{
grid-column: span 4;
height: 68px;
width: 258px;
box-shadow: inset -6px -6px 13px #fff,
inset 6px 6px 13px rgba(0,0,0,.16);
background-color: #ecf0f3;
border: none;
border-radius: 32px;
color: rgb(92, 92, 92);
text-align: end;
margin: 40px 0px 30px 0px;
padding: 20px;
font-size: 40px;
}
button{
box-shadow: inset 6px 6px 13px #fff,
6px 6px 13px rgba(0,0,0,.16);
background-color: #ecf0f3;
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
margin: 10px;
font-weight: bold;
font-size: 20px;
color: rgb(92, 92, 92);
}
.equal{
width: 120px;
border-radius: 42px;
box-shadow: inset 6px 6px 13px #fff,
6px 6px 13px rgba(0,0,0,.16);
background-color: #ecf0f3;
border: none;
border-radius: 32px;
}
.equal:active{
box-shadow:inset -6px -6px 13px #fff,
inset 6px 6px 13px rgba(0,0,0,.16);
background-color: #ecf0f3;
border: none;
border-radius: 32px;
}
button:active{
box-shadow: inset -6px -6px 13px #fff,
inset 6px 6px 13px rgba(0,0,0,.16);
}
.footer{
text-align: center;
}
.footer p {
display: flex;
justify-content: center;
align-items: center;
}
footer a {
display: inline-block;
padding: 10px;
text-decoration: none;
color: black;
}