User:RainbowGem2/common.css: Difference between revisions

From Deadlock Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Tags: Mobile edit Mobile web edit
Line 2: Line 2:
:root {
:root {
  --theme-content-background: rgb(65 65 55 / 100%);
  --theme-content-background: rgb(65 65 55 / 100%);
  --theme-text-header-color: rgb(213 200 180 / 100%);
}
}
body {
body {
Line 10: Line 11:
color: #b1a695;
color: #b1a695;
background: var(--theme-content-background);
background: var(--theme-content-background);
}
h1, h2, h3, h4, h5, h6 {
    color: var(--theme-text-header-color);
}
}



Revision as of 21:27, 8 September 2024

/*** Theme ***/
:root {
	  --theme-content-background: rgb(65 65 55 / 100%);
	  --theme-text-header-color: rgb(213 200 180 / 100%);
}
body {
  background: url(https://deadlocked.wiki/images/2/20/DeadlockWikiBG.png) top center / cover no-repeat fixed;
}

.mw-body {
	color: #b1a695;
	background: var(--theme-content-background);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--theme-text-header-color);
}

#mw-head-base {
  display: none;
}