Init Commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user