Skip to content

Commit 34bb4d4

Browse files
authored
Create Footer.css
1 parent 5f8ba9e commit 34bb4d4

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
.footer {
2+
width: 100%;
3+
display: flex;
4+
flex-direction: column;
5+
justify-content: center;
6+
align-items: center;
7+
background-color: red;
8+
color: white;
9+
}
10+
11+
.footer .social {
12+
display: flex;
13+
justify-content: center;
14+
align-items: center;
15+
}
16+
17+
.footer .social a {
18+
color: white;
19+
text-decoration: none;
20+
margin: 0px 10px 5px 10px;
21+
padding: 5px 10px 5px 10px;
22+
transition: 0.3s;
23+
border-radius: 10px;
24+
}
25+
26+
.footer .social a:hover {
27+
color: red;
28+
background-color: white;
29+
}

0 commit comments

Comments
 (0)