Jump to content

Template:Cols/styles.css

From Ferret Software Wiki
Revision as of 17:19, 3 July 2025 by Gorasuhl (talk | contribs) (add nomobile/mobileonly compatibility. Need to adapt the names because of extension MobileFrontend and nomobile is a class which will trigger when switch to mobile mode.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/* adapted styling for 'nomobile' and 'mobileonly' from Book of Travelers wiki
 * https://bookoftravels.wiki.gg/wiki/MediaWiki:Common.css
 */
/* START cols styles */
 
 /* responsive styling */
.cols-mobileonly {display: none;}

@media (max-width: 750px) {
	.cols-mobileonly {display: block;}
	.cols-nomobile {display: none;}
}
/* END cols styles */