frontend: Affichage dynamique des fonctions

TODO: Rendre fonctionnel la rechercher et le tri par catégorie
This commit is contained in:
Divlo
2020-03-20 18:26:55 +01:00
parent c9f817930c
commit 5edf5e7069
8 changed files with 141 additions and 37 deletions

View File

@ -72,4 +72,23 @@ a, .important {
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: .5em;
}
.btn {
cursor: pointer;
border: 1px solid transparent;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: .25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-dark:hover {
color: #fff;
background-color: #23272b;
border-color: #1d2124;
}
.btn-dark {
color: #fff;
background-color: #343a40;
border-color: #343a40;
}