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

Página de Interface do MediaWiki
Revisão de 06h55min de 29 de novembro de 2025 por Raul (discussão | contribs)

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.
/* ================================================================= */
/* 🧩 CELTA WIKI FRAMEWORK - COMPONENTES (VERSÃO COMPACTA) */
/* ================================================================= */

/* --- 1. CAIXAS DE NOTA (TEMPLATE:NOTA) --- */
.celta-box {
    padding: 12px 16px; /* REDUZIDO: Era 15px 20px */
    margin: 16px 0; /* REDUZIDO: Era 20px */
    border-radius: 6px;
    border-left: 4px solid #ccc; /* REDUZIDO: Borda ligeiramente mais fina */
    background-color: #f9f9f9;
    font-size: 0.95em;
}

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

.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;
    font-family: 'Segoe UI', Roboto, sans-serif !important; /* Força fonte correta */
}
.celta-table th {
    background-color: #2c3e50;
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1em; /* Tamanho normal */
}
.celta-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    font-size: 1em; /* Tamanho normal, corrigindo "fonte pequena" */
    color: #333;
}
.celta-table tr:last-child td { border-bottom: none; }
.celta-col-key { background-color: #f8f9fa; font-weight: 600; color: #2c3e50; width: 30%; }
.celta-col-value { width: 70%; }
.celta-table ul { margin: 5px 0 !important; padding-left: 20px !important; }
.celta-table li { margin-bottom: 2px !important; }

/* --- 3. GRIDS E CARDS (PARA MENUS) --- */
.celta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* REDUZIDO: Largura mínima menor */
    gap: 16px; /* REDUZIDO: Era 20px */
    margin: 16px 0; /* REDUZIDO: Era 20px */
    width: 100%;
}
.celta-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    padding: 16px; /* REDUZIDO: Era 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(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    border-color: #3498db;
}
.celta-card-header {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px; /* REDUZIDO */
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px; /* REDUZIDO */
    font-size: 1.05em; /* REDUZIDO: Era 1.1em */
}
.celta-card-body { font-size: 0.95em; color: #666; line-height: 1.4; }
.celta-card pre {
    white-space: pre-wrap; word-wrap: break-word; background: #f8f9fa;
    border: none; padding: 8px; border-radius: 4px; font-size: 0.85em;
}

/* --- 4. ESTILOS DO TEMPLATE DE CABEÇALHO (VERSÃO COMPACTA) --- */
.celta-page-header {
    margin-bottom: 25px; /* DRASTICAMENTE REDUZIDO: Era 40px */
    padding-bottom: 15px; /* REDUZIDO: Era 20px */
    border-bottom: 1px solid #e2e8f0;
}
.celta-breadcrumbs {
    font-size: 0.8em; /* REDUZIDO */
    color: #64748b;
    margin-bottom: 5px; /* REDUZIDO */
    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: 1.8em; /* DRASTICAMENTE REDUZIDO: Era 2.2em */
    font-weight: 800; color: #0f172a;
    margin: 0; padding: 0; letter-spacing: -0.5px; line-height: 1.1;
}
.celta-meta-info {
    margin-top: 5px; /* REDUZIDO */
    font-size: 0.8em; /* REDUZIDO */
    color: #94a3b8;
    display: flex; align-items: center; gap: 6px;
}