-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (57 loc) · 1.05 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
body {
background-color: #DCD7C9;
}
.container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 120px;
}
.calculator {
background-color: #87805E;
padding: 16px;
min-height: 400px;
width: 300px;
border-radius: 8px;
display: flex;
flex-direction: column;
}
.displayArea {
padding: 18px;
background-color: #EDDFB3;
border-radius: 8px;
margin-bottom: 18px;
text-align: right;
font-size: 28px;
min-height: 32px;
overflow: inherit;
}
.clearBtns {
display: flex;
}
.btn {
border-radius: 8px;
margin: 8px;
padding: 8px;
font-size: 22px;
background-color: #D8CCA3;
}
#clearBtn {
font-size: 22px;
width: 50%;
padding: 8px;
border-radius: 8px;
background-color: #CC704B;
}
#deleteBtn {
font-size: 22px;
width: 50%;
padding: 8px;
border-radius: 8px;
background-color: #E8C07D;
}
.numbersAndOperations {
display: grid;
grid-template-rows: repeat(4, 1fr);
grid-template-columns: repeat(4, 1fr);
}