-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
44 lines (38 loc) · 693 Bytes
/
styles.css
File metadata and controls
44 lines (38 loc) · 693 Bytes
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
* {
margin: 0;
padding: 0;
}
#calculator {
border: 1px solid black;
width: 230px;
height: 326px;
margin: 15px;
border-radius: 3%;
background-color: rgb(28, 21, 21);
}
#display {
height: 40px;
width: 90%;
margin: 10px;
box-sizing: border-box;
}
.cal-button {
/* gap: 15px; */
display: flex;
flex-wrap: wrap;
padding:15px;
justify-content: space-between;
box-sizing: border-box;
}
.num-button{
height: 45px;
width: 45px;
border-radius: 50%;
font-size: 18px;
text-align: center;
line-height: 40px;
cursor: pointer;
margin: 2px;
background-color: black;
color: aliceblue;
}