Skip to content

Instantly share code, notes, and snippets.

@nksaroj
Created April 29, 2014 12:20
Show Gist options
  • Save nksaroj/11398591 to your computer and use it in GitHub Desktop.
Save nksaroj/11398591 to your computer and use it in GitHub Desktop.
A Pen by A Non Ymous.
<div class="circle"></div>
.circle {
width: 150px;
height: 150px;
background: red;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
border-radius: 50%;
border: 10px solid #E6E6E6;
background-color: white;
-webkit-transition: background-color 4s ease-out;
-moz-transition: background-color 4s ease-out;
-o-transition: background-color 4s ease-out;
transition: background-color 4s ease-out;
}
.circle:hover {
background-color: green;
cursor: pointer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment