forked from The-Marcy-Lab-School/flexbox-layout-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (43 loc) · 790 Bytes
/
style.css
File metadata and controls
47 lines (43 loc) · 790 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
body {
display: flex;
flex-direction: column;
}
header {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
#image {
display: flex;
background-color: #c4c4c4;
width: inherit;
height: 208px;
align-items: center;
justify-content: center;
}
.item2 {
}
#actual-image {
width: 172px;
height: 172px;
border-radius: 50%;
background: #e19999;
}
.container {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.item {
display: flex;
flex-direction: column;
justify-content: space-around;
/*border: 1px solid black;*/
margin: 30px;
}
.item-1 {
display: flex;
flex-direction: column;
justify-content: space-around;
}