Nota: Após publicar, você pode ter que limpar o "cache" do seu navegador para ver as alterações.
- Firefox / Safari: Pressione Shift enquanto clica Recarregar, ou pressione Ctrl-F5 ou Ctrl-R (⌘-R no Mac)
- Google Chrome: Pressione Ctrl-Shift-R (⌘-Shift-R no Mac)
- Edge: Pressione Ctrl enquanto clica Recarregar, ou pressione Ctrl-F5.
- Opera: Pressione Ctrl-F5.
/* Todo o CSS aqui será carregado para os usuários da skin MinervaNeue */
/* LOGO MENU SUPERIOR */
/* Remove o texto antigo */
.branding-box span {
display: none;
}
.minerva-header .branding-box {
opacity: 100;
}
/* Estiliza a logo customizada */
.branding-box a {
display: flex;
align-items: center;
gap: 8px;
padding: 4px;
}
/* Adiciona o ícone manualmente */
.branding-box a::before {
content: "";
display: inline-block;
background-image: url("/images/cinelinux-icon.png"); /* ajuste o caminho se necessário */
background-size: contain;
background-repeat: no-repeat;
width: 40px;
height: 40px;
}
/* Adiciona o texto "WIKI" */
.branding-box a::after {
content: "WIKI";
font-family: 'Gemunu Libre', sans-serif;
font-weight: 800;
font-size: 2rem;
color: #4a218f;
text-transform: uppercase;
}