-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
69 lines (62 loc) · 1.13 KB
/
index.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
* {
margin: 0;
padding: 0;
}
body {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #faf4ed;
}
main {
border-width: 2px;
border-color: #797593;
border-style: solid;
border-radius: 4px;
width: 440px;
height: 480px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
#display {
width: 340px;
height: 80px;
display: flex;
justify-content: end;
align-items: center;
font-size: 32px;
border-color: #797593;
border-width: 2px;
border-style: solid;
overflow-x: hidden;
}
#buttons {
width: 100%;
height: 360px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-evenly;
}
button {
width: 80px;
height: 40px;
background-color: #faf4ed;
border-color: #9893a5;
border-width: 2px;
border-radius: 4px;
outline: none;
box-shadow: none;
}
.operator-button {
background-color: #286983;
color: #faf4ed;
}
#equal {
background-color: #ea9d34;
color: #faf4ed;
}