MediaWiki:Common.css: Difference between revisions

From Dev Wiki
Jump to navigation Jump to search
(Correct typo)
(Expand template box styles)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* General styles for template boxes. */
.wiki-template-box {
.wiki-template-box {
     padding: 5px;
     padding: 5px;
Line 6: Line 8:
     background-color: #f8f9fa;
     background-color: #f8f9fa;
     border: thin solid #eaecf0;
     border: thin solid #eaecf0;
}
.wiki-template-box.tip {
    background-color: #ddffdd;
    border-color: #bbddbb;
}
.wiki-template-box.note {
    background-color: #ddddff;
    border-color: #bbbbdd;
}
.wiki-template-box.warn {
    background-color: #ffdddd;
    border-color: #ddbbbb;
}
}

Revision as of 14:24, 6 May 2020

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


/* General styles for template boxes. */
.wiki-template-box {
    padding: 5px;
    margin: 0.5em;
    background-color: #f8f9fa;
    border: thin solid #eaecf0;
}

.wiki-template-box.tip {
    background-color: #ddffdd;
    border-color: #bbddbb;
}


.wiki-template-box.note {
    background-color: #ddddff;
    border-color: #bbbbdd;
}


.wiki-template-box.warn {
    background-color: #ffdddd;
    border-color: #ddbbbb;
}