MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
/* HERO - Minimalist Branding */ | /* HERO - Minimalist Branding */ | ||
.shady-hero { text-align: center; padding: 60px | .shady-hero { text-align: center; padding: 100px 0 60px; } | ||
.shady-logo { | .shady-logo { | ||
font-family: 'Impact', sans-serif; | font-family: 'Impact', sans-serif; | ||
font-size: | font-size: 82px; | ||
letter-spacing: | letter-spacing: 6px; | ||
margin-bottom: 0; | margin-bottom: 0; | ||
color: #fff; | color: #fff; | ||
} | } | ||
.shady-tagline { | .shady-tagline { | ||
font-size: | font-size: 12px; | ||
color: #555; | color: #555; | ||
text-transform: uppercase; | text-transform: uppercase; | ||
letter-spacing: | letter-spacing: 4px; | ||
margin-top: | margin-top: 10px; | ||
} | } | ||
| Line 23: | Line 23: | ||
display: grid; | display: grid; | ||
grid-template-columns: repeat(6, 1fr); | grid-template-columns: repeat(6, 1fr); | ||
gap: | gap: 12px; | ||
margin: 40px 0; | margin: 40px 0; | ||
} | } | ||
| Line 30: | Line 30: | ||
border: 1px solid #1a1a1a; | border: 1px solid #1a1a1a; | ||
border-radius: 4px; | border-radius: 4px; | ||
padding: | padding: 18px 5px; | ||
text-align: center; | text-align: center; | ||
font-size: 10px; | font-size: 10px; | ||
| Line 41: | Line 41: | ||
color: #fff !important; | color: #fff !important; | ||
background: rgba(164, 119, 25, 0.1); | background: rgba(164, 119, 25, 0.1); | ||
} | } | ||
Revision as of 13:57, 9 May 2026
/* 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);
}