Mudanças entre as edições de "Widget:Teste"
Ir para navegação
Ir para pesquisar
| Linha 1: | Linha 1: | ||
<style> | <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> | </style> | ||
Edição das 01h45min de 2 de junho de 2025
<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>