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

De Wiki AnDes Sistemas
Ir para: navegação, pesquisa
Linha 1: Linha 1:
 +
/* ========================================
 +
  IMAGENS RESPONSIVAS - REFORMA TRIBUTÁRIA
 +
  ======================================== */
 
.img-responsive {
 
.img-responsive {
     min-width: 1200px !important;     /* Força tamanho mínimo */
+
     width: 100% !important;           /* Ocupa todo o container */
    width: 100% !important;
+
     max-width: 900px !important;     /* Limite máximo (ajuste se quiser maior) */
     max-width: 900px !important;
+
     height: auto !important;         /* Mantém proporção */
     height: 100%!important;
+
 
     display: block !important;
 
     display: block !important;
     margin: 0 auto !important;
+
     margin: 0 auto !important;       /* Centraliza */
 +
    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;
 +
    }
 
}
 
}

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

/* ========================================
   IMAGENS RESPONSIVAS - REFORMA TRIBUTÁRIA
   ======================================== */
.img-responsive {
    width: 100% !important;           /* Ocupa todo o container */
    max-width: 900px !important;      /* Limite máximo (ajuste se quiser maior) */
    height: auto !important;          /* Mantém proporção */
    display: block !important;
    margin: 0 auto !important;        /* Centraliza */
    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;
    }
}