Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. }
  2. .center-cropped{
  3. width: 100px;
  4. height: 100px;
  5. background-position: center center;
  6. background-repeat: no-repeat;
  7. background-size: cover;
  8. display: inline-block;
  9. }
  10. .panel{
  11. position: relative;
  12. top: 0;
  13. left: 0;
  14. width: 100px;
  15. height: 100px;
  16. -webkit-transition: all 0.2s ease;
  17. -moz-transition: all 0.2s ease;
  18. -o-transition: all 0.2s ease;
  19. transition: all 0.2s ease;
  20. background-color: rgb(255, 255, 255);
  21. opacity: 0;
  22. display: none;
  23. }
  24. .center-cropped:hover .panel{
  25. display: block;
  26. }
  27. .panel:hover{
  28. background-color: rgba(255, 255, 255, 0.3);
  29. opacity: 1;
  30. }
  31. .visitimg{
  32. position: absolute;
  33. top: 5px;
  34. left: 5px;
  35. width:90px;
  36. background-color: #008CBA;
  37. display: block;
  38. }
  39. .delimg{
  40. position: absolute;
  41. bottom: 5px;
  42. left: 5px;
  43. width:90px;
  44. background-color: #ffa500;
  45. display: block;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement