Jump to content

MediaWiki:Common.css

From VanuatuBook
Revision as of 05:43, 20 March 2025 by LoveMan (talk | contribs) (Created page with "β†’CSS placed here will be applied to all skins: β†’Center the main container: .main-container { width: 90%; margin: 0 auto; } β†’Header Section: .header-section { width: 100%; padding: 20px; margin-bottom: 20px; border: 1px solid #ccc; border-radius: 8px; background: #f9f9f9; text-align: center; } β†’Middle Section (3 Columns): .middle-section { display: flex; justify-content: space-between; gap: 20px; } .middl...")
(diff) ← Older revision | Latest revision (diff) | Newer revision β†’ (diff)

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.
/* CSS placed here will be applied to all skins */

/* Center the main container */
.main-container {
    width: 90%;
    margin: 0 auto;
}

/* Header Section */
.header-section {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
    text-align: center;
}

/* Middle Section (3 Columns) */
.middle-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.middle-section .column {
    flex: 1;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

/* Footer Section */
.footer-section {
    width: 100%;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
    text-align: center;
}

/* Highlight Section Titles */
.section-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}