-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.css
59 lines (49 loc) · 1008 Bytes
/
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
footer {
padding: 5rem 20vw;
background-color: #1f2b5b;
color: whitesmoke;
margin-top: 50px;
}
footer .footer-list-container {
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 2rem;
}
footer .footer-list-container .footer-item.wide {
width: 50%;
flex-grow: 0;
flex-wrap: 0;
}
footer .footer-list-container .footer-item {
width: 20%;
flex-grow: 0;
flex-wrap: 0;
}
footer .footer-list-container .footer-item .fa-solid
{
margin-right: 10px;
}
footer .footer-list-container h5 {
color: whitesmoke;
font-size: 1.3rem;
line-height: 1.3rem;
}
footer a {
display: block;
}
footer .footer-list-container p {
line-height: 1.5rem;
color: aliceblue;
}
footer a,
footer a:visited {
color: aliceblue;
line-height: 2rem;
}
footer .copyright {
padding-top: 3rem;
color: aliceblue;
text-align: center;
list-style: 1.5rem;
}