MediaWiki:Common.css: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 823:
visibility: hidden !important; /* Backup if display fails */
width: 0 !important;
}
 
/* ======================================================= */
/* ADD TAGLINE TO HEADER */
/* ======================================================= */
 
/* Inject the text after the logo icon */
.mw-logo::after {
content: "Learn business. Build skills. Level up.";
/* Typography */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Lato, Helvetica, Arial, sans-serif;
font-size: 14px;
font-weight: 500;
color: #54595d; /* Dark grey to match interface */
/* Positioning */
display: flex;
align-items: center;
margin-left: 15px; /* Space between logo and text */
white-space: nowrap; /* Prevent wrapping */
height: 50px; /* Match logo height to center vertically */
}
 
/* Hide on Mobile/Tablet to prevent layout collisions */
/* Since you have custom mobile buttons (Search, TOC, Home), this creates space */
@media screen and (max-width: 900px) {
.mw-logo::after {
display: none !important;
}
}