fix/affichage-footer #214

Merged
vlbeaudoin merged 3 commits from fix/affichage-footer into main 2024-09-16 16:46:01 -04:00
3 changed files with 40 additions and 0 deletions
Showing only changes of commit 787cb54b7d - Show all commits

38
public/css/footer.css Normal file
View file

@ -0,0 +1,38 @@
footer.css .pageFooter {
background: #f3f3f7;
/*Gris pâle*/
width: 100%;
padding: 5px;
position: fixed;
bottom: 0;
}
ul.footerElementList {
display: flex;
flex-flow: row;
list-style: none;
justify-content: space-around;
align-items: center;
text-align: center;
}
.footerElement {
font-family: "Poppins";
font-weight: 400;
/*semi-bold*/
font-size: 0.5rem;
/*8px*/
text-align: center;
}
@media screen and (min-width: 768px) {
.footerElement {
font-family: "Poppins";
font-weight: 400;
/*semi-bold*/
font-size: 0.75rem;
/*12px*/
text-align: center;
}
}

View file

@ -15,6 +15,7 @@ img {
body {
margin: 0;
padding-top: 60px;
padding-bottom: 20px;
}
ul {

View file

@ -2,6 +2,7 @@
<link rel="stylesheet" href="/public/css/general.css">
<link rel="stylesheet" href="/public/css/fonts.css">
<link rel="stylesheet" href="/public/css/header.css">
<link rel="stylesheet" href="/public/css/footer.css">
<script>
function onToggleNav() {
var menu = document.querySelector(".headerMenuMobile");