Template:Infobox item/style.css
Template page
More actions
/* 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;
}
}