Difference between revisions of "MediaWiki:Common.css"

From
Jump to: navigation, search
Line 15: Line 15:
  
 
#p-logo a{
 
#p-logo a{
animation: logo 2s infinite ease;
+
animation: logo 1s infinite ease;
 
}
 
}

Revision as of 22:20, 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);}
	25% {transform:rotate(-10deg) translateY(10px);}
	50% {transform:rotate(0deg) translateY(0px);}
	75% {transform:rotate(10deg) translateY(10px);}
	100% {transform:rotate(0deg) translateY(0px);}
}

#p-logo a{
	animation: logo 1s infinite ease;
}