MediaWiki:Common.css: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
Sem resumo de edição |
||
| Linha 1: | Linha 1: | ||
/* ====================================================== | /* ====================================================== | ||
WIKI NETNEWS 2. | WIKI NETNEWS 2.2 - Layout Corporativo Premium | ||
====================================================== */ | ====================================================== */ | ||
| Linha 7: | Linha 7: | ||
} | } | ||
/* HERO | /* HERO */ | ||
.hero { | .hero { | ||
background: linear-gradient(90deg, #1e3c72, #2a5298); | background: linear-gradient(90deg, #1e3c72, #2a5298); | ||
padding: | padding: 70px 40px; | ||
color: white; | color: white; | ||
border-radius: | border-radius: 20px; | ||
text-align: center; | text-align: center; | ||
margin-bottom: | margin-bottom: 50px; | ||
} | } | ||
.hero h1 { | .hero h1 { | ||
font-size: | font-size: 40px; | ||
margin-bottom: 10px; | margin-bottom: 10px; | ||
font-weight: 600; | font-weight: 600; | ||
| Linha 28: | Linha 28: | ||
} | } | ||
/* GRID | /* GRID */ | ||
.dashboard-grid { | .dashboard-grid { | ||
display: grid; | display: grid; | ||
grid-template-columns: repeat(auto-fit, minmax( | grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); | ||
gap: | gap: 30px; | ||
margin-bottom: | margin-bottom: 50px; | ||
} | } | ||
/* CARDS */ | /* CARDS */ | ||
.card { | .card { | ||
padding: | padding: 35px; | ||
border-radius: | border-radius: 22px; | ||
color: white; | color: white; | ||
transition: all 0.35s ease; | |||
transition: all 0. | |||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
justify-content: space-between; | justify-content: space-between; | ||
min-height: | min-height: 220px; | ||
} | } | ||
.card h3 { | .card h3 { | ||
margin-top: 0; | margin-top: 0; | ||
font-size: | font-size: 22px; | ||
font-weight: 600; | |||
} | } | ||
.card p { | .card p { | ||
font-size: | font-size: 15px; | ||
opacity: 0.9; | opacity: 0.9; | ||
} | |||
.card a { | |||
color: white !important; | |||
text-decoration: none; | |||
font-weight: bold; | |||
margin-top: 15px; | |||
display: inline-block; | |||
} | } | ||
.card:hover { | .card:hover { | ||
transform: translateY(- | transform: translateY(-10px); | ||
box-shadow: 0 | box-shadow: 0 25px 50px rgba(0,0,0,0.25); | ||
} | } | ||
/* CORES */ | /* CORES */ | ||
.blue { background: #3498db; } | .blue { background: linear-gradient(135deg, #2980b9, #3498db); } | ||
.green { background: #2ecc71; } | .green { background: linear-gradient(135deg, #27ae60, #2ecc71); } | ||
.yellow { background: #f1c40f; color: #000; } | .yellow { background: linear-gradient(135deg, #f39c12, #f1c40f); color: #000; } | ||
.red { background: #e74c3c; } | .red { background: linear-gradient(135deg, #c0392b, #e74c3c); } | ||
/* LINKS | /* LINKS RAPIDOS */ | ||
.quick-box { | .quick-box { | ||
background: #f4f6f9; | background: #f4f6f9; | ||
padding: | padding: 30px; | ||
border-radius: | border-radius: 20px; | ||
} | } | ||
| Linha 83: | Linha 91: | ||
.quick-box ul { | .quick-box ul { | ||
padding-left: 20px; | padding-left: 20px; | ||
} | |||
.quick-box a { | |||
text-decoration: none; | |||
font-weight: 500; | |||
} | } | ||
Edição das 19h38min de 16 de fevereiro de 2026
/* ======================================================
WIKI NETNEWS 2.2 - Layout Corporativo Premium
====================================================== */
body {
font-family: 'Segoe UI', Arial, sans-serif;
}
/* HERO */
.hero {
background: linear-gradient(90deg, #1e3c72, #2a5298);
padding: 70px 40px;
color: white;
border-radius: 20px;
text-align: center;
margin-bottom: 50px;
}
.hero h1 {
font-size: 40px;
margin-bottom: 10px;
font-weight: 600;
}
.hero p {
font-size: 18px;
opacity: 0.9;
}
/* GRID */
.dashboard-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
margin-bottom: 50px;
}
/* CARDS */
.card {
padding: 35px;
border-radius: 22px;
color: white;
transition: all 0.35s ease;
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 220px;
}
.card h3 {
margin-top: 0;
font-size: 22px;
font-weight: 600;
}
.card p {
font-size: 15px;
opacity: 0.9;
}
.card a {
color: white !important;
text-decoration: none;
font-weight: bold;
margin-top: 15px;
display: inline-block;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
/* CORES */
.blue { background: linear-gradient(135deg, #2980b9, #3498db); }
.green { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.yellow { background: linear-gradient(135deg, #f39c12, #f1c40f); color: #000; }
.red { background: linear-gradient(135deg, #c0392b, #e74c3c); }
/* LINKS RAPIDOS */
.quick-box {
background: #f4f6f9;
padding: 30px;
border-radius: 20px;
}
.quick-box h2 {
margin-top: 0;
}
.quick-box ul {
padding-left: 20px;
}
.quick-box a {
text-decoration: none;
font-weight: 500;
}