-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
73 lines (58 loc) · 1.07 KB
/
footer.css
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#footer {
background-color: black;
text-align: center;
}
#footer .container {
padding: 4rem 0 6rem;
}
.footer__logo {
margin-bottom: 2rem;
}
.footer__menu {
margin-bottom: 4rem;
}
.footer__menu li {
margin-bottom: 2rem;
}
.footer__menu a {
text-transform: capitalize;
cursor: pointer;
}
.socials__x__copyright .socials {
margin-bottom: 2rem;
display: flex;
justify-content: center;
gap: 1.5rem;
}
.copyright {
color: hsl(0, 0%, 55%);
}
@media screen and (min-width: 1024px) {
#footer .container {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo__x__footer__menu {
text-align: left;
}
.footer__menu {
margin-bottom: unset;
}
.footer__menu ul {
display: flex;
gap: 3rem;
}
.footer__menu li {
margin-bottom: unset;
}
.socials__x__copyright {
text-align: end;
}
.socials__x__copyright .socials {
justify-content: end;
}
.socials img {
cursor: pointer;
}
}