-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (53 loc) · 981 Bytes
/
style.css
File metadata and controls
58 lines (53 loc) · 981 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
52
53
54
55
56
57
58
.button {
display: flex;
height: 4em;
flex: 1;
justify-content: center;
align-items: center;
font-weight: lighter;
font-size: 1.4em;
background-color: #e0e1e6;
color: #888;
outline: 1px solid #888;
}
.app {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
margin-top: 100px;
}
.calc-wrapper {
width: 400px;
height: 600px;
}
.row {
display: flex;
width: 100%
}
.input {
display: flex;
height: 4em;
flex: 1;
background-color: #000;
outline: 1px solid #888;
color: #fff;
justify-content: flex-end;
padding: 0.5em;
font-weight: bold;
font-size: 1.4em;
align-items: center;
}
.clear-btn {
display: flex;
flex: 1;
height: 4em;
align-items: center;
justify-content: center;
font-weight: lighter;
font-size: 1.rem;
outline: 1px solid #888;
height: 4em;
background-color: orange;
}