-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
75 lines (62 loc) · 1 KB
/
styles.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
body {
background-color: #EFE4DC;
}
#calc {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 270px;
background-color: grey;
border: 4px solid black;
}
.buttons {
display: flex;
flex-wrap: wrap;
width: 270px;
background-color: black;
}
button {
width: 67.5px;
height: 55px;
border-radius: 0px;
border: 1px solid black;
background-color: #5B5C64;
color: white;
}
button:hover {
border: 1px solid white;
}
#add, #subtract, #multiply, #divide, #delete, #ans {
background-color: #6F7079;
}
#delete {
background-color: rgb(0, 0, 200);
}
#clear {
width: 135px;
background-color: rgb(200, 0, 0);
}
#equals {
background-color: #315BA0;
}
#clear, #delete, #ans {
font-weight: bold;
}
#wholeDisplay {
text-align: right;
background-color: black;
color: white;
min-height: 50px;
display: flex;
flex-direction: column;
justify-content: center;
font-size: 24px;
}
#working {
font-size: 16px;
color: orange;
}
p {
margin: 0
}