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: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* Layout Reset */
/* Container Reset */
.shady-mainpage { max-width: 1400px; margin: 0 auto; color: #f0f0f0; }
.shady-mainpage { max-width: 1200px; margin: 0 auto; color: #e2e2e2; }


/* HERO - Large and Transparent */
/* HERO - Minimalist and Clean */
.shady-hero {  
.shady-hero { text-align: center; padding: 60px 0 40px; }
    text-align: center;  
.shady-logo { font-family: 'Impact', sans-serif; font-size: 72px; letter-spacing: 4px; margin-bottom: 0; text-shadow: 0 0 10px rgba(255,255,255,0.1); }
    padding: 100px 20px 60px;
.shady-tagline { font-size: 13px; color: #555; text-transform: uppercase; letter-spacing: 2px; }
    background: linear-gradient(to bottom, rgba(164, 119, 25, 0.05), transparent);
}
.shady-logo {  
    font-family: 'Impact', sans-serif;  
    font-size: 80px;  
    letter-spacing: 6px;  
    color: #fff;  
    text-shadow: 0 0 30px rgba(164, 119, 25, 0.4);
    margin: 0;
}
.shady-tagline { font-size: 13px; color: #888; text-transform: uppercase; letter-spacing: 4px; margin-top: 10px; }


/* SEARCH PILL - Rounded with Neon Border */
/* SEARCH - The Transparent Pill */
.shady-search-pill {
.shady-search-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #222;
    border-radius: 50px;
    padding: 16px 30px;
     max-width: 600px;
     max-width: 600px;
     margin: 40px auto 0;
     margin: 30px auto 0;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    padding: 15px 30px;
    border-radius: 50px;
     display: flex;
     display: flex;
     justify-content: space-between;
     justify-content: space-between;
     align-items: center;
     align-items: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}
}


/* CATEGORY TILES - The Star Citizen "Navigation" look */
/* NAVIGATION TILES - Centered & Glassy */
.shady-tile-grid {  
.shady-tile-grid {  
     display: grid;  
     display: grid;  
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));  
     grid-template-columns: repeat(6, 1fr); /* Forces 6 across like the image */
     gap: 12px;  
     gap: 10px;  
     margin: 40px 0;  
     margin: 30px 0;  
}
}
.shady-tile {  
.shady-tile {  
     background: rgba(255,255,255,0.03);  
     background: rgba(255, 255, 255, 0.05);  
     border: 1px solid #222;  
     border: 1px solid #222;  
    padding: 20px;
    text-align: left;
     border-radius: 4px;
     border-radius: 4px;
     font-size: 14px;
    padding: 12px;
    text-align: center;
     font-size: 11px;  
     font-weight: bold;
     font-weight: bold;
     border-left: 3px solid #333;
     text-transform: uppercase;
     transition: 0.3s;
     transition: 0.2s;
}
}
.shady-tile:hover { border-left-color: #a47719; background: rgba(164, 119, 25, 0.1); }
.shady-tile:hover { border-color: #a47719; background: rgba(164, 119, 25, 0.1); }


/* CONTENT CARDS - Rounded with Header Accents */
/* CONTENT CARDS - Thin Borders */
.shady-card {
.shady-card {
     background: rgba(10, 10, 10, 0.9);
     background: rgba(10, 10, 10, 0.5);
     border: 1px solid #1a1a1a;
     border: 1px solid #1a1a1a;
     border-radius: 12px;
     border-radius: 8px;
     padding: 30px;
     padding: 25px;
     margin-bottom: 25px;
     margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
}
.shady-card-header {  
.shady-card-header {  
     color: #a47719;  
     color: #a47719;  
     font-size: 12px;  
     font-size: 11px;  
     font-weight: 900;  
     font-weight: bold;  
     letter-spacing: 2px;  
     letter-spacing: 1.5px;  
     margin-bottom: 20px;
     margin-bottom: 15px;
     text-transform: uppercase;
     text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}
}


/* STATS - Square Boxes from the Screenshot */
/* SIDEBAR BUTTONS */
.shady-stat-grid { display: flex; gap: 15px; margin-top: 20px; }
.sc-discord {  
.shady-stat-box {  
     background: #5865F2;  
    flex: 1;
     border-radius: 6px;  
     background: #000;
     padding: 15px;  
    border: 1px solid #222;  
     border-radius: 8px;  
     padding: 20px;  
     text-align: center;  
     text-align: center;  
    display: block;
    font-weight: bold;
    color: #fff !important;
    margin-bottom: 15px;
}
}
.shady-stat-num { font-size: 28px; font-weight: bold; color: #fff; display: block; }
.shady-stat-lab { font-size: 10px; color: #a47719; text-transform: uppercase; }

Revision as of 13:50, 9 May 2026

/* Container Reset */
.shady-mainpage { max-width: 1200px; margin: 0 auto; color: #e2e2e2; }

/* HERO - Minimalist and Clean */
.shady-hero { text-align: center; padding: 60px 0 40px; }
.shady-logo { font-family: 'Impact', sans-serif; font-size: 72px; letter-spacing: 4px; margin-bottom: 0; text-shadow: 0 0 10px rgba(255,255,255,0.1); }
.shady-tagline { font-size: 13px; color: #555; text-transform: uppercase; letter-spacing: 2px; }

/* SEARCH - The Transparent Pill */
.shady-search-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #222;
    border-radius: 50px;
    padding: 16px 30px;
    max-width: 600px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NAVIGATION TILES - Centered & Glassy */
.shady-tile-grid { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); /* Forces 6 across like the image */
    gap: 10px; 
    margin: 30px 0; 
}
.shady-tile { 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid #222; 
    border-radius: 4px;
    padding: 12px; 
    text-align: center; 
    font-size: 11px; 
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.2s;
}
.shady-tile:hover { border-color: #a47719; background: rgba(164, 119, 25, 0.1); }

/* CONTENT CARDS - Thin Borders */
.shady-card {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}
.shady-card-header { 
    color: #a47719; 
    font-size: 11px; 
    font-weight: bold; 
    letter-spacing: 1.5px; 
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* SIDEBAR BUTTONS */
.sc-discord { 
    background: #5865F2; 
    border-radius: 6px; 
    padding: 15px; 
    text-align: center; 
    display: block; 
    font-weight: bold; 
    color: #fff !important; 
    margin-bottom: 15px;
}