MediaWiki:Common.css: Difference between revisions

From Qubits
No edit summary
No edit summary
 
Line 19: Line 19:
/* To hide the navigation bar on scroll down (page-slide-up).
/* To hide the navigation bar on scroll down (page-slide-up).
  * See also the corresponding part in Common.js */
  * See also the corresponding part in Common.js */
/*
.navbar {
.navbar {
   transition: top 0.5s;
   transition: top 0.5s;
}
}
*/


/* Responsive images */
/* Responsive images */

Latest revision as of 19:46, 26 June 2019

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

/* 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 this workshop page, too. */
body.page-International_Workshop_on_Solid-State_Qubits.action-view h1.firstHeading, 
body.page-International_Workshop_on_Solid-State_Qubits.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 images */
.responsive-image img {
  max-width: 100%;
  height: auto;
}