MediaWiki:Common.css: Difference between revisions

From My Wiki
Jump to navigation Jump to search
Created page with "→‎CSS placed here will be applied to all skins: →‎Style for main sections: .mw-parser-output .section { border: 1px solid #ccc; padding: 10px; margin-bottom: 10px; background-color: #f9f9f9; } →‎Style for section titles: .mw-parser-output .section-title { font-weight: bold; color: #333; }"
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Style for main sections */
/* Style for sections */
.mw-parser-output .section {
.section {
     border: 1px solid #ccc;
     border: 1px solid #ccc;
     padding: 10px;
     padding: 10px;
Line 9: Line 9:


/* Style for section titles */
/* Style for section titles */
.mw-parser-output .section-title {
.section-title {
     font-weight: bold;
     font-weight: bold;
     color: #333;
     color: #333;
    display: block;
    margin-bottom: 5px;
}
}

Revision as of 05:00, 27 December 2023

/* CSS placed here will be applied to all skins */
/* Style for sections */
.section {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

/* Style for section titles */
.section-title {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}