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:
/* Container & Global Font */
/* Container & Depth */
.shady-mainpage { max-width: 1300px; margin: 0 auto; color: #e2e2e2; line-height: 1.6; }
.shady-mainpage { max-width: 1200px; margin: 0 auto; color: #e2e2e2; }


/* HERO SECTION - Centered & Glowing */
/* REFINED HERO & SEARCH */
.shady-hero { text-align: center; padding: 80px 20px 40px; }
.shady-hero { padding: 60px 0 40px; text-align: center; }
.shady-logo {  
.shady-logo { font-family: 'Impact', sans-serif; font-size: 72px; letter-spacing: 4px; margin-bottom: 0; }
    font-family: 'Impact', sans-serif;  
.shady-tagline { font-size: 13px; color: #666; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 30px; }
    font-size: 82px;  
    font-weight: 900;
    letter-spacing: 4px;  
    margin-bottom: 5px;
    filter: drop-shadow(0 0 15px rgba(164, 119, 25, 0.3));
}
.shady-tagline { font-size: 15px; color: #999; letter-spacing: 1px; margin-bottom: 40px; text-transform: uppercase; }


/* Pill Search Bar */
/* Pill Search - More Spaced */
.shady-search-bar {
.shady-search-wrapper {
     max-width: 550px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #222;
    border-radius: 50px;
    padding: 18px 30px;
     max-width: 650px;
     margin: 0 auto;
     margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 28px;
    border-radius: 100px;
    color: #888;
     display: flex;
     display: flex;
     justify-content: space-between;
     justify-content: space-between;
     align-items: center;
     align-items: center;
     box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
     box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
}


/* CARDS - Glassmorphism & Rounded 12px */
/* CARDS - Thinner borders, inner glow */
.shady-card {  
.shady-card {
     background: rgba(20, 20, 20, 0.8);
     background: #0d0d0d;
    backdrop-filter: blur(10px);
     border: 1px solid #222;
     border: 1px solid rgba(255,255,255,0.05);  
     border-radius: 12px;
     border-radius: 12px;  
     padding: 30px;
     padding: 24px;  
     margin-bottom: 24px;
     margin-bottom: 20px;
     box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
     transition: transform 0.2s, border-color 0.2s;
}
}
.shady-card:hover { border-color: rgba(164, 119, 25, 0.5); transform: translateY(-2px); }
.shady-card-title {
 
     color: #a47719;
.shady-card-title {  
     font-size: 12px;
    font-weight: 800;
     font-weight: 800;
    text-transform: uppercase;
     text-transform: uppercase;
     color: #a47719;  
     font-size: 13px;
     border-bottom: 1px solid rgba(255,255,255,0.1);  
     margin-bottom: 18px;
    padding-bottom: 10px;
     letter-spacing: 2px;
     letter-spacing: 2px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 12px;
    margin-bottom: 20px;
}
}


/* FEATURED BANNER - 12px Rounding */
/* FEATURED ARTICLE REWORK */
.shady-featured {
.shady-featured-card {
    position: relative;
     background: linear-gradient(135deg, #111 0%, #050505 100%);
    border-radius: 12px;
     border: 1px solid #a47719;
    overflow: hidden;
     border-radius: 12px;
    margin: 30px 0;
    border: 1px solid #333;
    height: 350px;
}
.shady-featured img { object-fit: cover; width: 100%; height: 100%; }
.shady-featured-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0; top: 0;
     background: linear-gradient(to top, rgba(0,0,0,1) 10%, rgba(0,0,0,0.2) 100%);
     display: flex;
     flex-direction: column;
    justify-content: flex-end;
     padding: 40px;
     padding: 40px;
    margin: 30px 0;
}
}
.shady-featured-title { font-size: 48px; font-weight: 900; color: #fff; margin-bottom: 10px; }


/* STATS - Pill Shape */
/* STATS - Square to match Star Citizen Wiki style */
.shady-stats-container {
.shady-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; max-width: 400px; margin: 0 auto; }
    display: flex;
.shady-stat-box {
    justify-content: center;
     background: #111;
    gap: 15px;
     border: 1px solid #222;
    margin-top: 20px;
     border-radius: 8px;
}
     padding: 20px;
.shady-stat-pill {
     background: rgba(255,255,255,0.05);
     border: 1px solid #333;
     border-radius: 50px;
     padding: 10px 25px;
     text-align: center;
     text-align: center;
    min-width: 120px;
}
}
.shady-stat-num { font-size: 22px; font-weight: bold; color: #fff; display: block; }
.shady-stat-num { font-size: 32px; font-weight: bold; color: #fff; display: block; }
.shady-stat-lab { font-size: 10px; color: #a47719; text-transform: uppercase; font-weight: bold; }
.shady-stat-label { font-size: 11px; color: #a47719; text-transform: uppercase; }

Revision as of 13:46, 9 May 2026

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

/* REFINED HERO & SEARCH */
.shady-hero { padding: 60px 0 40px; text-align: center; }
.shady-logo { font-family: 'Impact', sans-serif; font-size: 72px; letter-spacing: 4px; margin-bottom: 0; }
.shady-tagline { font-size: 13px; color: #666; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 30px; }

/* Pill Search - More Spaced */
.shady-search-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #222;
    border-radius: 50px;
    padding: 18px 30px;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* CARDS - Thinner borders, inner glow */
.shady-card {
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
}
.shady-card-title {
    color: #a47719;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

/* FEATURED ARTICLE REWORK */
.shady-featured-card {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border: 1px solid #a47719;
    border-radius: 12px;
    padding: 40px;
    margin: 30px 0;
}
.shady-featured-title { font-size: 48px; font-weight: 900; color: #fff; margin-bottom: 10px; }

/* STATS - Square to match Star Citizen Wiki style */
.shady-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; max-width: 400px; margin: 0 auto; }
.shady-stat-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
.shady-stat-num { font-size: 32px; font-weight: bold; color: #fff; display: block; }
.shady-stat-label { font-size: 11px; color: #a47719; text-transform: uppercase; }