Jump to content

MediaWiki:Mobile.css: Difference between revisions

From inZOI Wiki
Created page with "All CSS here will be loaded for users of the mobile site: @media only screen and (max-width: 600px) { .infobox { float: none !important; margin: 0 auto 1em auto !important; } }"
 
No edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the mobile site */
/* All CSS here will be loaded for users of the mobile site */
@media only screen and (max-width: 600px) {
 
    .infobox {
.infobox {
      float: none !important;
  float: none !important;
      margin: 0 auto 1em auto !important;
  margin: 0 auto 1em auto !important;
    }
}
  }

Revision as of 05:47, 18 February 2025

/* All CSS here will be loaded for users of the mobile site */

.infobox {
   float: none !important;
   margin: 0 auto 1em auto !important;
}