Files
www-deepwatersurvival-de/static/css/header.css
T
2026-05-18 11:46:02 +02:00

25 lines
536 B
CSS

#logo {
display: flex;
align-items: center;
justify-content: center;
}
#main_navigation {
display: flex; /* Container wird Flexbox */
align-items: center;
justify-content: center;
gap: 40px; /* Abstand zwischen den Links */
}
#main_navigation a {
text-decoration: none !important;
color: #eee;
cursor: pointer;
transition: color 0.3s;
font-size: 2rem;
}
#main_navigation a:hover {
text-decoration: underline; /* nur beim Überfahren */
color: #fff;
}