MediaWiki:Common.css
Revision as of 12:07, 28 February 2019 by Stephen304 (talk | contribs) (Created page with "→CSS placed here will be applied to all skins: →* Main Page columns * Keep coherent with https://github.com/archlinux/archwiki/search?q=deviceWidthTablet: @media...")
Note: After saving, 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)
- Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* CSS placed here will be applied to all skins */ /* * Main Page columns * Keep coherent with https://github.com/archlinux/archwiki/search?q=deviceWidthTablet */ @media screen and ( min-width: 721px ) { div.archwiki-main-page-columns { column-count: 2; } div.archwiki-main-page-columns > * { page-break-inside: avoid; /* fix alignment of list items in multi-column layout, see https://stackoverflow.com/a/42349512/4180822 */ display: inline-block; width: 100%; } }