Jump to content

MediaWiki:Common.css: Difference between revisions

From CivicAchievements
No edit summary
Tag: Manual revert
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
.cargoTable {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
}
 
.cargoTable th {
    background-color: #003366;
    color: white;
    padding: 10px;
}
 
.cargoTable td {
    padding: 8px;
    border: 1px solid #ccc;
}


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


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

Revision as of 07:21, 27 March 2026

.cargoTable {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
}

.cargoTable th {
    background-color: #003366;
    color: white;
    padding: 10px;
}

.cargoTable td {
    padding: 8px;
    border: 1px solid #ccc;
}

.cargoTable tr:nth-child(even) {
    background-color: #f2f2f2;
}

h1, h2 {
    color: #003366;
}