-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
51 lines (44 loc) · 770 Bytes
/
main.css
File metadata and controls
51 lines (44 loc) · 770 Bytes
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
#calculator {
display: flex;
flex-wrap: wrap;
margin: auto;
}
.grey-button {
width: 100%;
height: 100px;
background-color: #d8d9db;
font-family: monospace;
padding: 0%;
font-size: 35px;
font-weight: normal;
}
.orange-button {
width: 100%;
height: 100px;
background-color: #df974c;
font-family: monospace;
padding: 0%;
font-size: 35px;
font-weight: normal;
}
.answer {
height: 100px;
color: white;
text-align: right;
font-family: monospace;
padding-right: 10px;
font-size: 35px;
font-weight: normal;
}
.orange-button:hover {
background-color: #dfb07e;
}
.grey-button:hover {
background-color: #ebebeb;
}
.orange-button:active {
background-color: #dd8d37;
}
.grey-button:active {
background-color: #bbbcbe;
}