All checks were successful
Build and publish the docker image / build (push) Successful in 19s
Signed-off-by: ngn <ngn@ngn.tf>
39 lines
559 B
CSS
39 lines
559 B
CSS
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) {
|
|
#footer-container {
|
|
width: 100%;
|
|
padding: 0 2rem;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|