Advertisement
Guest User

Untitled

a guest
Mar 9th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <title>@ViewBag.Title</title>
  6.  
  7. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0,user-scalable=no">
  8. @Styles.Render("~/Content/kendo/css")
  9. @Styles.Render("~/Content/css")
  10. @Styles.Render("~/Content/custom/css")
  11. @Scripts.Render("~/bundles/modernizr")
  12.  
  13. </head>
  14. <body >
  15.  
  16. <header>
  17. <nav class="navbar navbar-default">
  18. <div class="container-fluid">
  19.  
  20. <div class="navbar-header">
  21. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="bs-example-navbar-collapse-1" aria-expanded="false">
  22. <span class="sr-only">Toggle navigation</span>
  23. <span class="icon-bar"></span>
  24. <span class="icon-bar"></span>
  25. <span class="icon-bar"></span>
  26. </button>
  27. <a href="#"><img src="~/Images/Computacenter.png" /> </a>
  28. <h1>MCR</h1>
  29. </div>
  30.  
  31. <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
  32. <ul class="nav navbar-nav navbar-right text-center">
  33. <li><a href="@Url.Action("Team", "Admin")"><span class="glyphicon glyphicon glyphicon-home" aria-hidden="true"></span><p>Home</p></a></li>
  34. <li><a href="@Url.Action("Team", "Admin")"><span class="glyphicon glyphicon glyphicon-file" aria-hidden="true"></span><p>Requests</p></a></li>
  35. <li><a href="@Url.Action("Team", "Admin")"><span class="glyphicon glyphicon glyphicon-tasks" aria-hidden="true"></span><p>Activities</p></a></li>
  36. <li><a href="@Url.Action("Team", "Admin")"><span class="glyphicon glyphicon glyphicon-file" aria-hidden="true"></span><p>Reports</p></a></li>
  37. <li class="hideli"><a href="@Url.Action("Team", "Admin")"><span class="glyphicon glyphicon glyphicon-cog" aria-hidden="true"></span><p>Admin</p></a></li>
  38. <li><a href="@Url.Action("Team", "Admin")"><span class="glyphicon glyphicon glyphicon-save" aria-hidden="true"></span><p>Save View</p></a></li>
  39. </ul>
  40. </div>
  41. </div>
  42. </nav>
  43.  
  44. </header>
  45.  
  46. <div id="body">
  47. @RenderBody()
  48. </div>
  49.  
  50.  
  51. @Scripts.Render("~/bundles/jquery")
  52. @Scripts.Render("~/bundles/kendo")
  53. @RenderSection("scripts", required: false)
  54.  
  55. </body>
  56. </html>
  57.  
  58. html, body {
  59. font-family: Helvetica, sans-serif, sans-serif;
  60. font-size: 13px;
  61. border-top: none;
  62. background-image: url('../../Images/iNeed__waterfall_BG.jpg');
  63. background-repeat: no-repeat;
  64. background-size: cover;
  65. background-color: #fff;
  66. min-height: 100vh;
  67. }
  68.  
  69. #body {
  70. bottom: 0px;
  71. left: 0;
  72. position: absolute;
  73. right: 0;
  74. top: 82px;
  75. background: transparent;
  76. }
  77.  
  78. .navbar {
  79. padding: 0;
  80. background-color: #fff;
  81. }
  82.  
  83. .navbar-header img {
  84. max-height: 55px;
  85. max-width: 55px;
  86. padding-top: 25px;
  87. margin-right: 5px;
  88. float: left;
  89. }
  90.  
  91. .navbar-header h1 {
  92. float: left;
  93. color: darkblue;
  94. }
  95.  
  96.  
  97. /*.navbar-nav > li > a {
  98. padding-top:0px;
  99. }*/
  100.  
  101.  
  102. .nav navbar-nav navbar-right {
  103. text-align: center;
  104. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement