-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (42 loc) · 749 Bytes
/
style.css
File metadata and controls
50 lines (42 loc) · 749 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
.parent-container{
background-color: whitesmoke;
display:inline-block;
align-items: center;
border-top: 5px solid black;
height: 720px;
width:780;
}
.headr-container{
text-align: center;
font-size: 40px;
}
.imgs-container{
display: block;
margin: 20px;
}
.section1{
background-color: aqua;
margin: 20px;
display: flex;
justify-content: space-between;
}
.section2{
background-color: pink;
margin: 20px;
display: flex;
justify-content: space-around;
}
.section3{
background-color: antiquewhite;
margin: 20px;
display: flex;
justify-content: space-between;
}
.img{
height: 300px;
width: 300px;
margin: 20px;
}
.footer{
text-align: center;
}