Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css

MediaWiki interface page
Revision as of 13:56, 25 November 2025 by Admin (talk | contribs) (Created page with "=============================== GLOBAL BIO INDEX PROFILE DESIGN Author: ChatGPT | 2025 ===============================: HERO BANNER: .gbi-profile-banner { width: 100%; height: 350px; object-fit: cover; border-bottom: 3px solid #002b7f; } PROFILE IMAGE WRAPPER: .gbi-profile-photo { width: 200px; height: 260px; object-fit: cover; border-radius: 16px; border: 4px solid white; box-shadow: 0px 8px 20px rgba(0,0,0,0.18...")
(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.
/* ===============================
 GLOBAL BIO INDEX PROFILE DESIGN
 Author: ChatGPT | 2025
=============================== */

/* HERO BANNER */
.gbi-profile-banner {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-bottom: 3px solid #002b7f;
}

/* PROFILE IMAGE WRAPPER */
.gbi-profile-photo {
    width: 200px;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid white;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.18);
    margin-top: -130px;
}

/* PROFILE HEADER */
.gbi-profile-header {
    text-align: center;
    font-family: Montserrat, sans-serif;
    padding-bottom: 20px;
}
.gbi-name {
    font-size: 38px;
    font-weight: 700;
    color: #002b7f;
}
.gbi-pronoun {
    font-size: 20px;
    opacity: 0.7;
    margin-left: 10px;
}
.gbi-headline {
    font-size: 18px;
    color: #444;
}

/* PAGE LAYOUT GRID */
.gbi-layout {
    display: flex;
    margin: 20px auto;
    width: 95%;
    gap: 25px;
}
.gbi-left {
    width: 66%;
}
.gbi-right {
    width: 34%;
}

/* INFOBOX */
.infobox-gbi {
    width: 100%;
    background: #f7faff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #d6e0f5;
    font-size: 14px;
}
.infobox-gbi th {
    color: #002b7f;
    font-size: 16px;
}

/* TABS */
.gbi-tabs {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}
.gbi-tab {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #002b7f;
    cursor: pointer;
}
.gbi-tab-active {
    background: #002b7f;
    color: white;
}

/* PHOTOS GRID */
.gbi-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gbi-gallery img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}