Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 21st, 2010 | Syntax: CSS | Size: 1.10 KB | Hits: 69 | Expires: Never
Copy text to clipboard
  1. #slideshow{
  2.         width:350px;
  3.         height:300px;
  4.         margin:10px 5px;
  5.         overflow:hidden;
  6.         clear:both;
  7.         position:relative;
  8.         background:#CCC;
  9.         z-index:0;
  10. }
  11.  
  12. a#prev-not, a#next-not{
  13.         position:absolute;
  14.         top:50%;
  15.         width:49px;
  16.         height:75px;
  17.         overflow:hidden;
  18.         margin-top:-25px;
  19.         z-index:9999;
  20. }
  21.  
  22. a#next-not{
  23.         right:10px;
  24.         background:url(../img/setadireita.png) no-repeat 0 0;
  25. }
  26.  
  27. a#prev-not{
  28.         left:10px;
  29.         background:url(../img/setaesquerda.png) no-repeat 0 0;
  30. }
  31.  
  32. ul#slideshowConteudo{
  33.         width:294px;
  34.         position:absolute;
  35.         top:0;
  36.         margin-left:0;
  37. }
  38.  
  39. ul#slideshowConteudo img{
  40.         padding:1px;
  41.         border:1px solid #CCC;
  42.         width:270px;
  43.         height:270px;
  44. }
  45.  
  46. ul#slideshowConteudo li{
  47.         float:left;
  48.         position:relative;
  49.         z-index:0;
  50.         height:200px;
  51.         display:none;
  52. }
  53.  
  54. ul#slideshowConteudo li span{
  55.         position:absolute;
  56.         bottom:5px;
  57.         font:10px Arial, Helvetica, sans-serif;
  58.         padding:10px 5px;
  59.         background-color:#000;
  60.         filter: alpha(opacity=70);
  61.         -moz-opacity:0.7;
  62.         -khtml-opacity:0.7;
  63.         opacity:0.7;
  64.         color:#FFF;
  65.         display:block;
  66.         display:none;
  67. }
  68.  
  69. ul#slideshowConteudo li span strong{
  70.         font-size:14px;
  71. }