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:42, 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.
/* Layout & Container */
.shady-mainpage { max-width: 1240px; margin: 0 auto; color: #e2e2e2; }

/* HERO SECTION - Centered like the screenshot */
.shady-hero { text-align: center; padding: 60px 20px; }
.shady-logo { 
    font-family: 'Impact', sans-serif; 
    font-size: 72px; 
    font-weight: 900; 
    letter-spacing: 2px; 
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(164, 119, 25, 0.4);
}
.shady-tagline { font-size: 16px; color: #888; font-style: italic; margin-bottom: 30px; }

/* Search Bar Placeholder Style */
.shady-search-bar {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    padding: 12px 25px;
    border-radius: 50px; /* Pill shape */
    color: #666;
    display: flex;
    justify-content: space-between;
}

/* CARDS & TILES - Rounded corners and glass effect */
.shady-card { 
    background: rgba(15, 15, 15, 0.9); 
    border: 1px solid #2a2a2a; 
    border-radius: 12px; /* ROUNDED EDGES */
    padding: 20px; 
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.shady-card-title { 
    font-weight: bold; 
    text-transform: uppercase; 
    color: #a47719; 
    border-bottom: 1px solid #333; 
    margin-bottom: 15px; 
    padding-bottom: 8px;
    letter-spacing: 1px;
}

/* FEATURED BANNER - Rounded with Overlay */
.shady-featured { 
    position: relative; 
    border-radius: 12px; 
    overflow: hidden; 
    margin: 20px 0; 
    border: 1px solid #333;
}
.shady-featured-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 30px;
}

/* GRID SYSTEM */
.shady-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.shady-column { flex: 1; min-width: 300px; }

/* STATS - Pill Style */
.shady-stats { display: flex; justify-content: space-around; background: #0a0a0a; border-radius: 50px; padding: 15px; border: 1px solid #222; }
.shady-stat-number { font-size: 24px; font-weight: bold; color: #fff; display: block; }
.shady-stat-label { font-size: 11px; color: #a47719; text-transform: uppercase; }

/* SLIM SHADY COLORS */
.shady-1 { color: #FF0000; } .shady-2 { color: #32CD32; }
.shady-3 { color: #FFD700; } .shady-4 { color: #1E90FF; }
.shady-5 { color: #FF8C00; } .shady-6 { color: #8A2BE2; }
.sc-discord { background: #5865F2; border-radius: 8px; padding: 12px; text-align: center; display: block; font-weight: bold; color: #fff !important; }