Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.80 KB | None | 0 0
  1. @charset"UTF-8";
  2. body{
  3.                    
  4.     background-image:url("imagem/arcuires.JPG");
  5.                    
  6. }
  7.            
  8. p{
  9.                
  10.         text-align:justify;
  11.         text-indent: 70px;
  12.                
  13. }
  14.                
  15. figure.foto-legenda{
  16.      
  17.      display:inline-block;
  18.      position: relative;
  19.      border:8px solid white;
  20.      box-shadow: 1px 1px 8px black;
  21.    
  22. }    
  23. figure.foto-legenda img{
  24.      width:100%;
  25.      height:100%;
  26.  
  27. }
  28. figure.foto-legenda figcaption{
  29.      opacity:0;
  30.      position:absolute;
  31.      top:0px;
  32.      background-color:rgba(0,0,0,.4);
  33.      color: white;
  34.      width:100%;
  35.      height:100%;
  36.      padding:10px;
  37.      box-sizing:border-box;
  38.      transition: opacity 1s;
  39.    
  40. }
  41. figure.foto-legenda:hover figcaption{
  42.       opacity:1;
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement