Middelware update and footer content
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 39s

This commit is contained in:
2024-12-20 22:35:39 +01:00
parent 18181d7ce8
commit d58e5b0d12
10 changed files with 192 additions and 32 deletions

View File

@@ -3063,6 +3063,21 @@ button:disabled,
color: inherit;
}
.footer-link {
font-size: 0.9rem; /* 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 */
}
.footer-link:hover {
color: #000; /* Mørkere farve ved hover */
text-decoration: none; /* Understregning ved hover */
transition: color 0.5s ease; /* Glidende farveskift ved hover */
}
/* Menu */
#menu ul {
-moz-user-select: none;

File diff suppressed because one or more lines are too long