19 lines
310 B
CSS
19 lines
310 B
CSS
/* Footer‑Grundlayout */
|
||
footer {
|
||
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;
|
||
} |