ul {
	margin : 0px;
	padding : 0px;
}
li {
	width : 100px;
	height : 100px;
	list-style-type : none;
	position : relative;
	background-color : pink;
	margin : 10px;
	float : left;
	border-radius : 50px;
	text-align : center;
	line-height : 100px;
	cursor : pointer;
	transition : all 0.2s linear 0s;
	-ms-transition : all 0.2s linear 0s;
	-moz-transition : all 0.2s linear 0s;
	-webkit-transition : all 0.2s linear 0s;
	-o-transition : all 0.2s linear 0s;
}
li:hover  {
	transform: rotate(360deg) scale(1.1, 1.1);
	-ms-transform: rotate(360deg) scale(1.1, 1.1);
	-moz-transform: rotate(360deg) scale(1.1, 1.1);
	-webkit-transform: rotate(360deg) scale(1.1, 1.1);
	-o-transform: rotate(360deg) scale(1.1, 1.1);
}