Difference between revisions of "MediaWiki:Common.css"

From ImpVis Wiki
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: body { font-size: larger;} →‎To make images responsive: .res-img img { max-width:100%; height:auto; width: auto\9; }")
 
Tag: Reverted
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
body { font-size: larger;}
body { font-size: larger;
background-color: blue;}


/* To make images responsive */
/* To make images responsive */

Revision as of 12:07, 25 June 2021

/* CSS placed here will be applied to all skins */
body { font-size: larger;
background-color: blue;}

/* To make images responsive */
.res-img img {
	max-width:100%;
	height:auto;
    width: auto\9;
}