Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.  
  5. <meta charset="utf-8" />
  6. <title>Home</title>
  7.  
  8. <style type="text/css">
  9. * {padding: 0; margin: 0;}
  10. body {background: url(http://farm4.staticflickr.com/3785/9603354598_e7a32b5505_o.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }
  11. .header {margin-top: 50px; width: 1400px; position:fixed; height: 70px; background-color:rgba(0,0,0,0.5); /* Fallback for web browsers that doesn't support RGBa */ background: rgb(0, 0, 0) transparent; /* RGBa with 0.6 opacity */ background: rgba(0, 0, 0, 0.6); /* For IE 5.5 - 7*/ filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000); /* For IE 8*/ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)"; color: white; margin-top: 80%; }
  12. .titles {opacity: 1; font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; font-weight: 300;}
  13. .title {margin-top: 10px; margin-left: 2%; font-size: 40px; font-family: Futura, "Trebuchet MS", Arial, sans-serif;}
  14. .subtitle {margin-top: -12px; margin-left: 130px; font-size: 10px; font-family: Futura, "Trebuchet MS", Arial, sans-serif;}
  15. </style>
  16.  
  17. </head>
  18.  
  19. <body>
  20. <div class="header">
  21. <div class="titles" align="left">
  22. <div class="title">TITLE</div>
  23. <div class="subtitle">subtitle</div>
  24. </div>
  25. </div>
  26.  
  27. </body>
  28. </html>
  29.  
  30. .header {
  31. margin-top: 50px;
  32. width: 1400px;
  33. position:fixed;
  34. height: 70px;
  35. background-color:rgba(0,0,0,0.5);
  36. /* Fallback for web browsers that doesn't support RGBa */
  37. background: rgb(0, 0, 0) transparent;
  38. /* RGBa with 0.6 opacity */
  39. background: rgba(0, 0, 0, 0.6);
  40. /* For IE 5.5 - 7*/
  41. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
  42. /* For IE 8*/
  43. -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
  44. color: white;
  45. /* margin-top: 80%;*/
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement