Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
 
Line 17: Line 17:
}
}


/* Load FontAwesome */
/* Center Title In Infobox */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
.pi-item.pi-item-spacing.pi-title {
    text-align: center; /* Centers the text horizontally */
    display: flex;      /* Enables flexible box layout */
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Ensures horizontal centering */
}

Latest revision as of 01:39, 25 November 2024

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

/* Configure Numbering scheme */
}
ol { 
	list-style-type: decimal; 
}
ol li > ol { 
	list-style-type: lower-alpha; 
}
ol li > ol li > ol { 
	list-style-type: lower-roman; 
}
/* Underline all links */
a {
    text-decoration: underline;
}

/* Center Title In Infobox */
.pi-item.pi-item-spacing.pi-title {
    text-align: center; /* Centers the text horizontally */
    display: flex;      /* Enables flexible box layout */
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Ensures horizontal centering */
}