MediaWiki:Common.css: Unterschied zwischen den Versionen

Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Markierungen: Ersetzt Manuelle Zurücksetzung
 
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 19: Zeile 19:
         padding-left: 5px;
         padding-left: 5px;
         padding-right: 5px;
         padding-right: 5px;
}
.template {
    border: 2px solid #cdb998;
}
.template .infoText {
    width: 100%;
}
table.template {
    margin-bottom: 5px;
}
.template th {
    border: 2px solid #cdb998;
    background-color: #f6e4c2;
}
table.template table {
    margin-top: 0;
    margin-bottom: 0;
}
table.template table th {
    border: none;
}
.template.templateInfoBox table td {
    border: none;
}
.template.templateInfoBox {
    margin: 0px 5px 5px;
}
.template.templateInfoBox th {
    padding: 5px;
    text-align: center;
}
.template.templateInfoBox td {
    border: 2px solid #cdb998;
    padding: 5px;
}
.template.templateArticleInfo {
    background-color: #f6e4c2;
    margin-bottom: 10px;
}
.template.templateArticleInfo table {
    margin: 0px;
}
.template.templateListBox {
    margin: 0 auto;
    text-align: center;
}
.template.templateListBox table {
    width: auto;
}
.template.templateListBox p {
    padding: 5px;
}
.template.templatePosRight {
    float: right;
    width: 300px;
}
@media (max-width: 640px) {
    .template.templatePosRight {
        width: 100%;
        margin-bottom: 10px;
    }
}
.template.templatePosTop {
    width: 100%;
}
.template.templateInfoBox.templatePosCenter {
    margin: 0 auto;
    margin-top: 8px;
}
.template .infoIcon {
    width: 40px;
}
.referenceList {
    overflow: auto;
    padding: 3px;
    border: 2px solid #f6e4c2;
    height: auto;
    max-height: 100px;
}
.referenceNote {
    margin-top: 5px;
}
.referenceLore {
    margin-top: -18px;
}
.articleSwitch {
    margin-left: 5px;
    margin-right: 5px;
}
.fullWidth {
    width: 100%;
}
.italic {
    font-style: italic;
}
.bold {
    font-weight: bold;
}
.portalBox {
    width: 100%;
    max-width: 650px;
    margin: 0px auto;
    border: 3px solid #f6e4c2;
}
.portalBox .portalBoxElements {
    border-bottom: 2px solid #f6e4c2;
    width: 100%;
}
.portalBox .portale img {
    vertical-align: middle;
    margin-top: 3px;
}
.portalBox p {
    margin: 3px;
}
.portalBoxGesamt {
    border: 2px solid #f6e4c2;
}
.portalBoxTop {
    padding: 5px;
}
.portalBoxLeft {
    width: 60.8%;
    float: left;
    border-width: 2px;
    border-color: #f6e4c2;
}
.portalBoxRight {
    margin-left: 61.8%;
    border-width: 2px;
    border-color: #f6e4c2;
}
.portalBoxContent {
    border: 2px solid #f6e4c2;
    overflow: hidden;
}
.portalBoxContent h4,
.portalBoxGesamt h3 {
    background: rgb(246, 228, 194);
    padding: 5px 10px;
    margin: 0;
    margin-bottom: 5px;
}
.portalBoxText {
    margin: 5px;
}
.alignRight {
    text-align: right;
}
.template .sidePart {
    width: 25%;
}
.template .centerPart {
    width: 50%;
}
.template.templateInfoBox table td.borderRight {
    border-right: 2px solid #ddc9a8;
}
.template.templateInfoBox table td.borderLeft {
    border-left: 2px solid #ddc9a8;
}
.familyTree {
    display: block;
    overflow-x: auto;
}
.questStage {
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.templateName,
.templateIcon {
    display: inline-block;
    vertical-align: middle;
}
.effect span,
.effect small {
    display: table-cell;
    vertical-align: middle;
}
.effect {
    display: table;
}
}

Aktuelle Version vom 9. Juni 2024, 09:44 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */

/** Collapsible tables *********************************************************
 *
 *  Description: Allows tables to be collapsed, showing only the header. See
 *                         http://www.mediawiki.org/wiki/Manual:Collapsible_tables.
 *  Maintainers: [[en:User:R. Koot]]
 */
 
table.collapsed tr.collapsible {
        display: none;
}
 
.collapseButton {               /* 'show'/'hide' buttons created dynamically by the             */
        float: right;           /* CollapsibleTables JavaScript in [[MediaWiki:Common.js]] */
        font-weight: normal;    /* are styled here so they can be customised.             */
        text-align: right;
        width: auto;
        padding-left: 5px;
        padding-right: 5px;
}