-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox.css
More file actions
40 lines (37 loc) · 734 Bytes
/
flexbox.css
File metadata and controls
40 lines (37 loc) · 734 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
div .keys {
height: 100px;
width: 100px;
font-size: 50px;
text-align: center;
background-color: gray;
border-radius: 5px;
border: 2px solid black;
}
.outer {
height: 400px;
width: 400px;
border: 2px solid green;
border-radius: 8px;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
#navbar{
height: 50px;
width: 900px;
background-color: pink;
border: 2px solid green;
border-radius: 10px;
display: flex;
justify-content: flex-start;
align-content: center;
}
.option{
font-size: 24px;
height: 50px;
width: 80px;
border-radius: 10px;
margin-left: 5px;
line-height: 50px;
}