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>
<body>
<nav class="global-nav">
<span id="logo">Seekra</span>
<ul>
<li class="nav-item">
<a href="#">Seekra</a>
</li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Help</a></li>
</ul>
</nav>
+16 -3
View File
@@ -1,8 +1,21 @@
.global-nav {
display: flex;
justify-content: end;
padding: 10px 0;
margin-right: 40px;
justify-content: space-between;
align-items: center;
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 {