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

De Wiki AnDes Sistemas
Ir para: navegação, pesquisa
Linha 1: Linha 1:
/* ========================================
+
<style>
  IMAGENS RESPONSIVAS - REFORMA TRIBUTÁRIA
+
@media screen {
  ======================================== */
+
  .img-responsive {
.img-responsive {
+
     max-width: 100% !important;
    width: 500px !important;          /* Ocupa todo o container */
+
     height: auto !important;
     max-width: auto !important;     /* Limite máximo (ajuste se quiser maior) */
+
     height: auto !important;         /* Mantém proporção */
+
 
     display: block !important;
 
     display: block !important;
     margin: 0 auto !important;       /* Centraliza */
+
     margin: 0 auto !important;
    border: 1px solid #ddd !important;
+
  }
    border-radius: 6px !important;
+
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
+
}
+
 
+
/* Em telas pequenas: não ultrapassa a tela */
+
@media (max-width: 480px) {
+
    .img-responsive {
+
        max-width: 100% !important;
+
        border-radius: 4px !important;
+
    }
+
 
}
 
}
 +
</style>

Edição das 13h52min de 11 de novembro de 2025

<style>
@media screen {
  .img-responsive {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }
}
</style>