All dimensions Wiki
No edit summary
No edit summary
Line 1: Line 1:
  +
/* variables */
  +
:root {
  +
--css-header: #003F5F;
  +
}
  +
 
/* reverts the font back */
 
/* reverts the font back */
 
.page, .page-content, .page-header__title, .mw-headline, .mcf-wrapper {
 
.page, .page-content, .page-header__title, .mw-headline, .mcf-wrapper {
Line 18: Line 23:
 
}
 
}
 
.community-header-wrapper {
 
.community-header-wrapper {
background-color: #003F5F;
+
background-color: var(--css-header);
 
margin-top: 20px;
 
margin-top: 20px;
 
height: 100px;
 
height: 100px;
Line 25: Line 30:
 
}
 
}
 
.fandom-sticky-header {
 
.fandom-sticky-header {
background-color: #003F5F;
+
background-color: var(--css-header);
 
font-family: arial;
 
font-family: arial;
 
font-weight: 700;
 
font-weight: 700;
Line 45: Line 50:
 
.wds-button.wds-is-secondary {
 
.wds-button.wds-is-secondary {
 
background-color: #002F4F;
 
background-color: #002F4F;
  +
}
  +
  +
/* search box */
  +
.search-modal__content {
  +
background-color: var(--theme-page-background-color);
  +
}
  +
.wds-button {
  +
background: var(--theme-link-color);
 
}
 
}

Revision as of 21:20, 30 August 2021

/* variables */
:root {
	--css-header: #003F5F;
}

/* reverts the font back */
.page, .page-content, .page-header__title, .mw-headline, .mcf-wrapper {
	font-family: arial;
}
.page-header__title, .mw-headline, .mcf-header {
	font-weight: 700;
}
.page-counter__value,
.page-counter__label,
.fandom-community-header__community-name
{
	font-weight: 700;
}

/* brings the header back */
.page {
	margin-top: 0;
}
.community-header-wrapper {
	background-color: var(--css-header);
	margin-top: 20px;
	height: 100px;
	font-family: arial;
	font-weight: 700;
}
.fandom-sticky-header {
	background-color: var(--css-header);
	font-family: arial;
	font-weight: 700;
}
.mcf-card-discussions { /* R***k */
	font-family: rubik; 
}

/* adjusts the header */
.fandom-community-header__image {
	margin-bottom: 20px;
}
.fandom-community-header__image {
	margin-bottom: 20px;
}
.wds-button-group {
	margin-right: 30px;
}
.wds-button.wds-is-secondary {
	background-color: #002F4F;
}

/* search box */
.search-modal__content {
	background-color: var(--theme-page-background-color);
}
.wds-button {
	background: var(--theme-link-color);
}