-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (48 loc) · 1000 Bytes
/
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
.container{
margin: 0 auto;
width: 540px;
}
.calc-body{
display: flex;
flex-direction: row;
justify-content: space-around;
border: 1px solid black;
flex-wrap: wrap;
align-items: center;
padding: 10px;
}
.calc-body .top{
height: 150px;
background-color: antiquewhite;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.calc-body .top div{
display: inline-block;
padding: 10px;
}
.calc-body .top input{
text-align: center;
}
.calc-body .top button{
}
.calc-body .bottom{
height: 150px;
width: 250px;
background-color: antiquewhite;
display: flex;
flex-direction: column;
align-items: center;
}
.calc-body .bottom p{
margin-top:-18px;
height: 100px;
width: 200px;
border: 1px solid black;
background-color: white;
text-align: center;
display: block;
line-height: 100px;
}