Difference between revisions of "MediaWiki:Common.css"

From
Jump to: navigation, search
Line 6: Line 6:
 
background: rgb(249,243,232);
 
background: rgb(249,243,232);
 
}
 
}
 +
@keyframes logo{
 +
0% {transform:rotate(0deg);}
 +
25% {transform:rotate(-45deg);}
 +
50% {transform:rotate(0deg);}
 +
75% {transform:rotate(45deg);}
 +
100% {transform:rotate(0deg);}
 +
}
 +
 
#p-logo a{
 
#p-logo a{
width: 100%;
+
animation: logo 5s infinite;
height: 100%;
 
 
}
 
}

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

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