21 lines
416 B
CSS
21 lines
416 B
CSS
/* Footer‑Grundlayout */
|
||
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;
|
||
} |