-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (55 loc) · 947 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
55
56
57
58
59
60
61
62
h1{
text-align: center;
text-decoration: underline;
}
.center{
display: flex;
align-items: center;
justify-content: center;
}
.calculator{
display: flex;
flex-direction: column;
border: 2px solid grey;
width:500px;
padding-bottom: 10px;
background-color: grey;
}
.screen{
padding-top: 1%;
height: 80px;
background-color: honeydew;
gap:6px;
align-items: flex-end;
display:flex;
flex-direction: column;
border: 2px solid grey;
}
.btns-container{
display: grid;
grid-template-columns: auto auto auto auto;
grid-gap: 10px;
background-color: grey;
}
#clear{
grid-column: 1 /span 4;
padding:2%;
margin-top: 4px;
}
.btn{
padding: 4%;
margin: 0px 4px;
}
#OldExp{
height: 25%;
}
#CurExp{
height: 75%;
display: flex;
flex-direction: column;
justify-content: center;
font-size: large;
}
p{
text-align: center;
}