Advertisement
Guest User

Untitled

a guest
Apr 12th, 2017
553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. <div class="navbar ">
  2. <div class="container" style="margin-left: 160px;">
  3. <div class="navbar-header">
  4. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
  5. <span class="icon-bar"></span>
  6. <span class="icon-bar"></span>
  7. <span class="icon-bar"></span>
  8. </button>
  9. <!--@Html.ActionLink("Видео Интрервью", "Index", "Home", new {area = ""}, new {@class = "navbar-brand"})-->
  10. </div>
  11. <div class="navbar-collapse collapse">
  12.  
  13. <ul class="nav navbar-nav">
  14.  
  15.  
  16. <li>@Html.ActionLink("Компании", "Index", "Companies")</li>
  17. <li>@Html.ActionLink("Подтвержденные", "Approved", "Interwier")</li>
  18. <li>@Html.ActionLink("Приглашения", "Individual", "InvitationMails")</li>
  19. <li>@Html.ActionLink("Создать интервью", "WelcomeScreen", "Questions")</li>
  20. <li>@Html.ActionLink("Просмотр", "Viewing", "Interwier")</li>
  21. <li>@Html.ActionLink("Входящие", "Incoming", "Interwier")</li>
  22. <li>@Html.ActionLink("Архив", "Archive", "Interwier")</li>
  23. </ul>
  24. @Html.Partial("_LoginPartial2")
  25. </div>
  26. </div>
  27. </div>
  28.  
  29. .navbar-nav {
  30. float:none;
  31. margin: 0 auto;
  32. display: table;
  33. table-layout: fixed;
  34. }
  35. .navbar-nav > li > a {
  36. padding-top: 10px;
  37. padding-bottom: 10px;
  38. line-height: 20px;
  39. color: #000000;
  40. font-size: 18px;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement