Predefinição:BossLayout/styles.css
Ir para navegação
Ir para pesquisar
/* Container Principal */
.boss-main-wrapper {
background: #f4f4f4;
padding: 20px;
border-radius: 12px;
border: 1px solid #ddd;
font-family: sans-serif;
}
/* Navegação por Botões ALINHADA À ESQUERDA */
.boss-navigation {
display: flex;
gap: 12px;
justify-content: flex-start; /* Botões para a esquerda */
margin: 20px 0;
flex-wrap: wrap;
}
/* Estilo dos Botões */
.boss-nav-btn {
padding: 10px 22px;
background: #fff;
border: 2px solid #459cca;
color: #459cca;
border-radius: 6px;
font-weight: bold;
cursor: pointer;
transition: all 0.2s ease;
text-transform: uppercase;
font-size: 15px;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
border-radius: 15px;
}
.boss-nav-btn:hover {
background: #eef7ff;
transform: translateY(-2px);
}
.boss-nav-btn.active {
background: linear-gradient(to bottom, #459cca, #5684c8);
color: #fff;
border-color: #3b86ae;
box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
/* Grid de Fases e Cards */
.boss-grid {
display: flex;
flex-wrap: wrap;
gap: 15px;
}
.boss-card {
flex: 1 1 300px;
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
/* Controle de Exibição */
.boss-section {
display: none;
}
.boss-section.active {
display: block;
animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}