Mudanças entre as edições de "MediaWiki:Common.css"

De Wiki AnDes Sistemas
Ir para: navegação, pesquisa
(Criou página com '<style> .central { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; } .painel { flex: 1 1 30%; box-sizing: border-box; min-width: 300p...')
 
Linha 1: Linha 1:
 
<style>
 
<style>
 
.central {
 
.central {
   display: flex;
+
   display: grid;
   flex-wrap: wrap;
+
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 
   gap: 20px;
 
   gap: 20px;
  justify-content: space-between;
 
}
 
 
.painel {
 
  flex: 1 1 30%;
 
  box-sizing: border-box;
 
  min-width: 300px;
 
 
}
 
}
 
</style>
 
</style>

Edição das 23h51min de 7 de novembro de 2025

<style>
.central {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
</style>