Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. <title>Full Page Image Background Template for Bootstrap 3</title>
  2.  
  3. <!-- Bootstrap core CSS -->
  4. <link href="css/bootstrap.css" rel="stylesheet">
  5.  
  6. <!-- Custom CSS for the 'Full' Template -->
  7. <link href="css/full.css" rel="stylesheet">
  8.  
  9. <!--Displays the Navigation Bar Style-->
  10. <div class="navbar navbar-default navbar-fixed-top">
  11. <!--Displays the Navigation Bar Content-->
  12. <div class="navbar-header">
  13. <!-- displays the icon bar in responsive view; when clicked reveals a list-->
  14. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
  15. <!-- displays the icon bars in responsive view;-->
  16. <span class="icon-bar"></span>
  17. <span class="icon-bar"></span>
  18. <span class="icon-bar"></span>
  19. </button>
  20. <!--Brand, Logo of your website-->
  21. <a class="navbar-brand" href="#">Virtual Productionz, Inc.</a>
  22. </div>
  23.  
  24. <!-- Allows collapse/show navbar in responsive view-->
  25. <div class="navbar-collapse collapse navbar-responsive-collapse">
  26. <ul class="nav navbar-nav">
  27. <li class="active"><a href="#">Home</a></li>
  28. <li><a href="#">About Us</a></li>
  29. <!-- Dropdown menu-->
  30. <li class="dropdown">
  31. <a href="#" class="dropdown-toggle" data-toggle="dropdown">Products <b class="caret"></b></a>
  32. <ul class="dropdown-menu">
  33. <li><a href="#">Integrated Laser Keyboard</a></li>
  34. <li><a href="#">More...</a></li>
  35. </ul>
  36. </li>
  37. <li><a href="#">Contact Us</a></li>
  38. </ul>
  39. </div>
  40. </div>
  41.  
  42.  
  43. <div class="jumbotron">
  44. <h1>Welcome!</h1>
  45. <p>We're an awesome company that creates virtual things for portable devices.</p>
  46. <p><a class="btn btn-primary btn-lg" role="button">Learn more</a></p>
  47. </div>
  48.  
  49.  
  50. <!-- JavaScript -->
  51. <script src="js/jquery-1.10.2.js"></script>
  52. <script src="js/bootstrap.js"></script>
  53.  
  54. @import url("bootstrap.min.css");
  55. @import url("bootstrap-theme.css");
  56.  
  57. body {
  58. margin-top: 50px; /* 50px is the height of the navbar - change this if the navbarn height changes */
  59. }
  60.  
  61. .full {
  62. /*background: url(http://placehold.it/1920x1080) no-repeat center center fixed;*/
  63. background: url("../images/laser_keyboard.jpg") no-repeat center center fixed;
  64. -webkit-background-size: cover;
  65. -moz-background-size: cover;
  66. -o-background-size: cover;
  67. background-size: cover;
  68. }
  69.  
  70. .jumbotron{
  71. color: #FFFFFF;
  72. /*background-color:none !important;*/
  73. }
  74.  
  75. <div style="background:transparent !important" class="jumbotron">
  76. <h1>Welcome!</h1>
  77. <p>We're an awesome company that creates virtual things for portable devices.</p>
  78. <p><a class="btn btn-primary btn-lg" role="button">Learn more</a></p>
  79. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement