Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Infobox item/style.css

Template page

/* In Template:Infobox item/styles.css */

/* --- MOBILE STYLES using a Media Query --- */ /* This CSS only applies when the screen is 720px wide or less */ @media all and (max-width: 720px) {

 /* Make the infobox stack at the top instead of floating */
 .infobox {
   float: none !important;
   width: auto !important;
   margin: 1em 0 !important;
 }
 
 /* Make the internal multi-column lists a single column */
 .infobox-responsive-list {
   -webkit-column-count: 1;
      -moz-column-count: 1;
           column-count: 1;
 }

}