46 lines
732 B
CSS
46 lines
732 B
CSS
footer {
|
|
background: var(--color-bg-nav);
|
|
border-top: 1px solid var(--color-border);
|
|
color: var(--color-text);
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
padding: 0.8rem 1.5rem;
|
|
font-size: 0.9rem;
|
|
margin-top: 3rem;
|
|
flex-wrap: wrap;
|
|
backdrop-filter: blur(10px);
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100vw;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-text);
|
|
text-decoration: none;
|
|
margin-left: 1.2rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--color-accent);
|
|
}
|
|
|
|
.center {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
footer {
|
|
flex-direction: column;
|
|
gap: 0.6rem;
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
margin: 0;
|
|
}
|
|
} |