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

De Wiki AnDes Sistemas
Ir para: navegação, pesquisa
Linha 1: Linha 1:
 
/* ========================================
 
/* ========================================
   IMAGEM RESPONSIVA 900px - REFORMA TRIBUTÁRIA
+
   IMAGEM 900px RESPONSIVA – REFORMA TRIBUTÁRIA
 
   ======================================== */
 
   ======================================== */
.img-responsive {
+
.img-900-responsive {
 
     max-width: 900px !important;
 
     max-width: 900px !important;
     width: 900px !important;
+
     width: 100% !important;
 
     height: auto !important;
 
     height: auto !important;
 
     display: block !important;
 
     display: block !important;
Linha 11: Linha 11:
 
     border-radius: 6px !important;
 
     border-radius: 6px !important;
 
     box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
 
     box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
 +
    image-rendering: -webkit-optimize-contrast; /* Nitidez em zoom */
 +
    image-rendering: crisp-edges;
 
}
 
}
  
/* Responsivo em telas pequenas */
+
/* Telas menores que 960px: encolhe */
 
@media (max-width: 960px) {
 
@media (max-width: 960px) {
 
     .img-900-responsive {
 
     .img-900-responsive {

Edição das 17h36min de 11 de novembro de 2025

/* ========================================
   IMAGEM 900px RESPONSIVA – REFORMA TRIBUTÁRIA
   ======================================== */
.img-900-responsive {
    max-width: 900px !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    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;
    image-rendering: -webkit-optimize-contrast; /* Nitidez em zoom */
    image-rendering: crisp-edges;
}
 
/* Telas menores que 960px: encolhe */
@media (max-width: 960px) {
    .img-900-responsive {
        max-width: 100% !important;
        border-radius: 4px !important;
    }
}