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


/* HERO - Minimalist and Clean */
/* HERO - Minimalist */
.shady-hero { text-align: center; padding: 60px 0 40px; }
.shady-hero { text-align: center; padding: 40px 0 20px; }
.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-logo { font-family: 'Impact', sans-serif; font-size: 72px; letter-spacing: 4px; margin-bottom: 0; color: #fff; }
.shady-tagline { font-size: 13px; color: #555; text-transform: uppercase; letter-spacing: 2px; }
.shady-tagline { font-size: 11px; color: #555; text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; }


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


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


/* CONTENT CARDS - Thin Borders */
/* CARDS - Consistent with image_829ab3.png */
.shady-card {
.shady-card {
     background: rgba(10, 10, 10, 0.5);
     background: #0a0a0a;
     border: 1px solid #1a1a1a;
     border: 1px solid #1a1a1a;
     border-radius: 8px;
     border-radius: 4px;
     padding: 25px;
     padding: 30px;
     margin-bottom: 20px;
     margin-bottom: 20px;
    position: relative;
}
}
.shady-featured-accent { border-left: 3px solid #a47719; }
.shady-card-header {  
.shady-card-header {  
     color: #a47719;  
     color: #a47719;  
     font-size: 11px;  
     font-size: 10px;  
     font-weight: bold;  
     font-weight: bold;  
     letter-spacing: 1.5px;  
     letter-spacing: 2px;  
     margin-bottom: 15px;
     margin-bottom: 15px;
     text-transform: uppercase;
     text-transform: uppercase;
}
}


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

Revision as of 13:51, 9 May 2026

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

/* HERO - Minimalist */
.shady-hero { text-align: center; padding: 40px 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; }

/* SEARCH - Accurate Pill */
.shady-search-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #1a1a1a;
    border-radius: 50px;
    padding: 12px 25px;
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
}

/* NAVIGATION TILES - Fixed Proportions */
.shady-tile-grid { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    gap: 12px; 
    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 - Consistent with image_829ab3.png */
.shady-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
}
.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 - Compact */
.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;
}