Difference between revisions of "MediaWiki:Common.css"

From
Jump to: navigation, search
Line 18: Line 18:
 
}
 
}
 
#ghoul {
 
#ghoul {
background: black;
+
animation: logo 5s infinite ease-in-out;
 
}
 
}
 
#p-logo a{
 
#p-logo a{
 
animation: logo 0.5s infinite ease;
 
animation: logo 0.5s infinite ease;
 
}
 
}

Revision as of 22:25, 6 February 2022

/* CSS placed here will be applied to all skins */
.mediawiki, #mw-page-base{
	background: rgb(238,226,181);
}
#content.mw-body{
	background: rgb(249,243,232);
}
@keyframes logo{
	0% {transform:rotate(0deg) translateY(0px);}
	12.5% {transform:rotate(-10deg) translateY(5px);}
	25% {transform:rotate(0deg) translateY(0px);}
	37.5% {transform:rotate(10deg) translateY(5px);}
	50% {transform:rotate(0deg) translateY(0px);}
	62.5% {transform:rotate(-10deg) translateY(-5px);}
	75% {transform:rotate(0deg) translateY(0px);}
	87.5% {transform:rotate(10deg) translateY(-5px);}
	100% {transform:rotate(0deg) translateY(0px);}
}
#ghoul {
	animation: logo 5s infinite ease-in-out;
}
#p-logo a{
	animation: logo 0.5s infinite ease;
}