MediaWiki:Common.css
Aparência
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.
/* Fonte moderna */
body {
font-family: 'Inter', 'Roboto', sans-serif;
background-color: #121212;
color: #e0e0e0;
line-height: 1.6;
font-size: 16px;
}
/* Cabeçalho */
#mw-head, #p-personal {
background-color: #1e1e1e;
border-bottom: 1px solid #333;
}
/* Barra lateral */
#mw-panel {
background-color: #1a1a1a;
border-right: 1px solid #333;
}
/* Links */
a {
color: #ff6600;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #ffa64d;
text-decoration: underline;
}
/* Títulos */
h1, h2, h3, h4, h5 {
color: #ffffff;
border-bottom: 1px solid #333;
padding-bottom: 4px;
}
/* Botões */
input[type="submit"], button, .mw-ui-button {
background-color: #ff6600;
color: #fff;
border: none;
border-radius: 6px;
padding: 8px 14px;
cursor: pointer;
transition: background 0.3s ease;
}
input[type="submit"]:hover, button:hover, .mw-ui-button:hover {
background-color: #e65c00;
}
/* Tabelas */
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #333;
padding: 10px;
}
th {
background-color: #1e1e1e;
color: #ff6600;
}
/* Rodapé */
#footer {
background-color: #1e1e1e;
border-top: 1px solid #333;
color: #aaa;
}
/* Caixa de edição */
textarea, input[type="text"] {
background-color: #1e1e1e;
color: #e0e0e0;
border: 1px solid #333;
border-radius: 4px;
padding: 6px;
}
/* Ocultar o logotipo padrão (caso queira usar um personalizado) */
#p-logo {
background: none !important;
}
/* Adicionar um logo personalizado */
#p-logo a {
display: block;
background-image: url('/wiki/Especial:Arquivo/logo.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
height: 60px;
}