MediaWiki:Vector.css

From Modding of Isaac Wiki
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* SHARED STUFF START */
.mw-wiki-logo {
	background-image: var(--wiki-logo);
}

#p-logo a {
    height: 198px;
    width: 454px;
}

table.wikitable > * > tr > th {
    background: var(--table-header);
}

h1, h2 {
    border-bottom: 1px solidvar(--table-header);
    color: #ffffff;
}
/* SHARED STUFF END */

/* WORKSHOP THEME START */
.theme-workshop div#content {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 37px solid transparent;
    padding: 11px 11px; /* This is for the border images; change #bodyContent for the actual content padding */
    box-sizing: border-box;
    margin-top: 90px;
	box-shadow:0 0 0px rgba(17,17,17,0.8) inset;
}

/* Background */
.theme-workshop body.mediawiki {
	background: url(https://moddingofisaac.wiki.gg/images/f/f5/Workshop-Background.png) fixed;
	background-color: var(--background-color);
}
/* WORKSHOP THEME END */



/* CHEST THEME START */
.theme-chest .mw-body {
  background-color: #F0B463;
}
.theme-chest div#content {
	background: url(https://moddingofisaac.wiki.gg/images/5/55/Chest-CSS-Bg.png) left top repeat;
	color: #ffffff;
	border: 37px solid transparent;
	padding: 11px 11px;
	box-sizing: border-box;
    margin-top: 90px;
    border-image-slice: 48;
    border-image-width: 37px;
	border-image-repeat: round;
	border-image-source: url(https://moddingofisaac.wiki.gg/images/c/cb/Chest-CSS-Border.png);
	box-shadow: 0 0 15px rgba(17,17,17,0.8) inset;
}

.theme-chest body.mediawiki {
	background: url(https://moddingofisaac.wiki.gg/images/9/96/Chest-Background.png) fixed;
	background-size: cover;
	background-position: 0px 35px;
	background-color: var(--background-color);
}
/* CHEST THEME END */

/* DOCS THEME START */
.theme-docs div#content {
    background-color: #2E303E;
    color: #E9EBFC;
    border: 37px solid transparent;
    padding: 11px 11px; /* This is for the border images; change #bodyContent for the actual content padding */
    box-sizing: border-box;
    margin-top: 90px;
	box-shadow:0 0 0px rgba(17,17,17,0.8) inset;
}

/* Background */
.theme-docs body.mediawiki {
	background: #4051B5;
}

.theme-docs .vector-menu-portal {
	background: rgba(0, 0, 0, 0.0);
}
.theme-docs .vector-menu-portal .vector-menu-heading { 
	font-weight: bolder; 
	color: #E7E9F6;
}

/* default link color */
.theme-docs a:link {
    color: var(--unvisited-link-color);
}

/* message box link color */
.theme-docs .mbox .mbox__content a, 
.theme-docs .mbox .mbox__content a:visited{
    color: #a545b0 !important;
}

/* unvisited link */
.theme-docs a {
    color: var(--unvisited-link-color);
}

/* external unvisited link */
.theme-docs #content a.extiw,
.theme-docs #content a.external {
    color: var(--unvisited-link-color);
}

/* visited link */
.theme-docs #content a:visited,
.theme-docs a:visited {
    color: var(--visited-link-color);
}

/* external visited link */
.theme-docs #content a.extiw:visited,
.theme-docs #content a.external:visited {
    color: var(--visited-link-color);
}

/* Infobox visited link */
.theme-docs .pi-data-value a:visited{
    color: var(--visited-link-color);
}


/* hover over link */
.theme-docs #content a.extiw:hover,
.theme-docs #content a.external:hover,
.theme-docs #content a.extiw:visited:hover,
.theme-docs #content a.external:visited:hover {
    color: var(--visited-link-color);
}

/* hover over link */
.theme-docs a:hover,
.theme-docs #content a:visited:hover,
.theme-docs a:visited:hover {
    color: var(--visited-link-color);
}


/* When clicked on changes the link color 
.theme-docs a:active {
    color: #ddb3e2;
}*/

/* Sidebar Stuff */
.theme-docs .vector-menu-portal .vector-menu-content li a,
.theme-docs .vector-menu-portal .vector-menu-content li a:visited { 
    color: #B4BBE2; 
}
/* DOCS THEME END */