footer.css

This commit is contained in:
NOrtmann1
2026-05-11 19:22:20 +02:00
parent 2252ec2646
commit 279a5329cf
4 changed files with 34 additions and 10 deletions
+21
View File
@@ -0,0 +1,21 @@
/* FooterGrundlayout */
footer {
position: fixed;
bottom: 0;
width: 100%;
background: #333d43;
text-align: center;
padding: 10px 0;
}
footer a {
color: #333;
text-decoration: none;
margin: 0 12px;
transition: color 0.2s ease; /* Farbwechsel */
}
footer a:hover,
footer a:focus {
color: #0066cc;
}