MediaWiki:Common.css: Difference between revisions

From Business Heroes Food Truck Simulation
No edit summary
(Remove conflicting business-functions card styles)
 
(28 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* BACKGROUND */
/** FIXES **/
 
a, :target {
/* Removing background image
  scroll-behavior: smooth;
html {
background-image: url(extensions/WikiWorks/bg.png);
background-position: top center;
background-size: 1980px;
background-repeat: no-repeat;
background-color: #000;
}
}
*/
:target {
 
  padding-top: 1rem;
body {
background-color: #000;
}
}
#content-wrapper {
.ve-available.ve-activated.ve-active img {
background-color: #161941;
  max-width: 100% !important;
  height: auto;
}
}


h1, h2, .h1, .h2 {
/** TOC **/
color: #74d6ec;
#toc {
display: none;
}
}
#content-wrapper a:visited,  
 
#content-wrapper a:active,
/** TOOLTIPS **/
.toctogglelabel {
.regular-tooltips a.oo-ui-buttonElement-button:hover,
color: #009045 !important;
.regular-tooltips a.oo-ui-buttonElement-button:focus {
}
  border-color: transparent !important;
.toc, .toccolours, pre {
  outline-color: transparent !important;
border: 1px solid #05082b;
  box-shadow: none !important;
background-color: #0d1033;
  filter: invert(1);
}
pre {
color: cornflowerblue;
}
.tocnumber {
color: #8e8e8e;
}
}
.navbar-nav a::before {
.regular-tooltips a.oo-ui-buttonElement-button {
color: rgba(255,255,255,0.5);
  min-width: 18px !important;
  min-height: 18px !important;
  padding-left: 0 !important;
  margin-left: 7px !important;
  height: 18px !important;
  width: 18px !important;
}
}
 
.regular-tooltips a.oo-ui-buttonElement-button .oo-ui-iconElement-icon {
#footer-poweredbyico { display: none; }
  left: 0 !important;
 
  background-position: -2px center !important;
/* No background for Main Page */
/* Removing background image
.page-Introduction #content-wrapper {
background-color: transparent !important;
}
}
*/


/* Removing header changes
/** CARDS (generic Panel template) **/
.p-navbar#mw-navigation {
.card {
max-width: 1130px;
border-radius: 0 !important;
left: 50% !important;
border-color: #bbbabe !important;
transform: translateX(-50%) !important;
border-width: 5px;
outline: 1px solid #fff;
}
}


.p-navbar.sticky#mw-navigation {
.card-header {
left: 50% !important;
border-radius: 0 !important;
transform: translateX(-50%) !important;
color: #fff;
font-weight: bold;
font-size: 1.25rem;
border-bottom: 0;
background-color: #575759;
}
}
*/


/* No background color for Main Page */
.page-Introduction .n-Home {
.page-Introduction .flex-fill.pb-5.container#content-wrapper {
display: none;
background-color: #000000 !important;
}
}

Latest revision as of 13:07, 20 February 2026

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

/** FIXES **/
a, :target {
  scroll-behavior: smooth;
}
:target {
  padding-top: 1rem;
}
.ve-available.ve-activated.ve-active img {
  max-width: 100% !important;
  height: auto;
}

/** TOC **/
#toc {
	display: none;
}

/** TOOLTIPS **/
.regular-tooltips a.oo-ui-buttonElement-button:hover,
.regular-tooltips a.oo-ui-buttonElement-button:focus {
  border-color: transparent !important;
  outline-color: transparent !important;
  box-shadow: none !important;
  filter: invert(1);
}
.regular-tooltips a.oo-ui-buttonElement-button {
  min-width: 18px !important;
  min-height: 18px !important;
  padding-left: 0 !important;
  margin-left: 7px !important;
  height: 18px !important;
  width: 18px !important;
}
.regular-tooltips a.oo-ui-buttonElement-button .oo-ui-iconElement-icon {
   left: 0 !important;
   background-position: -2px center !important;
}

/** CARDS (generic Panel template) **/
.card {
	border-radius: 0 !important;
	border-color: #bbbabe !important;
	border-width: 5px;
	outline: 1px solid #fff;
}

.card-header {
	border-radius: 0 !important;
	color: #fff;
	font-weight: bold;
	font-size: 1.25rem;
	border-bottom: 0;
	background-color: #575759;
}

.page-Introduction .n-Home {
	display: none;
}