Jump to content

User:Kriteesh/vector.css

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Kriteesh (talk | contribs) at 14:36, 18 February 2017. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
#mw-head{
	background:#e5e5e5;
	transition:1s ease;
}
#mw-head:hover{
 background : white;
}

#p-logo{
	transition: 1s ease;
}
@keyframes shake{
	0%{ 
		transform : translate(0.5em);
	}
	50%{
		transform : translate(-0.5em);
	}
	100%{
		transform : translate(0em);
	}
}
#p-logo:hover{
	animation : shake cubic ease-in 0.1s;
}