forked from Codi-B07/HTML-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (43 loc) · 780 Bytes
/
Copy pathstyle.css
File metadata and controls
49 lines (43 loc) · 780 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
body{
box-sizing: border-box;
padding: 0;
margin: 0;
background-color: rgb(65, 63, 63);
}
.menu{
padding: 1rem;
/* border: 1px solid black; */
background-color:rgb(140, 186, 245);
}
.menu-li{
display: flex;
flex-direction:row;
list-style: none;
justify-content:space-around;
}
.img{
background-size:50%;
width: 50%;
/* margin: 0 auto; */
}
.img-container{
display: flex;
justify-content: center;
}
.ul-li{
list-style: none;
display: flex;
justify-content:space-evenly;
color: whitesmoke;
}
footer{
/* border: 1px solid black; */
padding:2rem;
background-color: rgb(140, 186, 245);;
/* margin: 0; */
}
footer a{
color: black;
display: flex;
justify-content: center;
}