-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (59 loc) · 1.32 KB
/
style.css
File metadata and controls
65 lines (59 loc) · 1.32 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
58
59
60
61
62
63
64
65
body {
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #ecf0f3;
}
.container {
width: 275px;
height: 390px;
padding: 12px;
border-radius: 5px;
box-shadow: 12px 12px 20px #cdced1,
-12px -12px 20px #ffffff;
}
.display {
display: flex;
align-items: center;
justify-content: center;
}
.display>input {
width: 90%;
height: 60px;
outline: none;
border: none;
text-align: right;
font-size: 25px;
padding: 0px 20px;
box-shadow: inset 6px 6px 6px #cdced1,
inset -8px -8px 8px #ffffff;
margin-top: 5px;
}
.btns {
margin-top: 18px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.btns>.row>button {
width: 55px;
height: 50px;
font-size: 22px;
border: none;
outline: none;
margin: 5px;
border-radius: 5px;
box-shadow: 5px 5px 8px #00000020,
-5px -5px 8px #ffffff;
transition: .1s;
}
.btns>.row>button:hover{
box-shadow: inset 5px 5px 8px rgba(16,16,16,.1),
inset -5px -5px 8px #ffffff;
background: #fff;
}