User:Robloxian493/timeless.css: Difference between revisions

From Progressbar95 Wiki
Content added Content deleted
m (fix pixelated images)
No edit summary
Line 1: Line 1:
/* PB95 Wiki Dark Theme for Miraheze */
/* Robloxian493's personal CSS tweaks */
#mw-content-container {
image-rendering: -webkit-optimize-contrast;
}

/* Bring over the Fandom wiki's dark mode over to the Miraheze wiki! */

#mw-content-container { /* Change the background */
#mw-content-container { /* Change the background */
background: url(https://static.miraheze.org/progressbar95wiki/7/70/Fandom_Wiki%27s_Dark_Mode_BG.webp);
background: url(https://static.miraheze.org/progressbar95wiki/7/70/Fandom_Wiki%27s_Dark_Mode_BG.webp);
Line 15: Line 9:
/* Dark mode CSS for the sidebars */
/* Dark mode CSS for the sidebars */
.sidebar-chunk {
.sidebar-chunk {
background: var(--bg-alt)!important;
background: var(--surface-color)!important;
}
}


a {
.sidebar-inner a {
color: var(--link);
color: var(--link);
}

a:hover {
color: var(--link-hover);
}
}


:root { /* Variables to easily set stuff like colour */
:root { /* Variables to easily set stuff like colour */
--bg: #152b42;
--link: #0ff;
--bg-alt: #476481;
--link-hover: #65ffff;
--link: #00ffff;
}
}

Revision as of 15:18, 14 January 2024

/* PB95 Wiki Dark Theme for Miraheze */
#mw-content-container { /* Change the background */
	background: url(https://static.miraheze.org/progressbar95wiki/7/70/Fandom_Wiki%27s_Dark_Mode_BG.webp);
	background-attachment: fixed;
	background-size: cover;
	background-color: var(--bg);
}

/* Dark mode CSS for the sidebars */
.sidebar-chunk {
	background: var(--surface-color)!important;
}

a {
	color: var(--link);
}

a:hover {
	color: var(--link-hover);
}

:root { /* Variables to easily set stuff like colour */
	--link: #0ff;
	--link-hover: #65ffff;
}