Files
webprogrammierung/css/footer.css
T
2026-05-26 10:51:32 +02:00

21 lines
416 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* FooterGrundlayout */
footer {
position: sticky;
top: 100vh; /* Zwingt den Footer an den unteren Rand des sichtbaren Bereichs */
width: 100%;
background: #333d43;
text-align: center;
padding: 10px 0;
}
footer a {
color: white;
text-decoration: none;
margin: 0 12px;
transition: color 0.2s ease; /* Farbwechsel */
}
footer a:hover,
footer a:focus {
color: #0066cc;
}