MediaWiki:Common.css
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.
/* Aturan CSS Umum untuk Tampilan Mobile */ @media all and (max-width: 768px) { /* Sembunyikan sidebar di mobile */ #mw-navigation { display: none; } /* Lebarkan konten utama */ #content { margin-left: 0 !important; } /* Sesuaikan ukuran font untuk body */ body { font-size: 16px; } /* Pastikan gambar tidak meluap */ img { max-width: 100%; height: auto; } /* Buat tabel responsif */ table { display: block; overflow-x: auto; white-space: nowrap; } }