-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
56 lines (49 loc) · 800 Bytes
/
app.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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.calculator {
display: flex;
flex-direction: column;
}
#display {
display: flex;
justify-content: flex-end;
align-items: flex-end;
padding: 0 15px 5px;
height: calc(30vh - 5px);
background-color: #222;
font-family: Helvetica, sans-serif;
font-size: 4em;
font-weight: 100;
color: white;
}
#inputs {
display: flex;
flex-direction: column;
height: 70vh;
}
.row {
display: flex;
height: 20%;
}
input {
display: flex;
justify-content: center;
align-items: center;
width: 25%;
outline: 1px solid #333;
border: none;
font-size: 2em;
font-weight: lighter;
background-color: #EEE;
cursor: pointer;
}
input:active {
font-size: 1.8em;
background-color: #AAA;
}
#zero {
width: 50%;
}