agecem-org/public/css/header.css

107 lines
1.8 KiB
CSS
Raw Normal View History

.header {
position: fixed;
z-index: 20;
width: 100%;
top: 0;
background-color: #fff;
height: 60px;
2023-08-15 12:07:17 -04:00
}
2023-08-15 12:07:17 -04:00
.headerWrapper {
display: flex;
flex-flow: row;
align-items: center;
justify-content: space-between;
padding: 5px;
}
2023-08-15 12:07:17 -04:00
a {
color: #000;
text-decoration: none;
}
2023-08-15 12:07:17 -04:00
a:visited {
color: #000;
2023-08-15 12:07:17 -04:00
text-decoration: none;
}
2023-08-15 12:07:17 -04:00
.headerMenu {
background-color: #fff;
font-family: "Poppins";
2023-08-15 12:07:17 -04:00
font-weight: 400;
/*regular*/
font-size: 1.25rem;
/*20px*/
2023-08-08 17:43:48 -04:00
list-style: none;
display: none;
width: 100%;
}
2023-08-08 17:43:48 -04:00
2023-08-15 12:07:17 -04:00
.headerMenuElement {
padding-bottom: 5px;
margin: 0;
}
.headerMenuElement:hover {
2023-08-15 12:07:17 -04:00
border-bottom: 5px #FF563C solid;
/*Orange Highlight*/
cursor: pointer;
padding-bottom: 0;
}
2023-08-15 12:07:17 -04:00
.headerMenuHamburger {
height: 50px;
width: 50px;
cursor: pointer;
}
2023-08-15 12:07:17 -04:00
.headerMenuMobile {
font-family: "Poppins";
2023-08-15 12:07:17 -04:00
font-weight: 400;
/*regular*/
2023-08-15 14:30:10 -04:00
font-size: 2rem;
/*32px*/
list-style: none;
display: none;
2023-08-15 12:07:17 -04:00
}
2023-08-15 12:07:17 -04:00
.nav-is-active {
background-color: #fff;
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
text-align: left;
position: fixed;
top: 75px;
width: 100%;
height: 90%;
margin: 0;
padding: auto;
2023-08-15 12:07:17 -04:00
}
2023-08-15 12:07:17 -04:00
/* Le header s'affiche en menu hamburger pour les breakpoints téléphone et tablette */
@media screen and (min-width: 778px) {
2023-08-15 12:07:17 -04:00
.nav-is-active {
font-size: 2rem;
/*32px*/
}
}
2023-08-15 12:07:17 -04:00
/* Les éléments du header s'affichent pour le breakpoint ordinateur */
@media screen and (min-width: 1140px) {
2023-08-15 12:07:17 -04:00
.headerMenu {
display: flex;
flex-flow: row;
justify-content: space-around;
2023-08-15 12:07:17 -04:00
align-items: center;
}
2023-08-15 12:07:17 -04:00
.headerMenuHamburger {
display: none;
}
2023-08-15 12:07:17 -04:00
.nav-is-active {
display: none;
}
2023-08-15 12:07:17 -04:00
}