MediaWiki:Common.css
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.
/* ===== WIKI NETNEWS 2.0 ===== */
body {
font-family: 'Segoe UI', Arial, sans-serif;
}
/* HERO */
.hero {
background: linear-gradient(90deg, #1e3c72, #2a5298);
padding: 40px;
color: white;
border-radius: 12px;
text-align: center;
margin-bottom: 30px;
}
/* GRID */
.dashboard-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
/* CARDS */
.card {
padding: 25px;
border-radius: 12px;
color: white;
transition: 0.3s;
font-weight: bold;
}
.card small {
font-weight: normal;
}
.card:hover {
transform: translateY(-6px);
opacity: 0.9;
}
/* CORES */
.blue { background: #3498db; }
.green { background: #2ecc71; }
.yellow { background: #f1c40f; color: #000; }
.red { background: #e74c3c; }
/* LINKS RAPIDOS */
.quick-box {
background: #f4f6f9;
padding: 20px;
border-radius: 10px;
margin-top: 40px;
}