New Style #24

Merged
jakob.scheid merged 19 commits from feature/reworked-style into main 2026-05-06 15:51:57 +02:00
2 changed files with 20 additions and 6 deletions
Showing only changes of commit 5696c0f992 - Show all commits
+4 -3
View File
@@ -25,10 +25,11 @@ limitations under the License.
</head> </head>
<body> <body>
<nav class="global-nav"> <nav class="global-nav">
<span id="logo">Seekra</span>
<ul> <ul>
<li class="nav-item"> <li><a href="#">About</a></li>
jakob.scheid marked this conversation as resolved Outdated
Outdated
Review

Please no example links.

Please no example links.
<a href="#">Seekra</a> <li><a href="#">Contact</a></li>
</li> <li><a href="#">Help</a></li>
</ul> </ul>
</nav> </nav>
+16 -3
View File
@@ -1,8 +1,21 @@
.global-nav { .global-nav {
display: flex; display: flex;
justify-content: end; justify-content: space-between;
padding: 10px 0; align-items: center;
margin-right: 40px; padding: 10px 40px;
}
.global-nav ul {
display: flex;
gap: 20px;
list-style: none;
margin: 0;
padding: 0;
}
.global-nav ul a{
text-decoration: none;
color: black;
} }
.global-nav ul { .global-nav ul {