-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
50 lines (42 loc) · 768 Bytes
/
index.css
File metadata and controls
50 lines (42 loc) · 768 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
45
46
47
48
49
50
h1{
text-align: center;
text-transform: uppercase;
}
#calcontainer{
display: flex;
justify-content: center;
align-items: center;
}
#display{
width: 80%;
margin: 16px;
font-size: 40px;
border: 2px solid black;
background-color: rgb(227, 226, 226);
border-radius: 4px;
}
#calculator{
border: 1.5px solid black;
border-radius: 5px;
width: 200px;
padding: 19px;
display: flex;
flex-direction: column;
background-color: grey;
box-shadow: 10px 10px 4px grey;
}
#numbers{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
button{
width: 45px;
height: 45px;
margin: 4px;
font-size: 20px;
font-weight: 600;
border: 2px solid black;
border-radius: 4px;
background-color: aliceblue;
}