MediaWiki:Common.css: Difference between revisions

From Metropolis World Lore
Jump to navigation Jump to search
No edit summary
Tags: Manual revert Reverted
No edit summary
Tag: Manual revert
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* To make images responsive */
/* To make images stretch across content width and responsive */
.res-img img {
.res-img img {
max-width:100%;
max-width:100%;
Line 7: Line 7:
}
}


/* Changes part of the background */
/* */
body {
background: #3f3e43;
}
 
/* Changes content background */
#content {
background-color: #313034;
}

Latest revision as of 16:30, 14 December 2022

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

/* To make images stretch across content width and responsive */
.res-img img {
	max-width:100%;
	height:auto;
}

/*  */