Advertisement
Guest User

Paulo Martins

a guest
Jan 27th, 2011
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.01 KB | None | 0 0
  1. body {
  2.     margin: 0px;
  3.     padding: 0px;
  4. }
  5.  
  6. .geral{
  7.     width: 552px;
  8.     height: 607px;
  9.     position: absolute;
  10. /*  top: 50%;
  11.     left: 50%;*/
  12.     top: 50%;
  13.     left: 50%;
  14.     margin-top: -303.5px;
  15.     margin-left: -276px;
  16.     /*border:1px solid #000000;*/
  17.  
  18.    
  19. }
  20.  
  21. h1{
  22.     padding:0px;
  23.     margin:0px;
  24. }
  25.  
  26. .topo{
  27.     background-color:#FFFFFF;
  28.     margin-top: 0px;
  29.     margin-bottom: 0px;
  30.     text-align:center;
  31.     width: 552px;
  32.     height:20px;
  33.     position: relative;
  34.     padding:0px;
  35.     color:#7A7A7A;
  36.    
  37.  
  38. }
  39.  
  40. .font16{
  41.     font-family: Verdana, Arial, Helvetica, sans-serif;
  42.     font-size: 16px;
  43.     color:#7A7A7A; 
  44.     font-style: normal;
  45.     line-height: normal;
  46. }
  47.  
  48. .menu{
  49.     background-color:#FFFFFF;
  50.     margin-top: 0px;
  51.     margin-bottom: 0px;
  52.     text-align:center;
  53.     width: 552px;
  54.     height:20px;
  55.     position: relative;
  56.     padding:0px;
  57. }
  58.  
  59. .font12{
  60.     font-family: Verdana, Arial, Helvetica, sans-serif;
  61.     font-size: 11px;
  62.     color:#7A7A7A; 
  63. }
  64.  
  65. .rodape{
  66.     background-color:#FFFFFF;
  67.     margin:auto;
  68.     text-align:right;
  69.     width: 552px;;
  70.     font: 10px/15px Arial, Helvetica, sans-serif;
  71.     color:#7A7A7A; 
  72.     height:15px;
  73.    
  74.     /*border:1px solid #000000;*/
  75. }
  76.  
  77. /*
  78. ul{
  79.  padding:0px;
  80.  list-style-type: none;
  81.  
  82. }
  83.  
  84. ul li {
  85.     display:inline;
  86.     list-style:none;
  87.     margin:0px;
  88.     padding:0px;
  89. }
  90. */
  91.  
  92. .MenuLi{
  93.     display:inline;
  94.     list-style:none;   
  95. }
  96. .MenuUl{
  97.     margin:0px;
  98.     padding:0px;
  99.    
  100. }
  101.  
  102.  
  103. ul { list-style-type: none; padding:0px; margin:0px;}
  104.  
  105.  
  106. a { color: #7A7A7A; text-decoration:none; }
  107. a:hover {text-decoration:none; color:#7A7A7A}
  108.  
  109.  
  110.  
  111. /* Animação inicio */
  112. #slider1 {
  113.     /* width: 720px;  important to be same as image width */
  114.     /* height: 300px; /* important to be same as image height */
  115.    
  116.     /* width: 560px;  important to be same as image width
  117.      height: 250px;  important to be same as image height */
  118.      
  119.     width: 552px;  /*important to be same as image width */
  120.     height: 552px; /* important to be same as image height */
  121.        
  122.     position: relative; /* important */
  123.     overflow: hidden; /* important */
  124.     margin:auto;
  125. }
  126.  
  127. #slider1Content {
  128.     /* width: 720px;  important to be same as image width or wider */
  129. /*  width: 100%;
  130.     position: absolute;
  131.     top: 0;
  132.     margin-left: 0;*/
  133.     width: 552px;
  134.     position: absolute;
  135.     top: 0;
  136.     left: 0;
  137. }
  138. .slider1Image {
  139.     /*float: left;
  140.     position: relative;
  141.     display: none;*/
  142.    
  143.     float: none;
  144.     position: relative;
  145.     display: none;
  146.     margin: 0px;
  147. }
  148. .slider1Image span {
  149.     position: absolute;
  150.     font: 10px/15px Arial, Helvetica, sans-serif;
  151.     padding: 10px 13px;
  152.     width: 552px;
  153.     background-color: #000;
  154.     /*filter: alpha(opacity=70);*/
  155.     /* Internet Explorer Opacidade */
  156.     filter: alpha(opacity=0);
  157.     -moz-opacity: 0.7;
  158.     -khtml-opacity: 0.7;
  159.     /* Safari Opacidade */
  160.     opacity: 0.0;
  161.     color: #fff;
  162.     display: none;
  163. }
  164. .clear {
  165.     clear: both;
  166. }
  167. .slider1Image span strong {
  168.     font-size: 14px;
  169. }
  170. .left {
  171.     top: 0;
  172.     left: 0;
  173.     width: 110px !important;
  174.     height: 280px;
  175. }
  176. .right {
  177.     right: 0;
  178.     bottom: 0;
  179.     width: 120px !important;
  180.     height: 40px;
  181. }
  182. /* Animação Fim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement