Advertisement
str-wrs

Sliding Viewer: 2

Apr 4th, 2013
3,581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. .stepcarousel{
  2. position:relative;
  3. background:#fff;
  4. border:1px solid #eee;
  5. width:420px;
  6. height:320px;
  7. }
  8.  
  9. .stepcarousel .belt{position:absolute;left:0px;top:0px;}
  10. .stepcarousel .panel img{width:400px;height:300px;}
  11. .stepcarousel .panel{float:left;overflow:hidden;margin:10px;width:400px;}
  12.  
  13. /* If you are using Option A from Step 3, ignore all of the code below */
  14.  
  15. .stepcarousel .panel .info{
  16. position:absolute;
  17. width:380px;
  18. padding:0px 10px;
  19. height:0px;
  20. overflow:hidden;
  21. text-align:center;
  22. background:#fff;
  23. transition: 0.5s ease;
  24. -o-transition: 0.5s ease;
  25. -moz-transition: 0.5s ease;
  26. -webkit-transition: 0.5s ease;
  27. }
  28.  
  29. .stepcarousel .panel:hover .info{
  30. height:25px;
  31. padding:10px;
  32. border-bottom:1px solid #EEE;
  33. }
  34.  
  35. .stepcarousel .panel .info a{
  36. margin:0px 5px;
  37. font-size:7px;
  38. letter-spacing:0.5px;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement