Predefinição:Itens/styles.css

De Wiki Gla
Ir para navegação Ir para pesquisar
/* --- CSS para Itens (Personalizado e Otimizado) --- */

/* Cores Adicionais para os Títulos */
.bg-gold { background-color: #DAA520; } 
.bg-green { background-color: #27ae60; } 

/* Sobreescreve o home-title para permitir cores planas e alinhamento à esquerda */
.home-title.bg-flat-blue { 
    background: #3498db;
    text-align: left;
    padding: 12px 15px;
}
.home-title.bg-flat-gold {
    background: #DAA520;
    text-align: left;
    padding: 12px 15px;
}
.home-title.bg-flat-green {
    background: #27ae60;
    text-align: left;
    padding: 12px 15px;
}
/* Garante a estética do link (usando a tag <a> para o formato de botão) */
.item-button-link a {
    color: #3498db !important;
    text-decoration: none !important;
    font-weight: 500;
}
.item-button-link a:hover {
    text-decoration: underline !important;
}
/* Aumenta a fonte dos links para ficarem mais visíveis */
.item-button-text {
    font-size: 1.2em; 
}