MediaWiki:Timeless.css

From McGough's Recipes
Revision as of 21:36, 24 March 2024 by Michael (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* All CSS here will be loaded for users of the Timeless skin */

/* Centered Photo For Mobile Size */
@media screen and (max-width: 851px) {
	
	/* Expand Image to Full Width */
	.mw-body-content a > img, .mw-body-content .floatnone > img {
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 100%; }
		
	/* Hide Margins On Left and Bottom Of Image And Center Image */
	figure[typeof~='mw:File'].mw-halign-right, figure[typeof~='mw:File/Frameless'].mw-halign-right{
		margin-bottom: 10px;
		margin-left: auto;
		margin-right: auto;
		clear: none;
		float: none; }
		
		/* Unused does not work */
/*	.mw-halign-right{
		margin-bottom: 10px;
		margin-left: auto;
		margin-right: auto;
	} */
}