dumb/style/footer.css

39 lines
559 B
CSS
Raw Normal View History

footer {
background: #000;
border-top: solid 1px #fff;
padding: 1rem 0;
}
footer a {
color: #fff;
font-weight: 500;
transition: 0.3s ease text-decoration;
font-size: 1.4rem;
}
footer a:hover {
text-decoration: underline;
}
#footer-container {
width: 1024px;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
gap: 1rem;
}
#footer-container span {
color: #fff;
font-weight: 200;
}
@media screen and (max-width: 1080px) {
2024-03-07 14:19:13 +01:00
#footer-container {
width: 100%;
padding: 0 2rem;
box-sizing: border-box;
}
}