-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalculator.css
68 lines (58 loc) · 1.09 KB
/
Calculator.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
#calculator {
/* border: 2px solid black; */
height: 70vh;
width: 40vh;
margin-top: 10vh;
margin-left: 10vh;
}
#Space {
font-size: 2.8rem;
padding-top: 2px;
height: 20vh;
width: 40vh;
background-color: gainsboro;
text-align: right;
color: brown;
overflow: scroll;
}
#Buttom {
display: flex;
/* border: 2px solid black; */
height: 50vh;
width: 40vh;
flex-direction: row;
flex-wrap: wrap;
cursor: pointer;
}
.button {
/* border: 2px solid black; */
height: 9vh;
width: 10vh;
font-size: xx-large;
font-weight: bold;
/* display: inline-block; */
padding-top: 10px;
text-align: center;
background-color: cornsilk;
}
/* .zero {
border: 2px solid black;
height: 9vh;
width: 20vh;
font-size: xx-large;
font-weight: bold;
display: inline-block;
padding-top: 10px;
text-align: center;
background-color: cornsilk;
}
*/
.background-brown {
background-color: brown;
}
.zero {
width: 20vh
}
#display {
margin-top: 75px;
}