MediaWiki:Common.css: mudanças entre as edições

De WIKI Netnews
Ir para navegação Ir para pesquisar
Criou página com '===== 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: 1...'
 
Sem resumo de edição
Linha 1: Linha 1:
/* ===== WIKI NETNEWS 2.0 ===== */
/* ======================================================
  WIKI NETNEWS 2.1 - Layout Corporativo Profissional
  ====================================================== */


body {
body {
Linha 5: Linha 7:
}
}


/* HERO */
/* HERO TOPO */
.hero {
.hero {
     background: linear-gradient(90deg, #1e3c72, #2a5298);
     background: linear-gradient(90deg, #1e3c72, #2a5298);
     padding: 40px;
     padding: 60px 40px;
     color: white;
     color: white;
     border-radius: 12px;
     border-radius: 16px;
     text-align: center;
     text-align: center;
     margin-bottom: 30px;
     margin-bottom: 40px;
}
}


/* GRID */
.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
}
 
.hero p {
    font-size: 18px;
    opacity: 0.9;
}
 
/* GRID PRINCIPAL */
.dashboard-grid {
.dashboard-grid {
     display: grid;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     gap: 25px;
    margin-bottom: 40px;
}
}


/* CARDS */
/* CARDS */
.card {
.card {
     padding: 25px;
     padding: 30px;
     border-radius: 12px;
     border-radius: 18px;
     color: white;
     color: white;
     transition: 0.3s;
    text-decoration: none;
     font-weight: bold;
     transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
     min-height: 200px;
}
}


.card small {
.card h3 {
     font-weight: normal;
    margin-top: 0;
    font-size: 20px;
}
 
.card p {
     font-size: 14px;
    opacity: 0.9;
}
}


.card:hover {
.card:hover {
     transform: translateY(-6px);
     transform: translateY(-8px);
     opacity: 0.9;
     box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
}


Linha 46: Linha 70:
.red { background: #e74c3c; }
.red { background: #e74c3c; }


/* LINKS RAPIDOS */
/* LINKS RÁPIDOS */
.quick-box {
.quick-box {
     background: #f4f6f9;
     background: #f4f6f9;
     padding: 20px;
     padding: 25px;
     border-radius: 10px;
     border-radius: 16px;
     margin-top: 40px;
}
 
.quick-box h2 {
     margin-top: 0;
}
 
.quick-box ul {
    padding-left: 20px;
}
}

Edição das 19h36min de 16 de fevereiro de 2026

/* ======================================================
   WIKI NETNEWS 2.1 - Layout Corporativo Profissional
   ====================================================== */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* HERO TOPO */
.hero {
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    padding: 60px 40px;
    color: white;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* GRID PRINCIPAL */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* CARDS */
.card {
    padding: 30px;
    border-radius: 18px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.card h3 {
    margin-top: 0;
    font-size: 20px;
}

.card p {
    font-size: 14px;
    opacity: 0.9;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* CORES */
.blue { background: #3498db; }
.green { background: #2ecc71; }
.yellow { background: #f1c40f; color: #000; }
.red { background: #e74c3c; }

/* LINKS RÁPIDOS */
.quick-box {
    background: #f4f6f9;
    padding: 25px;
    border-radius: 16px;
}

.quick-box h2 {
    margin-top: 0;
}

.quick-box ul {
    padding-left: 20px;
}