Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <div class="thumbnail-list">
  2. <a href="../01/">
  3. <img src="images/infographic_sm.jpg" width="200" height="146">
  4. <span class="thumbnail-text"><span>AmLaw 200<br><div class="caption">Print, Infographic</div></span></span>
  5. </a>
  6.  
  7. .thumbnail-list {
  8. float: left;
  9. margin: 0 25 25 0;
  10. position: relative;
  11. text-align: center;
  12. }
  13.  
  14. span.thumbnail-text {
  15. background: #f94639;
  16. color: white;
  17. font-family: helvetica, arial, sans-serif;
  18. font-size: 19px;
  19. line-height: 1.15;
  20. letter-spacing: .5px;
  21. cursor: pointer;
  22. display: table;
  23. height: 146px;
  24. left: 0;
  25. position: absolute;
  26. top: 0;
  27. width: 200px;
  28. opacity: 0;
  29. -webkit-transition: opacity 500ms;
  30. -moz-transition: opacity 500ms;
  31. -o-transition: opacity 500ms;
  32. transition: opacity 500ms;
  33. }
  34.  
  35. span.thumbnail-text span {
  36. display: table-cell;
  37. text-align: left;
  38. padding: 75px 0 0 15px;
  39. }
  40.  
  41. .caption {
  42. font-family: helvetica, arial, sans-serif;
  43. font-size: 12px;
  44. color: white;
  45. padding: 8 0 0 0;
  46. text-align: left;
  47. position: left;
  48. line-height: 15px;
  49. }
  50.  
  51. .thumbnail-list a:hover span.thumbnail-text {
  52. opacity: 1;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement