Difference between revisions of "MediaWiki:Common.css"

From GTAMods Wiki
Jump to navigation Jump to search
Line 29: Line 29:
 
}
 
}
 
table.charmap td {
 
table.charmap td {
     font-family: monospace;
+
     font-family: Meiryo, monospace;
     font-size: 150%;
+
     font-size: 120%;
 
     background-color: #f9f9f9;
 
     background-color: #f9f9f9;
 
     border: 1px solid #ddd;
 
     border: 1px solid #ddd;

Revision as of 23:07, 31 October 2015

/* CSS placed here will be applied to all skins */
/**
 * Lowercase usernames (only works in some places)
 */
.mw-userlink[href*="User:Spaceeinstein"] {
    text-transform: lowercase;
}
/**
 * Table column centering
 */
table.center-col-1 td:nth-child(1) {
    text-align: center;
}
table.center-col-2 td:nth-child(2) {
    text-align: center;
}
table.center-col-3 td:nth-child(3) {
    text-align: center;
}
/**
 * GXT character map
 */
table.charmap {
    text-align: center;
}
table.charmap td, table.charmap th {
    width: 2em;
    height: 2em;
}
table.charmap td {
    font-family: Meiryo, monospace;
    font-size: 120%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}
/**
 * For [[Saves (GTA VC)/visual]]
 */
.save_table td {
    width: 3em;
    height: 3em;
    text-align: center;
}