Module:Navbox/styles.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 41: | Line 41: | ||
} | } | ||
/* | |||
.navbox-title { | |||
background-color: #d9ecff; | /* Estiliza o título da esquerda */ | ||
color: #003366; | .navbox-title-left { | ||
background-color: #d9ecff; | |||
color: #003366; | |||
font-weight: bold; | font-weight: bold; | ||
font-size: | font-size: 115%; | ||
padding: 0.4em; | padding: 0.4em; | ||
border-radius: 0.5em 0 | text-align: center; | ||
width: 100%; | |||
border-radius: 0.5em 0 0 0; | |||
} | } | ||
/* | /* Estiliza o botão à direita */ | ||
.navbox | .navbox-title-right { | ||
background-color: #d9ecff; | |||
text-align: right; | text-align: right; | ||
padding: 0.4em; | |||
border-radius: 0 0.5em 0 0; | |||
vertical-align: middle; | vertical-align: middle; | ||
} | } | ||
/* | /* Estilo do botão [collapse]/[expand] */ | ||
.navbox .mw-collapsible-toggle { | .navbox .mw-collapsible-toggle { | ||
font-size: 90%; | font-size: 90%; | ||
| Line 68: | Line 72: | ||
color: #003366; | color: #003366; | ||
font-weight: bold; | font-weight: bold; | ||
padding: 0.2em; | padding: 0.2em 0.4em; | ||
cursor: pointer; | cursor: pointer; | ||
} | } | ||
Revision as of 19:25, 29 May 2025
/* Reduz o tamanho da fonte geral */
.navbox {
font-size: 0.80em;
border: 1px solid #ccc;
border-radius: 12px;
padding: 0.5em;
background-color: #fdfdfd;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
/* Força os itens da lista como inline */
.navbox .hlist li {
display: inline;
}
/* Adiciona barra vertical entre itens da lista */
.navbox .hlist li:not(:last-child)::after {
content: " |";
font-weight: bold;
padding: 0 0.4em;
color: #444;
}
/* Estilo do título do grupo */
.navbox .navbox-group {
font-weight: bold;
background-color: #f2f2f2;
padding: 0.3em 0.6em;
border-bottom: 1px solid #ddd;
border-top-left-radius: 12px;
border-top-right-radius: 12px;
}
/* Ajustes de link */
.navbox a {
text-decoration: none;
}
.navbox a:hover {
text-decoration: underline;
}
/* Estiliza o título da esquerda */
.navbox-title-left {
background-color: #d9ecff;
color: #003366;
font-weight: bold;
font-size: 115%;
padding: 0.4em;
text-align: center;
width: 100%;
border-radius: 0.5em 0 0 0;
}
/* Estiliza o botão à direita */
.navbox-title-right {
background-color: #d9ecff;
text-align: right;
padding: 0.4em;
border-radius: 0 0.5em 0 0;
vertical-align: middle;
}
/* Estilo do botão [collapse]/[expand] */
.navbox .mw-collapsible-toggle {
font-size: 90%;
background: none;
border: none;
color: #003366;
font-weight: bold;
padding: 0.2em 0.4em;
cursor: pointer;
}