Jump to content

MediaWiki:Common.css: Difference between revisions

From CivicAchievements
Created page with "CSS placed here will be applied to all skins: Make all Cargo tables striped: .cargoTable tr:nth-child(even) { background-color: #f0f0f0; } Make headings bold and larger: h1, h2, h3 { font-family: 'Segoe UI', sans-serif; color: #003366; } Add border to achievement rows: .cargoTable { border: 2px solid #003366; border-radius: 8px; }"
 
No edit summary
Line 10: Line 10:
     font-family: 'Segoe UI', sans-serif;
     font-family: 'Segoe UI', sans-serif;
     color: #003366;
     color: #003366;
}
/* Add border to achievement rows */
.cargoTable {
    border: 2px solid #003366;
    border-radius: 8px;
}
}

Revision as of 03:21, 27 March 2026

/* CSS placed here will be applied to all skins */

/* Make all Cargo tables striped */
.cargoTable tr:nth-child(even) {
    background-color: #f0f0f0;
}

/* Make headings bold and larger */
h1, h2, h3 {
    font-family: 'Segoe UI', sans-serif;
    color: #003366;
}