Ajout code pour la fonctionnalité ‘Plus d'infos’ (#122)

This commit is contained in:
Gwenael-F 2022-09-28 17:01:58 +02:00 committed by GitHub
parent 801ab42a08
commit c5fcdad2d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -829,3 +829,17 @@ footer {
} }
.big-button { margin: 2em;} .big-button { margin: 2em;}
/* Bouton plus d'infos */
.moreinfos {
cursor: pointer;
}
.infos-hidden {
display: none;
}
.moreinfos:focus+.infos-hidden {
display: block;
}