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

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