More actions
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
} | } | ||
/* | /* 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 */ | |||
} |
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 */ }