-
Notifications
You must be signed in to change notification settings - Fork 0
/
design.css
52 lines (47 loc) · 1.05 KB
/
design.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
body{
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
background: rgb(231, 237, 248);
}
.container{
width: 60vh;
height: 60vh;
padding: 10px;
border-radius: 10px;
box-shadow: 10px 10px 15px rgb(193, 211, 243),
-10px -10px 15px rgb(201, 218, 248);
}
.display #output{
width: 60vh;
height: 8vh;
font-size: 30px;
border: none;
border-radius: 8px;
box-shadow: inset 4px 4px 10px rgb(159, 193, 246),
inset -4px -4px 10px rgb(215, 227, 248);
text-align: right;
}
.buttons{
width: 100%;
display: table;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 2em;
}
.buttons .row .button{
height: 55px;
width: 55px;
margin: 10px;
font-size: 15px;
background: #e9edf5;
border: none;
border-radius: 45px;
box-shadow: 7px 5px 10px rgb(174, 194, 227),
-5px -5px 10px rgb(215, 227, 248);
}