Files
LifeFaq/static/sass/layout/_footer.scss
Henrik Jess Nielsen bd2fef9b6c
Some checks failed
Build, Push, and Deploy to Nomad / docker-nomad (push) Has been cancelled
Lidt CSS fixeri og ja BS4 til at fixe tags
2024-12-21 00:15:58 +01:00

35 lines
892 B
SCSS

///
/// Editorial by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///
/* Footer */
#footer {
.copyright {
color: _palette(fg-light);
font-size: 0.9em;
a {
color: inherit;
}
}
}
.footer-link {
font-size: 0.7rem; /* Reduceret skriftstørrelse */
font-weight: normal; /* Normal vægt, ikke fed */
text-decoration: none; /* Fjerner understregning */
display: inline-block; /* Bedre layoutjustering */
margin: 8px 0; /* Lidt luft omkring linket */
text-align: center; /* Centreret, hvis relevant */
transition: color 0.3s ease; /* Glidende farveskift ved hover */
border-bottom: none;
&:hover {
color: #000; /* Mørkere farve ved hover */
text-decoration: none; /* Understregning ved hover */
transition: color 0.5s ease; /* Glidende farveskift ved hover */
}
}