40 lines
No EOL
739 B
CSS
40 lines
No EOL
739 B
CSS
.Footer {
|
|
background: var(--color-darkest);
|
|
padding: 1rem;
|
|
|
|
& h4 {
|
|
color: var(--color-lightest);
|
|
text-align: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
& .bottom {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: space-between;
|
|
color: var(--color-light);
|
|
}
|
|
|
|
& .socials {
|
|
font-size: 1.5rem;
|
|
justify-content: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
& .data-links {
|
|
justify-content: flex-end;
|
|
font-size: .8rem;
|
|
}
|
|
|
|
& ul {
|
|
list-style: none;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
|
|
& a {
|
|
color: var(--color-lightest);
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
} |