Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. header,
  2. footer,
  3. section,
  4. div,
  5. li {
  6. outline: 1px dotted #0af;
  7. }
  8.  
  9.  
  10. body {
  11. background-color: #eee;
  12. }
  13. html, body {
  14. margin: 0;
  15. padding: 0;
  16. width: 100%;
  17. height:100%;
  18. }
  19.  
  20. .scrollH {
  21. overflow-y: auto;
  22. }
  23.  
  24. #header {
  25. height:15vh;
  26. }
  27.  
  28. .main {
  29. height: 75vh;
  30. }
  31.  
  32. #footer {
  33. height: 10vh;
  34. }
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41. /* HOME */
  42.  
  43.  
  44. #home_imagen_fondo {
  45. width: 100%;
  46. height:100%;
  47.  
  48. position: absolute;
  49. z-index: -1;
  50. }
  51.  
  52. .cortina {
  53. /*
  54. w100%
  55. h100%
  56. posa
  57. t0
  58. l0
  59. zi0
  60. op0.75
  61. bgc
  62. */
  63.  
  64. width: 100%;
  65. height: 100%;
  66. position: absolute;
  67. top: 0;
  68. left: 0;
  69. z-index: 0;
  70. opacity: 0.75;
  71. background-color: #fff;
  72.  
  73. }
  74.  
  75.  
  76. #home_imagen_fondo img {
  77. width: 100%;
  78. height:75vh;
  79. }
  80.  
  81. #home_titulo_texto {
  82. width:50vw;
  83. margin-left: 25vw;
  84.  
  85. height: 30vh;
  86. margin-top: 22vh;
  87.  
  88. text-align: center;
  89. }
  90.  
  91. #home_titulo h1 {
  92. font-size: 100px;
  93. text-transform: uppercase;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement