MediaWiki:Gadget-ResponsiveStyle.css: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
/* Responsive CSS applied to both desktop and mobile */
/* Responsive CSS applied to both desktop and mobile */


/* Desktop/tablet */
@media all and (min-width: 720px) {
@media all and (min-width: 720px) {
/* Notice templates */
.notice-template.image {
.notice-template.image {
text-align: center;
text-align: center;
}
}
}
}

Revision as of 08:23, March 11, 2022

/* Responsive CSS applied to both desktop and mobile */

/* Desktop/tablet */
@media all and (min-width: 720px) {
	/* Notice templates */
	.notice-template.image {
		text-align: center;
	}
}