MediaWiki:Common.css: Difference between revisions

From Καλόξύς
No edit summary
No edit summary
Line 18: Line 18:
     width: 100%;
     width: 100%;
     height: 100%;
     height: 100%;
}
/* Example for Vector 2022 */
.mw-logo {
    width: 135px !important;
    height: 135px !important;
}
}

Revision as of 13:03, 5 December 2024

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

/* The Kaloxys title next to the logo */
.mw-logo-wordmark {
	font: 40px Georgia, serif;
	color: #000000;
}

/* Ensure the logo container has the necessary dimensions */
#p-logo {
    width: 135px; /* Or larger if your skin allows */
    height: 135px; /* Or larger if your skin allows */
    overflow: hidden;
}

/* Adjust the logo image itself */
#p-logo a, #p-logo img {
    width: 100%;
    height: 100%;
}

/* Example for Vector 2022 */
.mw-logo {
    width: 135px !important;
    height: 135px !important;
}