mise en place du formulaire de recherche
This commit is contained in:
parent
853e03302c
commit
4f69d290b8
|
@ -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>
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue