Array

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
 
(36 intermediate revisions by the same user not shown)
Line 1: Line 1:
* Responsive: Related articles - título arriba, contenido abajo */
/* Responsive Hn */
@media (max-width: 768px) {
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .related-articles-box,
  .related-articles-box tbody,
  .related-articles-box tr,
  .related-articles-box td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
  }
    
    
  .related-articles-box td:first-child {
h1 {
    padding-bottom: 0.5em;
font-size: 5.8rem !important;
    margin-bottom: 0.5em;
}
    border-bottom: 1px solid #99B36C; /* mismo color que tu título */
  }
h2 {
 
font-size: 5.2rem !important;
  .related-articles-box tr {
}
    margin-bottom: 0.5em;
  }
h3 {
font-size: 4.8rem !important;
}
h4 {
font-size: 3.8rem !important;
}
h5 {
font-size: 4.0rem !important;
}
h6 {
font-size: 3.8rem !important;
}
}
}

Latest revision as of 13:31, 6 February 2026

/* Responsive Hn */
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  
	h1 {
		font-size: 5.8rem !important;
	}
	
	h2 {
		font-size: 5.2rem !important;
	}
	
	h3 {
		font-size: 4.8rem !important;
	}
	
	h4 {
		font-size: 3.8rem !important;
	}
	
	h5 {
		font-size: 4.0rem !important;
	}
	
	h6 {
		font-size: 3.8rem !important;
	}
}