MediaWiki:Common.css: Difference between revisions

From CTH Drafting Standards
(Created page with "→‎CSS placed here will be applied to all skins: →‎To make images responsive: img { max-width:100%; height:auto; }")
 
No edit summary
Line 5: Line 5:
max-width:100%;
max-width:100%;
height:auto;
height:auto;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #6c336d;
}
}

Revision as of 18:07, 20 March 2023

/* CSS placed here will be applied to all skins */

/* To make images responsive */
img {
	max-width:100%;
	height:auto;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #6c336d;
}