Skip to content

Instantly share code, notes, and snippets.

@DanielFloeter
Last active September 28, 2016 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanielFloeter/06ddd8bd306831656179861cef7e0777 to your computer and use it in GitHub Desktop.
Save DanielFloeter/06ddd8bd306831656179861cef7e0777 to your computer and use it in GitHub Desktop.
Set posts from the Category Posts Widget in a row
/**
* 14.0 - Custom
*/
.cat-post-item {
float: left;
list-style-type: none;
padding: 10px;
}
.cat-post-item a {
cursor: default;
}
.cat-post-item img {
border-radius: 50%;
cursor: pointer;
-webkit-transition: all 400ms;
-moz-transition: all 400ms;
-o-transition: all 400ms;
transition: all 400ms;
}
.cat-post-item img:hover {
-webkit-transform: scale(1.3);
-ms-transform: scale(1.3);
transform: scale(1.3);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment