-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (52 loc) · 1.26 KB
/
style.css
File metadata and controls
57 lines (52 loc) · 1.26 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
font-family: sans-serif;
background-color: #ecf0f3;
}
.container {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #ecf0f3;
}
.calc {
box-shadow: 6px 6px 12px #fff, 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(26, 25, 25);
text-align: end;
margin: 40px 0px 30px 0px;
font-size: 40px;
}
button {
box-shadow: inset -6px -6px 13px #fff, inset 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;
}
.equal {
width: 120px;
border-radius: 42px;
box-shadow: inset -6px -6px -13px #fff, inset 6px 6px 13px rgba(0, 0, 0, .16);
background-color: #ecf0f3;
}