-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathFooter.css
More file actions
59 lines (50 loc) · 935 Bytes
/
Footer.css
File metadata and controls
59 lines (50 loc) · 935 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
51
52
53
54
55
56
57
58
59
.footer {
background-color: #141414;
color: white;
padding: 20px 0;
text-align: center;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.footer-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
}
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 20px;
}
.footer-link {
color: #e50914;
margin: 0 10px;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-link:hover {
color: #ff1e1e;
}
.footer-social {
margin-bottom: 20px;
}
.social-link {
color: white;
margin: 0 10px;
text-decoration: none;
font-size: 18px;
transition: color 0.3s ease;
}
.social-link:hover {
color: #e50914;
}
.footer-bottom {
margin-top: 20px;
}
.footer-bottom p {
margin: 0;
font-size: 14px;
color: #888;
}