Ativa o menu
Alternar menu de preferências
Alternar menu pessoal
Não autenticado(a)
Your IP address will be publicly visible if you make any edits.

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

Página de Interface do MediaWiki
Sem resumo de edição
Sem resumo de edição
Linha 1: Linha 1:
/** o código CSS colocado aqui será aplicado a todos os temas */
/* ================================================================= */
/* ================================================================= */
/* 🧩 CELTA WIKI FRAMEWORK (COMPONENTES) */
/* 🧩 CELTA WIKI FRAMEWORK (ESTRUTURA E COMPONENTES) */
/* ================================================================= */
/* ================================================================= */


Linha 39: Linha 38:


/* --- 2. TABELAS PADRÃO (CELTA TABLE) --- */
/* --- 2. TABELAS PADRÃO (CELTA TABLE) --- */
/* Classe para tabelas de Definição (Campo | Descrição) */
.celta-table {
.celta-table {
     width: 100%;
     width: 100%;
Linha 51: Linha 49:


.celta-table th {
.celta-table th {
     background-color: #2c3e50; /* Azul Escuro Celta */
     background-color: #2c3e50;
     color: white;
     color: white;
     padding: 12px;
     padding: 12px;
Linha 68: Linha 66:
}
}


/* Coluna de destaque (a primeira coluna fica cinza ou negrito) */
/* Colunas Especiais */
.celta-col-key {
.celta-col-key {
     background-color: #f8f9fa;
     background-color: #f8f9fa;
     font-weight: 600;
     font-weight: 600;
     color: #2c3e50;
     color: #2c3e50;
     width: 40%;
     width: 30%;
}
}
.celta-col-value {
.celta-col-value {
     width: 60%;
     width: 70%;
}
 
/* Remove margens de listas dentro da tabela */
.celta-table ul {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    padding-left: 20px !important;
}
.celta-table li {
    margin-bottom: 2px !important;
}
}


Linha 83: Linha 91:
.celta-grid {
.celta-grid {
     display: grid;
     display: grid;
    /* Isso garante que os cards tenham largura mínima de 280px, mas estiquem se der */
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
     gap: 20px;
     margin: 20px 0;
     margin: 20px 0;
     width: 100%; /* Garante que não estoure a largura da página */
     width: 100%;
}
}


Linha 98: Linha 105:
     display: flex;
     display: flex;
     flex-direction: column;
     flex-direction: column;
    /* Adicionado para garantir que o conteúdo não vaze */
     overflow: hidden;  
     overflow: hidden;  
     box-sizing: border-box;
     box-sizing: border-box;
Linha 124: Linha 130:
}
}


/* Força que o <pre> dentro do card não estoure a largura */
.celta-card pre {
.celta-card pre {
     white-space: pre-wrap;
     white-space: pre-wrap;
Linha 135: Linha 140:
}
}


/* Remove margens exageradas de listas dentro da tabela Celta */
/* ================================================================= */
.celta-table ul {
/* 💎 TYPOGRAPHY SYSTEM & HEADER (MODERN SAAS LOOK) */
     margin-top: 5px !important;
/* ================================================================= */
     margin-bottom: 5px !important;
 
     padding-left: 20px !important; /* Mantém a indentação da bolinha */
/* 1. TÍTULOS GERAIS */
html body:not(.page-Página_principal) h1,
html body:not(.page-Página_principal) h2,
html body:not(.page-Página_principal) h3,
html body:not(.page-Página_principal) h4 {
    font-family: 'Segoe UI', Roboto, sans-serif !important;
    color: #1e293b !important; /* Slate 800 */
     margin-top: 1.5em !important;
     margin-bottom: 0.8em !important;
    line-height: 1.3 !important;
}
 
/* 2. TÍTULOS H2 (Design Limpo - Sem barra lateral) */
html body:not(.page-Página_principal) h2,
html body:not(.page-Página_principal) .mw-heading2 {
    font-size: 1.5em !important;
    font-weight: 700 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    border-left: none !important;
    padding-bottom: 0.3em !important;
    padding-left: 0 !important;
    margin-top: 40px !important;
}
 
/* 3. TÍTULOS H3 (Subseções) */
html body:not(.page-Página_principal) h3,
html body:not(.page-Página_principal) .mw-heading3 {
    font-size: 1.2em !important;
    font-weight: 600 !important;
    color: #334155 !important;
    border: none !important;
     padding-left: 0 !important;
    margin-top: 30px !important;
}
 
/* 4. REMOÇÃO DE SETAS E INDICADORES NATIVOS */
html body:not(.page-Página_principal) .citizen-section-indicator,
html body:not(.page-Página_principal) .mw-heading .indicator {
    display: none !important;
}
 
/* 5. TEXTO DE PARÁGRAFO */
.mw-body-content p {
    font-size: 1.05em !important;
    line-height: 1.7 !important;
    color: #475569 !important;
    margin-bottom: 1.2em !important;
    max-width: 900px;
}
 
/* 6. COMPONENTE DE CABEÇALHO (NOVO) */
.celta-page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}
 
.celta-breadcrumbs {
    font-size: 0.85em;
    color: #64748b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
 
.celta-breadcrumbs a {
    color: #64748b !important;
    text-decoration: none;
    transition: color 0.2s;
}
.celta-breadcrumbs a:hover {
    color: #3498db !important;
}
 
.celta-main-title {
    font-size: 2.2em;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    padding: 0;
    letter-spacing: -1px;
    line-height: 1.1;
}
 
.celta-meta-info {
    margin-top: 10px;
    font-size: 0.85em;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}
}


.celta-table li {
/* Esconde título nativo duplicado */
     margin-bottom: 2px !important;
body:not(.page-Página_principal) .mw-page-title-main,
body:not(.page-Página_principal) h1#firstHeading {
     display: none !important;
}
}

Edição das 06h37min de 29 de novembro de 2025

/* ================================================================= */
/* 🧩 CELTA WIKI FRAMEWORK (ESTRUTURA E COMPONENTES) */
/* ================================================================= */

/* --- 1. CAIXAS DE NOTA (ALERTS) --- */
.celta-box {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 6px;
    border-left: 5px solid #ccc;
    background-color: #f9f9f9;
    font-size: 0.95em;
}

.celta-box-title {
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 0.9em;
}

/* Variações de Cores */
.celta-info    { background: #f0f7ff; border-color: #3366cc; }
.celta-info .celta-box-title { color: #3366cc; }

.celta-success { background: #d1e7dd; border-color: #198754; }
.celta-success .celta-box-title { color: #155724; }

.celta-warning { background: #fff3cd; border-color: #ffc107; }
.celta-warning .celta-box-title { color: #856404; }

.celta-danger  { background: #fff5f5; border-color: #dc3545; }
.celta-danger .celta-box-title { color: #dc3545; }


/* --- 2. TABELAS PADRÃO (CELTA TABLE) --- */
.celta-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #e0e0e0;
    margin-top: 15px;
    margin-bottom: 25px;
}

.celta-table th {
    background-color: #2c3e50;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.celta-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.celta-table tr:last-child td {
    border-bottom: none;
}

/* Colunas Especiais */
.celta-col-key {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    width: 30%;
}
.celta-col-value {
    width: 70%;
}

/* Remove margens de listas dentro da tabela */
.celta-table ul {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    padding-left: 20px !important;
}
.celta-table li {
    margin-bottom: 2px !important;
}


/* --- 3. GRID DE CARDS E LAYOUT --- */
.celta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
    width: 100%;
}

.celta-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    box-sizing: border-box;
}

.celta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #3498db;
}

.celta-card-header {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    font-size: 1.1em;
}

.celta-card-body {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
}

.celta-card pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #f8f9fa;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.85em;
}

/* ================================================================= */
/* 💎 TYPOGRAPHY SYSTEM & HEADER (MODERN SAAS LOOK) */
/* ================================================================= */

/* 1. TÍTULOS GERAIS */
html body:not(.page-Página_principal) h1,
html body:not(.page-Página_principal) h2,
html body:not(.page-Página_principal) h3,
html body:not(.page-Página_principal) h4 {
    font-family: 'Segoe UI', Roboto, sans-serif !important;
    color: #1e293b !important; /* Slate 800 */
    margin-top: 1.5em !important;
    margin-bottom: 0.8em !important;
    line-height: 1.3 !important;
}

/* 2. TÍTULOS H2 (Design Limpo - Sem barra lateral) */
html body:not(.page-Página_principal) h2,
html body:not(.page-Página_principal) .mw-heading2 {
    font-size: 1.5em !important;
    font-weight: 700 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    border-left: none !important;
    padding-bottom: 0.3em !important;
    padding-left: 0 !important;
    margin-top: 40px !important;
}

/* 3. TÍTULOS H3 (Subseções) */
html body:not(.page-Página_principal) h3,
html body:not(.page-Página_principal) .mw-heading3 {
    font-size: 1.2em !important;
    font-weight: 600 !important;
    color: #334155 !important;
    border: none !important;
    padding-left: 0 !important;
    margin-top: 30px !important;
}

/* 4. REMOÇÃO DE SETAS E INDICADORES NATIVOS */
html body:not(.page-Página_principal) .citizen-section-indicator,
html body:not(.page-Página_principal) .mw-heading .indicator {
    display: none !important;
}

/* 5. TEXTO DE PARÁGRAFO */
.mw-body-content p {
    font-size: 1.05em !important;
    line-height: 1.7 !important;
    color: #475569 !important;
    margin-bottom: 1.2em !important;
    max-width: 900px;
}

/* 6. COMPONENTE DE CABEÇALHO (NOVO) */
.celta-page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.celta-breadcrumbs {
    font-size: 0.85em;
    color: #64748b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.celta-breadcrumbs a {
    color: #64748b !important;
    text-decoration: none;
    transition: color 0.2s;
}
.celta-breadcrumbs a:hover {
    color: #3498db !important;
}

.celta-main-title {
    font-size: 2.2em;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    padding: 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

.celta-meta-info {
    margin-top: 10px;
    font-size: 0.85em;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Esconde título nativo duplicado */
body:not(.page-Página_principal) .mw-page-title-main,
body:not(.page-Página_principal) h1#firstHeading {
    display: none !important;
}