User:Robloxian493/timeless.css: Difference between revisions

From Progressbar95 Wiki
Content deleted Content added
No edit summary
No edit summary
Line 5: Line 5:
background-size: cover;
background-size: cover;
background-color: var(--bg);
background-color: var(--bg);
}

#mw-content {
background: #27496b;
}
}


Line 23: Line 27:
--link: #0ff;
--link: #0ff;
--link-hover: #65ffff;
--link-hover: #65ffff;
/* timeless variables */
--textcolor: #e6e6e6;
}
}

Revision as of 15:19, 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);
}

#mw-content {
	background: #27496b;
}

/* 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;
	
	/* timeless variables */
	--textcolor: #e6e6e6;
}