Jump to content

User:Kriteesh/vector.css: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Kriteesh (talk | contribs)
No edit summary
Kriteesh (talk | contribs)
No edit summary
Line 30: Line 30:
}
}
#p-logo:hover{
#p-logo:hover{
animation : shake ease-in 1s;
animation : shake ease-in 3s;
}
}

Revision as of 14:54, 18 February 2017

#mw-head{
	background:#e5e5e5;
	transition:1s ease;
}
#mw-head:hover{
 background : white;
}

#p-logo{
	transition: 1s ease;
}
@keyframes shake{
	0%{ 
		right: 100%;
		top:0%;
	}
	25%{
		left : 50%;
		top: 100%;
	}
	50%{
		left : 50%;
		top: 50%;
	}
	
	100%{
			right: 100%;
		top:0%;
	}
}
#p-logo:hover{
	animation : shake ease-in 3s;
}