MediaWiki:Common.css: Difference between revisions

From Begonia Wiki

No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
<style>
infoboxsp img {
    .infobox-container {
    display: block;
        display: flex;
    margin: 0 auto;
        align-items: flex-start;
}
    }
infoboxsp-float-left {
 
    float: left;
    .infobox {
    margin-right: 20px; /* Add some space between the infobox and the content */
        flex: 0 0 auto;
}
        margin-right: 20px; /* Adjust this value as needed */
    }
 
    .main-content {
        flex: 1 1 auto;
    }
</style>

Revision as of 06:52, 25 August 2023

<style>
    .infobox-container {
        display: flex;
        align-items: flex-start;
    }

    .infobox {
        flex: 0 0 auto;
        margin-right: 20px; /* Adjust this value as needed */
    }

    .main-content {
        flex: 1 1 auto;
    }
</style>