MyBB Community Forums

Full Version: Modal start gradient effect
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Admin Cp - Themes & Styles - Global.css Select Find
replace with 

/** Modal Start **/

.blocker {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 9999;
	padding: 20px;
	box-sizing: border-box;
background:-webkit-linear-gradient(top, rgba(255,145,0,0.2) 0%,rgba(0,0,0,.15) 60%), -webkit-linear-gradient(20deg, rgba(255,0,0,0.5) 0%,rgba(255,0,0,0) 35%);
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}