Advertisement
Guest User

pruebacss

a guest
Nov 27th, 2015
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.11 KB | None | 0 0
  1. /*maquetacion Principal*/
  2.  
  3. body{
  4. text-align: center;
  5. margin: 0px;
  6. background: url('../img/fondo_negro.jpg');
  7.  
  8. }
  9.  
  10. #principal{
  11. margin: 15px;
  12. width: 98%%;
  13. height:100%;
  14. background-color:rgba(256,256,256,0.2);
  15. border: 1px solid black;
  16. border-radius: 0px, 35px, 0px, 0px;
  17. box-shadow:0px 0px 10px white;
  18. padding-bottom: 98px ;
  19.  
  20.  
  21.  
  22.  
  23. }
  24.  
  25. header{
  26. //display: table;
  27. margin: 15px;
  28. text-align: left;
  29. color: white;
  30. width: 98%;
  31. border: 1px solid black;
  32. border-radius: 35px 35px 0px 0px;
  33. box-shadow:0px 0px 10px white;
  34. background-color:rgba(0,0,0,0.2);
  35.  
  36.  
  37. }
  38.  
  39.  
  40. footer{
  41. width: 98%;
  42. display: table;
  43. text-decoration: white;
  44. margin: 15px;
  45. text-align: center;
  46. color: white;
  47. background-color:rgba(0,0,0,.2);
  48. border: 1px solid black;
  49. border-radius: 0px 05px 35px 35px;
  50. box-shadow:0px 0px 10px white;
  51.  
  52. }
  53.  
  54.  
  55.  
  56. #imgheader{
  57. left:75px;
  58. }
  59.  
  60. A:link {text-decoration:none;color:#0000cc;text-align:left;}
  61.  
  62.  
  63. A:visited {text-decoration:none;color:#ffcc33;text-align:left;}
  64.  
  65.  
  66. A:active {text-decoration:none;color:#ff0000;text-align:left;}
  67.  
  68.  
  69. A:hover {text-decoration:underline;color:#999999;text-align:left;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement