MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 6: | Line 6: | ||
. | /* Limpeza de elementos padrão da Wiki */ | ||
#footer, .mw-footer, #catlinks { | |||
display: none !important; | |||
} | } | ||
/* Estilo Geral das Colunas */ | |||
.atronia-col h4 { | .atronia-col h4 { | ||
color: #ffffff !important; | |||
font-size: 14px !important; | font-size: 14px !important; | ||
font-weight: bold !important; | font-weight: bold !important; | ||
margin-bottom: 20px !important; | margin-bottom: 20px !important; | ||
border: none !important; | border: none !important; | ||
text-transform: none !important; | |||
} | } | ||
/* Links das Colunas */ | |||
.atronia-col a { | .atronia-col a { | ||
display: block !important; | display: block !important; | ||
color: #ffffff !important; /* | color: #ffffff !important; /* Texto sempre branco */ | ||
font-size: 14px !important; | font-size: 14px !important; | ||
text-decoration: none !important; | text-decoration: none !important; | ||
margin-bottom: 12px !important; | margin-bottom: 12px !important; | ||
transition: 0.2s; | transition: text-decoration 0.2s; | ||
opacity: 1 !important; /* Remove qualquer transparência herdada */ | |||
} | } | ||
.atronia-col a:hover { | .atronia-col a:hover { | ||
text-decoration: underline !important; | text-decoration: underline !important; | ||
opacity: | color: #ffffff !important; /* Mantém branco no hover */ | ||
opacity: 1 !important; | |||
} | } | ||
/* Links Legais (Livro de Reclamações e Privacy) */ | |||
.footer-legal-link { | |||
color: #ffffff !important; | |||
font-weight: bold !important; | |||
font-size: 13px !important; | |||
text-decoration: none !important; | |||
} | |||
.footer-legal-link:hover { | |||
text-decoration: underline !important; | |||
color: #ffffff !important; | |||
} | |||