diff --git a/fichiers/css/personalisation.css b/fichiers/css/personalisation.css index a401c0f..eaa96a9 100644 --- a/fichiers/css/personalisation.css +++ b/fichiers/css/personalisation.css @@ -1,5 +1,5 @@ body { - background-color: #eee; + background-color: #f8f9fa; margin-bottom: 100px; } @@ -45,6 +45,20 @@ body { width: 60px; height: 60px; border: 2px solid #0d6efd; + animation-name: zoom; + animation-duration: .2s; +} + +@keyframes zoom { + 0% { + transform: scale(0, 0); + } + 100% { + transform: scale(1, 1); + } +} +.bouton-flotant.deactivation{ + display: none; } .contour-pastille { @@ -74,3 +88,16 @@ body { .interieur-pastille-bleu { background-color: #cfe2ff; } + +.chevron-dst { + height: 1em; + padding-bottom: 0.1em; +} + +.fond-arc-noire{ + background-color: #343a40; +} + +.max-hauteur-pastille{ + height: calc(100% - 1.5em); +} diff --git a/fichiers/js/formulaire.js b/fichiers/js/formulaire.js new file mode 100644 index 0000000..1e9d2f1 --- /dev/null +++ b/fichiers/js/formulaire.js @@ -0,0 +1,20 @@ +const listedesentree = []; + +function activationBoutonFlotant(lui) { + if (listedesentree.find(function(valeur) {return valeur == lui.name;})) { + for( var i = 0; i < listedesentree.length; i++){ + if ( listedesentree[i] === lui.name) { + listedesentree.splice(i, 1); + break; + } + } + } else { + listedesentree.push(lui.name); + }; + console.log(listedesentree); + if (listedesentree.length > 0){ + document.getElementById("enregistement").classList.remove("deactivation"); + }else{ + document.getElementById("enregistement").classList.add("deactivation"); + } +} diff --git a/fichiers/svg/chevron-right.svg b/fichiers/svg/chevron-right.svg new file mode 100644 index 0000000..258de41 --- /dev/null +++ b/fichiers/svg/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/fichiers/svg/edit.svg b/fichiers/svg/edit.svg new file mode 100644 index 0000000..f909465 --- /dev/null +++ b/fichiers/svg/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/inclusions/barre_menu.php b/inclusions/barre_menu.php index ed8608c..8985dec 100644 --- a/inclusions/barre_menu.php +++ b/inclusions/barre_menu.php @@ -6,7 +6,7 @@ if (isset($_GET['page']) && !empty($_GET['page'])) { ?> -