-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (70 loc) · 1.18 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body{
height:100%;
width:100%;
display:flex;
justify-content: center;
align-items: center;
margin:0;
}
#calculatorBody{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
background-color: #a69576;
height:40em;
width:20em;
}
#displayContainer{
background-color: #daf0f5;
width:80%;
height:30%;
display: flex;
flex-direction: column;
justify-content: center;
}
#prev{
text-align: end;
height: 30%;
font-size: 1.5em;
line-height: 100%;
}
#curr{
text-align: end;
height: 60%;
font-size: 3em;
line-height: 100%;
}
#buttonContainer{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
width:80%;
height:60%;
}
#clear{
height:100%;
width:50%;
font-size: 200%;
}
#backSpace{
height:100%;
width:50%;
font-size: 150%;
}
.row{
height:25%;
width:100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
.btn{
height:3.5em;
width:25%;
text-align: center;
font-size: 150%;
cursor: pointer;
}