Predefinição:Gerador de Perfis de Grupos de Pesquisa/Cabeçalho estilo
Aspeto
.header_menu {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
text-align: center;
font-family: "Montserrat", "sans serif";
padding: 0.5em 0;
gap: 0.4em;
}
.header_menu a {
flex: 1;
padding: 2em 0;
transition: all 500ms ease;
border-top: 0.8em solid #006499;
text-decoration: none;
font-size: 115%;
font-weight: bold;
color: #000000;
background-color: #F7F7F7;
}
.header_menu .active-menu-item + a {
background-color: #FFFFFF;
transition: none;
border-top: 0.8em solid #006499;
color: inherit;
}
.header_menu a:hover {
background-color: gainsboro;
border-top: 0.8em solid #006499;
text-decoration: none;
color: #000000;
}
.header_menu .active-menu-item + a:hover {
background-color: gainsboro;
}
@media screen and (max-width: 600px) {
.header_menu a {
padding: 0.5em !important;
}
}