MediaWiki:Common.css

De Wiki Gla
Revisão de 00h56min de 12 de dezembro de 2024 por Gurren1 (discussão | contribs) (Página substituída por '→‎Página Inicial: guias e countdown: .custom-guides-container { border: 1px solid #e4eaee; background-color: #ffffff; box-shadow: 0 0.25rem 0.35rem -0.2...')
Ir para navegação Ir para pesquisar

Nota: Após salvar, 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)
  • Internet Explorer/Edge: PressioneCtrl enquanto clica Recarregar, ou Pressione Ctrl-F5
  • Opera: Pressione Ctrl-F5.
/* Página Inicial: guias e countdown */
.custom-guides-container {
    border: 1px solid #e4eaee;
    background-color: #ffffff;
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.custom-guides-title h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.custom-guides-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.custom-guides-table td {
    padding: 0.5rem;
    vertical-align: middle;
    text-align: center;
}

.custom-event-container {
    border: 1px solid #e4eaee;
    background-color: #ffffff;
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.custom-event-container h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.custom-event-more {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: #1a73e8;
    text-decoration: none;
    text-align: center;
}
/* Página Inicial: cards */
.wiki-row-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.wiki-row-item {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
    height: auto; /* Deixa o container flexível para ajustar ao conteúdo */
}

.wiki-row-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.wiki-row-image {
    width: 100%;
    height: 150px; /* Altura fixa da imagem para manter consistência */
    position: relative;
    background-color: transparent;
}

.wiki-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wiki-row-title {
    padding: 10px; /* Espaço ajustado para título */
    font-weight: bold;
    font-size: 1em; /* Fonte ajustada para maior visibilidade */
    border-top: 1px solid #ddd;
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .wiki-row-container {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .wiki-row-title {
        font-size: 0.95em;
    }
}

@media (max-width: 768px) {
    .wiki-row-title {
        font-size: 0.85em;
    }
}

/* Página Inicial: GURREN */
.homepage-header {
    text-align: center;
    padding: 10px;
}

.homepage-header h1 {
    font-size: 2em;
    font-weight: bold;
}

.homepage-header p {
    font-size: 1em;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.homepage-header a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .homepage-header {
        padding: 5px;
    }

    .homepage-header h1 {
        font-size: 1.5em;
    }

    .homepage-header p {
        font-size: 0.9em;
        max-width: 90%;
    }

    .homepage-header div {
        font-size: 0.9em;
    }
}