MediaWiki:Mobile.css
Jump to navigation
Jump to search
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* All CSS here will be loaded for users of the mobile site */
/* Hide all logo images in header on mobile */
header img[alt="Biowikimedia"],
header a img,
header img {
width: 0px !important;
height: 0px !important;
max-width: 0px !important;
max-height: 0px !important;
min-width: 0px !important;
min-height: 0px !important;
visibility: hidden !important;
display: none !important;
opacity: 0 !important;
position: absolute !important;
left: -9999px !important;
}
/* Display site name as text */
header a[href*="Main_Page"] {
display: inline-block !important;
font-size: 20px !important;
font-weight: bold !important;
color: #000000 !important;
text-decoration: none !important;
padding: 12px 15px !important;
line-height: 1.5 !important;
}
header a[href*="Main_Page"]::before {
content: 'biowikimedia' !important;
display: inline-block !important;
}