Advertisement
conception

image hovers

Dec 7th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. Solid background:
  2. .staff img {
  3. background: #b49daa;
  4. border: 2px solid #2b1c30;
  5. border-radius: 5px;
  6. padding: 3px;
  7. width: 80px;
  8. height: 55px;
  9. margin: 2px;
  10. -webkit-transition: all 0.5s ease-out;
  11. -moz-transition: all 0.5s ease-out;
  12. }
  13.  
  14. .staff img:hover {
  15. background: #2b1c30;
  16. padding: 3px;
  17. margin: 2px;
  18. border: 2px solid #b49daa;
  19. border-radius: 5px;
  20. width: 80px;
  21. height: 55px;
  22. -webkit-transition: all 0.5s ease-out;
  23. -moz-transition: all 0.5s ease-out;
  24. }
  25.  
  26.  
  27. image hover background:
  28. .staff img {
  29. background-image: url('http://i.imgur.com/vlnYleX.png');
  30. background-position: top right;
  31. border: 2px solid #393a55;
  32. border-radius: 10px;
  33. padding: 2px;
  34. width: 34px;
  35. height: 34px;
  36. margin: 2px;
  37. -webkit-transition: all 0.5s ease-out;
  38. -moz-transition: all 0.5s ease-out;
  39. }
  40.  
  41. .staff img:hover {
  42. background-image: url('http://i.imgur.com/vlnYleX.png');
  43. background-position: bottom left;
  44. padding: 2px;
  45. margin: 2px;
  46. border: 2px solid #ba543a;
  47. border-radius: 20px;
  48. width: 34px;
  49. height: 34px;
  50. -webkit-transition: all 0.5s ease-out;
  51. -moz-transition: all 0.5s ease-out;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement