MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More actions
Mahnsoo.Choi (talk | contribs) No edit summary |
Mahnsoo.Choi (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* | |||
.mw-header { | .mw-header { | ||
padding: 0px; | padding: 0px; | ||
border-bottom: 5px solid #ccc; | border-bottom: 5px solid #ccc; | ||
} | } | ||
*/ | |||
/* Hide the Main_page title */ | /* Hide the Main_page title */ | ||
Latest revision as of 20:51, 11 February 2025
/* CSS placed here will be applied to all skins */
/*
.mw-header {
padding: 0px;
border-bottom: 5px solid #ccc;
}
*/
/* Hide the Main_page title */
body.page-Main_Page.action-view h1.firstHeading,
body.page-Main_Page.action-submit h1.firstHeading {
display: none;
}
body.page-Quantum_Control_Lab.action-view h1.firstHeading,
body.page-Quantum_Control_Lab.action-submit h1.firstHeading {
display: none;
}
/* Hide the WLC2023 page title, too. */
body.page-WLC2023.action-view h1.firstHeading,
body.page-WLC2023.action-submit h1.firstHeading {
display: none;
}
/* To hide the navigation bar on scroll down (page-slide-up).
* See also the corresponding part in Common.js */
/*
.navbar {
transition: top 0.5s;
}
*/
/* Responsive image */
.responsive-image img {
max-width: 100%;
height: auto;
}