mise en place du formulaire de recherche

This commit is contained in:
William Noris 2021-10-20 10:17:26 +02:00
parent 853e03302c
commit 4f69d290b8
2 changed files with 17 additions and 0 deletions

View File

@ -22,6 +22,14 @@
</nav> </nav>
</section> </section>
<section id="recherche">
<form action="" id="formRecherche" onSubmit="event.preventDefault(); console.log('click')">
<label for="textRecherche">Recherche : </label>
<input type="text" name="textRecherche" id="textRecherche">
<input type="submit" value="ok">
</form>
</section>
<section id="resultats" class="accordeon"> <section id="resultats" class="accordeon">
</section> </section>

View File

@ -30,6 +30,15 @@ body{
font-size: 1em; font-size: 1em;
} }
form label{
margin: 0.5em;
}
form input{
border-color: var(--jaune);
border-radius: 3%;
padding: 0.3em;
}
.titre a{ .titre a{
margin-top : 20px; margin-top : 20px;