Widget:Teste

De Wiki Gla
Revisão de 01h45min de 2 de junho de 2025 por Gurren1 (discussão | contribs)
Ir para navegação Ir para pesquisar

<style> /* Layout adaptativo geral */ .homepage-content {

 display: flex;
 flex-wrap: wrap;
 gap: 20px;
 width: 100%;
 box-sizing: border-box;

}

@media (max-width: 1530px) {

 .homepage-content {
   flex-direction: column;
 }
 .menu-col,
 .side-col {
   width: 100%;
   min-width: 100%;
 }

}

/* Grid inteligente nos botões */ .home-button-container {

 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 20px;
 padding: 10px;
 box-sizing: border-box;

} </style>