Array

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
.thumbcaption,  
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
figcaption {
 
    padding: 8px 10px !important;   /* Espacio interno para que el texto no toque los bordes */
/* Responsive tables - simple horizontal scroll solution */
    font-size: 0.88em !important;   /* Tamaño de letra ligeramente menor al del artículo */
.table-wrapper-mobile {
    line-height: 1.5 !important;     /* Espaciado entre líneas para facilitar la lectura */
overflow-x: auto !important;
    text-align: left !important;     /* Alineación a la izquierda */
-webkit-overflow-scrolling: touch !important;
    color: #202122 !important;       /* Color de texto estándar de Wikipedia */
width: 100% !important;
    background-color: #f8f9fa;       /* Color de fondo sutil para el área del texto */
margin: 0 -15px !important; /* Extends to edges */
    border-top: 1px solid #c8ccd1;   /* Línea divisoria fina entre la imagen y el texto */
padding: 0 15px !important;
}
}
.table-wrapper-mobile table.wikitable {
min-width: 900px !important;
width: 100% !important;
}
table.wikitable th,
table.wikitable td {
font-size: 3.2rem !important;
padding: 10px !important;
}


/* Ajuste del icono de "agrandar" (lupa) */
.magnify {
    margin-top: 5px !important;
    float: right;
}
}

Latest revision as of 18:48, 19 January 2026

@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {

	/* Responsive tables - simple horizontal scroll solution */
	.table-wrapper-mobile {
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
		width: 100% !important;
		margin: 0 -15px !important; /* Extends to edges */
		padding: 0 15px !important;
	}
	
	.table-wrapper-mobile table.wikitable {
		min-width: 900px !important;
		width: 100% !important;
	}
	
	table.wikitable th,
	table.wikitable td {
		font-size: 3.2rem !important;
		padding: 10px !important;
	}
	

}