MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
.mw-logo-icon { | .mw-logo-icon { | ||
background-color: white; /* Set background to white */ | background-color: white; /* Set background to white */ | ||
width: 100px; /* Set width to your desired size */ | |||
height: 100px; /* Set height to the same value as width */ | |||
border-radius: 50%; /* Make it a circle */ | |||
display: flex; /* Center content if needed */ | |||
align-items: center; /* Center content vertically */ | |||
justify-content: center; /* Center content horizontally */ | |||
} | } | ||
Revision as of 17:33, 5 September 2025
/* Style for the logo */
.mw-logo-icon {
background-color: white; /* Set background to white */
width: 100px; /* Set width to your desired size */
height: 100px; /* Set height to the same value as width */
border-radius: 50%; /* Make it a circle */
display: flex; /* Center content if needed */
align-items: center; /* Center content vertically */
justify-content: center; /* Center content horizontally */
}
/*.mw-logo-icon {
background-image: url("/logo.png") !important;
}
*/