Share Pastebin
Guest
Public paste!

Duvida MxCursos

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