-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
61 lines (51 loc) · 1.16 KB
/
styles.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
html, body {
background-color: #bdbdbd;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
#calculator-container {
display: flex;
flex-direction: column;
color: white;
}
#calculator-container .row{
display: flex;
height: 100px;
}
#calculator-container .row.display {
justify-content: flex-end;
font-size: 3em;
line-height: 2.9;
padding-right: 10px;
background-color: #374046;
}
#calculator-container .row .btn {
padding: 10px;
width: 100px;
line-height: 3;
text-align: center;
font-size: 1.7em;
border: 1px solid black;
background-color: #757575;
}
#calculator-container .row .btn.large {
flex-grow: 1;
}
#calculator-container .row .btn:hover {
cursor: pointer;
}
#calculator-container .row .btn.active {
background-color: #b36b00;
}
#calculator-container .btn.misc {
background-color: #616161;
}
#calculator-container .btn.operation {
background-color: #ff9800;
}
#calculator-container .row:last-child .btn:last-child {
background-color: #ff5722;
}