Jump to content

MediaWiki:Common.css: Difference between revisions

From Doomsday Wrestling Wiki
Created page with "CSS placed here will be applied to all skins: .infobox { background: #eee; border: 1px solid #aaa; float: right; margin: 0 0 1em 1em; padding: 1em; width: 400px; } .infobox-title { font-size: 2em; text-align: center; } .infobox-image { text-align: center; } .infobox-table th { text-align: right; vertical-align: top; width: 120px; } .infobox-table td { vertical-align: top; }"
 
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 6: Line 6:
     margin: 0 0 1em 1em;
     margin: 0 0 1em 1em;
     padding: 1em;
     padding: 1em;
     width: 400px;
     width: 350px;
}
}
.infobox-title {
.infobox-title {
     font-size: 2em;
     font-size: 1.8rem;
     text-align: center;
     text-align: center;
}
}
.infobox-image {
.infobox-image {
     text-align: center;
     text-align: center;
}
.infobox-table {
    width:100%;
}
}
.infobox-table th {
.infobox-table th {
Line 22: Line 25:
.infobox-table td {
.infobox-table td {
     vertical-align: top;
     vertical-align: top;
}
.infobox-table .infobox-header {
    text-align:center
}
}

Latest revision as of 07:46, 5 January 2026

/* CSS placed here will be applied to all skins */
.infobox {
    background: #eee;
    border: 1px solid #aaa;
    float: right;
    margin: 0 0 1em 1em;
    padding: 1em;
    width: 350px;
}
.infobox-title {
    font-size: 1.8rem;
    text-align: center;
}
.infobox-image {
    text-align: center;
}
.infobox-table {
    width:100%;
}
.infobox-table th {
    text-align: right;
    vertical-align: top;
    width: 120px;
}
.infobox-table td {
    vertical-align: top;
}
.infobox-table .infobox-header {
    text-align:center
}