49 lines
1 KiB
CSS
49 lines
1 KiB
CSS
.header {
|
|
width: 100%;
|
|
}
|
|
|
|
.headerMenu {
|
|
font-family: "Poppins";
|
|
font-weight: 400; /*regular*/
|
|
font-size: 1.25rem; /*20px*/
|
|
color: #394596; /*Noir pur*/
|
|
display: flex;
|
|
flex-flow: row;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
|
|
.headerMenuElement:hover {
|
|
border-bottom: 5px #FF563C solid; /*Orange Highlight*/
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Le header s'affiche en menu hamburger pour les breakpoints téléphone et tablette */
|
|
@media screen and (max-width: 576px) {
|
|
.headerMenuElement{
|
|
display: none;
|
|
}
|
|
.hamburgerMenuIcon{
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 576px) {
|
|
.headerMenuElement{
|
|
display: none;
|
|
}
|
|
.hamburgerMenuIcon{
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
/* Les éléments du header s'affichent pour le breakpoint ordinateur */
|
|
@media screen and (min-width: 1024px) {
|
|
.headerMenuElement{
|
|
display: block;
|
|
}
|
|
.hamburgerMenuIcon{
|
|
display: none;
|
|
}
|
|
}
|
|
|