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, 9 May 2026 by Kalikush (talk | contribs)

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.
/* Container Reset */
.shady-mainpage { max-width: 1200px; margin: 0 auto; color: #e2e2e2; }

/* HERO - Minimalist Branding */
.shady-hero { text-align: center; padding: 60px 0 20px; }
.shady-logo { 
    font-family: 'Impact', sans-serif; 
    font-size: 72px; 
    letter-spacing: 4px; 
    margin-bottom: 0; 
    color: #fff; 
}
.shady-tagline { 
    font-size: 11px; 
    color: #555; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-top: 5px; 
}

/* NAVIGATION TILES - 3 Rows of 6 */
.shady-tile-grid { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    gap: 10px; 
    margin: 40px 0; 
}
.shady-tile { 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid #1a1a1a; 
    border-radius: 4px;
    padding: 15px 5px; 
    text-align: center; 
    font-size: 10px; 
    font-weight: bold;
    text-transform: uppercase;
    color: #888 !important;
}
.shady-tile:hover { 
    border-color: #a47719; 
    color: #fff !important; 
    background: rgba(164, 119, 25, 0.1); 
}

/* CARDS - High-tech HUD Polish */
.shady-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 20px;
}
.shady-featured-accent { border-left: 3px solid #a47719; }

.shady-card-header { 
    color: #a47719; 
    font-size: 10px; 
    font-weight: bold; 
    letter-spacing: 2px; 
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* SIDEBAR COMPONENTS */
.sc-discord { 
    background: #5865F2; 
    border-radius: 4px; 
    padding: 12px; 
    text-align: center; 
    display: block; 
    font-weight: bold; 
    font-size: 13px; 
    color: #fff !important; 
    margin-bottom: 20px;
}