Toggle menu
4
4
2
384
MechaWiki
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
Created page with "Import Inter font like Mecha: @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap'); body { font-family: 'Inter', sans-serif; background: #f6f7f9; } Page container: .mw-body { background: transparent; } Mecha style cards: .mecha-card { background: #eeeeef; border-radius: 18px; padding: 24px; margin: 16px 0; transition: 0.2s; } .mecha-card:hover { transform: translateY(-2px);..."
 
Blanked the page
Tags: Blanking Manual revert
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Import Inter font like Mecha */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');


body {
    font-family: 'Inter', sans-serif;
    background: #f6f7f9;
}
/* Page container */
.mw-body {
    background: transparent;
}
/* Mecha style cards */
.mecha-card {
    background: #eeeeef;
    border-radius: 18px;
    padding: 24px;
    margin: 16px 0;
    transition: 0.2s;
}
.mecha-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
/* Card title */
.mecha-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
/* Card description */
.mecha-card-desc {
    color: #555;
    font-size: 15px;
}

Latest revision as of 14:28, 21 February 2026