Files
outfit-voting-abi26/frontend/src/components/Footer.css
T
tueem d1d49ecc49
build / Go-Build (push) Failing after 15s
feat(frontend): add files
2026-06-24 11:58:59 +02:00

54 lines
834 B
CSS

.footer {
margin-top: auto;
padding: 1.5rem 0 0.5rem 0;
text-align: center;
background: transparent;
border: none;
box-shadow: none;
backdrop-filter: none;
-webkit-backdrop-filter: none;
}
.footer-content {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 1.5rem;
font-size: 0.75rem;
color: var(--text-muted);
opacity: 0.6;
transition: opacity 0.2s ease;
}
.footer-content:hover {
opacity: 1;
}
.footer-link {
color: inherit;
text-decoration: underline;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.footer-link:hover {
color: var(--teal);
}
.footer-credits {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
}
.footer-credits p {
margin: 0;
}
.footer-credits strong {
font-weight: 500;
color: var(--text);
margin-left: 0.2rem;
}