MediaWiki:Common.css: Difference between revisions
Appearance
Created page with "→Style for the logo: #p-logo a { background-color: white; →Set background to white: border-radius: 50%; →Make the logo circular: display: inline-block; →Ensure the background and border-radius apply: overflow: hidden; →Hide overflow to maintain circular shape: }" |
No edit summary |
||
| Line 1: | Line 1: | ||
/* Style for the logo */ | /* Style for the logo */ | ||
#p-logo a { | #p-logo a { | ||
background-color: white; /* Set background to white */ | |||
border-radius: 50%; /* Make the logo circular */ | |||
display: inline-block; /* Ensure the background and border-radius apply */ | |||
overflow: hidden; /* Hide overflow to maintain circular shape */ | |||
} | |||
.mw-wiki-logo { | |||
background-color: white; /* Set background to white */ | background-color: white; /* Set background to white */ | ||
border-radius: 50%; /* Make the logo circular */ | border-radius: 50%; /* Make the logo circular */ | ||
Revision as of 17:26, 5 September 2025
/* Style for the logo */
#p-logo a {
background-color: white; /* Set background to white */
border-radius: 50%; /* Make the logo circular */
display: inline-block; /* Ensure the background and border-radius apply */
overflow: hidden; /* Hide overflow to maintain circular shape */
}
.mw-wiki-logo {
background-color: white; /* Set background to white */
border-radius: 50%; /* Make the logo circular */
display: inline-block; /* Ensure the background and border-radius apply */
overflow: hidden; /* Hide overflow to maintain circular shape */
}