This commit is contained in:
2025-06-20 19:36:11 +02:00
committed by GitHub
parent b4e3ce2fe6
commit 997c83f6bf
5 changed files with 106 additions and 1 deletions

View File

@@ -123,4 +123,43 @@ body {
a {
color: orange;
}
}
header {
font-size: 67%;
background-color: #333;
height: auto;
padding: 0px 0px;
align-items: start;
width: 100%;
border-radius: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: left;
}
nav {
text-align: center;
flex-shrink: 0;
}
nav.index{
display: flex;
min-height: 51px;
}
nav ul li {
margin-left: 20px;
margin-right: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-size: 16px;
}
nav ul li a:hover {
text-decoration: underline;
}