MediaWiki:Common.css

From The Apple Internal Wiki
Revision as of 12:42, 10 June 2021 by Thermal (talk | contribs) (Created page with "/* ============================================================================ * Borrowed from TheiPhoneWiki * =============================================================...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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 / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* ============================================================================
 * Borrowed from TheiPhoneWiki
 * ============================================================================
 */

/* Flex boxes
 * -- Each <div> will have equal width
 */
.flex {
    display: flex;
    flex-direction: row;
}
.flex > div {
    flex: 1 1 0;
    padding-right: 4px;
}
.flex > div:last-child {
    padding-right: 0px !important;
}