MediaWiki:Mobile.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
| Line 5: | Line 5: | ||
} | } | ||
/* | /* MediaWiki:Common.css */ | ||
@media (max-width: 767px) { | |||
.iframe-desktop { display: none; } | |||
.iframe-mobile { display: block; } | |||
} | } | ||
@media (min-width: 768px) { | |||
.iframe-desktop { display: block; } | |||
.iframe-mobile { display: none; } | |||
} | } | ||
Revision as of 12:16, 23 July 2025
/* All CSS here will be loaded for users of the mobile site */
* {
font-family: Poppins, Arial, sans-serif;
}
/* MediaWiki:Common.css */
@media (max-width: 767px) {
.iframe-desktop { display: none; }
.iframe-mobile { display: block; }
}
@media (min-width: 768px) {
.iframe-desktop { display: block; }
.iframe-mobile { display: none; }
}