Skip to content

Instantly share code, notes, and snippets.

@akio6o6
Last active August 29, 2015 14:12
Show Gist options
  • Save akio6o6/036f0a02a845bc21504a to your computer and use it in GitHub Desktop.
Save akio6o6/036f0a02a845bc21504a to your computer and use it in GitHub Desktop.
ul.tag_list {
margin: 0;
padding: 0;
list-style-type: none;
}
.tag_list li a{
float: left;
margin:0 5px 5px;
padding:5px 5px;
border:1px solid #f5f5f5;
border-radius:5px;
background-color: #fff;
}
@-webkit-keyframes hoverSpread {
0% {-webkit-transform:scale(1);opacity: 0.7;}
100% {-webkit-transform:scale(1.3);opacity: 1;}
}
.tag_list li a:hover{
color: #3498db;
-webkit-animation-name: hoverSpread;
-webkit-animation-duration: 0.3s;
-webkit-animation-iteration-count: 1;
-webkit-transform: scale(1.3);
-webkit-box-shadow: 0 0 5px #000;
opacity: 1;
z-index: 20;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment