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
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Grid */
/* SSLP Multi-Color Header Title - Ultra Priority */
.home-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
html body .citizen-header__logo-text {
.home-card { background: rgba(255,255,255,0.03); border: 1px solid #333; border-radius: 4px; padding: 15px; }
    font-family: 'Impact', 'Arial Black', sans-serif !important;
.home-card-featured { flex: 2; min-width: 350px; border-left: 4px solid #a47719; }
    text-transform: uppercase !important;
.home-card-sidebar { flex: 1; min-width: 250px; }
    font-size: 28px !important;
    font-weight: 900 !important;
    display: inline-block !important;
    background: linear-gradient(to right,
        #FF0000 0%, #FF0000 10%,
        #32CD32 10%, #32CD32 20%,
        #FFD700 20%, #FFD700 30%,
        #1E90FF 30%, #1E90FF 40%,
        #FF8C00 40%, #FF8C00 50%,
        #8A2BE2 50%, #8A2BE2 60%,
        #00CED1 60%, #00CED1 70%,
        #FF1493 70%, #FF1493 80%,
        #ADFF2F 80%, #ADFF2F 90%,
        #FFB6C1 90%, #FFB6C1 100%
    ) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    filter: drop-shadow(2px 2px 0px #000) !important;
}


/* Dashboard Action Buttons */
/* Container Reset */
.action-button { display: block; padding: 12px; margin-bottom: 8px; border-radius: 4px; text-align: center; font-weight: bold; color: #fff !important; text-decoration: none !important; }
.shady-mainpage { max-width: 1200px; margin: 0 auto; color: #e2e2e2; }
.btn-discord { background: #5865F2; }
.btn-patreon { background: #FF424D; }
.btn-kofi { background: #FF5E5B; }
.btn-reddit { background: #FF4500; }


/* Category Tiles */
/* HERO - Minimalist Branding */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 8px; margin: 20px 0; }
.shady-hero { text-align: center; padding: 100px 0 60px; }
.tile { background: #1a1a1a; border: 1px solid #333; padding: 10px; text-align: center; font-size: 12px; font-weight: bold; transition: 0.2s; }
.shady-logo {  
.tile:hover { border-color: #a47719; background: #222; }
    font-family: 'Impact', sans-serif;  
    font-size: 82px;  
    letter-spacing: 6px;  
    margin-bottom: 0;
    color: #fff;  
}
.shady-tagline {
    font-size: 12px;  
    color: #555;  
    text-transform: uppercase;  
    letter-spacing: 4px;  
    margin-top: 10px;  
}


/* Header Search Subtitle */
/* NAVIGATION TILES - 3 Rows of 6 */
.header-subtitle { text-align: center; font-style: italic; color: #888; margin-bottom: 20px; }
.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: 18px 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);
}

Latest revision as of 14:13, 9 May 2026

/* SSLP Multi-Color Header Title - Ultra Priority */
html body .citizen-header__logo-text {
    font-family: 'Impact', 'Arial Black', sans-serif !important;
    text-transform: uppercase !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    display: inline-block !important;
    background: linear-gradient(to right,
        #FF0000 0%, #FF0000 10%,
        #32CD32 10%, #32CD32 20%,
        #FFD700 20%, #FFD700 30%,
        #1E90FF 30%, #1E90FF 40%,
        #FF8C00 40%, #FF8C00 50%,
        #8A2BE2 50%, #8A2BE2 60%,
        #00CED1 60%, #00CED1 70%,
        #FF1493 70%, #FF1493 80%,
        #ADFF2F 80%, #ADFF2F 90%,
        #FFB6C1 90%, #FFB6C1 100%
    ) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    filter: drop-shadow(2px 2px 0px #000) !important;
}

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

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

/* NAVIGATION TILES - 3 Rows of 6 */
.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: 18px 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); 
}