MediaWiki:Vector.css

De WIKI Netnews
Revisão de 17h45min de 18 de fevereiro de 2026 por Netnews (discussão | contribs) (Criou página com '====================================================== WIKI NETNEWS 4.0 - Layout Oficial Timeless ======================================================: 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;...')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para navegação Ir para pesquisar

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 4.0 - Layout Oficial Timeless
   ====================================================== */

/* 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;
}

/* ========================= */
/* PAINEL NOC */
/* ========================= */

.noc-panel {
    background: #0f172a;
    padding: 40px;
    border-radius: 22px;
    color: white;
    margin-bottom: 60px;
}

.noc-title {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.noc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.server-box {
    background: #1e293b;
    padding: 22px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white !important;
    min-height: 85px;
}

.server-box:hover {
    background: #334155;
    transform: translateY(-4px);
}

.server-name {
    font-weight: 600;
    font-size: 14px;
}

/* ========================= */
/* STATUS */
/* ========================= */

.status-online {
    color: #22c55e;
    font-weight: 600;
}

.status-offline {
    color: #ef4444;
    font-weight: 600;
}

.status-unknown {
    color: #facc15;
    font-weight: 600;
}

/* Piscar quando offline */
.blink {
    animation: piscar 1s infinite;
}

@keyframes piscar {
    0% { opacity: 1; }
    50% { opacity: 0.25; }
    100% { opacity: 1; }
}

/* ========================= */
/* DASHBOARD CARDS */
/* ========================= */

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.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 DOS CARDS */
.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 RÁPIDOS */
/* ========================= */

.quick-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 18px;
    margin-top: 40px;
}

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

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