Jump to content

MediaWiki:Common.css

From GTA RP Wiki
Revision as of 12:18, 9 January 2026 by Qocean (talk | contribs) (Created page with "CSS placed here will be applied to all skins: /* .wiki-custom-header { background-color: #ffffff; border: 1px solid #a2a9b1; border-radius: 4px; margin-bottom: 20px; overflow: hidden; } .wiki-header-main { display: flex; justify-content: space-between; align-items: center; padding: 20px; flex-wrap: wrap; } .wiki-title-section h1 { font-size: 2em; font-weight: normal; letter-spacing: 0.05em; margin: 0 0 5px 0;...")
(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 */
/*
.wiki-custom-header {
    background-color: #ffffff;
    border: 1px solid #a2a9b1;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.wiki-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}

.wiki-title-section h1 {
    font-size: 2em;
    font-weight: normal;
    letter-spacing: 0.05em;
    margin: 0 0 5px 0;
    border: none;
}

.wiki-title-section p {
    font-size: 1em;
    color: #54595d;
    font-style: italic;
    margin: 0;
}

.wiki-stats-section {
    text-align: right;
    font-size: 0.9em;
}

.wiki-stats-section div {
    margin-bottom: 5px;
}

.wiki-color-strip {
    display: flex;
    height: 6px;
}

.wiki-strip-segment {
    flex: 1;
    height: 100%;
}

.wiki-nav-links {
    display: flex;
    justify-content: space-around;
    padding: 12px;
    background-color: #f8f9fa;
    flex-wrap: wrap;
    gap: 5px;
}

.wiki-nav-links a {
    color: #202122;
    text-decoration: none;
    font-size: 0.9em;
    padding: 5px 10px;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.wiki-nav-links a:hover {
    background-color: #eaecf0;
    text-decoration: none;
}

@media (max-width: 768px) {
    .wiki-header-main {
        flex-direction: column;
        text-align: center;
    }
    
    .wiki-stats-section {
        text-align: center;
        margin-top: 15px;
    }
}
*/