Ajouter responsiveness au header #93
2 changed files with 71 additions and 57 deletions
|
@ -19,12 +19,14 @@
|
||||||
color: #000;
|
color: #000;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:visited{
|
a:visited{
|
||||||
color: #000;
|
color: #000;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.headerMenu{
|
.headerMenu{
|
||||||
|
background-color: #fff;
|
||||||
font-family: "Poppins";
|
font-family: "Poppins";
|
||||||
font-weight: 400; /*regular*/
|
font-weight: 400; /*regular*/
|
||||||
font-size: 1.25rem; /*20px*/
|
font-size: 1.25rem; /*20px*/
|
||||||
|
@ -49,18 +51,39 @@ text-decoration: none;
|
||||||
fill: #394596;
|
fill: #394596;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
|
display: block;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.headerMenuMobile{
|
||||||
|
font-family: "Poppins";
|
||||||
|
font-weight: 400; /*regular*/
|
||||||
|
font-size: 1.25rem; /*20px*/
|
||||||
|
color: #000; /*Noir pur*/
|
||||||
|
list-style: none;
|
||||||
|
font-style: none;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-is-active{
|
||||||
|
background-color: #fff;
|
||||||
|
font-size: 2rem; /*32px*/
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
justify-content: space-around;
|
||||||
|
align-items: center;
|
||||||
|
text-align: left;
|
||||||
|
position: fixed;
|
||||||
|
top: 75px;
|
||||||
|
width: 100%;
|
||||||
|
height: 90%;
|
||||||
|
margin: 0;
|
||||||
|
padding-top: 200px;
|
||||||
|
padding-bottom: 200px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Le header s'affiche en menu hamburger pour les breakpoints téléphone et tablette */
|
/* Le header s'affiche en menu hamburger pour les breakpoints téléphone et tablette */
|
||||||
|
|
||||||
|
|
||||||
.headerMenuHamburger{
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@media screen and (min-width: 778px) {
|
@media screen and (min-width: 778px) {
|
||||||
.headerMenu{
|
.headerMenu{
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -68,6 +91,11 @@ text-decoration: none;
|
||||||
.headerMenuHamburger{
|
.headerMenuHamburger{
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
.nav-is-active{
|
||||||
|
font-size: 3rem; /*48px*/
|
||||||
|
padding-top: 100px;
|
||||||
|
padding-bottom: 100px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Les éléments du header s'affichent pour le breakpoint ordinateur */
|
/* Les éléments du header s'affichent pour le breakpoint ordinateur */
|
||||||
|
@ -81,23 +109,10 @@ text-decoration: none;
|
||||||
.headerMenuHamburger{
|
.headerMenuHamburger{
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
.nav-is-active{
|
||||||
|
|
||||||
.headerMenuMobile{
|
|
||||||
font-family: "Poppins";
|
|
||||||
font-weight: 400; /*regular*/
|
|
||||||
font-size: 1.25rem; /*20px*/
|
|
||||||
color: #000; /*Noir pur*/
|
|
||||||
list-style: none;
|
|
||||||
font-style: none;
|
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.nav-is-active{
|
|
||||||
background-color: #fff;
|
|
||||||
display: flex;
|
|
||||||
flex-flow: column;
|
|
||||||
justify-content: space-between;
|
|
||||||
position: fixed;
|
|
||||||
top: 75px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
<script>
|
<script>
|
||||||
function onToggleNav() {
|
function onToggleNav() {
|
||||||
var menu = document.querySelector(".headerMenuMobile");
|
var menu = document.querySelector(".headerMenuMobile");
|
||||||
console.log(menu);
|
|
||||||
menu.classList.toggle('nav-is-active');
|
menu.classList.toggle('nav-is-active');
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue