agecem-org/public/css/header.css

71 lines
1.3 KiB
CSS

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