Update 2 files

- /html/index.php
- /html/src/css/style.css
This commit is contained in:
Jan BELLON 2024-03-06 18:19:25 +00:00
parent ed065470ce
commit f66f76e718
2 changed files with 4 additions and 8 deletions

View File

@ -23,12 +23,12 @@ require "../include/functions.php";
<div class="title"><?=$header_title?></div> <div class="title"><?=$header_title?></div>
<div class="subtitle"><?=$header_subtitle?></div> <div class="subtitle"><?=$header_subtitle?></div>
</div> </div>
<nav>
<?php nav($nav);?>
</nav>
</div> </div>
</div> </div>
</header> </header>
<nav>
<?php nav($nav);?>
</nav>
<main> <main>
<div class="content"> <div class="content">
<div> <div>

View File

@ -17,7 +17,7 @@ main {
min-height: 100em; min-height: 100em;
} }
header, footer { header, footer, nav {
width: 100%; width: 100%;
margin: 0; margin: 0;
background: var(--dark-background); background: var(--dark-background);
@ -25,10 +25,6 @@ header, footer {
justify-content: space-between; justify-content: space-between;
} }
nav {
display: flex;
}
.navitem { .navitem {
padding: 0.5em; padding: 0.5em;
} }